You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
953 B
33 lines
953 B
3 years ago
|
//===-- MCTargetAsmParser.cpp - Target Assembly Parser ---------------------==//
|
||
|
//
|
||
|
// The LLVM Compiler Infrastructure
|
||
|
//
|
||
|
// This file is distributed under the University of Illinois Open Source
|
||
|
// License. See LICENSE.TXT for details.
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#include "llvm/MC/MCParser/MCTargetAsmParser.h"
|
||
|
#include "llvm/MC/MCContext.h"
|
||
|
using namespace llvm_ks;
|
||
|
|
||
|
MCTargetAsmParser::MCTargetAsmParser(MCTargetOptions const &MCOptions,
|
||
|
const MCSubtargetInfo &STI)
|
||
|
: AvailableFeatures(0), ParsingInlineAsm(false), MCOptions(MCOptions),
|
||
|
STI(&STI)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
MCTargetAsmParser::~MCTargetAsmParser() {
|
||
|
}
|
||
|
|
||
|
MCSubtargetInfo &MCTargetAsmParser::copySTI() {
|
||
|
MCSubtargetInfo &STICopy = getContext().getSubtargetCopy(getSTI());
|
||
|
STI = &STICopy;
|
||
|
return STICopy;
|
||
|
}
|
||
|
|
||
|
const MCSubtargetInfo &MCTargetAsmParser::getSTI() const {
|
||
|
return *STI;
|
||
|
}
|