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

12

  /external/llvm/include/llvm/DebugInfo/PDB/Raw/
DbiStream.h 135 codeview::FixedStreamArray<SecMapEntry> SectionMap;
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldELF.h 178 ObjSectionToIDMap &SectionMap) override;
RuntimeDyldImpl.h 490 ObjSectionToIDMap &SectionMap) {
RuntimeDyldELF.cpp     [all...]
  /frameworks/compile/mclinker/lib/LD/
GarbageCollection.cpp 42 // FIXME: these rules should be added into SectionMap, while currently adding to
43 // SectionMap will cause the output order change in .text section and leads to
183 // input sections and check the SectionMap to find the KEEP sections
185 SectionMap& sect_map = m_Module.getScript().sectionMap();
194 SectionMap::Input* sm_input =
  /external/swiftshader/third_party/LLVM/include/llvm/MC/
MCAssembler.h 678 DenseMap<const MCSection*, MCSectionData*> SectionMap;
876 MCSectionData *Entry = SectionMap.lookup(&Section);
883 MCSectionData *&Entry = SectionMap[&Section];
  /external/llvm/lib/DebugInfo/PDB/Raw/
DbiStream.cpp 255 return SectionMap;
342 if (auto EC = SMReader.readArray(SectionMap, Header->SecCount))
  /frameworks/compile/mclinker/lib/Object/
ObjectLinker.cpp 309 SectionMap::iterator out, outBegin, outEnd;
310 outBegin = m_pModule->getScript().sectionMap().begin();
311 outEnd = m_pModule->getScript().sectionMap().end();
315 SectionMap::Output::iterator in, inBegin, inEnd;
407 SectionMap::iterator out, outBegin, outEnd;
408 outBegin = m_pModule->getScript().sectionMap().begin();
409 outEnd = m_pModule->getScript().sectionMap().end();
412 SectionMap::Output::iterator in, inBegin, inEnd;
    [all...]
  /frameworks/compile/mclinker/lib/Target/Mips/
MipsLDBackend.h 25 class SectionMap;
  /frameworks/compile/mclinker/lib/Target/
GNULDBackend.cpp 35 #include "mcld/Object/SectionMap.h"
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Bitcode/Writer/
BitcodeWriter.cpp 403 std::map<std::string, unsigned> SectionMap;
413 unsigned &Entry = SectionMap[GV->getSection()];
417 Entry = SectionMap.size();
425 unsigned &Entry = SectionMap[F->getSection()];
429 Entry = SectionMap.size();
461 if (SectionMap.empty()) // Section.
465 Log2_32_Ceil(SectionMap.size()+1)));
485 Vals.push_back(GV->hasSection() ? SectionMap[GV->getSection()] : 0);
510 Vals.push_back(F->hasSection() ? SectionMap[F->getSection()] : 0);
    [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp 399 std::map<std::string, unsigned> SectionMap;
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);
    [all...]
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriter.cpp 397 std::map<std::string, unsigned> SectionMap;
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);
    [all...]
  /frameworks/compile/slang/BitWriter_3_2/
BitcodeWriter.cpp 410 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)));
490 Vals.push_back(GV.hasSection() ? SectionMap[GV.getSection()] : 0);
517 Vals.push_back(F.hasSection() ? SectionMap[F.getSection()] : 0);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
DwarfDebug.h 221 /// SectionMap - Provides a unique id per text section.
223 UniqueVector<const MCSection*> SectionMap;
DwarfDebug.cpp 650 SectionMap.insert(Asm->getObjFileLowering().getTextSection());
716 for (unsigned i = 1, N = SectionMap.size(); i <= N; ++i) {
717 Asm->OutStreamer.SwitchSection(SectionMap[i]);
    [all...]
  /external/google-breakpad/src/common/
dwarf_cu_to_module.cc 151 const dwarf2reader::SectionMap&
805 const dwarf2reader::SectionMap &section_map
807 dwarf2reader::SectionMap::const_iterator map_entry
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /external/google-breakpad/src/common/dwarf/
dwarf2reader.cc 54 CompilationUnit::CompilationUnit(const SectionMap& sections, uint64 offset,
75 SectionMap::const_iterator iter = sections_.find(".debug_abbrev");
256 SectionMap::const_iterator iter = sections_.find(".debug_info");
    [all...]
  /external/google-breakpad/src/common/mac/
macho_reader_unittest.cc 52 using mach_o::SectionMap;
    [all...]
  /device/google/contexthub/util/nanoapp_postprocess/
postprocess_elf.c 544 const struct SectionMap {
547 } sectionMap[] = {
568 for (size_t i = 0; i < ARRAY_SIZE(sectionMap); i++) {
569 if (strcmp(name, sectionMap[i].name) != 0) {
572 appSection = (struct ElfAppSection *) &appBytes[sectionMap[i].offset];
    [all...]
  /external/google-breakpad/src/common/linux/
dump_symbols.cc 259 dwarf2reader::SectionMap::const_iterator debug_info_entry =
    [all...]

Completed in 5737 milliseconds

12