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

  /frameworks/compile/mclinker/lib/Object/
SectionMap.cpp 1 //===- SectionMap.cpp -----------------------------------------------------===//
9 #include <mcld/Object/SectionMap.h>
17 SectionMap::NamePair SectionMap::NullName;
20 // SectionMap::NamePair
22 SectionMap::NamePair::NamePair()
26 SectionMap::NamePair::NamePair(const std::string& pFrom, const std::string& pTo)
28 hash = SectionMap::hash(pFrom);
31 bool SectionMap::NamePair::isNull() const
37 // SectionMap
    [all...]
Android.mk 6 SectionMap.cpp
ObjectBuilder.cpp 14 #include <mcld/Object/SectionMap.h>
43 const SectionMap::NamePair& pair = m_Module.getScript().sectionMap().find(pName);
54 const SectionMap::NamePair& pair =
55 m_Module.getScript().sectionMap().find(pInputSection.name());
  /frameworks/compile/mclinker/include/mcld/
LinkerScript.h 19 #include <mcld/Object/SectionMap.h>
53 const SectionMap& sectionMap() const { return m_SectionMap; }
54 SectionMap& sectionMap() { return m_SectionMap; }
73 SectionMap m_SectionMap;
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMELFMCLinker.cpp 12 #include <mcld/Object/SectionMap.h>
ARMLDBackend.h 23 class SectionMap;
  /frameworks/compile/mclinker/lib/Target/
ELFMCLinker.cpp 11 #include <mcld/Object/SectionMap.h>
  /frameworks/compile/mclinker/include/mcld/Object/
SectionMap.h 1 //===- SectionMap.h -------------------------------------------------------===//
22 /** \class SectionMap
26 class SectionMap
29 // a mapping in SectionMap is the triple of
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.h 19 class SectionMap;
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 137 section_map SectionMap;
408 SectionMap[&SectionData.getSection()] = coff_section;
468 SectionMap[&ResSymData.Fragment->getParent()->getSection()];
650 assert(SectionMap.find(&SectionData->getSection()) != SectionMap.end() &&
655 COFFSection *coff_section = SectionMap[&SectionData->getSection()];
775 COFFSection *Assoc = SectionMap.lookup(MCSec.getAssocSection());
800 COFFSection *Sec = SectionMap[&i->getSection()];
MCAssembler.cpp 313 SectionMap.clear();
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 856 DenseMap<const MCSection*, MCSectionData*> SectionMap;
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 535 std::map<std::string, unsigned> SectionMap;
545 unsigned &Entry = SectionMap[GV->getSection()];
549 Entry = SectionMap.size();
557 unsigned &Entry = SectionMap[F->getSection()];
561 Entry = SectionMap.size();
593 if (SectionMap.empty()) // Section.
597 Log2_32_Ceil(SectionMap.size()+1)));
617 Vals.push_back(GV->hasSection() ? SectionMap[GV->getSection()] : 0);
643 Vals.push_back(F->hasSection() ? SectionMap[F->getSection()] : 0);
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 439 std::map<std::string, unsigned> SectionMap;
450 unsigned &Entry = SectionMap[GV->getSection()];
454 Entry = SectionMap.size();
460 unsigned &Entry = SectionMap[F->getSection()];
464 Entry = SectionMap.size();
496 if (SectionMap.empty()) // Section.
500 Log2_32_Ceil(SectionMap.size()+1)));
520 Vals.push_back(GV->hasSection() ? SectionMap[GV->getSection()] : 0);
545 Vals.push_back(F->hasSection() ? SectionMap[F->getSection()] : 0);
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 393 std::map<std::string, unsigned> SectionMap;
404 unsigned &Entry = SectionMap[GV->getSection()];
408 Entry = SectionMap.size();
414 unsigned &Entry = SectionMap[F->getSection()];
418 Entry = SectionMap.size();
450 if (SectionMap.empty()) // Section.
454 Log2_32_Ceil(SectionMap.size()+1)));
474 Vals.push_back(GV->hasSection() ? SectionMap[GV->getSection()] : 0);
499 Vals.push_back(F->hasSection() ? SectionMap[F->getSection()] : 0);
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 409 std::map<std::string, unsigned> SectionMap;
419 unsigned &Entry = SectionMap[GV->getSection()];
423 Entry = SectionMap.size();
431 unsigned &Entry = SectionMap[F->getSection()];
435 Entry = SectionMap.size();
467 if (SectionMap.empty()) // Section.
471 Log2_32_Ceil(SectionMap.size()+1)));
491 Vals.push_back(GV->hasSection() ? SectionMap[GV->getSection()] : 0);
517 Vals.push_back(F->hasSection() ? SectionMap[F->getSection()] : 0);
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 336 SetVector<const MCSection*> SectionMap;
DwarfDebug.cpp     [all...]

Completed in 325 milliseconds