HomeSort by relevance Sort by last modified time
    Searched defs:MCSection (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/MC/
MCSection.cpp 1 //===- 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)
26 MCSymbol *MCSection::getEndSymbol(MCContext &Ctx) {
32 bool MCSection::hasEnded() const { return End && End->isInSection(); }
34 MCSection::~MCSection() {
37 void MCSection::setBundleLockState(BundleLockStateType NewState)
    [all...]
WinCOFFObjectWriter.cpp 27 #include "llvm/MC/MCSection.h"
107 MCSectionCOFF const *MCSection;
121 typedef DenseMap<MCSection const *, COFFSection *> section_map;
221 : Name(name), MCSection(nullptr), Symbol(nullptr) {
340 coff_section->MCSection = &Sec;
667 MCSection *Section = Fragment->getParent();
725 MCSection *TargetSection = &A.getSection();
888 const MCSectionCOFF &MCSec = *Section->MCSection;
    [all...]
  /external/llvm/include/llvm/MC/
MCSection.h 1 //===- MCSection.h - Machine Code Sections ----------------------*- C++ -*-===//
10 // This file declares the MCSection class.
31 class MCSection;
49 class MCSection {
69 MCSection(const MCSection &) = delete;
70 void operator=(const MCSection &) = delete;
105 MCSection(SectionVariant V, SectionKind K, MCSymbol *Begin);
108 ~MCSection();
117 return const_cast<MCSection *>(this)->getBeginSymbol()
    [all...]

Completed in 52 milliseconds