Home
last modified time | relevance | path

Searched refs:getSLEB128 (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Object/
H A DELF.cpp463 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 DDataExtractor.h614 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 DLineTable.cpp60 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 DDwarfParser.hpp360 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 DAddressSpace.hpp196 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 DDwarfInstructions.hpp498 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 DDWARFDataExtractor.cpp96 Result = getSLEB128(Offset); in getEncodedPointer()
H A DDWARFAbbreviationDeclaration.cpp98 int64_t V = Data.getSLEB128(OffsetPtr); in extract()
H A DDWARFDebugFrame.cpp321 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 DDWARFFormValue.cpp185 DebugInfoData.getSLEB128(OffsetPtr); in skipValue()
298 Value.sval = Data.getSLEB128(OffsetPtr, &Err); in extractValue()
H A DDWARFExpression.cpp196 Operands[Operand] = Data.getSLEB128(&Offset); in extract()
H A DDWARFDebugLine.cpp1085 int64_t LineDelta = TableData.getSLEB128(Cursor); in parse()
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDataExtractor.cpp225 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 DELF.h240 SymIdx += Data.getSLEB128(Cur); in decodeCrel()
242 Type += Data.getSLEB128(Cur); in decodeCrel()
244 Addend += Data.getSLEB128(Cur); in decodeCrel()