40 lines
1.1 KiB
C++
40 lines
1.1 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>
|
|
|
|
namespace llvm {
|
|
|
|
/// 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;
|
|
private:
|
|
friend class MCContext;
|
|
MCSection(const char *_Name) : Name(_Name) {}
|
|
|
|
MCSection(const MCSection&); // DO NOT IMPLEMENT
|
|
void operator=(const MCSection&); // DO NOT IMPLEMENT
|
|
public:
|
|
|
|
const std::string &getName() const { return Name; }
|
|
};
|
|
|
|
} // end namespace llvm
|
|
|
|
#endif
|