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

1 2

  /frameworks/compile/mclinker/lib/Object/
SectionMap.cpp 1 //===- 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::Output::const_dot_iterato
    [all...]
ObjectBuilder.cpp 21 #include "mcld/Object/SectionMap.h"
40 SectionMap::const_mapping pair =
41 m_Module.getScript().sectionMap().find("*", pName);
57 SectionMap::mapping pair = m_Module.getScript().sectionMap().find(
  /frameworks/compile/mclinker/include/mcld/
LinkerScript.h 16 #include "mcld/Object/SectionMap.h"
60 const SectionMap& sectionMap() const { return m_SectionMap; }
61 SectionMap& sectionMap() { return m_SectionMap; }
100 SectionMap m_SectionMap;
  /frameworks/compile/mclinker/include/mcld/Script/
Operand.h 13 #include "mcld/Object/SectionMap.h"
159 explicit SectDescOperand(const SectionMap::Output* pOutputDesc);
164 const SectionMap::Output* outputDesc() const { return m_pOutputDesc; }
176 static SectDescOperand* create(const SectionMap::Output* pOutputDesc);
181 const SectionMap::Output* m_pOutputDesc;
RpnExpr.h 13 #include "mcld/Object/SectionMap.h"
66 static RpnExpr* buildHelperExpr(SectionMap::iterator pIter);
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldCheckerImpl.h 39 typedef std::map<std::string, SectionAddressInfo> SectionMap;
40 typedef std::map<std::string, SectionMap> StubMap;
RuntimeDyldMachO.cpp 227 ObjSectionToIDMap &SectionMap) {
240 if (auto TextSIDOrErr = findOrEmitSection(Obj, Section, true, SectionMap))
246 SectionMap))
252 SectionMap))
257 auto I = SectionMap.find(Section);
258 if (I != SectionMap.end())
RuntimeDyldMachO.h 159 ObjSectionToIDMap &SectionMap) override;
  /frameworks/compile/mclinker/lib/Script/
Assignment.cpp 89 SectionMap::reference out = script.sectionMap().back();
93 SectionMap::iterator prev =
94 script.sectionMap().begin() + script.sectionMap().size() - 2;
133 SectionMap::Output::reference in = script.sectionMap().back()->back();
RpnExpr.cpp 80 RpnExpr* RpnExpr::buildHelperExpr(SectionMap::iterator pIter) {
Operand.cpp 143 SectDescOperand::SectDescOperand(const SectionMap::Output* pOutputDesc)
153 const SectionMap::Output* pOutputDesc) {
  /external/google-breakpad/src/common/dwarf/
functioninfo.h 118 const SectionMap& sections,
181 const SectionMap& sections_;
dwarf2reader.h 61 typedef std::map<string, std::pair<const char*, uint64> > SectionMap;
224 CompilationUnit(const SectionMap& sections, uint64 offset,
308 const SectionMap& sections_;
    [all...]
dwarf2reader_die_unittest.cc 62 using dwarf2reader::SectionMap;
127 // function returns a reference to the same SectionMap each time; new
129 const SectionMap &MakeSectionMap() {
146 SectionMap section_map;
functioninfo.cc 166 SectionMap::const_iterator iter = sections_.find("__debug_line");
  /external/google-breakpad/src/common/mac/
dump_syms.h 138 const mach_o::SectionMap &dwarf_sections,
macho_reader.h 222 typedef map<string, Section> SectionMap;
418 bool MapSegmentSections(const Segment &segment, SectionMap *section_map)
macho_reader.cc 511 // A SectionHandler that builds a SectionMap for the sections within a
517 SectionMapper(SectionMap *map) : map_(map) { }
524 SectionMap *map_;
528 SectionMap *section_map) const {
  /external/google-breakpad/src/common/
dwarf_cu_to_module.h 93 const dwarf2reader::SectionMap& section_map() const;
112 dwarf2reader::SectionMap section_map_;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
RuntimeDyldCOFFX86_64.h 201 ObjSectionToIDMap &SectionMap) override {
203 for (const auto &SectionPair : SectionMap) {
  /frameworks/compile/mclinker/lib/Target/
ELFEmulation.cpp 77 std::pair<SectionMap::mapping, bool> res =
78 pScript.sectionMap().insert(map[i].from, map[i].to, map[i].policy);
85 pScript.sectionMap().insert("", "");
  /external/llvm/lib/MC/
WinCOFFObjectWriter.cpp 131 section_map SectionMap;
144 SectionMap.clear();
340 SectionMap[&Sec] = coff_section;
379 Sec = SectionMap[Base->getFragment()->getParent()];
675 assert(SectionMap.find(Section) != SectionMap.end() &&
678 COFFSection *coff_section = SectionMap[Section];
732 SectionMap.find(TargetSection) != SectionMap.end() &&
734 Reloc.Symb = SectionMap[TargetSection]->Symbol
    [all...]
  /frameworks/compile/mclinker/include/mcld/Object/
SectionMap.h 1 //===- SectionMap.h -------------------------------------------------------===//
26 /** \class SectionMap
29 class SectionMap {
158 ~SectionMap();
  /external/swiftshader/third_party/LLVM/lib/MC/
WinCOFFObjectWriter.cpp 139 section_map SectionMap;
408 SectionMap[&SectionData.getSection()] = coff_section;
465 SectionMap[&SymbolData.Fragment->getParent()->getSection()];
649 assert(SectionMap.find(&SectionData->getSection()) != SectionMap.end() &&
654 COFFSection *coff_section = SectionMap[&SectionData->getSection()];
793 COFFSection *Sec = SectionMap[&i->getSection()];
  /device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/
IniToXml.py 312 SectionMap = {
339 if SectionName not in SectionMap:
349 Map = SectionMap[SectionName]

Completed in 356 milliseconds

1 2