Home
last modified time | relevance | path

Searched refs:getSection (Results 1 – 25 of 88) sorted by relevance

1234

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/
DELFObjectFile.h308 auto RelSecOrErr = EF.getSection(Rel.d.a); in getRelSection()
409 const Elf_Shdr *getSection(DataRefImpl Sec) const { in getSection() function
457 auto SymTabOrErr = EF.getSection(Sym.d.a); in getSymbolName()
461 auto StrTabOrErr = EF.getSection(SymTableSec->sh_link); in getSymbolName()
484 return getSection(Sec)->sh_flags; in getSectionFlags()
489 return getSection(Sec)->sh_type; in getSectionType()
494 return getSection(Sec)->sh_offset; in getSectionOffset()
526 auto SymTabOrErr = EF.getSection(Symb.d.a); in getSymbolAddress()
532 auto SectionOrErr = EF.getSection(ESym, SymTab, ShndxTable); in getSymbolAddress()
666 auto ESecOrErr = EF.getSection(ESym, SymTab, ShndxTable); in getSymbolSection()
[all …]
DELF.h283 Expected<const Elf_Shdr *> getSection(const Elf_Sym *Sym,
286 Expected<const Elf_Shdr *> getSection(const Elf_Sym *Sym,
289 Expected<const Elf_Shdr *> getSection(uint32_t Index) const;
311 getSection(typename ELFT::ShdrRange Sections, uint32_t Index) { in getSection() function
353 ELFFile<ELFT>::getSection(const Elf_Sym *Sym, const Elf_Shdr *SymTab, in getSection() function
358 return getSection(Sym, *SymsOrErr, ShndxTable); in getSection()
363 ELFFile<ELFT>::getSection(const Elf_Sym *Sym, Elf_Sym_Range Symbols, in getSection() function
371 return getSection(Index); in getSection()
562 auto SecOrErr = getSection(Section); in getEntry()
587 ELFFile<ELFT>::getSection(uint32_t Index) const { in getSection() function
[all …]
DMachO.h304 Expected<SectionRef> getSection(unsigned SectionIndex) const;
305 Expected<SectionRef> getSection(StringRef SectionName) const;
487 MachO::section getSection(DataRefImpl DRI) const;
489 MachO::section getSection(const LoadCommandInfo &L, unsigned Index) const;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonTargetObjectFile.cpp130 TRACE("input section(" << GO->getSection() << ") "); in SelectSectionForGlobal()
168 << GO->getSection() << ") "); in getExplicitSectionGlobal()
180 StringRef Section = GO->getSection(); in getExplicitSectionGlobal()
182 return getContext().getELFSection(GO->getSection(), ELF::SHT_PROGBITS, in getExplicitSectionGlobal()
185 return getContext().getELFSection(GO->getSection(), ELF::SHT_PROGBITS, in getExplicitSectionGlobal()
218 bool IsSmall = isSmallDataSection(GVar->getSection()); in isGlobalInSmallSection()
220 << ", has section: " << GVar->getSection() << '\n'); in isGlobalInSmallSection()
396 if (GVar->hasSection() && isSmallDataSection(GVar->getSection())) in selectSmallSectionForGlobal()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DJITLink.cpp98 << ", section = " << B.getSection().getName(); in operator <<()
133 OS << " " << Sym.getBlock().getSection().getName(); in operator <<()
166 ? createZeroFillBlock(B.getSection(), SplitIndex, B.getAddress(), in splitBlock()
169 B.getSection(), B.getContent().substr(0, SplitIndex), in splitBlock()
206 for (auto *Sym : B.getSection().symbols()) in splitBlock()
DJITLinkGeneric.cpp143 auto &SegLists = Layout[B->getSection().getProtectionFlags()]; in layOutBlocks()
155 if (LHS->getSection().getOrdinal() != RHS->getSection().getOrdinal()) in layOutBlocks()
156 return LHS->getSection().getOrdinal() < RHS->getSection().getOrdinal(); in layOutBlocks()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/IR/
DGlobalObject.h69 bool hasSection() const { return !getSection().empty(); } in hasSection()
70 StringRef getSection() const { return Section; } in getSection() function
DGlobalValue.h248 bool hasSection() const { return !getSection().empty(); } in hasSection()
249 StringRef getSection() const;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DGlobals.cpp133 setSection(Src->getSection()); in copyAttributesFrom()
165 StringRef GlobalValue::getSection() const { in getSection() function in GlobalValue
169 return GO->getSection(); in getSection()
172 return cast<GlobalObject>(this)->getSection(); in getSection()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64MachObjectWriter.cpp137 const MCSectionMachO &RefSec = cast<MCSectionMachO>(Symbol.getSection()); in canUseLocalRelocation()
317 const MCSection &Sec = Symbol->getSection(); in recordRelocation()
356 const MCSection &Sec = Symbol->getSection(); in recordRelocation()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/JITLink/
DJITLink.h179 Section &getSection() const { return Parent; } in getSection() function
675 B->getSection().addBlock(*B); in createBlock()
888 Content.getSection().addSymbol(Sym); in addAnonymousSymbol()
899 Content.getSection().addSymbol(Sym); in addDefinedSymbol()
954 Section &Sec = Sym.getBlock().getSection(); in makeExternal()
987 Sym.getBlock().getSection().removeSymbol(Sym); in removeDefinedSymbol()
993 B.getSection().removeBlock(B); in removeBlock()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUTargetObjectFile.cpp35 StringRef SectionName = GO->getSection(); in getExplicitSectionGlobal()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/
DMCObjectWriter.cpp48 const MCSection &SecA = SymA.getSection(); in isSymbolRefDifferenceFullyResolvedImpl()
DMCCodeView.cpp484 const MCSection *FirstSec = &Locs.front().getLabel()->getSection(); in encodeInlineLineTable()
486 if (&Loc.getLabel()->getSection() != FirstSec) { in encodeInlineLineTable()
600 if (&Loc.getLabel()->getSection() == &LastLabel->getSection()) in encodeInlineLineTable()
DELFObjectWriter.cpp672 static_cast<const MCSectionELF &>(Symbol.getSection()); in computeSymbolTable()
1028 const MCSectionELF *Sec = cast<MCSectionELF>(&Sym->getSection()); in writeSection()
1306 Sym = Sym->getSection().getBeginSymbol(); in executePostLayoutBinding()
1387 auto &Sec = cast<MCSectionELF>(Sym->getSection()); in shouldRelocateWithSymbol()
1442 const MCSection &SecB = SymB.getSection(); in recordRelocation()
1470 ? cast<MCSectionELF>(&SymA->getSection()) in recordRelocation()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/MCTargetDesc/
DBPFELFObjectWriter.cpp57 MCSection &Section = Sym.getSection(); in getRelocType()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/
DMCSectionELF.h86 const MCSection *getAssociatedSection() const { return &AssociatedSymbol->getSection(); } in getAssociatedSection()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DGlobalValue.h273 bool hasSection() const { return !getSection().empty(); } in hasSection()
274 StringRef getSection() const;
DGlobalObject.h109 StringRef getSection() const { in getSection() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVTargetObjectFile.cpp48 StringRef Section = GVA->getSection(); in isGlobalInSmallSection()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/MCTargetDesc/
DWebAssemblyWasmObjectWriter.cpp49 return &SyExp->getSymbol().getSection(); in getFixupSection()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/
DLanaiTargetObjectFile.cpp84 if (GVA->getSection().startswith(".ldata")) in isGlobalInSmallSectionImpl()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/AsmPrinter/
DDwarfFile.cpp41 MCSection *S = TheU->getSection(); in emitUnit()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/MCTargetDesc/
DARMMachObjectWriter.cpp366 Value += Writer->getSectionAddress(&S.getSection()); in requiresExternRelocation()
458 const MCSection &Sec = A->getSection(); in recordRelocation()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyldMachO.h132 SectionEntry &getSection(unsigned SectionID) { return Sections[SectionID]; } in getSection() function

1234