2009-07-20 18:55:04 +00:00
|
|
|
//===-- MCAsmParser.cpp - Abstract Asm Parser Interface -------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-01-22 01:44:57 +00:00
|
|
|
#include "llvm/MC/MCParser/MCAsmParser.h"
|
|
|
|
#include "llvm/MC/MCParser/MCAsmLexer.h"
|
|
|
|
#include "llvm/MC/MCParser/MCParsedAsmOperand.h"
|
2010-01-15 19:28:38 +00:00
|
|
|
#include "llvm/Support/SourceMgr.h"
|
2009-07-20 18:55:04 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
MCAsmParser::MCAsmParser() {
|
|
|
|
}
|
|
|
|
|
|
|
|
MCAsmParser::~MCAsmParser() {
|
|
|
|
}
|
2010-01-15 19:28:38 +00:00
|
|
|
|
2010-01-19 21:44:56 +00:00
|
|
|
const AsmToken &MCAsmParser::getTok() {
|
|
|
|
return getLexer().getTok();
|
|
|
|
}
|
|
|
|
|
2010-01-15 19:28:38 +00:00
|
|
|
bool MCAsmParser::ParseExpression(const MCExpr *&Res) {
|
|
|
|
SMLoc L;
|
2010-01-15 19:51:05 +00:00
|
|
|
return ParseExpression(Res, L);
|
2010-01-15 19:28:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// getStartLoc - Get the location of the first token of this operand.
|
|
|
|
SMLoc MCParsedAsmOperand::getStartLoc() const { return SMLoc(); }
|
|
|
|
SMLoc MCParsedAsmOperand::getEndLoc() const { return SMLoc(); }
|
|
|
|
|
|
|
|
|