HomeSort by relevance Sort by last modified time
    Searched refs:SectionMap (Results 1 - 20 of 20) 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_Config.scripts().sectionMap().find(pName);
54 const SectionMap::NamePair& pair =
55 m_Config.scripts().sectionMap().find(pInputSection.name());
  /frameworks/compile/mclinker/include/mcld/
ScriptOptions.h 19 #include <mcld/Object/SectionMap.h>
48 const SectionMap& sectionMap() const { return m_SectionMap; }
49 SectionMap& sectionMap() { return m_SectionMap; }
54 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/LD/
SectionRules.h 24 class SectionMap;
76 const SectionMap& m_SectionNameMap;
  /frameworks/compile/mclinker/lib/LD/
SectionRules.cpp 16 #include <mcld/Object/SectionMap.h>
37 : m_SectionNameMap(pConfig.scripts().sectionMap()),
103 // Based on SectionMap to initialize the map from a input substr to its
105 SectionMap::const_iterator it;
  /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 136 section_map SectionMap;
408 SectionMap[&SectionData.getSection()] = coff_section;
463 SectionMap[&SymbolData.Fragment->getParent()->getSection()];
644 assert(SectionMap.find(&SectionData->getSection()) != SectionMap.end() &&
649 COFFSection *coff_section = SectionMap[&SectionData->getSection()];
771 COFFSection *Sec = SectionMap[&i->getSection()];
MCAssembler.cpp 283 SectionMap.clear();
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 850 DenseMap<const MCSection*, MCSectionData*> SectionMap;
    [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 452 std::map<std::string, unsigned> SectionMap;
462 unsigned &Entry = SectionMap[GV->getSection()];
466 Entry = SectionMap.size();
474 unsigned &Entry = SectionMap[F->getSection()];
478 Entry = SectionMap.size();
510 if (SectionMap.empty()) // Section.
514 Log2_32_Ceil(SectionMap.size()+1)));
534 Vals.push_back(GV->hasSection() ? SectionMap[GV->getSection()] : 0);
560 Vals.push_back(F->hasSection() ? SectionMap[F->getSection()] : 0);
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 435 std::map<std::string, unsigned> SectionMap;
446 unsigned &Entry = SectionMap[GV->getSection()];
450 Entry = SectionMap.size();
456 unsigned &Entry = SectionMap[F->getSection()];
460 Entry = SectionMap.size();
492 if (SectionMap.empty()) // Section.
496 Log2_32_Ceil(SectionMap.size()+1)));
516 Vals.push_back(GV->hasSection() ? SectionMap[GV->getSection()] : 0);
541 Vals.push_back(F->hasSection() ? SectionMap[F->getSection()] : 0);
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 389 std::map<std::string, unsigned> SectionMap;
400 unsigned &Entry = SectionMap[GV->getSection()];
404 Entry = SectionMap.size();
410 unsigned &Entry = SectionMap[F->getSection()];
414 Entry = SectionMap.size();
446 if (SectionMap.empty()) // Section.
450 Log2_32_Ceil(SectionMap.size()+1)));
470 Vals.push_back(GV->hasSection() ? SectionMap[GV->getSection()] : 0);
495 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 319 SetVector<const MCSection*> SectionMap;
DwarfDebug.cpp 803 SectionMap.insert(Asm->getObjFileLowering().getTextSection());
    [all...]

Completed in 609 milliseconds