Home
last modified time | relevance | path

Searched refs:MCSectionELF (Results 1 – 25 of 32) sorted by relevance

12

/llvm-project-15.0.7/llvm/lib/MC/
H A DELFObjectWriter.cpp620 MCSectionELF *SymtabSection = in computeSymbolTable()
679 const MCSectionELF &Section = in computeSymbolTable()
721 MCSectionELF *SymtabShndxSection = in computeSymbolTable()
845 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec); in writeSectionData()
1012 const MCSectionELF *Sec = cast<MCSectionELF>(&Sym->getSection()); in writeSection()
1058 MCSectionELF *StrtabSection = in writeObject()
1072 std::vector<MCSectionELF *> Groups; in writeObject()
1075 MCSectionELF &Section = static_cast<MCSectionELF &>(Sec); in writeObject()
1095 MCSectionELF *Group = in writeObject()
1138 MCSectionELF *AddrsigSection; in writeObject()
[all …]
H A DMCSectionELF.cpp22 bool MCSectionELF::shouldOmitSectionDirective(StringRef Name, in shouldOmitSectionDirective()
53 void MCSectionELF::printSwitchToSection(const MCAsmInfo &MAI, const Triple &T, in printSwitchToSection()
208 bool MCSectionELF::useCodeAlign() const { in useCodeAlign()
212 bool MCSectionELF::isVirtualSection() const { in isVirtualSection()
216 StringRef MCSectionELF::getVirtualSectionKind() const { return "SHT_NOBITS"; } in getVirtualSectionKind()
H A DMCContext.cpp471 MCSectionELF *MCContext::createELFSectionImpl(StringRef Section, unsigned Type, in createELFSectionImpl()
496 MCSectionELF(Section, Type, Flags, K, EntrySize, Group, Comdat, UniqueID, in createELFSectionImpl()
507 MCSectionELF *MCContext::createELFRelSection(const Twine &Name, unsigned Type, in createELFRelSection()
510 const MCSectionELF *RelInfoSection) { in createELFRelSection()
521 MCSectionELF *MCContext::getELFNamedSection(const Twine &Prefix, in getELFNamedSection()
529 MCSectionELF *MCContext::getELFSection(const Twine &Section, unsigned Type, in getELFSection()
542 MCSectionELF *MCContext::getELFSection(const Twine &Section, unsigned Type, in getELFSection()
570 MCSectionELF *Result = in getELFSection()
581 MCSectionELF *MCContext::createELFGroupSection(const MCSymbolELF *Group, in createELFGroupSection()
H A DMCELFObjectTargetWriter.cpp31 MCSectionELF &Sec) {} in addTargetSectionFlags()
H A DMCObjectFileInfo.cpp1109 const MCSectionELF &ElfSec = static_cast<const MCSectionELF &>(TextSec); in getStackSizesSection()
1127 const MCSectionELF &ElfSec = static_cast<const MCSectionELF &>(TextSec); in getBBAddrMapSection()
1145 const auto *ElfSec = static_cast<const MCSectionELF *>(TextSec); in getPseudoProbeSection()
1148 auto *S = static_cast<MCSectionELF *>(PseudoProbeSection); in getPseudoProbeSection()
1171 auto *S = static_cast<MCSectionELF *>(PseudoProbeDescSection); in getPseudoProbeDescSection()
H A DMCELFStreamer.cpp104 const MCSectionELF &Section = in emitLabel()
105 static_cast<const MCSectionELF &>(*getCurrentSectionOnly()); in emitLabel()
115 const MCSectionELF &Section = in emitLabelAtPos()
116 static_cast<const MCSectionELF &>(*getCurrentSectionOnly()); in emitLabelAtPos()
156 auto *SectionELF = static_cast<const MCSectionELF *>(Section); in changeSection()
H A DCMakeLists.txt44 MCSectionELF.cpp
/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCContext.h53 class MCSectionELF; variable
134 SpecificBumpPtrAllocator<MCSectionELF> ELFAllocator;
347 std::map<ELFSectionKey, MCSectionELF *> ELFUniquingMap;
375 MCSectionELF *createELFSectionImpl(StringRef Section, unsigned Type,
564 MCSectionELF *getELFSection(const Twine &Section, unsigned Type, in getELFSection()
569 MCSectionELF *getELFSection(const Twine &Section, unsigned Type, in getELFSection()
575 MCSectionELF *getELFSection(const Twine &Section, unsigned Type, in getELFSection()
582 MCSectionELF *getELFSection(const Twine &Section, unsigned Type,
588 MCSectionELF *getELFSection(const Twine &Section, unsigned Type,
602 MCSectionELF *createELFRelSection(const Twine &Name, unsigned Type,
[all …]
H A DMCSectionELF.h26 class MCSectionELF final : public MCSection {
52 MCSectionELF(StringRef Name, unsigned type, unsigned flags, SectionKind K, in MCSectionELF() function
H A DMCELFObjectWriter.h97 virtual void addTargetSectionFlags(MCContext &Ctx, MCSectionELF &Sec);
/llvm-project-15.0.7/llvm/lib/Target/Hexagon/
H A DHexagonTargetObjectFile.h42 MCSectionELF *SmallDataSection;
43 MCSectionELF *SmallBSSSection;
H A DHexagonAsmPrinter.cpp203 MCSectionELF *Section = OutStreamer.getContext().getELFSection( in smallData()
231 MCSectionELF *Section = OutStreamer.getContext().getELFSection( in smallData()
/llvm-project-15.0.7/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFObjectWriter.cpp44 void addTargetSectionFlags(MCContext &Ctx, MCSectionELF &Sec) override;
272 MCSectionELF &Sec) { in addTargetSectionFlags()
278 MCSectionELF *TextSection = in addTargetSectionFlags()
279 static_cast<MCSectionELF *>(Ctx.getObjectFileInfo()->getTextSection()); in addTargetSectionFlags()
H A DARMELFStreamer.cpp1144 const MCSectionELF &FnSection = in SwitchToEHSection()
1145 static_cast<const MCSectionELF &>(Fn.getSection()); in SwitchToEHSection()
1158 MCSectionELF *EHSection = getContext().getELFSection( in SwitchToEHSection()
/llvm-project-15.0.7/llvm/lib/Target/BPF/MCTargetDesc/
H A DBPFELFObjectWriter.cpp59 const MCSectionELF *SectionELF = dyn_cast<MCSectionELF>(&Section); in getRelocType()
/llvm-project-15.0.7/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsOptionRecord.cpp36 MCSectionELF *Sec = in EmitMipsOptionRecord()
55 MCSectionELF *Sec = Context.getELFSection(".reginfo", ELF::SHT_MIPS_REGINFO, in EmitMipsOptionRecord()
H A DMipsTargetStreamer.cpp913 MCSectionELF &Section = static_cast<MCSectionELF &>(S); in finish()
1020 MCSectionELF *Sec = Context.getELFSection(".pdr", ELF::SHT_PROGBITS, 0); in emitDirectiveEnd()
1325 MCSectionELF *Sec = Context.getELFSection( in emitMipsAbiFlags()
/llvm-project-15.0.7/llvm/lib/Target/AMDGPU/
H A DR600AsmPrinter.cpp112 MCSectionELF *ConfigSection = in runOnMachineFunction()
121 MCSectionELF *CommentSection = in runOnMachineFunction()
/llvm-project-15.0.7/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64TargetStreamer.cpp69 MCSectionELF *Nt = Context.getELFSection(".note.gnu.property", ELF::SHT_NOTE, in emitNoteSection()
/llvm-project-15.0.7/bolt/lib/RuntimeLibs/
H A DHugifyRuntimeLibrary.cpp75 MCSectionELF *Section = in emitBinary()
/llvm-project-15.0.7/llvm/utils/gn/secondary/llvm/lib/MC/
H A DBUILD.gn57 "MCSectionELF.cpp",
/llvm-project-15.0.7/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp670 if (const MCSectionELF *Section = in ParseSectionArguments()
671 cast_or_null<MCSectionELF>(CurrentSection.first)) in ParseSectionArguments()
679 MCSectionELF *Section = in ParseSectionArguments()
/llvm-project-15.0.7/llvm/lib/Target/BPF/
H A DBTFDebug.cpp999 MCSectionELF *Sec = Ctx.getELFSection(".BTF", ELF::SHT_PROGBITS, 0); in emitBTFSection()
1039 MCSectionELF *Sec = Ctx.getELFSection(".BTF.ext", ELF::SHT_PROGBITS, 0); in emitBTFExtSection()
1205 const MCSectionELF *SectionELF = dyn_cast<MCSectionELF>(&Section); in beginFunctionImpl()
/llvm-project-15.0.7/bolt/lib/Core/
H A DBinarySection.cpp71 MCSectionELF *ELFSection = in emitAsData()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp789 MCSectionELF *Section = Ctx.getELFSection( in selectExplicitSectionGlobal()
824 static MCSectionELF *selectELFSectionForGlobal( in selectELFSectionForGlobal()
881 MCSectionELF *Section = selectELFSectionForGlobal( in selectELFSectionForGlobal()
945 const auto *LSDA = cast<MCSectionELF>(LSDASection); in getSectionForLSDA()
1041 static MCSectionELF *getStaticStructorSection(MCContext &Ctx, bool UseInitArray, in getStaticStructorSection()

12