Searched refs:Section (Results 1 - 25 of 259) sorted by relevance

1234567891011

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/
H A DNVPTXTargetStreamer.cpp43 const MCSection *Section) {
46 if (!Section || Section->getKind().isText() ||
47 Section->getKind().isWriteable())
49 return Section == FI->getDwarfAbbrevSection() ||
50 Section == FI->getDwarfInfoSection() ||
51 Section == FI->getDwarfMacinfoSection() ||
52 Section == FI->getDwarfFrameSection() ||
53 Section == FI->getDwarfAddrSection() ||
54 Section
42 isDwarfSection(const MCObjectFileInfo *FI, const MCSection *Section) argument
83 changeSection(const MCSection *CurSection, MCSection *Section, const MCExpr *SubSection, raw_ostream &OS) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASectionContrib.cpp19 : Session(PDBSession), Section(DiaSection) {}
23 if (FAILED(Section->get_compiland(&Symbol)))
32 PrivateGetDIAValue(IDiaSectionContrib *Section, argument
35 if (S_OK == (Section->*Method)(&Value))
42 return PrivateGetDIAValue(Section, &IDiaSectionContrib::get_addressSection);
46 return PrivateGetDIAValue(Section, &IDiaSectionContrib::get_addressOffset);
50 return PrivateGetDIAValue(Section, &IDiaSectionContrib::get_virtualAddress);
54 return PrivateGetDIAValue(Section,
59 return PrivateGetDIAValue(Section, &IDiaSectionContrib::get_length);
63 return PrivateGetDIAValue(Section,
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DDebugSubsectionVisitor.cpp54 DebugCrossModuleExportsSubsectionRef Section; local
55 if (auto EC = Section.initialize(Reader))
57 return V.visitCrossModuleExports(Section, State);
60 DebugCrossModuleImportsSubsectionRef Section; local
61 if (auto EC = Section.initialize(Reader))
63 return V.visitCrossModuleImports(Section, State);
66 DebugSymbolsSubsectionRef Section; local
67 if (auto EC = Section.initialize(Reader))
69 return V.visitSymbols(Section, State);
72 DebugStringTableSubsectionRef Section; local
78 DebugFrameDataSubsectionRef Section; local
84 DebugSymbolRVASubsectionRef Section; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DConstantPools.cpp66 ConstantPool *AssemblerConstantPools::getConstantPool(MCSection *Section) { argument
67 ConstantPoolMapTy::iterator CP = ConstantPools.find(Section);
75 AssemblerConstantPools::getOrCreateConstantPool(MCSection *Section) { argument
76 return ConstantPools[Section];
79 static void emitConstantPool(MCStreamer &Streamer, MCSection *Section, argument
82 Streamer.SwitchSection(Section);
90 MCSection *Section = CPI.first; local
93 emitConstantPool(Streamer, Section, CP);
98 MCSection *Section = Streamer.getCurrentSectionOnly(); local
99 if (ConstantPool *CP = getConstantPool(Section))
104 MCSection *Section = Streamer.getCurrentSectionOnly(); local
112 MCSection *Section = Streamer.getCurrentSectionOnly(); local
[all...]
H A DMCAsmInfoDarwin.cpp22 const MCSection &Section) const {
23 const MCSectionMachO &SMO = static_cast<const MCSectionMachO &>(Section);
H A DWasmObjectWriter.cpp107 MCSectionWasm *Section; member in struct:__anon1938::WasmDataSegment
168 MCSectionWasm *Section; member in struct:__anon1938::WasmCustomSection
173 WasmCustomSection(StringRef Name, MCSectionWasm *Section) argument
174 : Name(Name), Section(Section), OutputContentsOffset(0),
263 void startSection(SectionBookkeeping &Section, unsigned SectionId);
264 void startCustomSection(SectionBookkeeping &Section, StringRef Name);
265 void endSection(SectionBookkeeping &Section);
350 void WasmObjectWriter::startSection(SectionBookkeeping &Section, argument
355 Section
367 startCustomSection(SectionBookkeeping &Section, StringRef Name) argument
384 endSection(SectionBookkeeping &Section) argument
563 const auto &Section = local
705 SectionBookkeeping Section; local
902 SectionBookkeeping Section; local
933 SectionBookkeeping Section; local
1016 SectionBookkeeping Section; local
1219 auto &Section = static_cast<MCSectionWasm &>(Sec); local
1322 auto &Section = static_cast<MCSectionWasm &>(WS.getSection()); local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/DebugInfo/PDB/
H A DPDBSymbolData.cpp27 if (auto Section = RawSymbol->getAddressSection())
29 Section, RawSymbol->getAddressOffset(), Len);
49 while (auto Section = SecContribs->getNext()) {
50 if (Section->getAddressSection() == DataSection &&
51 Section->getAddressOffset() <= DataOffset &&
52 (Section->getAddressOffset() + Section->getLength()) > DataOffset)
53 return Section->getCompilandId();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DWasmYAML.cpp25 Section::~Section() = default;
45 static void commonSectionMapping(IO &IO, WasmYAML::Section &Section) { argument
46 IO.mapRequired("Type", Section.Type);
47 IO.mapOptional("Relocations", Section.Relocations);
50 static void sectionMapping(IO &IO, WasmYAML::DylinkSection &Section) { argument
51 commonSectionMapping(IO, Section);
52 IO.mapRequired("Name", Section.Name);
53 IO.mapRequired("MemorySize", Section
60 sectionMapping(IO &IO, WasmYAML::NameSection &Section) argument
66 sectionMapping(IO &IO, WasmYAML::LinkingSection &Section) argument
76 sectionMapping(IO &IO, WasmYAML::ProducersSection &Section) argument
84 sectionMapping(IO &IO, WasmYAML::TargetFeaturesSection &Section) argument
90 sectionMapping(IO &IO, WasmYAML::CustomSection &Section) argument
96 sectionMapping(IO &IO, WasmYAML::TypeSection &Section) argument
101 sectionMapping(IO &IO, WasmYAML::ImportSection &Section) argument
106 sectionMapping(IO &IO, WasmYAML::FunctionSection &Section) argument
111 sectionMapping(IO &IO, WasmYAML::TableSection &Section) argument
116 sectionMapping(IO &IO, WasmYAML::MemorySection &Section) argument
121 sectionMapping(IO &IO, WasmYAML::GlobalSection &Section) argument
126 sectionMapping(IO &IO, WasmYAML::EventSection &Section) argument
131 sectionMapping(IO &IO, WasmYAML::ExportSection &Section) argument
136 sectionMapping(IO &IO, WasmYAML::StartSection &Section) argument
141 sectionMapping(IO &IO, WasmYAML::ElemSection &Section) argument
146 sectionMapping(IO &IO, WasmYAML::CodeSection &Section) argument
151 sectionMapping(IO &IO, WasmYAML::DataSection &Section) argument
156 sectionMapping(IO &IO, WasmYAML::DataCountSection &Section) argument
161 mapping( IO &IO, std::unique_ptr<WasmYAML::Section> &Section) argument
[all...]
H A DWasmEmitter.cpp33 void writeRelocSection(raw_ostream &OS, WasmYAML::Section &Sec,
38 void writeSectionContent(raw_ostream &OS, WasmYAML::CustomSection &Section);
39 void writeSectionContent(raw_ostream &OS, WasmYAML::TypeSection &Section);
40 void writeSectionContent(raw_ostream &OS, WasmYAML::ImportSection &Section);
41 void writeSectionContent(raw_ostream &OS, WasmYAML::FunctionSection &Section);
42 void writeSectionContent(raw_ostream &OS, WasmYAML::TableSection &Section);
43 void writeSectionContent(raw_ostream &OS, WasmYAML::MemorySection &Section);
44 void writeSectionContent(raw_ostream &OS, WasmYAML::GlobalSection &Section);
45 void writeSectionContent(raw_ostream &OS, WasmYAML::EventSection &Section);
46 void writeSectionContent(raw_ostream &OS, WasmYAML::ExportSection &Section);
156 writeSectionContent(raw_ostream &OS, WasmYAML::DylinkSection &Section) argument
168 writeSectionContent(raw_ostream &OS, WasmYAML::LinkingSection &Section) argument
255 writeSectionContent(raw_ostream &OS, WasmYAML::NameSection &Section) argument
273 writeSectionContent(raw_ostream &OS, WasmYAML::ProducersSection &Section) argument
295 writeSectionContent(raw_ostream &OS, WasmYAML::TargetFeaturesSection &Section) argument
305 writeSectionContent(raw_ostream &OS, WasmYAML::CustomSection &Section) argument
323 writeSectionContent(raw_ostream &OS, WasmYAML::TypeSection &Section) argument
343 writeSectionContent(raw_ostream &OS, WasmYAML::ImportSection &Section) argument
379 writeSectionContent(raw_ostream &OS, WasmYAML::FunctionSection &Section) argument
386 writeSectionContent(raw_ostream &OS, WasmYAML::ExportSection &Section) argument
396 writeSectionContent(raw_ostream &OS, WasmYAML::StartSection &Section) argument
401 writeSectionContent(raw_ostream &OS, WasmYAML::TableSection &Section) argument
410 writeSectionContent(raw_ostream &OS, WasmYAML::MemorySection &Section) argument
417 writeSectionContent(raw_ostream &OS, WasmYAML::GlobalSection &Section) argument
433 writeSectionContent(raw_ostream &OS, WasmYAML::EventSection &Section) argument
448 writeSectionContent(raw_ostream &OS, WasmYAML::ElemSection &Section) argument
461 writeSectionContent(raw_ostream &OS, WasmYAML::CodeSection &Section) argument
489 writeSectionContent(raw_ostream &OS, WasmYAML::DataSection &Section) argument
503 writeSectionContent(raw_ostream &OS, WasmYAML::DataCountSection &Section) argument
[all...]
H A DELFEmitter.cpp144 StringRef SecName, ELFYAML::Section *YAMLSec);
149 ELFYAML::Section *YAMLSec);
153 ELFYAML::Section *YAMLSec);
164 const ELFYAML::RawContentSection &Section,
167 const ELFYAML::RelocationSection &Section,
170 const ELFYAML::RelrSection &Section,
178 const ELFYAML::SymverSection &Section,
181 const ELFYAML::VerneedSection &Section,
184 const ELFYAML::VerdefSection &Section,
187 const ELFYAML::MipsABIFlags &Section,
770 writeSectionContent( Elf_Shdr &SHeader, const ELFYAML::RawContentSection &Section, ContiguousBlobAccumulator &CBA) argument
791 writeSectionContent( Elf_Shdr &SHeader, const ELFYAML::RelocationSection &Section, ContiguousBlobAccumulator &CBA) argument
833 writeSectionContent(Elf_Shdr &SHeader, const ELFYAML::RelrSection &Section, ContiguousBlobAccumulator &CBA) argument
874 writeSectionContent(Elf_Shdr &SHeader, const ELFYAML::Group &Section, ContiguousBlobAccumulator &CBA) argument
905 writeSectionContent(Elf_Shdr &SHeader, const ELFYAML::SymverSection &Section, ContiguousBlobAccumulator &CBA) argument
918 writeSectionContent( Elf_Shdr &SHeader, const ELFYAML::StackSizesSection &Section, ContiguousBlobAccumulator &CBA) argument
936 writeSectionContent( Elf_Shdr &SHeader, const ELFYAML::LinkerOptionsSection &Section, ContiguousBlobAccumulator &CBA) argument
960 writeSectionContent( Elf_Shdr &SHeader, const ELFYAML::DependentLibrariesSection &Section, ContiguousBlobAccumulator &CBA) argument
982 writeSectionContent(Elf_Shdr &SHeader, const ELFYAML::HashSection &Section, ContiguousBlobAccumulator &CBA) argument
1010 writeSectionContent(Elf_Shdr &SHeader, const ELFYAML::VerdefSection &Section, ContiguousBlobAccumulator &CBA) argument
1062 writeSectionContent(Elf_Shdr &SHeader, const ELFYAML::VerneedSection &Section, ContiguousBlobAccumulator &CBA) argument
1116 writeSectionContent(Elf_Shdr &SHeader, const ELFYAML::MipsABIFlags &Section, ContiguousBlobAccumulator &CBA) argument
1143 writeSectionContent(Elf_Shdr &SHeader, const ELFYAML::DynamicSection &Section, ContiguousBlobAccumulator &CBA) argument
1174 writeSectionContent(Elf_Shdr &SHeader, const ELFYAML::AddrsigSection &Section, ContiguousBlobAccumulator &CBA) argument
1198 writeSectionContent(Elf_Shdr &SHeader, const ELFYAML::NoteSection &Section, ContiguousBlobAccumulator &CBA) argument
1247 writeSectionContent(Elf_Shdr &SHeader, const ELFYAML::GnuHashSection &Section, ContiguousBlobAccumulator &CBA) argument
[all...]
H A DELFYAML.cpp984 IO.mapOptional("Section", Symbol.Section, StringRef());
1002 if (Symbol.Index && Symbol.Section.data())
1003 return "Index and Section cannot both be specified for Symbol";
1009 static void commonSectionMapping(IO &IO, ELFYAML::Section &Section) { argument
1010 IO.mapOptional("Name", Section.Name, StringRef());
1011 IO.mapRequired("Type", Section.Type);
1012 IO.mapOptional("Flags", Section.Flags);
1013 IO.mapOptional("Address", Section
1030 sectionMapping(IO &IO, ELFYAML::DynamicSection &Section) argument
1036 sectionMapping(IO &IO, ELFYAML::RawContentSection &Section) argument
1043 sectionMapping(IO &IO, ELFYAML::StackSizesSection &Section) argument
1050 sectionMapping(IO &IO, ELFYAML::HashSection &Section) argument
1058 sectionMapping(IO &IO, ELFYAML::NoteSection &Section) argument
1066 sectionMapping(IO &IO, ELFYAML::GnuHashSection &Section) argument
1074 sectionMapping(IO &IO, ELFYAML::NoBitsSection &Section) argument
1079 sectionMapping(IO &IO, ELFYAML::VerdefSection &Section) argument
1086 sectionMapping(IO &IO, ELFYAML::SymverSection &Section) argument
1091 sectionMapping(IO &IO, ELFYAML::VerneedSection &Section) argument
1098 sectionMapping(IO &IO, ELFYAML::RelocationSection &Section) argument
1104 sectionMapping(IO &IO, ELFYAML::RelrSection &Section) argument
1116 sectionMapping(IO &IO, ELFYAML::SymtabShndxSection &Section) argument
1121 sectionMapping(IO &IO, ELFYAML::AddrsigSection &Section) argument
1134 sectionMapping(IO &IO, ELFYAML::LinkerOptionsSection &Section) argument
1140 sectionMapping(IO &IO, ELFYAML::DependentLibrariesSection &Section) argument
1157 sectionMapping(IO &IO, ELFYAML::MipsABIFlags &Section) argument
1177 mapping( IO &IO, std::unique_ptr<ELFYAML::Chunk> &Section) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCAsmInfoDarwin.h25 bool isSectionAtomizableBySymbols(const MCSection &Section) const override;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDIERef.h28 enum Section : uint8_t { DebugInfo, DebugTypes };
30 DIERef(llvm::Optional<uint32_t> dwo_num, Section section,
43 Section section() const { return static_cast<Section>(m_section); }
H A DDWARFDebugInfo.h39 DWARFUnit *GetUnitAtOffset(DIERef::Section section, dw_offset_t cu_offset,
41 DWARFUnit *GetUnitContainingDIEOffset(DIERef::Section section,
46 DWARFDIE GetDIEForDIEOffset(DIERef::Section section,
75 void ParseUnitsFor(DIERef::Section section);
77 uint32_t FindUnitIndex(DIERef::Section section, dw_offset_t offset);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldELFMips.cpp16 const SectionEntry &Section = Sections[RE.SectionID]; local
18 resolveMIPSO32Relocation(Section, RE.Offset, Value, RE.RelType, RE.Addend);
20 resolveMIPSN32Relocation(Section, RE.Offset, Value, RE.RelType, RE.Addend,
23 resolveMIPSN64Relocation(Section, RE.Offset, Value, RE.RelType, RE.Addend,
33 const SectionEntry &Section = Sections[RE.SectionID]; local
34 Value = evaluateMIPS64Relocation(Section, RE.Offset, Value, RE.RelType,
44 const SectionEntry &Section = Sections[RE.SectionID]; local
45 applyMIPSRelocation(Section.getAddressWithOffset(RE.Offset), Value,
53 RuntimeDyldELFMips::evaluateMIPS32Relocation(const SectionEntry &Section, argument
58 << format("%llx", Section
108 evaluateMIPS64Relocation( const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend, uint64_t SymOffset, SID SectionID) argument
265 resolveMIPSN32Relocation( const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend, uint64_t SymOffset, SID SectionID) argument
274 resolveMIPSN64Relocation( const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend, uint64_t SymOffset, SID SectionID) argument
303 resolveMIPSO32Relocation(const SectionEntry &Section, uint64_t Offset, uint32_t Value, uint32_t Type, int32_t Addend) argument
[all...]
H A DRuntimeDyldELFMips.h31 void resolveMIPSO32Relocation(const SectionEntry &Section, uint64_t Offset,
33 void resolveMIPSN32Relocation(const SectionEntry &Section, uint64_t Offset,
36 void resolveMIPSN64Relocation(const SectionEntry &Section, uint64_t Offset,
52 int64_t evaluateMIPS32Relocation(const SectionEntry &Section, uint64_t Offset,
54 int64_t evaluateMIPS64Relocation(const SectionEntry &Section,
H A DRuntimeDyldCOFFX86_64.h38 for (const SectionEntry &Section : Sections)
44 if (Section.getLoadAddress() != 0)
45 ImageBase = std::min(ImageBase, Section.getLoadAddress());
87 const SectionEntry &Section = Sections[RE.SectionID]; variable
88 uint8_t *Target = Section.getAddressWithOffset(RE.Offset);
98 uint64_t FinalAddress = Section.getLoadAddressWithOffset(RE.Offset);
148 SectionEntry &Section = Sections[SectionID]; local
161 StubOffset = Section.getStubOffset();
163 createStubFunction(Section.getAddressWithOffset(StubOffset));
164 Section
211 SectionEntry &Section = Sections[SectionID]; variable
286 const object::SectionRef &Section = SectionPair.first; variable
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h177 struct Section { struct in namespace:llvm::WasmYAML
178 explicit Section(SectionType SecType) : Type(SecType) {} function in struct:llvm::WasmYAML::Section
179 virtual ~Section();
185 struct CustomSection : Section {
187 : Section(wasm::WASM_SEC_CUSTOM), Name(Name) {}
189 static bool classof(const Section *S) {
200 static bool classof(const Section *S) {
215 static bool classof(const Section *S) {
226 static bool classof(const Section *S) {
241 static bool classof(const Section *
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDataExtractor.h22 const DWARFSection *Section = nullptr; member in class:llvm::DWARFDataExtractor
27 DWARFDataExtractor(const DWARFObject &Obj, const DWARFSection &Section, argument
29 : DataExtractor(Section.Data, IsLittleEndian, AddressSize), Obj(&Obj),
30 Section(&Section) {}
H A DDWARFCompileUnit.h19 DWARFCompileUnit(DWARFContext &Context, const DWARFSection &Section, argument
25 : DWARFUnit(Context, Section, Header, DA, RS, LocSection, SS, SOS, AOS,
H A DDWARFTypeUnit.h27 DWARFTypeUnit(DWARFContext &Context, const DWARFSection &Section, argument
33 : DWARFUnit(Context, Section, Header, DA, RS, LocSection, SS, SOS, AOS,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/TextAPI/MachO/
H A DTextStub.cpp287 static void mapping(IO &IO, ExportSection &Section) { argument
292 IO.mapRequired("archs", Section.Architectures);
294 IO.mapOptional("allowed-clients", Section.AllowableClients);
296 IO.mapOptional("allowable-clients", Section.AllowableClients);
297 IO.mapOptional("re-exports", Section.ReexportedLibraries);
298 IO.mapOptional("symbols", Section.Symbols);
299 IO.mapOptional("objc-classes", Section.Classes);
301 IO.mapOptional("objc-eh-types", Section.ClassEHs);
302 IO.mapOptional("objc-ivars", Section.IVars);
303 IO.mapOptional("weak-def-symbols", Section
309 mapping(IO &IO, UndefinedSection &Section) argument
325 mapping(IO &IO, SymbolSection &Section) argument
337 mapping(IO &IO, UmbrellaSection &Section) argument
352 mapping(IO &IO, MetadataSection &Section, MetadataSection::Option &OptionKind) argument
473 ExportSection Section; local
541 UndefinedSection Section; local
993 assignTargetsToLibrary(const std::vector<InterfaceFileRef> &Libraries, std::vector<MetadataSection> &Section) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/
H A DObject.cpp51 for (const Section &Sec : Sections) {
63 void Object::addSections(ArrayRef<Section> NewSections) {
64 for (Section S : NewSections) {
72 SectionMap = DenseMap<ssize_t, Section *>(Sections.size());
74 for (Section &S : Sections) {
80 const Section *Object::findSection(ssize_t UniqueId) const {
87 void Object::removeSections(function_ref<bool(const Section &)> ToRemove) {
89 auto RemoveAssociated = [&AssociatedSections](const Section &Sec) {
96 [ToRemove, &RemovedSections](const Section &Sec) {
125 void Object::truncateSections(function_ref<bool(const Section
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldELF.cpp266 void RuntimeDyldELF::resolveX86_64Relocation(const SectionEntry &Section, argument
277 support::ulittle64_t::ref(Section.getAddressWithOffset(Offset)) =
280 << format("%p\n", Section.getAddressWithOffset(Offset)));
290 support::ulittle32_t::ref(Section.getAddressWithOffset(Offset)) =
293 << format("%p\n", Section.getAddressWithOffset(Offset)));
297 uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset);
301 Section.getAddress()[Offset] = TruncOffset;
305 uint64_t FinalAddress = Section.getLoadAddressWithOffset(Offset);
309 support::ulittle32_t::ref(Section.getAddressWithOffset(Offset)) =
314 uint64_t FinalAddress = Section
339 resolveX86Relocation(const SectionEntry &Section, uint64_t Offset, uint32_t Value, uint32_t Type, int32_t Addend) argument
367 resolveAArch64Relocation(const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend) argument
487 resolveARMRelocation(const SectionEntry &Section, uint64_t Offset, uint32_t Value, uint32_t Type, int32_t Addend) argument
711 resolvePPC32Relocation(const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend) argument
731 resolvePPC64Relocation(const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend) argument
825 resolveSystemZRelocation(const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend) argument
879 resolveBPFRelocation(const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend) argument
929 const SectionEntry &Section = Sections[RE.SectionID]; local
934 resolveRelocation(const SectionEntry &Section, uint64_t Offset, uint64_t Value, uint32_t Type, int64_t Addend, uint64_t SymOffset, SID SectionID) argument
1059 SectionEntry &Section = Sections[SectionID]; local
1227 SectionEntry &Section = Sections[SectionID]; local
1275 SectionEntry &Section = Sections[SectionID]; local
1377 SectionEntry &Section = Sections[SectionID]; local
1453 SectionEntry &Section = Sections[SectionID]; local
1616 SectionEntry &Section = Sections[SectionID]; local
1672 SectionEntry &Section = Sections[SectionID]; local
1897 const SectionRef &Section = i->first; local
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DSpecialCaseList.cpp134 StringRef Section = "*"; local
150 Section = I->slice(1, I->size() - 1);
153 Regex CheckRE(Section);
156 (Twine("malformed regex for section ") + Section + ": '" + REError)
179 if (SectionsMap.find(Section) == SectionsMap.end()) {
182 if (!M->insert(Section, LineNo, REError)) {
183 Error = (Twine("malformed section ") + Section + ": '" + REError).str();
187 SectionsMap[Section] = Sections.size();
191 auto &Entry = Sections[SectionsMap[Section]].Entries[Prefix][Category];
204 bool SpecialCaseList::inSection(StringRef Section, StringRe argument
209 inSectionBlame(StringRef Section, StringRef Prefix, StringRef Query, StringRef Category) const argument
[all...]

Completed in 166 milliseconds

1234567891011