Searched defs:Section (Results 1 - 25 of 160) sorted by relevance

1234567

/external/swiftshader/src/Common/
H A DConfigurator.hpp55 struct Section struct in class:sw::Configurator
61 std::vector<Section> sections;
/external/llvm/bindings/python/llvm/tests/
H A Dtest_object.py4 from ..object import Section namespace
21 assert isinstance(section, Section)
54 assert isinstance(section, Section)
/external/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFCompileUnit.h19 DWARFCompileUnit(DWARFContext &Context, const DWARFSection &Section, argument
24 : DWARFUnit(Context, Section, DA, RS, SS, SOS, AOS, LS, LE, IsDWO,
27 static const DWARFSectionKind Section = DW_SECT_INFO; member in class:llvm::DWARFCompileUnit
H A DDWARFTypeUnit.h22 DWARFTypeUnit(DWARFContext &Context, const DWARFSection &Section, argument
27 : DWARFUnit(Context, Section, DA, RS, SS, SOS, AOS, LS, LE, IsDWO,
33 static const DWARFSectionKind Section = DW_SECT_TYPES; member in class:llvm::DWARFTypeUnit
/external/skia/src/sksl/ir/
H A DSkSLSection.h18 struct Section : public ProgramElement { struct in namespace:SkSL
19 Section(Position position, String name, String arg, String text) function in struct:SkSL::Section
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCSectionCOFF.h38 MCSectionCOFF(StringRef Section, unsigned Characteristics, argument
40 : MCSection(SV_COFF, K), SectionName(Section),
H A DMCSectionELF.h47 MCSectionELF(StringRef Section, unsigned type, unsigned flags, argument
49 : MCSection(SV_ELF, K), SectionName(Section), Type(type), Flags(flags),
H A DMCSymbol.h30 /// Section member is set to indicate what section it lives in. Otherwise, if
42 /// Section - The section the symbol is defined in. This is null for
45 const MCSection *Section; member in class:llvm::MCSymbol
62 : Name(name), Section(0), Value(0),
89 return Section != 0;
105 return Section == AbsolutePseudoSection;
112 return *Section;
116 void setSection(const MCSection &S) { Section = &S; }
120 Section = 0;
124 void setAbsolute() { Section
[all...]
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCSymbol.cpp62 const MCSection *Section = Value->FindAssociatedSection(); local
63 if (Section) {
64 setSection(*Section);
/external/llvm/lib/ObjectYAML/
H A DELFYAML.cpp20 ELFYAML::Section::~Section() {}
658 IO.mapOptional("Section", Symbol.Section, StringRef());
674 static void commonSectionMapping(IO &IO, ELFYAML::Section &Section) { argument
675 IO.mapOptional("Name", Section.Name, StringRef());
676 IO.mapRequired("Type", Section.Type);
677 IO.mapOptional("Flags", Section.Flags, ELFYAML::ELF_SHF(0));
678 IO.mapOptional("Address", Section
684 sectionMapping(IO &IO, ELFYAML::RawContentSection &Section) argument
690 sectionMapping(IO &IO, ELFYAML::NoBitsSection &Section) argument
695 sectionMapping(IO &IO, ELFYAML::RelocationSection &Section) argument
710 sectionMapping(IO &IO, ELFYAML::MipsABIFlags &Section) argument
730 mapping( IO &IO, std::unique_ptr<ELFYAML::Section> &Section) argument
767 validate( IO &io, std::unique_ptr<ELFYAML::Section> &Section) argument
[all...]
/external/llvm/lib/MC/
H A DConstantPools.cpp50 ConstantPool *AssemblerConstantPools::getConstantPool(MCSection *Section) { argument
51 ConstantPoolMapTy::iterator CP = ConstantPools.find(Section);
59 AssemblerConstantPools::getOrCreateConstantPool(MCSection *Section) { argument
60 return ConstantPools[Section];
63 static void emitConstantPool(MCStreamer &Streamer, MCSection *Section, argument
66 Streamer.SwitchSection(Section);
74 MCSection *Section = CPI.first; local
77 emitConstantPool(Streamer, Section, CP);
82 MCSection *Section = Streamer.getCurrentSection().first; local
83 if (ConstantPool *CP = getConstantPool(Section)) {
91 MCSection *Section = Streamer.getCurrentSection().first; local
[all...]
/external/llvm/include/llvm/MC/
H A DMCSectionCOFF.h52 MCSectionCOFF(StringRef Section, unsigned Characteristics, argument
55 : MCSection(SV_COFF, K, Begin), SectionName(Section),
H A DMCSectionELF.h55 MCSectionELF(StringRef Section, unsigned type, unsigned flags, SectionKind K, argument
58 : MCSection(SV_ELF, K, Begin), SectionName(Section), Type(type),
/external/llvm/lib/DebugInfo/PDB/DIA/
H A DDIALineNumber.cpp39 DWORD Section = 0; local
40 return (S_OK == LineNumber->get_addressSection(&Section)) ? Section : 0;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFI386.h56 auto Section = *SectionOrErr;
83 DEBUG(dbgs() << "\t\tIn Section " << SectionID << " Offset " << Offset
88 if (Section == Obj.section_end()) {
93 findOrEmitSection(Obj, *Section, Section->isText(), ObjSectionToID))
133 const auto Section = Sections[RE.SectionID]; variable
134 uint8_t *Target = Section.getAddressWithOffset(RE.Offset);
160 // NOTE: use Section[0].getLoadAddress() as an approximation of ImageBase
180 Result = Result - Section.getLoadAddress() + RE.Addend - 4 - RE.Offset;
H A DRuntimeDyldCOFFThumb.h55 auto Section = *SectionOrErr;
80 DEBUG(dbgs() << "\t\tIn Section " << SectionID << " Offset " << Offset
85 if (Section == Obj.section_end()) {
90 findOrEmitSection(Obj, *Section, Section->isText(), ObjSectionToID))
143 const auto Section = Sections[RE.SectionID]; variable
144 uint8_t *Target = Section.getAddressWithOffset(RE.Offset);
170 // NOTE: use Section[0].getLoadAddress() as an approximation of ImageBase
H A DRuntimeDyldCOFFX86_64.h64 const SectionEntry &Section = Sections[RE.SectionID]; variable
65 uint8_t *Target = Section.getAddressWithOffset(RE.Offset);
75 uint64_t FinalAddress = Section.getLoadAddressWithOffset(RE.Offset);
131 SectionEntry &Section = Sections[SectionID]; variable
132 uintptr_t ObjTarget = Section.getObjAddress() + Offset;
163 DEBUG(dbgs() << "\t\tIn Section " << SectionID << " Offset " << Offset
204 const SectionRef &Section = SectionPair.first; variable
206 if (auto EC = Section.getName(Name))
/external/llvm/lib/Object/
H A DRecordStreamer.cpp98 void RecordStreamer::EmitZerofill(MCSection *Section, MCSymbol *Symbol, argument
/external/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFStreamer.cpp59 void MipsELFStreamer::SwitchSection(MCSection *Section, argument
61 MCELFStreamer::SwitchSection(Section, Subsection);
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DAsmPrinterDwarf.cpp187 const MCSection &Section = SectionLabel->getSection(); local
191 assert((!Label->isInSection() || &Label->getSection() == &Section) &&
192 "Section offset using wrong section base for label");
196 if (Section.isBaseAddressKnownZero()) {
/external/google-breakpad/src/common/
H A Dtest_assembler.h268 // and so on. It's up to the code that uses the Section class to
270 class Section { class in namespace:google_breakpad::test_assembler
272 Section(Endianness endianness = kUnsetEndian) function in class:google_breakpad::test_assembler::Section
277 virtual ~Section() { };
291 Section &Append(const uint8_t *data, size_t size) {
295 Section &Append(const string &data) {
302 Section &Append(size_t size, uint8_t byte) {
310 Section &Append(Endianness endianness, size_t size, uint64_t number);
311 Section &Append(Endianness endianness, size_t size, const Label &label);
320 Section
[all...]
/external/google-breakpad/src/processor/
H A Dsynth_minidump.h38 // streams, memory regions, strings, and so on --- each is a Section
40 // Context, Thread, and so on all inherit from test_assembler::Section.
52 // ... build contents of stack1 with test_assembler::Section functions ...
95 // By convention, Section subclass constructors that take references
105 // If you forget to Add some Section, the Dump::GetContents call will
106 // fail, as the test_assembler::Labels used to cite the Section's
135 // A test_assembler::Section which will be appended to a minidump.
136 class Section: public test_assembler::Section { class in namespace:google_breakpad::SynthMinidump
138 explicit Section(cons
[all...]
/external/llvm/bindings/python/llvm/
H A Dobject.py19 Section, Symbol, and Relocation, respectively.
30 relocations, call get_relocations() on a Section instance.
40 To aid working around this limitation, each Section, Symbol, and Relocation
53 # This is OK. Each Section is only accessed inside its own iteration slot.
96 "Section",
126 This is a generator for llvm.object.Section instances.
137 last = Section(sections)
179 class Section(LLVMObject): class in inherits:LLVMObject
185 Section instances can currently only be created from an ObjectFile
200 raise Exception('Section instanc
[all...]
/external/llvm/include/llvm/IR/
H A DGlobalObject.h39 std::string Section; // Section to emit this into, empty means default member in class:llvm::GlobalObject
67 StringRef getSection() const { return Section; }
/external/llvm/include/llvm/ObjectYAML/
H A DCOFFYAML.h55 struct Section { struct in namespace:llvm::COFFYAML
61 Section();
86 std::vector<Section> Sections;
93 LLVM_YAML_IS_SEQUENCE_VECTOR(COFFYAML::Section)
211 struct MappingTraits<COFFYAML::Section> {
212 static void mapping(IO &IO, COFFYAML::Section &Sec);

Completed in 1236 milliseconds

1234567