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

/frameworks/compile/mclinker/lib/LD/
H A DSectionMap.cpp1 //===- SectionMap.cpp -----------------------------------------------------===//
11 #include <mcld/LD/SectionMap.h>
16 // SectionMap
17 SectionMap::SectionMap() function in class:SectionMap
21 SectionMap::~SectionMap()
25 const std::string& SectionMap::getOutputSectName(const std::string& pInput)
43 bool SectionMap::push_back(const std::string& pInput,
62 SectionMap
[all...]
/frameworks/compile/mclinker/include/mcld/LD/
H A DSectionMap.h1 //===- SectionMap.h -------------------------------------------------------===//
22 /** \class SectionMap
26 class SectionMap class in namespace:mcld
29 // a mapping in SectionMap is the triple of
42 SectionMap();
43 ~SectionMap();
83 // to SectionMap
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriter.cpp453 std::map<std::string, unsigned> SectionMap; local
464 unsigned &Entry = SectionMap[GV->getSection()];
468 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);
559 Vals.push_back(F->hasSection() ? SectionMap[F->getSection()] : 0);
/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriter.cpp406 std::map<std::string, unsigned> SectionMap; local
416 unsigned &Entry = SectionMap[GV->getSection()];
420 Entry = SectionMap.size();
428 unsigned &Entry = SectionMap[F->getSection()];
432 Entry = SectionMap.size();
464 if (SectionMap.empty()) // Section.
468 Log2_32_Ceil(SectionMap.size()+1)));
488 Vals.push_back(GV->hasSection() ? SectionMap[GV->getSection()] : 0);
513 Vals.push_back(F->hasSection() ? SectionMap[F->getSection()] : 0);

Completed in 826 milliseconds