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

/frameworks/compile/mclinker/include/mcld/Object/
H A DSectionMap.h1 //===- SectionMap.h -------------------------------------------------------===//
24 /** \class SectionMap
27 class SectionMap class in namespace:mcld
157 ~SectionMap();
/frameworks/compile/mclinker/lib/Object/
H A DSectionMap.cpp1 //===- 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
[all...]
/frameworks/compile/slang/BitWriter_2_9/
H A DBitcodeWriter.cpp434 std::map<std::string, unsigned> SectionMap; local
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);
/frameworks/compile/slang/BitWriter_2_9_func/
H A DBitcodeWriter.cpp388 std::map<std::string, unsigned> SectionMap; local
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);
/frameworks/compile/slang/BitWriter_3_2/
H A DBitcodeWriter.cpp404 std::map<std::string, unsigned> SectionMap; local
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);

Completed in 1550 milliseconds