LLVM  8.0.1
MCTargetAsmParser.cpp
Go to the documentation of this file.
1 //===-- MCTargetAsmParser.cpp - Target Assembly Parser --------------------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
11 #include "llvm/MC/MCContext.h"
12 
13 using namespace llvm;
14 
16  const MCSubtargetInfo &STI,
17  const MCInstrInfo &MII)
18  : MCOptions(MCOptions), STI(&STI), MII(MII) {}
19 
21 
24  STI = &STICopy;
25  return STICopy;
26 }
27 
29  return *STI;
30 }
This class represents lattice values for constants.
Definition: AllocatorList.h:24
const MCSubtargetInfo * STI
Current STI.
MCTargetAsmParser(MCTargetOptions const &, const MCSubtargetInfo &STI, const MCInstrInfo &MII)
const MCSubtargetInfo & getSTI() const
Interface to description of machine instruction set.
Definition: MCInstrInfo.h:24
Generic base class for all target subtargets.
MCSubtargetInfo & copySTI()
Create a copy of STI and return a non-const reference to it.
~MCTargetAsmParser() override
MCSubtargetInfo & getSubtargetCopy(const MCSubtargetInfo &STI)
Definition: MCContext.cpp:534