diff options
Diffstat (limited to 'llvm/lib')
-rw-r--r-- | llvm/lib/MC/CMakeLists.txt | 1 | ||||
-rw-r--r-- | llvm/lib/MC/MCContext.cpp | 12 | ||||
-rw-r--r-- | llvm/lib/MC/MCSection.cpp | 31 |
3 files changed, 32 insertions, 12 deletions
diff --git a/llvm/lib/MC/CMakeLists.txt b/llvm/lib/MC/CMakeLists.txt index 3dd1e181910..82d400bf443 100644 --- a/llvm/lib/MC/CMakeLists.txt +++ b/llvm/lib/MC/CMakeLists.txt @@ -3,6 +3,7 @@ add_llvm_library(LLVMMC MCAsmParser.cpp MCAsmStreamer.cpp MCContext.cpp + MCSection.cpp MCStreamer.cpp TargetAsmParser.cpp ) diff --git a/llvm/lib/MC/MCContext.cpp b/llvm/lib/MC/MCContext.cpp index 5f3f1251696..e6fb5c8809b 100644 --- a/llvm/lib/MC/MCContext.cpp +++ b/llvm/lib/MC/MCContext.cpp @@ -25,18 +25,6 @@ MCSection *MCContext::GetSection(const StringRef &Name) const { return I != Sections.end() ? I->second : 0; } - -MCSection::MCSection(const StringRef &_Name, MCContext &Ctx) : Name(_Name) { - MCSection *&Entry = Ctx.Sections[Name]; - assert(Entry == 0 && "Multiple sections with the same name created"); - Entry = this; -} - -MCSection *MCSection::Create(const StringRef &Name, MCContext &Ctx) { - return new (Ctx) MCSection(Name, Ctx); -} - - MCSymbol *MCContext::CreateSymbol(const StringRef &Name) { assert(Name[0] != '\0' && "Normal symbols cannot be unnamed!"); diff --git a/llvm/lib/MC/MCSection.cpp b/llvm/lib/MC/MCSection.cpp new file mode 100644 index 00000000000..2a2b0b6fafa --- /dev/null +++ b/llvm/lib/MC/MCSection.cpp @@ -0,0 +1,31 @@ +//===- lib/MC/MCSection.cpp - Machine Code Section Representation ---------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "llvm/MC/MCSection.h" +#include "llvm/MC/MCContext.h" +using namespace llvm; + +MCSection::~MCSection() { +} + +MCSection::MCSection(const StringRef &N, MCContext &Ctx) : Name(N) { + MCSection *&Entry = Ctx.Sections[Name]; + assert(Entry == 0 && "Multiple sections with the same name created"); + Entry = this; +} + +MCSection *MCSection::Create(const StringRef &Name, MCContext &Ctx) { + return new (Ctx) MCSection(Name, Ctx); +} + + +MCSectionWithKind * +MCSectionWithKind::Create(const StringRef &Name, SectionKind K, MCContext &Ctx){ + return new (Ctx) MCSectionWithKind(Name, K, Ctx); +} |