Searched refs:Sections (Results 26 - 50 of 63) sorted by relevance

123

/external/llvm/tools/obj2yaml/
H A Delf2yaml.cpp96 Y->Sections.push_back(std::unique_ptr<ELFYAML::Section>(S.get()));
103 Y->Sections.push_back(std::unique_ptr<ELFYAML::Section>(S.get()));
110 Y->Sections.push_back(std::unique_ptr<ELFYAML::Section>(G.get()));
117 Y->Sections.push_back(std::unique_ptr<ELFYAML::Section>(G.get()));
124 Y->Sections.push_back(std::unique_ptr<ELFYAML::Section>(S.get()));
131 Y->Sections.push_back(std::unique_ptr<ELFYAML::Section>(S.get()));
H A Dmacho2yaml.cpp88 std::vector<MachOYAML::Section> &Sections,
98 Sections.push_back(constructSection(Sec));
100 Sections.push_back(constructSection(*Curr));
118 LoadCmd, LC.Sections, Obj.isLittleEndian());
126 LoadCmd, LC.Sections, Obj.isLittleEndian());
87 extractSections(const llvm::object::MachOObjectFile::LoadCommandInfo &LoadCmd, std::vector<MachOYAML::Section> &Sections, bool IsLittleEndian) argument
/external/llvm/test/MC/ARM/
H A Deh-compact-pr1.s27 @ CHECK: Sections [
H A Deh-compact-pr0.s40 @ CHECK: Sections [
H A Deh-directive-text-section-multiple-func.s33 @ CHECK: Sections [
H A Deh-directive-text-section.s26 @ CHECK: Sections [
H A Deh-directive-section-comdat.s43 @ CHECK: Sections [
H A Deh-directive-section-multiple-func.s45 @ CHECK: Sections [
H A Deh-directive-section.s51 @ CHECK: Sections [
/external/llvm/lib/MC/
H A DWinCOFFObjectWriter.cpp126 sections Sections; member in class:__anon12746::WinCOFFObjectWriter
141 Sections.clear();
252 return createCOFFEntity<COFFSection>(Name, Sections);
805 size_t SectionsSize = Sections.size();
817 for (const auto &Section : Sections) {
866 for (const auto &S : Sections)
875 for (const auto &S : Sections)
892 for (auto &Section : Sections) {
1000 for (auto &Section : Sections) {
1009 for (i = Sections
[all...]
H A DMCDwarf.cpp571 auto &Sections = context.getGenDwarfSectionSyms(); local
590 Length += 2 * AddrSize * Sections.size();
617 for (MCSection *Sec : Sections) {
702 auto &Sections = context.getGenDwarfSectionSyms(); local
703 const auto TextSection = Sections.begin();
704 assert(TextSection != Sections.end() && "No text section found");
805 auto &Sections = context.getGenDwarfSectionSyms(); local
812 for (MCSection *Sec : Sections) {
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp194 uint8_t *EHFrameAddr = Sections[EHFrameSID].getAddress();
195 uint64_t EHFrameLoadAddr = Sections[EHFrameSID].getLoadAddress();
196 size_t EHFrameSize = Sections[EHFrameSID].getSize();
206 uint8_t *EHFrameAddr = Sections[EHFrameSID].getAddress();
207 uint64_t EHFrameLoadAddr = Sections[EHFrameSID].getLoadAddress();
208 size_t EHFrameSize = Sections[EHFrameSID].getSize();
1099 const SectionEntry &Section = Sections[RE.SectionID];
1156 return (void *)(Sections[SectionID].getObjAddress() + Offset);
1287 SectionEntry &Section = Sections[SectionID];
1338 SectionEntry &Section = Sections[SectionI
[all...]
H A DRuntimeDyldChecker.cpp805 getRTDyld().Sections[SectionID].getAddress()));
807 Addr = getRTDyld().Sections[SectionID].getLoadAddress();
840 getRTDyld().Sections[SectionID].getAddress());
843 uint64_t SectionBase = getRTDyld().Sections[SectionID].getLoadAddress();
860 getRTDyld().Sections[SymInfo.getSectionID()].getSize() -
867 const SectionEntry &Section = getRTDyld().Sections[SectionID];
877 const SectionEntry &Section = getRTDyld().Sections[SectionID];
H A DRuntimeDyldMachO.h132 SectionEntry &getSection(unsigned SectionID) { return Sections[SectionID]; }
H A DRuntimeDyldELF.h105 SectionEntry &getSection(unsigned SectionID) { return Sections[SectionID]; }
/external/llvm/tools/llvm-readobj/
H A Dllvm-readobj.cpp61 cl::opt<bool> Sections("sections",
65 cl::aliasopt(Sections));
359 if (opts::Sections)
/external/swiftshader/third_party/LLVM/include/llvm/Object/
H A DMachO.h85 SectionList Sections; member in class:llvm::object::MachOObjectFile
/external/llvm/include/llvm/ObjectYAML/
H A DMachOYAML.h54 std::vector<Section> Sections; member in struct:llvm::MachOYAML::LoadCommand
108 std::vector<Section> Sections; member in struct:llvm::MachOYAML::Object
H A DCOFFYAML.h86 std::vector<Section> Sections; member in struct:llvm::COFFYAML::Object
/external/llvm/test/MC/AsmParser/
H A Dsection.s49 # CHECK: Sections [
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp220 // sections to \param Sections, and optionally sets
225 SmallVectorImpl<const char *> &Sections, bool &IsPageZeroSegment,
242 Sections.push_back(Sec);
365 this, Load, Sections, HasPageZeroSegment, I,
370 this, Load, Sections, HasPageZeroSegment, I, "LC_SEGMENT")))
584 if (DRI.d.a >= Sections.size()){
1137 DRI.d.a = Sections.size();
1968 assert(Sec.d.a < Sections.size() && "Should have detected this earlier");
1970 reinterpret_cast<const section_base *>(Sections[Sec.d.a]);
1976 assert(Sec.d.a < Sections
223 parseSegmentLoadCommand( const MachOObjectFile *Obj, const MachOObjectFile::LoadCommandInfo &Load, SmallVectorImpl<const char *> &Sections, bool &IsPageZeroSegment, uint32_t LoadCommandIndex, const char *CmdName) argument
[all...]
/external/llvm/tools/llvm-objdump/
H A DMachODump.cpp295 std::vector<SectionRef> &Sections,
315 Sections.push_back(Section);
1785 std::vector<SectionRef> *Sections; member in struct:DisassembleInfo
2518 for (unsigned SectIdx = 0; SectIdx != info->Sections->size(); SectIdx++) {
2519 uint64_t SectAddress = ((*(info->Sections))[SectIdx]).getAddress();
2520 uint64_t SectSize = ((*(info->Sections))[SectIdx]).getSize();
2525 ((*(info->Sections))[SectIdx]).getName(SectName);
2526 DataRefImpl Ref = ((*(info->Sections))[SectIdx]).getRawDataRefImpl();
2532 S = (*(info->Sections))[SectIdx];
2536 ((*(info->Sections))[SectId
294 getSectionsAndSymbols(MachOObjectFile *MachOObj, std::vector<SectionRef> &Sections, std::vector<SymbolRef> &Symbols, SmallVectorImpl<uint64_t> &FoundFns, uint64_t &BaseSegmentAddress) argument
5295 std::vector<SectionRef> Sections; local
5368 std::vector<SectionRef> Sections; local
5478 std::vector<SectionRef> Sections; local
5651 std::vector<SectionRef> Sections; local
6524 std::vector<SectionRef> Sections; local
9136 SmallVector<SectionInfo, 32> Sections; member in class:__anon13518::SegInfo
[all...]
/external/llvm/tools/yaml2obj/
H A Dyaml2macho.cpp119 for (const auto &Sec : LC.Sections) {
133 for (const auto &Sec : LC.Sections) {
250 for (auto &Sec : LC.Sections) {
/external/llvm/test/MC/MachO/ARM/
H A Ddarwin-ARM-reloc.s39 @ CHECK: Sections [
H A Ddarwin-Thumb-reloc.s40 @ CHECK: Sections [

Completed in 1155 milliseconds

123