/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldMachO.cpp | 230 ObjSectionToIDMap &SectionMap) { in finalizeLoad() argument 243 if (auto TextSIDOrErr = findOrEmitSection(Obj, Section, true, SectionMap)) in finalizeLoad() 249 SectionMap)) in finalizeLoad() 255 SectionMap)) in finalizeLoad() 260 auto I = SectionMap.find(Section); in finalizeLoad() 261 if (I != SectionMap.end()) in finalizeLoad()
|
D | RuntimeDyldCheckerImpl.h | 39 typedef std::map<std::string, SectionAddressInfo> SectionMap; typedef 40 typedef std::map<std::string, SectionMap> StubMap;
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyldMachO.cpp | 227 ObjSectionToIDMap &SectionMap) { in finalizeLoad() argument 240 if (auto TextSIDOrErr = findOrEmitSection(Obj, Section, true, SectionMap)) in finalizeLoad() 246 SectionMap)) in finalizeLoad() 252 SectionMap)) in finalizeLoad() 257 auto I = SectionMap.find(Section); in finalizeLoad() 258 if (I != SectionMap.end()) in finalizeLoad()
|
D | RuntimeDyldCheckerImpl.h | 39 typedef std::map<std::string, SectionAddressInfo> SectionMap; typedef 40 typedef std::map<std::string, SectionMap> StubMap;
|
D | RuntimeDyldMachO.h | 159 ObjSectionToIDMap &SectionMap) override;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/PDB/Native/ |
D | DbiStreamBuilder.cpp | 62 SectionMap = SecMap; in setSectionMap() 135 if (SectionMap.empty()) in calculateSectionMapStreamSize() 137 return sizeof(SecMapHeader) + sizeof(SecMapEntry) * SectionMap.size(); in calculateSectionMapStreamSize() 378 if (!SectionMap.empty()) { in commit() 379 ulittle16_t Size = static_cast<ulittle16_t>(SectionMap.size()); in commit() 383 if (auto EC = Writer.writeArray(SectionMap)) in commit()
|
D | DbiStream.cpp | 211 return SectionMap; in getSectionMap() 345 if (auto EC = SMReader.readArray(SectionMap, Header->SecCount)) in initializeSectionMapData()
|
/external/llvm/lib/MC/ |
D | WinCOFFObjectWriter.cpp | 131 section_map SectionMap; member in __anon81048dda0111::WinCOFFObjectWriter 144 SectionMap.clear(); in reset() 340 SectionMap[&Sec] = coff_section; in defineSection() 379 Sec = SectionMap[Base->getFragment()->getParent()]; in DefineSymbol() 675 assert(SectionMap.find(Section) != SectionMap.end() && in recordRelocation() 678 COFFSection *coff_section = SectionMap[Section]; in recordRelocation() 732 SectionMap.find(TargetSection) != SectionMap.end() && in recordRelocation() 734 Reloc.Symb = SectionMap[TargetSection]->Symbol; in recordRelocation() 927 COFFSection *Sec = SectionMap[&Section]; in writeObject() 1048 COFFSection *Sec = SectionMap[&*j]; in writeObject()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/ |
D | WinCOFFObjectWriter.cpp | 145 section_map SectionMap; member in __anoneb971b320111::WinCOFFObjectWriter 159 SectionMap.clear(); in reset() 316 SectionMap[&MCSec] = Section; in defineSection() 355 Sec = SectionMap[Base->getFragment()->getParent()]; in DefineSymbol() 644 COFFSection *Sec = SectionMap[&MCSec]; in writeSection() 730 assert(SectionMap.find(MCSec) != SectionMap.end() && in recordRelocation() 733 COFFSection *Sec = SectionMap[MCSec]; in recordRelocation() 767 SectionMap.find(TargetSection) != SectionMap.end() && in recordRelocation() 769 Reloc.Symb = SectionMap[TargetSection]->Symbol; in recordRelocation() 910 COFFSection *Sec = SectionMap[&Section]; in assignFileOffsets()
|
/external/google-breakpad/src/common/dwarf/ |
D | functioninfo.h | 118 const SectionMap& sections, in CUFunctionInfoHandler() 181 const SectionMap& sections_;
|
D | dwarf2reader.h | 61 typedef std::map<string, std::pair<const char*, uint64> > SectionMap; typedef 224 CompilationUnit(const SectionMap& sections, uint64 offset, 308 const SectionMap& sections_;
|
D | dwarf2reader_die_unittest.cc | 62 using dwarf2reader::SectionMap; 129 const SectionMap &MakeSectionMap() { in MakeSectionMap() 146 SectionMap section_map;
|
/external/google-breakpad/src/common/ |
D | dwarf_cu_to_module.h | 93 const dwarf2reader::SectionMap& section_map() const; 112 dwarf2reader::SectionMap section_map_;
|
/external/google-breakpad/src/common/mac/ |
D | dump_syms.mm | 260 const mach_o::SectionMap &dwarf_sections, 272 // Build a dwarf2reader::SectionMap from our mach_o::SectionMap. 273 for (mach_o::SectionMap::const_iterator it = dwarf_sections.begin(); 282 dwarf2reader::SectionMap::const_iterator debug_info_entry = 410 mach_o::SectionMap section_map; 417 mach_o::SectionMap::const_iterator eh_frame = 435 mach_o::SectionMap::const_iterator debug_frame
|
D | macho_reader.h | 222 typedef map<string, Section> SectionMap; typedef 418 bool MapSegmentSections(const Segment &segment, SectionMap *section_map)
|
D | macho_reader.cc | 517 SectionMapper(SectionMap *map) : map_(map) { } in SectionMapper() 524 SectionMap *map_; 528 SectionMap *section_map) const { in MapSegmentSections()
|
D | dump_syms.h | 138 const mach_o::SectionMap &dwarf_sections,
|
/external/swiftshader/third_party/LLVM/lib/MC/ |
D | WinCOFFObjectWriter.cpp | 139 section_map SectionMap; member in __anon8d2f65060111::WinCOFFObjectWriter 408 SectionMap[&SectionData.getSection()] = coff_section; in DefineSection() 465 SectionMap[&SymbolData.Fragment->getParent()->getSection()]; in DefineSymbol() 649 assert(SectionMap.find(&SectionData->getSection()) != SectionMap.end() && in RecordRelocation() 654 COFFSection *coff_section = SectionMap[&SectionData->getSection()]; in RecordRelocation() 793 COFFSection *Sec = SectionMap[&i->getSection()]; in WriteObject()
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
D | RuntimeDyldCOFFX86_64.h | 201 ObjSectionToIDMap &SectionMap) override { in finalizeLoad() argument 203 for (const auto &SectionPair : SectionMap) { in finalizeLoad()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
D | RuntimeDyldCOFFX86_64.h | 271 ObjSectionToIDMap &SectionMap) override { in finalizeLoad() argument 273 for (const auto &SectionPair : SectionMap) { in finalizeLoad()
|
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
D | MCAssembler.h | 678 DenseMap<const MCSection*, MCSectionData*> SectionMap; variable 876 MCSectionData *Entry = SectionMap.lookup(&Section); in getSectionData() 883 MCSectionData *&Entry = SectionMap[&Section];
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/DebugInfo/PDB/Native/ |
D | DbiStream.h | 115 FixedStreamArray<SecMapEntry> SectionMap; variable
|
D | DbiStreamBuilder.h | 126 ArrayRef<SecMapEntry> SectionMap; variable
|
/external/llvm/lib/DebugInfo/PDB/Raw/ |
D | DbiStream.cpp | 255 return SectionMap; in getSectionMap() 342 if (auto EC = SMReader.readArray(SectionMap, Header->SecCount)) in initializeSectionMapData()
|
/external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/ |
D | BitcodeWriter.cpp | 403 std::map<std::string, unsigned> SectionMap; in WriteModuleInfo() local 413 unsigned &Entry = SectionMap[GV->getSection()]; in WriteModuleInfo() 417 Entry = SectionMap.size(); in WriteModuleInfo() 425 unsigned &Entry = SectionMap[F->getSection()]; in WriteModuleInfo() 429 Entry = SectionMap.size(); in WriteModuleInfo() 461 if (SectionMap.empty()) // Section. in WriteModuleInfo() 465 Log2_32_Ceil(SectionMap.size()+1))); in WriteModuleInfo() 485 Vals.push_back(GV->hasSection() ? SectionMap[GV->getSection()] : 0); in WriteModuleInfo() 510 Vals.push_back(F->hasSection() ? SectionMap[F->getSection()] : 0); in WriteModuleInfo()
|