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"
|
2009-06-30 00:33:19 +00:00
|
|
|
#include "llvm/MC/MCStreamer.h"
|
2009-06-21 20:16:42 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
2009-06-29 20:37:27 +00:00
|
|
|
class AsmExpr;
|
2009-06-24 04:31:49 +00:00
|
|
|
class MCContext;
|
2009-06-23 18:41:30 +00:00
|
|
|
class MCInst;
|
2009-06-24 00:52:40 +00:00
|
|
|
class MCStreamer;
|
2009-06-30 01:49:52 +00:00
|
|
|
class MCValue;
|
|
|
|
|
2009-06-21 20:16:42 +00:00
|
|
|
class AsmParser {
|
2009-06-30 23:38:38 +00:00
|
|
|
public:
|
|
|
|
struct X86Operand;
|
|
|
|
|
|
|
|
private:
|
2009-06-21 20:16:42 +00:00
|
|
|
AsmLexer Lexer;
|
2009-06-24 04:31:49 +00:00
|
|
|
MCContext &Ctx;
|
2009-06-24 00:52:40 +00:00
|
|
|
MCStreamer &Out;
|
|
|
|
|
2009-06-21 20:16:42 +00:00
|
|
|
public:
|
2009-06-24 04:31:49 +00:00
|
|
|
AsmParser(SourceMgr &SM, MCContext &ctx, MCStreamer &OutStr)
|
|
|
|
: Lexer(SM), Ctx(ctx), Out(OutStr) {}
|
2009-06-21 20:16:42 +00:00
|
|
|
~AsmParser() {}
|
|
|
|
|
|
|
|
bool Run();
|
|
|
|
|
2009-06-21 20:54:55 +00:00
|
|
|
private:
|
|
|
|
bool ParseStatement();
|
2009-06-30 00:49:23 +00:00
|
|
|
|
|
|
|
void Warning(SMLoc L, const char *Msg);
|
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-25 21:56:11 +00:00
|
|
|
bool ParseAssignment(const char *Name, bool IsDotSet);
|
2009-06-29 20:37:27 +00:00
|
|
|
|
|
|
|
/// ParseExpression - Parse a general assembly expression.
|
|
|
|
///
|
|
|
|
/// @param Res - The resulting expression. The pointer value is null on error.
|
|
|
|
/// @result - False on success.
|
|
|
|
bool ParseExpression(AsmExpr *&Res);
|
2009-06-30 01:49:52 +00:00
|
|
|
|
|
|
|
/// ParseAbsoluteExpression - Parse an expression which must evaluate to an
|
|
|
|
/// absolute value.
|
2009-06-29 20:37:27 +00:00
|
|
|
///
|
|
|
|
/// @param Res - The value of the absolute expression. The result is undefined
|
|
|
|
/// on error.
|
|
|
|
/// @result - False on success.
|
|
|
|
bool ParseAbsoluteExpression(int64_t &Res);
|
|
|
|
|
2009-06-30 01:49:52 +00:00
|
|
|
/// ParseRelocatableExpression - Parse an expression which must be
|
|
|
|
/// relocatable.
|
|
|
|
///
|
|
|
|
/// @param Res - The relocatable expression value. The result is undefined on
|
|
|
|
/// error.
|
|
|
|
/// @result - False on success.
|
|
|
|
bool ParseRelocatableExpression(MCValue &Res);
|
|
|
|
|
2009-07-02 02:09:07 +00:00
|
|
|
/// ParseParenRelocatableExpression - Parse an expression which must be
|
|
|
|
/// relocatable, assuming that an initial '(' has already been consumed.
|
|
|
|
///
|
|
|
|
/// @param Res - The relocatable expression value. The result is undefined on
|
|
|
|
/// error.
|
|
|
|
/// @result - False on success.
|
|
|
|
///
|
|
|
|
/// @see ParseRelocatableExpression, ParseParenExpr.
|
|
|
|
bool ParseParenRelocatableExpression(MCValue &Res);
|
|
|
|
|
2009-06-29 20:37:27 +00:00
|
|
|
bool ParsePrimaryExpr(AsmExpr *&Res);
|
|
|
|
bool ParseBinOpRHS(unsigned Precedence, AsmExpr *&Res);
|
|
|
|
bool ParseParenExpr(AsmExpr *&Res);
|
2009-06-23 18:41:30 +00:00
|
|
|
|
|
|
|
// X86 specific.
|
2009-06-30 23:38:38 +00:00
|
|
|
bool ParseX86InstOperands(const char *InstName, MCInst &Inst);
|
2009-06-23 18:41:30 +00:00
|
|
|
bool ParseX86Operand(X86Operand &Op);
|
|
|
|
bool ParseX86MemOperand(X86Operand &Op);
|
2009-07-02 01:58:24 +00:00
|
|
|
bool ParseX86Register(X86Operand &Op);
|
2009-06-24 04:43:34 +00:00
|
|
|
|
|
|
|
// Directive Parsing.
|
2009-06-24 05:13:15 +00:00
|
|
|
bool ParseDirectiveDarwinSection(); // Darwin specific ".section".
|
|
|
|
bool ParseDirectiveSectionSwitch(const char *Section,
|
|
|
|
const char *Directives = 0);
|
2009-06-24 23:30:00 +00:00
|
|
|
bool ParseDirectiveAscii(bool ZeroTerminated); // ".ascii", ".asciiz"
|
|
|
|
bool ParseDirectiveValue(unsigned Size); // ".byte", ".long", ...
|
|
|
|
bool ParseDirectiveFill(); // ".fill"
|
|
|
|
bool ParseDirectiveSpace(); // ".space"
|
2009-06-25 21:56:11 +00:00
|
|
|
bool ParseDirectiveSet(); // ".set"
|
2009-06-25 22:44:51 +00:00
|
|
|
bool ParseDirectiveOrg(); // ".org"
|
2009-06-29 23:46:59 +00:00
|
|
|
// ".align{,32}", ".p2align{,w,l}"
|
|
|
|
bool ParseDirectiveAlign(bool IsPow2, unsigned ValueSize);
|
2009-06-30 00:33:19 +00:00
|
|
|
|
|
|
|
/// ParseDirectiveSymbolAttribute - Parse a directive like ".globl" which
|
|
|
|
/// accepts a single symbol (which should be a label or an external).
|
|
|
|
bool ParseDirectiveSymbolAttribute(MCStreamer::SymbolAttr Attr);
|
2009-06-24 04:43:34 +00:00
|
|
|
|
2009-06-21 20:16:42 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|