HomeSort by relevance Sort by last modified time
    Searched defs:Sections (Results 1 - 15 of 15) sorted by null

  /external/llvm/include/llvm/Object/
COFFYAML.h 74 std::vector<Section> Sections;
MachO.h 157 // In a MachO file, sections have a segment name. This is used in the .o
240 SectionList Sections;
ELFYAML.h 109 std::vector<std::unique_ptr<Section>> Sections;
  /external/llvm/tools/obj2yaml/
coff2yaml.cpp 53 std::vector<COFFYAML::Section> &Sections = YAMLObj.Sections;
54 for (const auto &Section : Obj.sections()) {
77 Sections.push_back(Sec);
  /external/jhead/
jpgfile.c 18 static Section_t * Sections = NULL;
109 // Check sections array to see if it needs to be increased in size.
118 Sections = (Section_t *)realloc(Sections, sizeof(Section_t)*SectionsAllocated);
119 if (Sections == NULL){
158 Sections[SectionsRead].Type = marker;
159 Sections[SectionsRead].Offset = ftell(infile);
173 Sections[SectionsRead].Size = itemlen;
181 Sections[SectionsRead].Data = Data;
224 Sections[SectionsRead].Data = Data
    [all...]
  /external/llvm/lib/ExecutionEngine/RuntimeDyld/
RuntimeDyldImpl.h 103 SectionPair Sections;
132 Sections.SectionA = SectionA;
133 Sections.SectionB = SectionB;
175 // A list of all sections emitted by the dynamic linker. These sections are
178 SectionList Sections;
183 // Keep a map of sections from object file to the SectionID which
204 // Relocations to sections already loaded. Indexed by SectionID which is the
219 // True if all sections should be passed to the memory manager, false if only
220 // sections containing relocations should be. Defaults to 'false'
    [all...]
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 553 auto &Sections = getContext().getGenDwarfSectionSyms();
554 auto InsertResult = Sections.insert(
  /external/llvm/tools/llvm-objdump/
MachODump.cpp 152 std::vector<SectionRef> &Sections,
159 for (const SectionRef &Section : MachOObj->sections()) {
162 Sections.push_back(Section);
252 std::vector<SectionRef> Sections;
257 getSectionsAndSymbols(Header, MachOOF, Sections, Symbols, FoundFns,
266 Sections[0].getAddress(BaseAddress);
289 // get the sections and supply it to the section name parsing machinery.
304 for (unsigned SectIdx = 0; SectIdx != Sections.size(); SectIdx++) {
307 Sections[SectIdx].isText(SectIsText);
312 if (Sections[SectIdx].getName(SectName) |
    [all...]
  /external/llvm/lib/MC/
MCDwarf.cpp 567 auto &Sections = context.getGenDwarfSectionSyms();
586 Length += 2 * AddrSize * Sections.size();
612 for (const auto &sec : Sections) {
685 // There are multiple sections containing code, so we must use the
686 // .debug_ranges sections.
696 auto &Sections = context.getGenDwarfSectionSyms();
697 const auto TextSection = Sections.begin();
698 assert(TextSection != Sections.end() && "No text section found");
800 // executable sections of this file.
803 auto &Sections = context.getGenDwarfSectionSyms()
    [all...]
WinCOFFObjectWriter.cpp 123 typedef std::vector<std::unique_ptr<COFFSection>> sections; typedef in class:__anon5446::WinCOFFObjectWriter
132 sections Sections;
222 assert(Section->Number != -1 && "Sections with relocations must be real!");
326 return createCOFFEntity<COFFSection>(Name, Sections);
354 report_fatal_error("two sections have the same comdat");
474 report_fatal_error("conflicting sections for symbol");
835 for (auto & Section : Sections) {
869 // Fixup associative COMDAT sections.
870 for (auto & Section : Sections) {
    [all...]
ELFObjectWriter.cpp 246 /// \param NumRegularSections - Number of non-relocation sections.
268 // Create the sections that show up in the symbol table. Currently
269 // those are the .note.GNU-stack section and the group sections.
285 std::vector<const MCSectionELF*> &Sections);
767 // only handle section relocations to mergeable sections if using RELA.
848 Fixup.getLoc(), "Cannot represent a difference across sections");
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 874 iplist<MCSectionData> Sections;
878 /// The map of sections to their associated assembler backend data.
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.cpp 64 GenerateGnuPubSections("generate-gnu-dwarf-pub-sections", cl::Hidden,
94 DwarfPubSections("generate-dwarf-pub-sections", cl::Hidden,
95 cl::desc("Generate DWARF pubnames and pubtypes sections"),
264 // Helper for sorting sections into a stable output order.
724 // Emit all Dwarf sections that should come prior to the content. Create
725 // global DIEs and emit initial debug info sections. This is invoked by
742 // Emit initial sections so we can reference labels later.
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/
dbghelp.h 37 PIMAGE_SECTION_HEADER Sections;
    [all...]
  /external/mesa3d/src/gallium/auxiliary/util/
dbghelp.h 37 PIMAGE_SECTION_HEADER Sections;
    [all...]

Completed in 2048 milliseconds