Searched refs:getSection (Results 1 - 25 of 83) sorted by relevance

1234

/external/llvm/lib/MC/
H A DMCObjectWriter.cpp46 const MCSection &SecA = DataA.getSymbol().getSection();
47 const MCSection &SecB = FB.getParent()->getSection();
H A DMCWinEH.cpp35 cast<MCSectionCOFF>(&Function->getSection());
H A DMachObjectWriter.cpp122 if (NextSD.getSection().isVirtualSection())
210 if (SD.getSection().isVirtualSection()) {
221 const MCSectionMachO &Section = cast<MCSectionMachO>(SD.getSection());
474 cast<MCSectionMachO>(it->SectionData->getSection());
490 cast<MCSectionMachO>(it->SectionData->getSection());
506 cast<MCSectionMachO>(it->SectionData->getSection());
535 SectionIndexMap[&it->getSection()] = Index;
574 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
599 MSD.SectionIndex = SectionIndexMap.lookup(&Symbol.getSection());
678 const MCSection &SecA = SA.getSection();
[all...]
H A DWinCOFFStreamer.cpp97 Symbol->getSection().getVariant() == MCSection::SV_COFF) &&
123 Symbol->getSection().getVariant() == MCSection::SV_COFF) &&
184 Symbol->getSection().getVariant() == MCSection::SV_COFF) &&
H A DWinCOFFObjectWriter.cpp299 assert(SectionData.getSection().getVariant() == MCSection::SV_COFF
303 static_cast<MCSectionCOFF const &>(SectionData.getSection());
350 SectionMap[&SectionData.getSection()] = coff_section;
429 SectionMap[&BaseData.getFragment()->getParent()->getSection()];
689 assert(SectionMap.find(&SectionData->getSection()) != SectionMap.end() &&
694 COFFSection *coff_section = SectionMap[&SectionData->getSection()];
714 CrossSection = &Symbol.getSection() != &B->getSection();
911 static_cast<const MCSectionCOFF &>(Section->MCData->getSection());
942 COFFSection *Sec = SectionMap[&Section.getSection()];
[all...]
H A DELFObjectWriter.cpp560 (&OrigData.getFragment()->getParent()->getSection() ==
561 &OrigData.getSymbol().getSection())) &&
721 auto &Sec = cast<MCSectionELF>(Sym.getSection());
809 const MCSection &SecB = SymB.getSection();
810 if (&SecB != &FixupSection->getSection())
851 (SymA && !SymA->isUndefined()) ? &SymA->getSection() : nullptr;
940 static_cast<const MCSectionELF &>(it->getSection());
950 static_cast<const MCSectionELF &>(SD.getSection());
958 static_cast<const MCSectionELF *>(&RelSD->getSection());
1019 static_cast<const MCSectionELF&>(BaseSymbol->getSection());
[all...]
H A DMCAssembler.cpp72 if (!it->getSection().isVirtualSection())
75 if (it->getSection().isVirtualSection())
225 if (SD->getSection().isVirtualSection())
471 SD->getFragment()->getParent()->getSection()))
824 if (SD->getSection().isVirtualSection()) {
841 if (auto *ELFSec = dyn_cast<const MCSectionELF>(&SD->getSection()))
/external/llvm/include/llvm/IR/
H A DGlobalObject.h56 bool hasSection() const { return !StringRef(getSection()).empty(); }
57 const char *getSection() const { return Section.c_str(); } function in class:llvm::GlobalObject
H A DGlobalValue.h158 bool hasSection() const { return !StringRef(getSection()).empty(); }
165 const char *getSection() const;
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldCOFF.cpp73 if (Sym.getSection(SecI))
H A DRuntimeDyldMachO.h127 SectionEntry &getSection(unsigned SectionID) { return Sections[SectionID]; } function in class:llvm::RuntimeDyldMachO
H A DRuntimeDyldELF.h85 SectionEntry &getSection(unsigned SectionID) { return Sections[SectionID]; } function in class:llvm::RuntimeDyldELF
/external/llvm/lib/IR/
H A DGlobals.cpp99 setSection(GV->getSection());
102 const char *GlobalValue::getSection() const { function in class:GlobalValue
106 return GO->getSection();
109 return cast<GlobalObject>(this)->getSection();
/external/llvm/include/llvm/Object/
H A DELF.h406 const Elf_Shdr *getSection(const Elf_Sym *symb) const;
407 const Elf_Shdr *getSection(uint32_t Index) const;
523 ELFFile<ELFT>::getSection(const Elf_Sym *symb) const { function in class:llvm::object::ELFFile
525 return getSection(ExtendedSymbolTable.lookup(symb));
528 return getSection(symb->st_shndx);
589 const Elf_Shdr *SymTable = getSection(Sec->sh_link);
672 dot_strtab_sec = getSection(Sec.sh_link);
681 const Elf_Shdr *DynStr = getSection(Sec.sh_link);
717 dot_shstrtab_sec = getSection(getStringTableIndex());
840 return getEntry<T>(getSection(Sectio
853 ELFFile<ELFT>::getSection(uint32_t index) const { function in class:llvm::object::ELFFile
[all...]
H A DELFObjectFile.h129 return EF.getSection(Rel.d.a);
274 EF.getSymbolVersion(EF.getSection(Symb.d.b), symb, IsDefault);
318 const typename ELFFile<ELFT>::Elf_Shdr * Section = EF.getSection(ESym);
420 const Elf_Shdr *ESec = EF.getSection(ESym);
502 return !Reserved && (&*toELFShdrIter(Sec) == EF.getSection(ESym->st_shndx));
541 const Elf_Shdr *R = EF.getSection(EShdr->sh_info);
571 const Elf_Shdr *SymSec = EF.getSection(sec->sh_link);
597 const Elf_Shdr *RelocatedSec = EF.getSection(RelocationSec->sh_info);
721 EF.getSymbolName(EF.getSection(sec->sh_link), symb);
H A DObjectFile.h155 std::error_code getSection(section_iterator &Result) const;
343 inline std::error_code SymbolRef::getSection(section_iterator &Result) const { function in class:llvm::object::SymbolRef
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
H A DResizableDialog.java168 if (settings.getSection(sectionName) == null) {
171 return settings.getSection(sectionName);
/external/llvm/include/llvm/MC/
H A DMCSymbol.h133 /// getSection - Get the section associated with a defined, non-absolute
135 const MCSection &getSection() const { function in class:llvm::MCSymbol
/external/llvm/tools/obj2yaml/
H A Delf2yaml.cpp152 const Elf_Shdr *Shdr = Obj.getSection(&*Sym);
200 if (const Elf_Shdr *LinkSection = Obj.getSection(Shdr->sh_link)) {
218 if (const Elf_Shdr *InfoSection = Obj.getSection(Shdr->sh_info)) {
294 const Elf_Shdr *symtab = Obj.getSection(Shdr->sh_link);
310 const Elf_Shdr *sHdr = Obj.getSection(groupMembers[i]);
/external/doclava/res/assets/templates/assets/
H A Ddoclava-developer-docs.js131 function getSection() { function
152 var cookiePath = getSection() + "_";
242 var section = getSection();
299 var section = getSection();
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfFile.cpp53 const MCSection *USection = TheU->getSection();
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64MachObjectWriter.cpp129 const MCSectionMachO &RefSec = cast<MCSectionMachO>(Symbol.getSection());
291 Fragment->getParent()->getSection());
296 const MCSection &Sec = Symbol->getSection();
356 Asm.getSectionData(SD.getSymbol().getSection());
/external/llvm/lib/ExecutionEngine/RuntimeDyld/Targets/
H A DRuntimeDyldCOFFX86_64.h128 Symbol->getSection(SecI);
/external/llvm/tools/llvm-readobj/
H A DMachODumper.cpp292 static void getSection(const MachOObjectFile *Obj, function
296 MachO::section Sect = Obj->getSection(Sec);
397 getSection(Obj, Section.getRawDataRefImpl(), MOSection);
563 if (!error(Symbol.getSection(SecI)) && SecI != Obj->section_end())
/external/llvm/lib/Target/X86/MCTargetDesc/
H A DX86MachObjectWriter.cpp210 const MCSection &Sec = Symbol->getSection();
223 Fragment->getParent()->getSection());
560 SD->getSymbol().getSection());

Completed in 822 milliseconds

1234