Searched refs:getSLEB128 (Results 1 – 14 of 14) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/Object/ |
H A D | ELF.cpp | 463 uint64_t NumRelocs = Data.getSLEB128(Cur); in android_relas() 464 uint64_t Offset = Data.getSLEB128(Cur); in android_relas() 473 uint64_t NumRelocsInGroup = Data.getSLEB128(Cur); in android_relas() 480 uint64_t GroupFlags = Data.getSLEB128(Cur); in android_relas() 488 GroupOffsetDelta = Data.getSLEB128(Cur); in android_relas() 492 GroupRInfo = Data.getSLEB128(Cur); in android_relas() 495 Addend += Data.getSLEB128(Cur); in android_relas() 502 Offset += GroupedByOffsetDelta ? GroupOffsetDelta : Data.getSLEB128(Cur); in android_relas() 504 R.r_info = GroupedByInfo ? GroupRInfo : Data.getSLEB128(Cur); in android_relas() 506 Addend += Data.getSLEB128(Cur); in android_relas()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | DataExtractor.h | 614 int64_t getSLEB128(uint64_t *OffsetPtr, Error *Err = nullptr) const; 619 int64_t getSLEB128(Cursor &C) const { return getSLEB128(&C.Offset, &C.Err); } in getSLEB128() function
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
H A D | LineTable.cpp | 60 int64_t MinDelta = Data.getSLEB128(&Offset); in parse() 64 int64_t MaxDelta = Data.getSLEB128(&Offset); in parse() 103 Row.Line += Data.getSLEB128(&Offset); in parse()
|
/freebsd/contrib/llvm-project/libunwind/src/ |
H A D | DwarfParser.hpp | 360 cieInfo->dataAlignFactor = (int)addressSpace.getSLEB128(p, cieContentEnd); in parseCIE() 646 offset = addressSpace.getSLEB128(p, instructionsEnd) * in parseFDEInstructions() 655 offset = addressSpace.getSLEB128(p, instructionsEnd) * in parseFDEInstructions() 670 (int32_t)(addressSpace.getSLEB128(p, instructionsEnd) * in parseFDEInstructions() 698 offset = addressSpace.getSLEB128(p, instructionsEnd) * in parseFDEInstructions()
|
H A D | AddressSpace.hpp | 196 static int64_t getSLEB128(pint_t &addr, pint_t end); 250 inline int64_t LocalAddressSpace::getSLEB128(pint_t &addr, pint_t end) { in getSLEB128() function in libunwind::LocalAddressSpace 303 result = (pint_t)getSLEB128(addr, end); in getEncodedP()
|
H A D | DwarfInstructions.hpp | 498 svalue = (sint_t)addressSpace.getSLEB128(p, expressionEnd); in evaluateExpression() 848 svalue = (sint_t)addressSpace.getSLEB128(p, expressionEnd); in evaluateExpression() 857 svalue = (sint_t)addressSpace.getSLEB128(p, expressionEnd); in evaluateExpression()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
H A D | DWARFDataExtractor.cpp | 96 Result = getSLEB128(Offset); in getEncodedPointer()
|
H A D | DWARFAbbreviationDeclaration.cpp | 98 int64_t V = Data.getSLEB128(OffsetPtr); in extract()
|
H A D | DWARFDebugFrame.cpp | 321 addInstruction(Opcode, Data.getSLEB128(C)); in parse() 328 : Data.getSLEB128(C); in parse() 352 uint64_t op2 = (uint64_t)Data.getSLEB128(C); in parse() 1092 int64_t DataAlignmentFactor = Data.getSLEB128(&Offset); in parse()
|
H A D | DWARFFormValue.cpp | 185 DebugInfoData.getSLEB128(OffsetPtr); in skipValue() 298 Value.sval = Data.getSLEB128(OffsetPtr, &Err); in extractValue()
|
H A D | DWARFExpression.cpp | 196 Operands[Operand] = Data.getSLEB128(&Offset); in extract()
|
H A D | DWARFDebugLine.cpp | 1085 int64_t LineDelta = TableData.getSLEB128(Cursor); in parse()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | DataExtractor.cpp | 225 int64_t DataExtractor::getSLEB128(uint64_t *offset_ptr, Error *Err) const { in getSLEB128() function in DataExtractor
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Object/ |
H A D | ELF.h | 240 SymIdx += Data.getSLEB128(Cur); in decodeCrel() 242 Type += Data.getSLEB128(Cur); in decodeCrel() 244 Addend += Data.getSLEB128(Cur); in decodeCrel()
|