HomeSort by relevance Sort by last modified time
    Searched defs:PCOffset (Results 1 - 3 of 3) sorted by null

  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DwarfLinker.h 281 /// \param PCOffset (while cloning a function scope) is the offset
287 int64_t PCOffset, uint32_t OutOffset, unsigned Flags,
317 int64_t PCOffset = 0;
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DWARFDebugLine.cpp 747 uint16_t PCOffset = DebugLineData.getU16(OffsetPtr);
748 State.Row.Address += PCOffset;
751 << format(" (0x%16.16" PRIx64 ")", PCOffset);
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 282 /// relocatad by applying offset \p PCOffset.
283 void addFunctionRange(uint64_t LowPC, uint64_t HighPC, int64_t PCOffset);
291 void noteLocationAttribute(PatchLocation Attr, int64_t PcOffset);
432 int64_t PcOffset) {
433 Ranges.insert(FuncLowPc, FuncHighPc, PcOffset);
434 this->LowPc = std::min(LowPc, FuncLowPc + PcOffset);
435 this->HighPc = std::max(HighPc, FuncHighPc + PcOffset);
445 void CompileUnit::noteLocationAttribute(PatchLocation Attr, int64_t PcOffset) {
446 LocationAttributes.emplace_back(Attr, PcOffset);
724 int64_t PcOffset = Entries.empty() ? 0 : FuncRange.value() + UnitPcOffset
    [all...]

Completed in 62 milliseconds