Searched defs:Section (Results 126 - 150 of 160) sorted by relevance

1234567

/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfUnit.cpp69 DD(DW), DU(DWU), IndexTyDie(nullptr), Section(nullptr) {
1506 Asm->OutStreamer->AddComment("Offset Into Abbrev. Section");
1522 void DwarfUnit::initSection(MCSection *Section) { argument
1523 assert(!this->Section);
1524 this->Section = Section;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp226 void RuntimeDyldELF::resolveX86_64Relocation(const SectionEntry &Section, argument
235 support::ulittle64_t::ref(Section.getAddressWithOffset(Offset)) =
238 << format("%p\n", Section.getAddressWithOffset(Offset)));
248 support::ulittle32_t::ref(Section.getAddressWithOffset(Offset)) =
251 << format("%p\n", Section.getAddressWithOffset(Offset)));
255 uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset);
259 Section.getAddress()[Offset] = TruncOffset;
263 uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset);
267 support::ulittle32_t::ref(Section.getAddressWithOffset(Offset)) =
272 uint64_t FinalAddress = Section
281 resolveX86Relocation(const SectionEntry &Section, uint64_t Offset, uint32_t Value, uint32_t Type, int32_t Addend) argument
306 resolveAArch64Relocation(const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend) argument
445 resolveARMRelocation(const SectionEntry &Section, uint64_t Offset, uint32_t Value, uint32_t Type, int32_t Addend) argument
496 resolveMIPSRelocation(const SectionEntry &Section, uint64_t Offset, uint32_t Value, uint32_t Type, int32_t Addend) argument
599 resolveMIPS64Relocation(const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend, uint64_t SymOffset, SID SectionID) argument
631 evaluateMIPS64Relocation(const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend, uint64_t SymOffset, SID SectionID) argument
927 resolvePPC32Relocation(const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend) argument
947 resolvePPC64Relocation(const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend) argument
1038 resolveSystemZRelocation(const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend) argument
1099 const SectionEntry &Section = Sections[RE.SectionID]; local
1104 resolveRelocation(const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend, uint64_t SymOffset, SID SectionID) argument
1287 SectionEntry &Section = Sections[SectionID]; local
1338 SectionEntry &Section = Sections[SectionID]; local
1386 SectionEntry &Section = Sections[SectionID]; local
1493 SectionEntry &Section = Sections[SectionID]; local
1654 SectionEntry &Section = Sections[SectionID]; local
1710 SectionEntry &Section = Sections[SectionID]; local
1888 const SectionRef &Section = i->first; local
[all...]
/external/llvm/lib/MC/
H A DMCDwarf.cpp50 void MCDwarfLineEntry::Make(MCObjectStreamer *MCOS, MCSection *Section) { argument
72 .addLineEntry(LineEntry, Section);
101 EmitDwarfLineTable(MCObjectStreamer *MCOS, MCSection *Section, argument
167 MCSymbol *SectionEnd = MCOS->endSection(Section);
1515 MCSection &Section =
1519 Streamer.SwitchSection(&Section);
H A DMCStreamer.cpp762 void MCStreamer::EmitTBSSSymbol(MCSection *Section, MCSymbol *Symbol, argument
787 void MCStreamer::SwitchSection(MCSection *Section, const MCExpr *Subsection) { argument
788 assert(Section && "Cannot switch to a null section!");
791 if (MCSectionSubPair(Section, Subsection) != curSection) {
792 ChangeSection(Section, Subsection);
793 SectionStack.back().first = MCSectionSubPair(Section, Subsection);
794 assert(!Section->hasEnded() && "Section already ended");
795 MCSymbol *Sym = Section->getBeginSymbol();
801 MCSymbol *MCStreamer::endSection(MCSection *Section) { argument
[all...]
/external/llvm/lib/Object/
H A DCOFFObjectFile.cpp122 report_fatal_error("Section was outside of section table.");
126 "Section did not point to the beginning of a section");
169 const coff_section *Section = nullptr; local
170 if (std::error_code EC = getSection(SectionNumber, Section))
172 Result += Section->VirtualAddress;
444 const coff_section *Section = getCOFFSection(S); local
445 uint32_t SectionStart = Section->VirtualAddress;
446 uint32_t SectionEnd = Section->VirtualAddress + Section->VirtualSize;
449 Res = uintptr_t(base()) + Section
460 const coff_section *Section = getCOFFSection(S); local
[all...]
/external/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp85 void printRelocation(const SectionRef &Section, const RelocationRef &Reloc,
94 void printCodeViewSymbolSection(StringRef SectionName, const SectionRef &Section);
95 void printCodeViewTypeSection(StringRef SectionName, const SectionRef &Section);
105 const SectionRef &Section,
124 std::error_code resolveSymbol(const coff_section *Section, uint64_t Offset,
126 std::error_code resolveSymbolName(const coff_section *Section,
128 std::error_code resolveSymbolName(const coff_section *Section,
204 std::error_code COFFDumper::resolveSymbol(const coff_section *Section, argument
207 const auto &Relocations = RelocMap[Section];
225 std::error_code COFFDumper::resolveSymbolName(const coff_section *Section, argument
240 resolveSymbolName(const coff_section *Section, StringRef SectionContents, const void *RelocPtr, StringRef &Name) argument
278 const coff_section *Section = Obj->getCOFFSection(Sec); local
535 const coff_section *Section = Obj->getCOFFSection(S); local
740 printCodeViewSymbolSection(StringRef SectionName, const SectionRef &Section) argument
947 printCodeViewSymbolsSubsection(StringRef Subsection, const SectionRef &Section, StringRef SectionContents) argument
1079 printCodeViewTypeSection(StringRef SectionName, const SectionRef &Section) argument
1106 const coff_section *Section = Obj->getCOFFSection(Sec); local
1179 printRelocation(const SectionRef &Section, const RelocationRef &Reloc, uint64_t Bias) argument
1217 getSectionName(const llvm::object::COFFObjectFile *Obj, int32_t SectionNumber, const coff_section *Section) argument
1238 const coff_section *Section; local
[all...]
H A DELFDumper.cpp427 report_fatal_error("Section ended unexpectedly while scanning "
436 report_fatal_error("Section ended unexpected while scanning auxiliary "
461 report_fatal_error("Section ended unexpectedly while scanning "
503 W.printNumber("Section Name", Name, Sec->sh_name);
977 {"Section", "SECTION", ELF::STT_SECTION},
2124 W.printHex("Section", SectionName, SectionIndex);
2158 W.printHex("Section", SectionName, SectionIndex);
2420 printFields(OS, "Section header string table index:", Str);
2650 OS << "Section Headers:\n";
2777 std::string Num, Name, Value, Size, Binding, Type, Visibility, Section; local
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCAssembler.h443 const MCSection *Section; member in class:llvm::MCSectionData
468 MCSectionData(const MCSection &Section, MCAssembler *A = 0);
470 const MCSection &getSection() const { return *Section; }
763 void WriteSectionData(const MCSectionData *Section,
815 /// @name Section List Access
875 MCSectionData &getSectionData(const MCSection &Section) const {
876 MCSectionData *Entry = SectionMap.lookup(&Section);
881 MCSectionData &getOrCreateSectionData(const MCSection &Section, argument
883 MCSectionData *&Entry = SectionMap[&Section];
887 Entry = new MCSectionData(Section, thi
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Object/
H A DMachOFormat.h232 /// @name Section Data
235 struct Section { struct in namespace:llvm::object::macho
/external/swiftshader/third_party/LLVM/lib/Bitcode/Reader/
H A DBitcodeReader.cpp1711 std::string Section; local
1715 Section = SectionTable[Record[5]-1];
1732 if (!Section.empty())
1733 NewGV->setSection(Section);
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DDwarfDebug.cpp1451 sizeof(int32_t) + // Offset Into Abbrev. Section
1459 static MCSymbol *EmitSectionSym(AsmPrinter *Asm, const MCSection *Section, argument
1461 Asm->OutStreamer.SwitchSection(Section);
1607 sizeof(int32_t) + // Offset Into Abbrev. Section
1614 Asm->OutStreamer.AddComment("Offset Into Abbrev. Section");
1668 Asm->OutStreamer.AddComment("Section end label");
1943 /// Section Header:
/external/swiftshader/third_party/LLVM/lib/MC/
H A DELFObjectWriter.cpp123 // e_shentsize = Section header entry size
132 // e_shstrndx = Section # of '.shstrtab'
300 const MCSectionELF &Section = local
302 if (Section.getType() == ELF::SHT_RELA ||
303 Section.getType() == ELF::SHT_REL ||
304 Section.getType() == ELF::SHT_STRTAB ||
305 Section.getType() == ELF::SHT_SYMTAB ||
306 Section.getType() == ELF::SHT_SYMTAB_SHNDX)
309 ELF::STV_DEFAULT, SectionIndexMap.lookup(&Section), false);
355 const MCSectionELF &Section local
532 const MCSectionELF &Section = local
541 const MCSectionELF &Section = local
616 const MCSectionELF &Section = local
684 const MCSectionELF &Section = local
712 const MCSectionELF &Section = local
861 const MCSectionELF &Section = local
875 const MCSectionELF &Section = *Sections[I]; local
913 const MCSectionELF &Section = local
936 const MCSectionELF &Section = local
949 WriteSection(MCAssembler &Asm, const SectionIndexMapTy &SectionIndexMap, uint32_t GroupSymbolIndex, uint64_t Offset, uint64_t Size, uint64_t Alignment, const MCSectionELF &Section) argument
1053 WriteDataSectionData(MCAssembler &Asm, const MCAsmLayout &Layout, const MCSectionELF &Section) argument
1101 const MCSectionELF &Section = *Sections[i]; local
1122 const MCSectionELF &Section = local
1130 const MCSectionELF &Section = local
1140 const MCSectionELF &Section = local
1188 const MCSectionELF &Section = *Sections[i]; local
1209 const MCSectionELF &Section = *Sections[i]; local
1309 const MCSectionELF &Section = local
[all...]
/external/swiftshader/third_party/LLVM/lib/Object/
H A DELFObjectFile.cpp90 // Section header.
98 Elf_Word sh_name; // Section name (index into string table)
99 Elf_Word sh_type; // Section type (SHT_*)
100 Elf_Word sh_flags; // Section flags (SHF_*)
104 Elf_Word sh_link; // Section type-specific header table index link
105 Elf_Word sh_info; // Section type-specific extra information
106 Elf_Word sh_addralign;// Section address alignment
113 Elf_Word sh_name; // Section name (index into string table)
114 Elf_Word sh_type; // Section type (SHT_*)
115 Elf_Xword sh_flags; // Section flag
460 const Elf_Shdr *Section; local
494 const Elf_Shdr *Section; local
543 const Elf_Shdr *Section = getSection(symb); local
1291 getEntry(uint16_t Section, uint32_t Entry) const argument
1299 getEntry(const Elf_Shdr * Section, uint32_t Entry) const argument
[all...]
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp2948 const MCSection *Section = getStreamer().getCurrentSection().first; local
2953 if (!Section) {
2955 Section = getStreamer().getCurrentSection().first;
2957 if (Section->UseCodeAlign())
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp1280 StringRef Section = G->getSection(); local
1283 if (Section == "llvm.metadata") return false;
1285 if (Section.find("__llvm") != StringRef::npos || Section.find("__LLVM") != StringRef::npos) return false;
1289 if (Section.startswith(".preinit_array") ||
1290 Section.startswith(".init_array") ||
1291 Section.startswith(".fini_array")) {
1299 if (Section.startswith(".CRT")) {
1309 Section, ParsedSegment, ParsedSection, TAA, TAAParsed, StubSize);
/external/llvm/tools/dsymutil/
H A DDwarfLinker.cpp1178 bool findValidRelocs(const object::SectionRef &Section,
1182 void findValidRelocsMachO(const object::SectionRef &Section,
1902 /// \brief Iterate over the relocations of the given \p Section and
1906 findValidRelocsMachO(const object::SectionRef &Section, argument
1910 Section.getContents(Contents);
1914 for (const object::RelocationRef &Reloc : Section.relocations()) {
1975 const object::SectionRef &Section, const object::ObjectFile &Obj,
1979 findValidRelocsMachO(Section, *MachOObj, DMO);
2004 for (const object::SectionRef &Section : Obj.sections()) {
2006 Section
1974 findValidRelocs( const object::SectionRef &Section, const object::ObjectFile &Obj, const DebugMapObject &DMO) argument
[all...]
/external/pdfium/third_party/lcms2-2.6/src/
H A Dcmstypes.c3622 cmsBool ReadCountAndSting(struct _cms_typehandler_struct* self, cmsIOHANDLER* io, cmsMLU* mlu, cmsUInt32Number* SizeOfTag, const char* Section) argument
3644 cmsMLUsetASCII(mlu, "PS", Section, Text);
3652 cmsBool WriteCountAndSting(struct _cms_typehandler_struct* self, cmsIOHANDLER* io, cmsMLU* mlu, const char* Section) argument
3657 TextSize = cmsMLUgetASCII(mlu, "PS", Section, NULL, 0);
3662 if (cmsMLUgetASCII(mlu, "PS", Section, Text, TextSize) == 0) return FALSE;
/external/swiftshader/third_party/LLVM/bindings/ocaml/llvm/
H A Dllvm_ocaml.c790 CAMLprim value llvm_set_section(value Section, LLVMValueRef Global) { argument
791 LLVMSetSection(Global, String_val(Section));
/external/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c1016 CAMLprim value llvm_set_section(value Section, LLVMValueRef Global) { argument
1017 LLVMSetSection(Global, String_val(Section));
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp2993 const MCSection *Section = getStreamer().getCurrentSection().first; local
2994 assert(Section && "must have section to emit alignment");
2995 bool UseCodeAlign = Section->UseCodeAlign();
/external/llvm/lib/Target/Mips/AsmParser/
H A DMipsAsmParser.cpp269 bool parseSSectionDirective(StringRef Section, unsigned Type);
5817 bool MipsAsmParser::parseSSectionDirective(StringRef Section, unsigned Type) { argument
5825 Section, Type, ELF::SHF_WRITE | ELF::SHF_ALLOC | ELF::SHF_MIPS_GPREL);
/external/swiftshader/third_party/LLVM/lib/VMCore/
H A DCore.cpp1148 void LLVMSetSection(LLVMValueRef Global, const char *Section) { argument
1149 unwrap<GlobalValue>(Global)->setSection(Section);
/external/dexmaker/lib/
H A Dlibcore-dex-2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/dex/ com/android/dex/util/ ...
/external/clang/lib/CodeGen/
H A DCGObjCMac.cpp1013 /// \param Section - The section the variable should go into, or empty.
1018 StringRef Section, CharUnits Align,
1134 llvm::Constant *EmitMethodList(Twine Name, StringRef Section,
1148 llvm::Constant *EmitMethodDescList(Twine Name, StringRef Section,
1326 llvm::Constant *EmitMethodList(Twine Name, StringRef Section,
3055 CGObjCMac::EmitMethodDescList(Twine Name, StringRef Section, argument
3069 CreateMetadataVar(Name, Init, Section, CGM.getPointerAlign(), true);
3338 const char *Section = "__OBJC,__class,regular,no_dead_strip"; local
3345 GV->setSection(Section);
3349 GV = CreateMetadataVar(Name, Init, Section, CG
3599 EmitMethodList(Twine Name, StringRef Section, ArrayRef<llvm::Constant *> Methods) argument
3636 CreateMetadataVar(Twine Name, llvm::Constant *Init, StringRef Section, CharUnits Align, bool AddToUsed) argument
4527 const char *Section = (ObjCABI == 1) ? local
6289 EmitMethodList(Twine Name, StringRef Section, ArrayRef<llvm::Constant *> Methods) argument
[all...]
/external/llvm/lib/IR/
H A DCore.cpp1536 void LLVMSetSection(LLVMValueRef Global, const char *Section) { argument
1537 unwrap<GlobalObject>(Global)->setSection(Section);

Completed in 1097 milliseconds

1234567