HomeSort by relevance Sort by last modified time
    Searched refs:SymOffset (Results 1 - 25 of 29) sorted by null

1 2

  /external/swiftshader/third_party/LLVM/lib/Target/ARM/
ARMELFWriterInfo.h 52 virtual long int computeRelocation(unsigned SymOffset, unsigned RelOffset,
ARMELFWriterInfo.cpp 77 long int ARMELFWriterInfo::computeRelocation(unsigned SymOffset,
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
MBlazeELFWriterInfo.h 52 virtual long int computeRelocation(unsigned SymOffset, unsigned RelOffset,
MBlazeELFWriterInfo.cpp 102 long int MBlazeELFWriterInfo::computeRelocation(unsigned SymOffset,
106 return SymOffset - (RelOffset + 4);
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86ELFWriterInfo.h 53 virtual long int computeRelocation(unsigned SymOffset, unsigned RelOffset,
X86ELFWriterInfo.cpp 143 long int X86ELFWriterInfo::computeRelocation(unsigned SymOffset,
148 return SymOffset - (RelOffset + 4);
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldELFMips.h 36 uint64_t SymOffset, SID SectionID);
39 uint64_t SymOffset, SID SectionID);
58 uint64_t SymOffset, SID SectionID);
RuntimeDyldELFMips.cpp 22 RE.SymOffset, RE.SectionID);
25 RE.SymOffset, RE.SectionID);
36 Addend, RE.SymOffset, RE.SectionID);
111 int64_t Addend, uint64_t SymOffset, SID SectionID) {
122 << " SymOffset: " << format("%x", SymOffset) << "\n");
155 getSectionAddress(SectionToGOTMap[SectionID]) + SymOffset;
168 return (SymOffset - 0x7ff0) & 0xffff;
268 int64_t Addend, uint64_t SymOffset, SID SectionID) {
270 Section, Offset, Value, Type, Addend, SymOffset, SectionID)
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.h 31 uint64_t SymOffset = 0, SID SectionID = 0);
35 uint64_t SymOffset);
60 uint64_t SymOffset, SID SectionID);
65 uint64_t SymOffset, SID SectionID);
RuntimeDyldImpl.h 139 /// SymOffset - Section offset of the relocation entry's symbol (used for GOT
142 uint64_t SymOffset;
154 SymOffset(0), IsPCRel(false), Size(0) {}
157 uint64_t symoffset)
159 SymOffset(symoffset), IsPCRel(false), Size(0) {}
164 SymOffset(0), IsPCRel(IsPCRel), Size(Size) {}
RuntimeDyldELF.cpp 229 uint64_t SymOffset) {
602 uint64_t SymOffset,
613 SymOffset, SectionID);
617 CalculatedValue, SymOffset,
623 CalculatedValue, SymOffset,
634 uint64_t SymOffset, SID SectionID) {
642 << " SymOffset: " << format("%x", SymOffset) << "\n");
671 getSectionAddress(SectionToGOTMap[SectionID]) + SymOffset;
684 return (SymOffset - 0x7ff0) & 0xffff
    [all...]
  /external/swiftshader/third_party/LLVM/include/llvm/Target/
TargetELFWriterInfo.h 117 virtual long int computeRelocation(unsigned SymOffset, unsigned RelOffset,
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/
GSIStreamBuilder.cpp 108 uint32_t SymOffset = RecordZeroOffset;
112 HR.Off = SymOffset + 1;
119 SymOffset += Sym.length();
229 uint32_t SymOffset = 0;
235 SymOffsets.push_back(SymOffset);
236 SymOffset += Sym.length();
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.h 31 uint64_t SymOffset = 0, SID SectionID = 0);
35 uint64_t SymOffset);
RuntimeDyldImpl.h 139 /// SymOffset - Section offset of the relocation entry's symbol (used for GOT
142 uint64_t SymOffset;
157 SymOffset(0), IsPCRel(false), Size(0), IsTargetThumbFunc(false) {}
160 uint64_t symoffset)
162 SymOffset(symoffset), IsPCRel(false), Size(0),
168 SymOffset(0), IsPCRel(IsPCRel), Size(Size), IsTargetThumbFunc(false) {}
RuntimeDyldELF.cpp 266 uint64_t SymOffset) {
    [all...]
  /external/llvm/tools/llvm-cxxdump/
llvm-cxxdump.cpp 81 uint64_t SymOffset = SymAddress - SecAddress;
82 uint64_t SymEnd = SymOffset + SymSize;
93 if (Offset >= SymOffset && Offset < SymEnd) {
105 uint64_t SymOffset = SymAddress - SecAddress;
106 uint64_t SymEnd = SymOffset + SymSize;
115 if (Offset >= SymOffset && Offset < SymEnd)
116 Collection[std::make_pair(SymName, Offset - SymOffset)] = *RelocSymName;
206 uint64_t SymOffset = SymAddress - SecAddress;
207 StringRef SymContents = SecContents.substr(SymOffset, SymSize);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-cxxdump/
llvm-cxxdump.cpp 79 uint64_t SymOffset = SymAddress - SecAddress;
80 uint64_t SymEnd = SymOffset + SymSize;
91 if (Offset >= SymOffset && Offset < SymEnd) {
103 uint64_t SymOffset = SymAddress - SecAddress;
104 uint64_t SymEnd = SymOffset + SymSize;
113 if (Offset >= SymOffset && Offset < SymEnd)
114 Collection[std::make_pair(SymName, Offset - SymOffset)] = *RelocSymName;
204 uint64_t SymOffset = SymAddress - SecAddress;
205 StringRef SymContents = SecContents.substr(SymOffset, SymSize);
  /external/swiftshader/third_party/LLVM/lib/CodeGen/
ELFWriter.cpp 812 int64_t SymOffset = (int64_t)MR.getResultPointer();
818 int64_t Value = TEW->computeRelocation(SymOffset, RelOffset, RelType);
823 Addend = TEW->getDefaultAddendForRelTy(RelType, SymOffset);
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/CodeView/
SymbolRecordMapping.cpp 376 error(IO.mapInteger(ProcRef.SymOffset));
SymbolDumper.cpp 510 W.printNumber("SymOffset", ProcRef.SymOffset);
  /external/swiftshader/third_party/llvm-7.0/llvm/tools/dsymutil/
DwarfLinker.cpp 394 int64_t SymOffset;
401 SymOffset = int64_t(Addend) - SymAddress;
404 SymOffset = 0;
421 ValidRelocs.emplace_back(Offset64, RelocSize, SymOffset, Mapping);
    [all...]
  /external/llvm/lib/DebugInfo/CodeView/
SymbolDumper.cpp 511 W.printNumber("SymOffset", ProcRef.Header.SymOffset);
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/CodeView/
SymbolRecord.h 398 uint32_t SymOffset;

Completed in 592 milliseconds

1 2