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

1 2

  /frameworks/compile/mclinker/lib/Target/AArch64/
AArch64ELFMCLinker.cpp 12 #include <mcld/Object/SectionMap.h>
  /frameworks/compile/mclinker/lib/Object/
SectionMap.cpp 1 //===- SectionMap.cpp -----------------------------------------------------===//
9 #include <mcld/Object/SectionMap.h>
34 // SectionMap::Input
36 SectionMap::Input::Input(const std::string& pName,
56 SectionMap::Input::Input(const InputSectDesc& pInputDesc)
70 // SectionMap::Output
72 SectionMap::Output::Output(const std::string& pName)
95 SectionMap::Output::Output(const OutputSectDesc& pOutputDesc)
108 bool SectionMap::Output::hasContent() const
113 SectionMap::Output::const_dot_iterato
    [all...]
Android.mk 6 SectionMap.cpp
ObjectBuilder.cpp 14 #include <mcld/Object/SectionMap.h>
41 SectionMap::const_mapping pair =
42 m_Module.getScript().sectionMap().find("*", pName);
59 SectionMap::mapping pair =
60 m_Module.getScript().sectionMap().find(pInputFile.path().native(),
  /frameworks/compile/mclinker/include/mcld/
LinkerScript.h 17 #include <mcld/Object/SectionMap.h>
55 const SectionMap& sectionMap() const { return m_SectionMap; }
56 SectionMap& sectionMap() { return m_SectionMap; }
92 SectionMap m_SectionMap;
  /frameworks/compile/mclinker/include/mcld/Script/
RpnExpr.h 14 #include <mcld/Object/SectionMap.h>
67 static RpnExpr* buildHelperExpr(SectionMap::iterator pIter);
Operand.h 13 #include <mcld/Object/SectionMap.h>
173 SectDescOperand(const SectionMap::Output* pOutputDesc);
178 const SectionMap::Output* outputDesc() const { return m_pOutputDesc; }
192 static SectDescOperand* create(const SectionMap::Output* pOutputDesc);
197 const SectionMap::Output* m_pOutputDesc;
  /frameworks/compile/mclinker/lib/Script/
Assignment.cpp 90 SectionMap::reference out = script.sectionMap().back();
94 SectionMap::iterator prev = script.sectionMap().begin() +
95 script.sectionMap().size() - 2;
131 SectionMap::Output::reference in = script.sectionMap().back()->back();
RpnExpr.cpp 88 RpnExpr* RpnExpr::buildHelperExpr(SectionMap::iterator pIter)
Operand.cpp 167 SectDescOperand::SectDescOperand(const SectionMap::Output* pOutputDesc)
178 SectDescOperand* SectDescOperand::create(const SectionMap::Output* pOutputDesc)
UnaryOp.cpp 11 #include <mcld/Object/SectionMap.h>
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldMachO.h 106 ObjSectionToIDMap &SectionMap) override;
RuntimeDyldELF.h 120 ObjSectionToIDMap &SectionMap) override;
RuntimeDyldImpl.h 405 virtual void finalizeLoad(ObjectImage &ObjImg, ObjSectionToIDMap &SectionMap) {}
  /frameworks/compile/mclinker/lib/Target/
ELFEmulation.cpp 79 std::pair<SectionMap::mapping, bool> res =
80 pScript.sectionMap().insert(map[i].from, map[i].to, map[i].policy);
87 pScript.sectionMap().insert("", "");
GNULDBackend.cpp 38 #include <mcld/Object/SectionMap.h>
    [all...]
  /frameworks/compile/mclinker/include/mcld/Object/
SectionMap.h 1 //===- SectionMap.h -------------------------------------------------------===//
24 /** \class SectionMap
27 class SectionMap
157 ~SectionMap();
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 137 section_map SectionMap;
393 SectionMap[&SectionData.getSection()] = coff_section;
471 SectionMap[&BaseData.Fragment->getParent()->getSection()];
717 assert(SectionMap.find(&SectionData->getSection()) != SectionMap.end() &&
722 COFFSection *coff_section = SectionMap[&SectionData->getSection()];
904 COFFSection *Sec = SectionMap[&Section.getSection()];
    [all...]
  /frameworks/compile/mclinker/lib/LD/
GarbageCollection.cpp 41 // FIXME: these rules should be added into SectionMap, while currently adding to
42 // SectionMap will cause the output order change in .text section and leads to
195 // input sections and check the SectionMap to find the KEEP sections
197 SectionMap& sect_map = m_Module.getScript().sectionMap();
206 SectionMap::Input* sm_input =
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.h 21 class SectionMap;
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 573 std::map<std::string, unsigned> SectionMap;
582 unsigned &Entry = SectionMap[GV.getSection()];
586 Entry = SectionMap.size();
594 unsigned &Entry = SectionMap[F.getSection()];
598 Entry = SectionMap.size();
630 if (SectionMap.empty()) // Section.
634 Log2_32_Ceil(SectionMap.size()+1)));
653 Vals.push_back(GV.hasSection() ? SectionMap[GV.getSection()] : 0);
683 Vals.push_back(F.hasSection() ? SectionMap[F.getSection()] : 0);
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 434 std::map<std::string, unsigned> SectionMap;
445 unsigned &Entry = SectionMap[GV->getSection()];
449 Entry = SectionMap.size();
455 unsigned &Entry = SectionMap[F->getSection()];
459 Entry = SectionMap.size();
491 if (SectionMap.empty()) // Section.
495 Log2_32_Ceil(SectionMap.size()+1)));
515 Vals.push_back(GV->hasSection() ? SectionMap[GV->getSection()] : 0);
540 Vals.push_back(F->hasSection() ? SectionMap[F->getSection()] : 0);
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 388 std::map<std::string, unsigned> SectionMap;
399 unsigned &Entry = SectionMap[GV->getSection()];
403 Entry = SectionMap.size();
409 unsigned &Entry = SectionMap[F->getSection()];
413 Entry = SectionMap.size();
445 if (SectionMap.empty()) // Section.
449 Log2_32_Ceil(SectionMap.size()+1)));
469 Vals.push_back(GV->hasSection() ? SectionMap[GV->getSection()] : 0);
494 Vals.push_back(F->hasSection() ? SectionMap[F->getSection()] : 0);
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 404 std::map<std::string, unsigned> SectionMap;
414 unsigned &Entry = SectionMap[GV->getSection()];
418 Entry = SectionMap.size();
426 unsigned &Entry = SectionMap[F->getSection()];
430 Entry = SectionMap.size();
462 if (SectionMap.empty()) // Section.
466 Log2_32_Ceil(SectionMap.size()+1)));
486 Vals.push_back(GV->hasSection() ? SectionMap[GV->getSection()] : 0);
512 Vals.push_back(F->hasSection() ? SectionMap[F->getSection()] : 0);
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 881 DenseMap<const MCSection*, MCSectionData*> SectionMap;
    [all...]

Completed in 541 milliseconds

1 2