HomeSort by: relevance | last modified time | path
    Searched refs:MCSectionELF (Results 1 - 25 of 26) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonTargetObjectFile.h 13 #include "llvm/MC/MCSectionELF.h"
42 MCSectionELF *SmallDataSection;
43 MCSectionELF *SmallBSSSection;
HexagonAsmPrinter.cpp 41 #include "llvm/MC/MCSectionELF.h"
203 MCSectionELF *Section = OutStreamer.getContext().getELFSection(
231 MCSectionELF *Section = OutStreamer.getContext().getELFSection(
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCELFObjectTargetWriter.cpp 31 MCSectionELF &Sec) {}
MCSectionELF.cpp 1 //===- lib/MC/MCSectionELF.cpp - ELF Code Section Representation ----------===//
9 #include "llvm/MC/MCSectionELF.h"
22 bool MCSectionELF::ShouldOmitSectionDirective(StringRef Name,
53 void MCSectionELF::PrintSwitchToSection(const MCAsmInfo &MAI, const Triple &T,
199 bool MCSectionELF::UseCodeAlign() const {
203 bool MCSectionELF::isVirtualSection() const {
207 StringRef MCSectionELF::getVirtualSectionKind() const { return "SHT_NOBITS"; }
ELFObjectWriter.cpp 34 #include "llvm/MC/MCSectionELF.h"
70 using SectionIndexMapTy = DenseMap<const MCSectionELF *, uint32_t>;
75 bool isDwoSection(const MCSectionELF &Sec) {
140 std::vector<const MCSectionELF *> SectionTable;
141 unsigned addToSectionTable(const MCSectionELF *Sec);
177 std::map<const MCSectionELF *, std::pair<uint64_t, uint64_t>>;
194 MCSectionELF *createRelocationSection(MCContext &Ctx,
195 const MCSectionELF &Sec);
209 void writeRelocations(const MCAssembler &Asm, const MCSectionELF &Sec);
214 const MCSectionELF &Section)
    [all...]
MCContext.cpp 27 #include "llvm/MC/MCSectionELF.h"
444 void MCContext::renameELFSection(MCSectionELF *Section, StringRef Name) {
459 const_cast<MCSectionELF *>(Section)->setSectionName(CachedName);
462 MCSectionELF *MCContext::createELFSectionImpl(StringRef Section, unsigned Type,
487 MCSectionELF(Section, Type, Flags, K, EntrySize, Group, Comdat, UniqueID,
498 MCSectionELF *MCContext::createELFRelSection(const Twine &Name, unsigned Type,
501 const MCSectionELF *RelInfoSection) {
512 MCSectionELF *MCContext::getELFNamedSection(const Twine &Prefix,
520 MCSectionELF *MCContext::getELFSection(const Twine &Section, unsigned Type,
533 MCSectionELF *MCContext::getELFSection(const Twine &Section, unsigned Type
    [all...]
MCELFStreamer.cpp 28 #include "llvm/MC/MCSectionELF.h"
103 const MCSectionELF &Section =
104 static_cast<const MCSectionELF &>(*getCurrentSectionOnly());
114 const MCSectionELF &Section =
115 static_cast<const MCSectionELF &>(*getCurrentSectionOnly());
155 auto *SectionELF = static_cast<const MCSectionELF *>(Section);
MCObjectFileInfo.cpp 19 #include "llvm/MC/MCSectionELF.h"
1033 const MCSectionELF &ElfSec = static_cast<const MCSectionELF &>(TextSec);
1051 const MCSectionELF &ElfSec = static_cast<const MCSectionELF &>(TextSec);
1069 const auto *ElfSec = static_cast<const MCSectionELF *>(TextSec);
1072 auto *S = static_cast<MCSectionELF *>(PseudoProbeSection);
1095 auto *S = static_cast<MCSectionELF *>(PseudoProbeDescSection);
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCSectionELF.h 1 //===- MCSectionELF.h - ELF Machine Code Sections ---------------*- C++ -*-===//
9 // This file declares the MCSectionELF class.
28 class MCSectionELF final : public MCSection {
54 MCSectionELF(StringRef Name, unsigned type, unsigned flags, SectionKind K,
MCContext.h 54 class MCSectionELF;
115 SpecificBumpPtrAllocator<MCSectionELF> ELFAllocator;
324 std::map<ELFSectionKey, MCSectionELF *> ELFUniquingMap;
350 MCSectionELF *createELFSectionImpl(StringRef Section, unsigned Type,
537 MCSectionELF *getELFSection(const Twine &Section, unsigned Type,
542 MCSectionELF *getELFSection(const Twine &Section, unsigned Type,
548 MCSectionELF *getELFSection(const Twine &Section, unsigned Type,
555 MCSectionELF *getELFSection(const Twine &Section, unsigned Type,
561 MCSectionELF *getELFSection(const Twine &Section, unsigned Type,
571 MCSectionELF *getELFNamedSection(const Twine &Prefix, const Twine &Suffix
    [all...]
MCELFObjectWriter.h 15 #include "llvm/MC/MCSectionELF.h"
95 virtual void addTargetSectionFlags(MCContext &Ctx, MCSectionELF &Sec);
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/MCTargetDesc/
BPFELFObjectWriter.cpp 58 const MCSectionELF *SectionELF = dyn_cast<MCSectionELF>(&Section);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/MCTargetDesc/
MipsOptionRecord.cpp 17 #include "llvm/MC/MCSectionELF.h"
36 MCSectionELF *Sec =
55 MCSectionELF *Sec = Context.getELFSection(".reginfo", ELF::SHT_MIPS_REGINFO,
MipsTargetStreamer.cpp 22 #include "llvm/MC/MCSectionELF.h"
899 MCSectionELF &Section = static_cast<MCSectionELF &>(S);
1006 MCSectionELF *Sec = Context.getELFSection(".pdr", ELF::SHT_PROGBITS, 0);
1311 MCSectionELF *Sec = Context.getELFSection(
  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
R600AsmPrinter.cpp 24 #include "llvm/MC/MCSectionELF.h"
112 MCSectionELF *ConfigSection =
121 MCSectionELF *CommentSection =
AMDGPUAsmPrinter.cpp 32 #include "llvm/MC/MCSectionELF.h"
469 MCSectionELF *ConfigSection =
512 MCSectionELF *CommentSection =
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARM/MCTargetDesc/
ARMELFObjectWriter.cpp 44 void addTargetSectionFlags(MCContext &Ctx, MCSectionELF &Sec) override;
272 MCSectionELF &Sec) {
278 MCSectionELF *TextSection =
279 static_cast<MCSectionELF *>(Ctx.getObjectFileInfo()->getTextSection());
ARMELFStreamer.cpp 38 #include "llvm/MC/MCSectionELF.h"
1213 const MCSectionELF &FnSection =
1214 static_cast<const MCSectionELF &>(Fn.getSection());
1227 MCSectionELF *EHSection = getContext().getELFSection(
  /src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64TargetStreamer.cpp 20 #include "llvm/MC/MCSectionELF.h"
67 MCSectionELF *Nt = Context.getELFSection(".note.gnu.property", ELF::SHT_NOTE,
  /src/external/apache2/llvm/lib/libLLVMMC/
Makefile 48 MCSectionELF.cpp \
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 20 #include "llvm/MC/MCSectionELF.h"
649 if (const MCSectionELF *Section =
650 cast_or_null<MCSectionELF>(CurrentSection.first))
658 MCSectionELF *Section =
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 50 #include "llvm/MC/MCSectionELF.h"
759 MCSectionELF *Section = Ctx.getELFSection(
794 static MCSectionELF *selectELFSectionForGlobal(
846 MCSectionELF *Section = selectELFSectionForGlobal(
910 const auto *LSDA = cast<MCSectionELF>(LSDASection);
1006 static MCSectionELF *getStaticStructorSection(MCContext &Ctx, bool UseInitArray,
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BTFDebug.cpp 22 #include "llvm/MC/MCSectionELF.h"
977 const MCSectionELF *SectionELF = dyn_cast<MCSectionELF>(&Section);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsAsmPrinter.cpp 52 #include "llvm/MC/MCSectionELF.h"
1050 MCSectionELF *M = OutContext.getELFSection(
  /src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/
PPCAsmPrinter.cpp 54 #include "llvm/MC/MCSectionELF.h"
1587 MCSectionELF *Section = OutStreamer->getContext().getELFSection(
1617 MCSectionELF *Section = OutContext.getELFSection(

Completed in 69 milliseconds

1 2