2009-06-21 20:16:42 +00:00
|
|
|
//===- AsmParser.h - Parser for Assembly Files ------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This class declares the parser for assembly files.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef ASMPARSER_H
|
|
|
|
#define ASMPARSER_H
|
|
|
|
|
|
|
|
#include "AsmLexer.h"
|
|
|
|
|
|
|
|
namespace llvm {
|
2009-06-23 18:41:30 +00:00
|
|
|
class MCInst;
|
2009-06-22 01:29:09 +00:00
|
|
|
|
2009-06-21 20:16:42 +00:00
|
|
|
class AsmParser {
|
|
|
|
AsmLexer Lexer;
|
2009-06-22 01:29:09 +00:00
|
|
|
struct X86Operand;
|
2009-06-21 20:16:42 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
AsmParser(SourceMgr &SM) : Lexer(SM) {}
|
|
|
|
~AsmParser() {}
|
|
|
|
|
|
|
|
bool Run();
|
|
|
|
|
2009-06-21 20:54:55 +00:00
|
|
|
private:
|
|
|
|
bool ParseStatement();
|
|
|
|
|
2009-06-21 21:22:11 +00:00
|
|
|
bool Error(SMLoc L, const char *Msg);
|
|
|
|
bool TokError(const char *Msg);
|
2009-06-22 01:29:09 +00:00
|
|
|
|
|
|
|
void EatToEndOfStatement();
|
|
|
|
|
2009-06-22 05:51:26 +00:00
|
|
|
bool ParseExpression(int64_t &Res);
|
2009-06-22 06:32:03 +00:00
|
|
|
bool ParsePrimaryExpr(int64_t &Res);
|
2009-06-23 05:57:07 +00:00
|
|
|
bool ParseBinOpRHS(unsigned Precedence, int64_t &Res);
|
2009-06-22 06:32:03 +00:00
|
|
|
bool ParseParenExpr(int64_t &Res);
|
2009-06-23 18:41:30 +00:00
|
|
|
|
|
|
|
// X86 specific.
|
|
|
|
bool ParseX86InstOperands(MCInst &Inst);
|
|
|
|
bool ParseX86Operand(X86Operand &Op);
|
|
|
|
bool ParseX86MemOperand(X86Operand &Op);
|
2009-06-21 20:16:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|