/external/swiftshader/third_party/subzero/src/ |
D | IceELFSection.h | 335 const Elf64_Sym &SymInfo = KeyValue.second.Sym; in writeSymbolMap() local 336 Str.writeELFWord<IsELF64>(SymInfo.st_name); in writeSymbolMap() 337 Str.write8(SymInfo.st_info); in writeSymbolMap() 338 Str.write8(SymInfo.st_other); in writeSymbolMap() 339 Str.writeLE16(SymInfo.st_shndx); in writeSymbolMap() 340 Str.writeAddrOrOffset<IsELF64>(SymInfo.st_value); in writeSymbolMap() 341 Str.writeELFXword<IsELF64>(SymInfo.st_size); in writeSymbolMap() 345 const Elf64_Sym &SymInfo = KeyValue.second.Sym; in writeSymbolMap() local 346 Str.writeELFWord<IsELF64>(SymInfo.st_name); in writeSymbolMap() 347 Str.writeAddrOrOffset<IsELF64>(SymInfo.st_value); in writeSymbolMap() [all …]
|
D | IceELFSection.cpp | 160 Elf64_Sym &SymInfo = KeyValue.second.Sym; in updateIndices() local 162 SymInfo.st_name = StrTab->getIndex(Name.toString()); in updateIndices() 163 SymInfo.st_shndx = Section->getNumber(); in updateIndices() 169 Elf64_Sym &SymInfo = KeyValue.second.Sym; in updateIndices() local 171 SymInfo.st_name = StrTab->getIndex(Name); in updateIndices() 172 SymInfo.st_shndx = Section->getNumber(); in updateIndices()
|
/external/clang/tools/c-index-test/ |
D | core_main.cpp | 56 static void printSymbolInfo(SymbolInfo SymInfo, raw_ostream &OS); 169 static void printSymbolInfo(SymbolInfo SymInfo, raw_ostream &OS) { in printSymbolInfo() argument 170 OS << getSymbolKindString(SymInfo.Kind); in printSymbolInfo() 171 if (SymInfo.SubKinds) { in printSymbolInfo() 173 printSymbolSubKinds(SymInfo.SubKinds, OS); in printSymbolInfo() 176 OS << '/' << getSymbolLanguageString(SymInfo.Lang); in printSymbolInfo()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldImpl.h | 447 const auto &SymInfo = pos->second; in getSymbolLocalAddress() local 449 if (SymInfo.getSectionID() == AbsoluteSymbolSection) in getSymbolLocalAddress() 451 return getSectionAddress(SymInfo.getSectionID()) + SymInfo.getOffset(); in getSymbolLocalAddress()
|
D | RuntimeDyldChecker.cpp | 856 const auto &SymInfo = pos->second; in getSubsectionStartingAt() local 857 uint8_t *SectionAddr = getRTDyld().getSectionAddress(SymInfo.getSectionID()); in getSubsectionStartingAt() 859 SymInfo.getOffset(), in getSubsectionStartingAt() 860 getRTDyld().Sections[SymInfo.getSectionID()].getSize() - in getSubsectionStartingAt() 861 SymInfo.getOffset()); in getSubsectionStartingAt() 891 const auto &SymInfo = GSTEntry.second; in registerStubMap() local 892 if (SymInfo.getSectionID() == StubMapEntry.first.SectionID && in registerStubMap() 893 SymInfo.getOffset() == in registerStubMap()
|
D | RuntimeDyld.cpp | 788 const auto &SymInfo = Loc->second; in addRelocationForSymbol() local 789 RECopy.Addend += SymInfo.getOffset(); in addRelocationForSymbol() 790 Relocations[SymInfo.getSectionID()].push_back(RECopy); in addRelocationForSymbol() 934 const auto &SymInfo = Loc->second; in resolveExternalSymbols() local 935 Addr = getSectionLoadAddress(SymInfo.getSectionID()) + in resolveExternalSymbols() 936 SymInfo.getOffset(); in resolveExternalSymbols()
|
D | RuntimeDyldMachO.cpp | 116 const auto &SymInfo = SI->second; in getRelocationValueRef() local 117 Value.SectionID = SymInfo.getSectionID(); in getRelocationValueRef() 118 Value.Offset = SymInfo.getOffset() + RE.Addend; in getRelocationValueRef()
|
D | RuntimeDyldELF.cpp | 1229 const auto &SymInfo = gsi->second; in processRelocationRef() local 1230 Value.SectionID = SymInfo.getSectionID(); in processRelocationRef() 1231 Value.Offset = SymInfo.getOffset(); in processRelocationRef() 1232 Value.Addend = SymInfo.getOffset() + Addend; in processRelocationRef()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldChecker.cpp | 873 const auto &SymInfo = pos->second; in getSubsectionStartingAt() local 874 uint8_t *SectionAddr = getRTDyld().getSectionAddress(SymInfo.getSectionID()); in getSubsectionStartingAt() 876 SymInfo.getOffset(), in getSubsectionStartingAt() 877 getRTDyld().Sections[SymInfo.getSectionID()].getSize() - in getSubsectionStartingAt() 878 SymInfo.getOffset()); in getSubsectionStartingAt() 917 const auto &SymInfo = GSTEntry.second; in registerStubMap() local 918 if (SymInfo.getSectionID() == StubMapEntry.first.SectionID && in registerStubMap() 919 SymInfo.getOffset() == in registerStubMap()
|
D | RuntimeDyldImpl.h | 495 const auto &SymInfo = pos->second; in getSymbolLocalAddress() local 497 if (SymInfo.getSectionID() == AbsoluteSymbolSection) in getSymbolLocalAddress() 499 return getSectionAddress(SymInfo.getSectionID()) + SymInfo.getOffset(); in getSymbolLocalAddress()
|
D | RuntimeDyld.cpp | 851 const auto &SymInfo = Loc->second; in addRelocationForSymbol() local 852 RECopy.Addend += SymInfo.getOffset(); in addRelocationForSymbol() 853 Relocations[SymInfo.getSectionID()].push_back(RECopy); in addRelocationForSymbol() 1061 const auto &SymInfo = Loc->second; in resolveExternalSymbols() local 1062 Addr = getSectionLoadAddress(SymInfo.getSectionID()) + in resolveExternalSymbols() 1063 SymInfo.getOffset(); in resolveExternalSymbols() 1064 Flags = SymInfo.getFlags(); in resolveExternalSymbols()
|
D | RuntimeDyldMachO.cpp | 119 const auto &SymInfo = SI->second; in getRelocationValueRef() local 120 Value.SectionID = SymInfo.getSectionID(); in getRelocationValueRef() 121 Value.Offset = SymInfo.getOffset() + RE.Addend; in getRelocationValueRef()
|
D | RuntimeDyldELF.cpp | 1021 const auto &SymInfo = Loc->second; in resolveAArch64ShortBranch() local 1023 uint64_t(Sections[SymInfo.getSectionID()].getLoadAddressWithOffset( in resolveAArch64ShortBranch() 1024 SymInfo.getOffset())); in resolveAArch64ShortBranch() 1140 const auto &SymInfo = gsi->second; in processRelocationRef() local 1141 Value.SectionID = SymInfo.getSectionID(); in processRelocationRef() 1142 Value.Offset = SymInfo.getOffset(); in processRelocationRef() 1143 Value.Addend = SymInfo.getOffset() + Addend; in processRelocationRef()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/ |
D | DWARFContext.cpp | 1126 struct SymInfo { struct 1133 static Expected<SymInfo> getSymbolInfo(const object::ObjectFile &Obj, in getSymbolInfo() argument 1136 std::map<SymbolRef, SymInfo> &Cache) { in getSymbolInfo() 1137 SymInfo Ret = {0, (uint64_t)-1LL}; in getSymbolInfo() 1141 std::map<SymbolRef, SymInfo>::iterator CacheIt = Cache.end(); in getSymbolInfo() 1447 std::map<SymbolRef, SymInfo> AddrCache; in DWARFObjInMemory() 1454 Expected<SymInfo> SymInfoOrErr = in DWARFObjInMemory()
|
/external/clang/tools/libclang/ |
D | CXIndexDataConsumer.cpp | 1151 SymbolInfo SymInfo = getSymbolInfo(D); in getEntityInfo() local 1152 EntityInfo.kind = getEntityKindFromSymbolKind(SymInfo.Kind, SymInfo.Lang); in getEntityInfo() 1153 EntityInfo.templateKind = getEntityKindFromSymbolSubKinds(SymInfo.SubKinds); in getEntityInfo() 1154 EntityInfo.lang = getEntityLangFromSymbolLang(SymInfo.Lang); in getEntityInfo()
|