2009-06-23 22:01:43 +00:00
|
|
|
//===- 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-07-01 06:31:49 +00:00
|
|
|
//
|
|
|
|
// This file declares the MCSection class.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2009-06-23 22:01:43 +00:00
|
|
|
|
|
|
|
#ifndef LLVM_MC_MCSECTION_H
|
|
|
|
#define LLVM_MC_MCSECTION_H
|
|
|
|
|
|
|
|
#include <string>
|
2009-07-27 21:22:30 +00:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2009-06-23 22:01:43 +00:00
|
|
|
|
2009-07-31 17:02:00 +00:00
|
|
|
// FIXME: HORRIBLE HACK: major layering violation to get an enum.
|
|
|
|
#include "llvm/Target/TargetLoweringObjectFile.h"
|
2009-06-23 22:01:43 +00:00
|
|
|
|
2009-07-31 17:02:00 +00:00
|
|
|
namespace llvm {
|
|
|
|
class MCContext;
|
|
|
|
|
2009-07-01 06:31:49 +00:00
|
|
|
/// MCSection - Instances of this class represent a uniqued identifier for a
|
|
|
|
/// section in the current translation unit. The MCContext class uniques and
|
|
|
|
/// creates these.
|
2009-06-23 22:01:43 +00:00
|
|
|
class MCSection {
|
|
|
|
std::string Name;
|
2009-07-01 06:31:49 +00:00
|
|
|
MCSection(const MCSection&); // DO NOT IMPLEMENT
|
|
|
|
void operator=(const MCSection&); // DO NOT IMPLEMENT
|
2009-07-31 17:02:00 +00:00
|
|
|
protected:
|
|
|
|
MCSection(const StringRef &Name, MCContext &Ctx);
|
2009-07-01 06:31:49 +00:00
|
|
|
public:
|
2009-07-31 17:02:00 +00:00
|
|
|
virtual ~MCSection();
|
2009-06-24 01:03:06 +00:00
|
|
|
|
2009-07-31 17:02:00 +00:00
|
|
|
static MCSection *Create(const StringRef &Name, MCContext &Ctx);
|
2009-07-31 16:43:49 +00:00
|
|
|
|
2009-06-24 01:03:06 +00:00
|
|
|
const std::string &getName() const { return Name; }
|
2009-06-23 22:01:43 +00:00
|
|
|
};
|
|
|
|
|
2009-07-31 17:02:00 +00:00
|
|
|
/// MCSectionWithKind - This is used by targets that use the SectionKind enum
|
|
|
|
/// to classify their sections.
|
|
|
|
class MCSectionWithKind : public MCSection {
|
|
|
|
SectionKind Kind;
|
|
|
|
MCSectionWithKind(const StringRef &Name, SectionKind K, MCContext &Ctx)
|
|
|
|
: MCSection(Name, Ctx), Kind(K) {}
|
|
|
|
public:
|
|
|
|
|
|
|
|
static MCSectionWithKind *Create(const StringRef &Name, SectionKind K,
|
|
|
|
MCContext &Ctx);
|
|
|
|
|
|
|
|
SectionKind getKind() const { return Kind; }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2009-06-23 22:01:43 +00:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|