Searched defs:MCContext (Results 1 - 5 of 5) sorted by last modified time

/external/swiftshader/third_party/LLVM/include/llvm/MC/
H A DMCContext.h1 //===- MCContext.h - Machine Code Context -----------------------*- C++ -*-===//
37 /// MCContext - Context object for machine code objects. This class owns all
40 class MCContext { class in namespace:llvm
41 MCContext(const MCContext&); // DO NOT IMPLEMENT
42 MCContext &operator=(const MCContext&); // DO NOT IMPLEMENT
118 explicit MCContext(const MCAsmInfo &MAI, const MCRegisterInfo &MRI,
120 ~MCContext();
158 /// still want any modifications to the table itself to use the MCContext
[all...]
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCContext.cpp1 //===- lib/MC/MCContext.cpp - Machine Code Context ------------------------===//
10 #include "llvm/MC/MCContext.h"
30 MCContext::MCContext(const MCAsmInfo &mai, const MCRegisterInfo &mri, function in class:MCContext
48 MCContext::~MCContext() {
65 MCSymbol *MCContext::GetOrCreateSymbol(StringRef Name) {
81 MCSymbol *MCContext::CreateSymbol(StringRef Name) {
106 MCSymbol *MCContext::GetOrCreateSymbol(const Twine &Name) {
112 MCSymbol *MCContext
[all...]
/external/llvm/unittests/MC/
H A DDwarfLineTables.cpp13 #include "llvm/MC/MCContext.h"
27 std::unique_ptr<MCContext> Ctx;
42 Ctx = llvm::make_unique<MCContext>(MAI.get(), MRI.get(), nullptr);
46 operator MCContext &() { return *Ctx; };
/external/llvm/include/llvm/MC/
H A DMCContext.h1 //===- MCContext.h - Machine Code Context -----------------------*- C++ -*-===//
51 class MCContext { class in namespace:llvm
52 MCContext(const MCContext &) = delete;
53 MCContext &operator=(const MCContext &) = delete;
240 explicit MCContext(const MCAsmInfo *MAI, const MCRegisterInfo *MRI,
243 ~MCContext();
312 /// still want any modifications to the table itself to use the MCContext
592 /// \brief Placement new for using the MCContext'
[all...]
/external/llvm/lib/MC/
H A DMCContext.cpp1 //===- lib/MC/MCContext.cpp - Machine Code Context ------------------------===//
10 #include "llvm/MC/MCContext.h"
44 MCContext::MCContext(const MCAsmInfo *mai, const MCRegisterInfo *mri, function in class:MCContext
62 MCContext::~MCContext() {
74 void MCContext::reset() {
114 MCSymbol *MCContext::getOrCreateSymbol(const Twine &Name) {
127 MCSymbolELF *MCContext::getOrCreateSectionSymbol(const MCSectionELF &Section) {
139 MCSymbol *MCContext
[all...]

Completed in 146 milliseconds