Home
last modified time | relevance | path

Searched refs:OrigLowPc (Results 1 – 5 of 5) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DDwarfStreamer.cpp272 int64_t UnitPcOffset, uint64_t OrigLowPc, in emitRangesEntries() argument
291 if (!(Range.StartAddress + OrigLowPc >= FuncRange.start() && in emitRangesEntries()
292 Range.EndAddress + OrigLowPc <= FuncRange.stop())) in emitRangesEntries()
405 if (auto OrigLowPc = dwarf::toAddress(OrigUnitDie.find(dwarf::DW_AT_low_pc))) in emitLocationsForUnit() local
406 UnitPcOffset = int64_t(*OrigLowPc) - Unit.getLowPc(); in emitLocationsForUnit()
DDwarfLinker.cpp1077 Addr = (Info.OrigLowPc != std::numeric_limits<uint64_t>::max() in cloneAddressAttribute()
1078 ? Info.OrigLowPc in cloneAddressAttribute()
1432 AttrInfo.OrigLowPc = dwarf::toAddress(InputDIE.find(dwarf::DW_AT_low_pc), in cloneDIE()
1580 uint64_t OrigLowPc = in patchRangesForUnit() local
1585 if (OrigLowPc != -1ULL) in patchRangesForUnit()
1586 UnitPcOffset = int64_t(OrigLowPc) - Unit.getLowPc(); in patchRangesForUnit()
1601 First.StartAddress + OrigLowPc < CurrRange.start() || in patchRangesForUnit()
1602 First.StartAddress + OrigLowPc >= CurrRange.stop()) { in patchRangesForUnit()
1603 CurrRange = FunctionRanges.find(First.StartAddress + OrigLowPc); in patchRangesForUnit()
1605 CurrRange.start() > First.StartAddress + OrigLowPc) { in patchRangesForUnit()
[all …]
DDwarfStreamer.h84 int64_t UnitPcOffset, uint64_t OrigLowPc,
DDwarfLinker.h311 uint64_t OrigLowPc = std::numeric_limits<uint64_t>::max();
/external/llvm/tools/dsymutil/
DDwarfLinker.cpp533 int64_t UnitPcOffset, uint64_t OrigLowPc,
717 int64_t UnitPcOffset, uint64_t OrigLowPc, in emitRangesEntries() argument
736 if (!(Range.StartAddress + OrigLowPc >= FuncRange.start() && in emitRangesEntries()
737 Range.EndAddress + OrigLowPc <= FuncRange.stop())) in emitRangesEntries()
850 uint64_t OrigLowPc = OrigUnitDie->getAttributeValueAsAddress( in emitLocationsForUnit() local
852 if (OrigLowPc != -1ULL) in emitLocationsForUnit()
853 UnitPcOffset = int64_t(OrigLowPc) - Unit.getLowPc(); in emitLocationsForUnit()
1306 uint64_t OrigLowPc; ///< Value of AT_low_pc in the input DIE member
1315 MangledNameOffset(0), OrigLowPc(UINT64_MAX), OrigHighPc(0), in AttributesInfo()
2488 Addr = (Info.OrigLowPc != UINT64_MAX ? Info.OrigLowPc : Addr) + in cloneAddressAttribute()
[all …]