/frameworks/compile/mclinker/lib/Object/ |
SectionMap.cpp | 1 //===- SectionMap.cpp -----------------------------------------------------===// 9 #include "mcld/Object/SectionMap.h" 38 // SectionMap::Input 40 SectionMap::Input::Input(const std::string& pName, 59 SectionMap::Input::Input(const InputSectDesc& pInputDesc) 72 // SectionMap::Output 74 SectionMap::Output::Output(const std::string& pName) 95 SectionMap::Output::Output(const OutputSectDesc& pOutputDesc) 107 bool SectionMap::Output::hasContent() const { 111 SectionMap::Output::const_dot_iterato [all...] |
Android.mk | 6 SectionMap.cpp
|
ObjectBuilder.cpp | 21 #include "mcld/Object/SectionMap.h" 40 SectionMap::const_mapping pair = 41 m_Module.getScript().sectionMap().find("*", pName); 57 SectionMap::mapping pair = m_Module.getScript().sectionMap().find(
|
ObjectLinker.cpp | 309 SectionMap::iterator out, outBegin, outEnd; 310 outBegin = m_pModule->getScript().sectionMap().begin(); 311 outEnd = m_pModule->getScript().sectionMap().end(); 315 SectionMap::Output::iterator in, inBegin, inEnd; 407 SectionMap::iterator out, outBegin, outEnd; 408 outBegin = m_pModule->getScript().sectionMap().begin(); 409 outEnd = m_pModule->getScript().sectionMap().end(); 412 SectionMap::Output::iterator in, inBegin, inEnd; [all...] |
/frameworks/compile/mclinker/include/mcld/ |
LinkerScript.h | 16 #include "mcld/Object/SectionMap.h" 60 const SectionMap& sectionMap() const { return m_SectionMap; } 61 SectionMap& sectionMap() { return m_SectionMap; } 100 SectionMap m_SectionMap;
|
/frameworks/compile/mclinker/lib/Script/ |
Assignment.cpp | 89 SectionMap::reference out = script.sectionMap().back(); 93 SectionMap::iterator prev = 94 script.sectionMap().begin() + script.sectionMap().size() - 2; 133 SectionMap::Output::reference in = script.sectionMap().back()->back();
|
InputSectDesc.cpp | 103 pModule.getScript().sectionMap().insert(*this, m_OutputSectDesc);
|
Operand.cpp | 143 SectDescOperand::SectDescOperand(const SectionMap::Output* pOutputDesc) 153 const SectionMap::Output* pOutputDesc) {
|
/frameworks/compile/mclinker/include/mcld/Script/ |
Operand.h | 13 #include "mcld/Object/SectionMap.h" 159 explicit SectDescOperand(const SectionMap::Output* pOutputDesc); 164 const SectionMap::Output* outputDesc() const { return m_pOutputDesc; } 176 static SectDescOperand* create(const SectionMap::Output* pOutputDesc); 181 const SectionMap::Output* m_pOutputDesc;
|
RpnExpr.h | 13 #include "mcld/Object/SectionMap.h" 66 static RpnExpr* buildHelperExpr(SectionMap::iterator pIter);
|
/frameworks/compile/mclinker/include/mcld/Object/ |
ObjectBuilder.h | 47 /// @see SectionMap 50 /// by SectionMap. 61 /// @see SectionMap
|
SectionMap.h | 1 //===- SectionMap.h -------------------------------------------------------===// 26 /** \class SectionMap 29 class SectionMap { 158 ~SectionMap();
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
RuntimeDyldCheckerImpl.h | 40 typedef std::map<std::string, SectionAddressInfo> SectionMap; 41 typedef std::map<std::string, SectionMap> StubMap;
|
RuntimeDyldMachO.cpp | 213 ObjSectionToIDMap &SectionMap) { 226 TextSID = findOrEmitSection(Obj, Section, true, SectionMap); 228 EHFrameSID = findOrEmitSection(Obj, Section, false, SectionMap); 230 ExceptTabSID = findOrEmitSection(Obj, Section, true, SectionMap); 232 auto I = SectionMap.find(Section); 233 if (I != SectionMap.end())
|
/frameworks/compile/mclinker/lib/Target/ARM/ |
ARMEmulation.cpp | 38 pScript.sectionMap().insert(".ARM.exidx*", ".ARM.exidx"); 39 pScript.sectionMap().insert(".ARM.extab*", ".ARM.extab"); 40 pScript.sectionMap().insert(".ARM.attributes*", ".ARM.attributes");
|
/frameworks/compile/mclinker/lib/Target/ |
ELFEmulation.cpp | 77 std::pair<SectionMap::mapping, bool> res = 78 pScript.sectionMap().insert(map[i].from, map[i].to, map[i].policy); 85 pScript.sectionMap().insert("", "");
|
GNULDBackend.cpp | 35 #include "mcld/Object/SectionMap.h" [all...] |
/frameworks/compile/mclinker/lib/LD/ |
GarbageCollection.cpp | 42 // FIXME: these rules should be added into SectionMap, while currently adding to 43 // SectionMap will cause the output order change in .text section and leads to 183 // input sections and check the SectionMap to find the KEEP sections 185 SectionMap& sect_map = m_Module.getScript().sectionMap(); 194 SectionMap::Input* sm_input =
|
/external/google-breakpad/src/common/dwarf/ |
functioninfo.h | 118 const SectionMap& sections, 181 const SectionMap& sections_;
|
dwarf2reader_die_unittest.cc | 62 using dwarf2reader::SectionMap; 127 // function returns a reference to the same SectionMap each time; new 129 const SectionMap &MakeSectionMap() { 146 SectionMap section_map;
|
/external/google-breakpad/src/common/mac/ |
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
|
/external/llvm/lib/MC/ |
WinCOFFObjectWriter.cpp | 132 section_map SectionMap; 145 SectionMap.clear(); 341 SectionMap[&Sec] = coff_section; 415 COFFSection *Sec = SectionMap[Base->getFragment()->getParent()]; 670 assert(SectionMap.find(Section) != SectionMap.end() && 673 COFFSection *coff_section = SectionMap[Section]; 727 SectionMap.find(TargetSection) != SectionMap.end() && 729 Reloc.Symb = SectionMap[TargetSection]->Symbol [all...] |
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/ |
RuntimeDyldCOFFX86_64.h | 193 ObjSectionToIDMap &SectionMap) override { 195 for (const auto &SectionPair : SectionMap) {
|
/packages/apps/Launcher3/src/com/android/launcher3/allapps/ |
AlphabeticalAppsList.java | 362 TreeMap<String, ArrayList<AppInfo>> sectionMap = null; 367 sectionMap = new TreeMap<>(mAppNameComparator.getSectionNameComparator()); 373 ArrayList<AppInfo> sectionApps = sectionMap.get(sectionName); 376 sectionMap.put(sectionName, sectionApps); 383 for (Map.Entry<String, ArrayList<AppInfo>> entry : sectionMap.entrySet()) {
|
/external/google-breakpad/src/common/ |
dwarf_cu_to_module.h | 93 const dwarf2reader::SectionMap& section_map() const; 112 dwarf2reader::SectionMap section_map_;
|