Searched refs:getULEB128 (Results 1 – 9 of 9) sorted by relevance
/external/llvm/lib/DebugInfo/ |
D | DWARFAbbreviationDeclaration.cpp | 19 return extract(data, offset_ptr, data.getULEB128(offset_ptr)); in extract() 28 Tag = data.getULEB128(offset_ptr); in extract() 32 uint16_t attr = data.getULEB128(offset_ptr); in extract() 33 uint16_t form = data.getULEB128(offset_ptr); in extract()
|
D | DWARFDebugLine.cpp | 203 fileEntry.DirIdx = debug_line_data.getULEB128(offset_ptr); in parsePrologue() 204 fileEntry.ModTime = debug_line_data.getULEB128(offset_ptr); in parsePrologue() 205 fileEntry.Length = debug_line_data.getULEB128(offset_ptr); in parsePrologue() 247 uint64_t len = debug_line_data.getULEB128(offset_ptr); in parseStatementTable() 307 fileEntry.DirIdx = debug_line_data.getULEB128(offset_ptr); in parseStatementTable() 308 fileEntry.ModTime = debug_line_data.getULEB128(offset_ptr); in parseStatementTable() 309 fileEntry.Length = debug_line_data.getULEB128(offset_ptr); in parseStatementTable() 334 state.Address += debug_line_data.getULEB128(offset_ptr) * in parseStatementTable() 347 state.File = debug_line_data.getULEB128(offset_ptr); in parseStatementTable() 353 state.Column = debug_line_data.getULEB128(offset_ptr); in parseStatementTable() [all …]
|
D | DWARFDebugFrame.cpp | 118 addInstruction(Primary, Op1, Data.getULEB128(Offset)); in parseInstructions() 153 addInstruction(Opcode, Data.getULEB128(Offset)); in parseInstructions() 164 addInstruction(Opcode, Data.getULEB128(Offset), in parseInstructions() 165 Data.getULEB128(Offset)); in parseInstructions() 171 addInstruction(Opcode, Data.getULEB128(Offset), in parseInstructions() 347 uint64_t CodeAlignmentFactor = Data.getULEB128(&Offset); in parse() 349 uint64_t ReturnAddressRegister = Data.getULEB128(&Offset); in parse()
|
D | DWARFFormValue.cpp | 104 Value.uval = data.getULEB128(offset_ptr); in extractValue() 155 Value.uval = data.getULEB128(offset_ptr); in extractValue() 165 Form = data.getULEB128(offset_ptr); in extractValue() 186 Value.uval = data.getULEB128(offset_ptr); in extractValue() 189 Value.uval = data.getULEB128(offset_ptr); in extractValue() 224 uint64_t size = debug_info_data.getULEB128(offset_ptr); in skipValue() 295 debug_info_data.getULEB128(offset_ptr); in skipValue() 300 form = debug_info_data.getULEB128(offset_ptr); in skipValue()
|
D | DWARFDebugInfoEntry.cpp | 30 uint32_t abbrCode = debug_info_data.getULEB128(&offset); in dump() 102 uint64_t AbbrCode = DebugInfoData.getULEB128(OffsetPtr); in extractFast() 141 uint64_t AbbrCode = DebugInfoData.getULEB128(OffsetPtr); in extract() 205 debug_info_data.getULEB128(&offset); in getAttributeValue()
|
/external/llvm/unittests/Support/ |
D | DataExtractorTest.cpp | 105 EXPECT_EQ(9382ULL, DE.getULEB128(&offset)); in TEST() 113 EXPECT_EQ(42218325750568106ULL, BDE.getULEB128(&offset)); in TEST()
|
/external/llvm/include/llvm/Support/ |
D | DataExtractor.h | 334 uint64_t getULEB128(uint32_t *offset_ptr) const;
|
/external/llvm/lib/Support/ |
D | DataExtractor.cpp | 131 uint64_t DataExtractor::getULEB128(uint32_t *offset_ptr) const { in getULEB128() function in DataExtractor
|
/external/llvm/lib/Object/ |
D | MachOObjectFile.cpp | 1593 while (uint64_t delta = extractor.getULEB128(&offset)) { in ReadULEB128s()
|