mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-11 08:07:22 +00:00
4a7bc1e5aa
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@77787 91177308-0d34-0410-b5e6-96231b3b80d8
52 lines
1.5 KiB
C++
52 lines
1.5 KiB
C++
//===- MCSection.h - Machine Code Sections ----------------------*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file declares the MCSection class.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_MC_MCSECTION_H
|
|
#define LLVM_MC_MCSECTION_H
|
|
|
|
#include <string>
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
// FIXME: HORRIBLE HACK: major layering violation to get an enum.
|
|
#include "llvm/Target/TargetLoweringObjectFile.h"
|
|
|
|
namespace llvm {
|
|
class MCContext;
|
|
|
|
/// MCSection - Instances of this class represent a uniqued identifier for a
|
|
/// section in the current translation unit. The MCContext class uniques and
|
|
/// creates these.
|
|
class MCSection {
|
|
std::string Name;
|
|
MCSection(const MCSection&); // DO NOT IMPLEMENT
|
|
void operator=(const MCSection&); // DO NOT IMPLEMENT
|
|
protected:
|
|
MCSection(const StringRef &Name, SectionKind K, MCContext &Ctx);
|
|
SectionKind Kind;
|
|
public:
|
|
virtual ~MCSection();
|
|
|
|
static MCSection *Create(const StringRef &Name, SectionKind K,
|
|
MCContext &Ctx);
|
|
|
|
const std::string &getName() const { return Name; }
|
|
SectionKind getKind() const { return Kind; }
|
|
};
|
|
|
|
|
|
typedef MCSection MCSectionELF;
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif
|