Searched defs:SectionMap (Results 1 - 5 of 5) sorted by relevance

/frameworks/compile/mclinker/include/mcld/Object/
H A DSectionMap.h1 //===- SectionMap.h -------------------------------------------------------===//
26 /** \class SectionMap
29 class SectionMap { class in namespace:mcld
158 ~SectionMap();
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp1 //===- 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
[all...]
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriter.cpp399 std::map<std::string, unsigned> SectionMap; local
408 unsigned &Entry = SectionMap[GV.getSection()];
412 Entry = SectionMap.size();
420 unsigned &Entry = SectionMap[F.getSection()];
424 Entry = SectionMap.size();
456 if (SectionMap.empty()) // Section.
460 Log2_32_Ceil(SectionMap.size()+1)));
479 Vals.push_back(GV.hasSection() ? SectionMap[GV.getSection()] : 0);
504 Vals.push_back(F.hasSection() ? SectionMap[F.getSection()] : 0);
/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriter.cpp397 std::map<std::string, unsigned> SectionMap; local
406 unsigned &Entry = SectionMap[GV.getSection()];
410 Entry = SectionMap.size();
418 unsigned &Entry = SectionMap[F.getSection()];
422 Entry = SectionMap.size();
454 if (SectionMap.empty()) // Section.
458 Log2_32_Ceil(SectionMap.size()+1)));
477 Vals.push_back(GV.hasSection() ? SectionMap[GV.getSection()] : 0);
502 Vals.push_back(F.hasSection() ? SectionMap[F.getSection()] : 0);
/frameworks/compile/slang/BitWriter_3_2/
H A DBitcodeWriter.cpp410 std::map<std::string, unsigned> SectionMap; local
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)));
490 Vals.push_back(GV.hasSection() ? SectionMap[GV.getSection()] : 0);
517 Vals.push_back(F.hasSection() ? SectionMap[F.getSection()] : 0);

Completed in 1972 milliseconds