Searched defs:MCSection (Results 1 - 5 of 5) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCSection.cpp1 //===- lib/MC/MCSection.cpp - Machine Code Section Representation ---------===//
10 #include "llvm/MC/MCSection.h"
17 // MCSection
20 MCSection::~MCSection() {
/external/llvm/lib/MC/
H A DMCSection.cpp1 //===- lib/MC/MCSection.cpp - Machine Code Section Representation ---------===//
10 #include "llvm/MC/MCSection.h"
19 // MCSection
22 MCSection::MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin) function in class:MCSection
26 MCSymbol *MCSection::getEndSymbol(MCContext &Ctx) {
32 bool MCSection::hasEnded() const { return End && End->isInSection(); }
34 MCSection::~MCSection() {
37 void MCSection
[all...]
H A DWinCOFFObjectWriter.cpp27 #include "llvm/MC/MCSection.h"
107 MCSectionCOFF const *MCSection; member in class:__anon14099::COFFSection
120 typedef DenseMap<MCSection const *, COFFSection *> section_map;
222 : Name(name), MCSection(nullptr), Symbol(nullptr) {
339 coff_section->MCSection = &Sec;
672 MCSection *Section = Fragment->getParent();
730 MCSection *TargetSection = &A.getSection();
897 const MCSectionCOFF &MCSec = *Section->MCSection;
/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCSection.h1 //===- MCSection.h - Machine Code Sections ----------------------*- C++ -*-===//
10 // This file declares the MCSection class.
26 /// MCSection - Instances of this class represent a uniqued identifier for a
29 class MCSection { class in namespace:llvm
38 MCSection(const MCSection&); // DO NOT IMPLEMENT
39 void operator=(const MCSection&); // DO NOT IMPLEMENT
41 MCSection(SectionVariant V, SectionKind K) : Variant(V), Kind(K) {} function in class:llvm::MCSection
45 virtual ~MCSection();
70 static bool classof(const MCSection *) { retur
[all...]
/external/llvm/include/llvm/MC/
H A DMCSection.h1 //===- MCSection.h - Machine Code Sections ----------------------*- C++ -*-===//
10 // This file declares the MCSection class.
30 class MCSection;
48 class MCSection { class in namespace:llvm
68 MCSection(const MCSection &) = delete;
69 void operator=(const MCSection &) = delete;
104 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
107 ~MCSection();
116 return const_cast<MCSection *>(thi
[all...]

Completed in 2917 milliseconds