2009-07-20 18:55:04 +00:00
|
|
|
//===-- llvm/MC/MCAsmParser.h - Abstract Asm Parser Interface ---*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_MC_MCASMPARSER_H
|
|
|
|
#define LLVM_MC_MCASMPARSER_H
|
|
|
|
|
2010-11-29 18:16:10 +00:00
|
|
|
#include "llvm/Support/DataTypes.h"
|
2011-10-16 04:47:35 +00:00
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
2009-07-28 22:22:31 +00:00
|
|
|
|
2009-07-20 18:55:04 +00:00
|
|
|
namespace llvm {
|
2010-01-19 20:27:46 +00:00
|
|
|
class AsmToken;
|
2010-07-17 02:26:10 +00:00
|
|
|
class MCAsmInfo;
|
2009-07-20 20:01:54 +00:00
|
|
|
class MCAsmLexer;
|
2010-07-12 17:54:38 +00:00
|
|
|
class MCAsmParserExtension;
|
2009-08-31 08:07:44 +00:00
|
|
|
class MCContext;
|
2009-08-31 08:08:17 +00:00
|
|
|
class MCExpr;
|
2012-10-18 15:49:34 +00:00
|
|
|
class MCInstPrinter;
|
|
|
|
class MCInstrInfo;
|
2012-10-15 17:19:13 +00:00
|
|
|
class MCParsedAsmOperand;
|
2009-09-10 00:59:15 +00:00
|
|
|
class MCStreamer;
|
2011-07-26 00:24:13 +00:00
|
|
|
class MCTargetAsmParser;
|
2009-07-28 22:22:31 +00:00
|
|
|
class SMLoc;
|
2011-10-16 04:47:35 +00:00
|
|
|
class SMRange;
|
2010-07-12 18:35:04 +00:00
|
|
|
class SourceMgr;
|
2010-07-12 17:54:38 +00:00
|
|
|
class StringRef;
|
2009-07-28 22:22:31 +00:00
|
|
|
class Twine;
|
2009-07-20 18:55:04 +00:00
|
|
|
|
2012-10-18 15:49:34 +00:00
|
|
|
/// MCAsmParserSemaCallback - Generic Sema callback for assembly parser.
|
|
|
|
class MCAsmParserSemaCallback {
|
|
|
|
public:
|
2012-10-18 19:39:30 +00:00
|
|
|
virtual void *LookupInlineAsmIdentifier(StringRef Name, void *Loc) = 0;
|
2012-10-18 15:49:34 +00:00
|
|
|
};
|
|
|
|
|
2009-07-20 18:55:04 +00:00
|
|
|
/// MCAsmParser - Generic assembler parser interface, for use by target specific
|
|
|
|
/// assembly parsers.
|
|
|
|
class MCAsmParser {
|
2010-07-12 17:54:38 +00:00
|
|
|
public:
|
2010-07-18 22:22:07 +00:00
|
|
|
typedef bool (*DirectiveHandler)(MCAsmParserExtension*, StringRef, SMLoc);
|
2010-07-12 17:54:38 +00:00
|
|
|
|
|
|
|
private:
|
2012-08-29 06:28:46 +00:00
|
|
|
MCAsmParser(const MCAsmParser &) LLVM_DELETED_FUNCTION;
|
|
|
|
void operator=(const MCAsmParser &) LLVM_DELETED_FUNCTION;
|
2010-07-17 02:26:10 +00:00
|
|
|
|
2011-07-26 00:24:13 +00:00
|
|
|
MCTargetAsmParser *TargetParser;
|
2010-07-17 02:26:10 +00:00
|
|
|
|
2010-08-11 06:37:09 +00:00
|
|
|
unsigned ShowParsedOperands : 1;
|
|
|
|
|
2009-07-20 18:55:04 +00:00
|
|
|
protected: // Can only create subclasses.
|
|
|
|
MCAsmParser();
|
2010-07-12 17:18:45 +00:00
|
|
|
|
2009-07-20 18:55:04 +00:00
|
|
|
public:
|
|
|
|
virtual ~MCAsmParser();
|
2009-07-20 20:01:54 +00:00
|
|
|
|
2010-07-12 17:54:38 +00:00
|
|
|
virtual void AddDirectiveHandler(MCAsmParserExtension *Object,
|
|
|
|
StringRef Directive,
|
|
|
|
DirectiveHandler Handler) = 0;
|
|
|
|
|
2010-07-12 18:35:04 +00:00
|
|
|
virtual SourceMgr &getSourceManager() = 0;
|
|
|
|
|
2009-07-20 20:01:54 +00:00
|
|
|
virtual MCAsmLexer &getLexer() = 0;
|
2009-07-28 22:22:31 +00:00
|
|
|
|
2009-08-31 08:07:44 +00:00
|
|
|
virtual MCContext &getContext() = 0;
|
|
|
|
|
2010-07-12 17:54:38 +00:00
|
|
|
/// getStreamer - Return the output streamer for the assembler.
|
2009-09-10 00:59:15 +00:00
|
|
|
virtual MCStreamer &getStreamer() = 0;
|
|
|
|
|
2011-07-26 00:24:13 +00:00
|
|
|
MCTargetAsmParser &getTargetParser() const { return *TargetParser; }
|
|
|
|
void setTargetParser(MCTargetAsmParser &P);
|
2010-07-17 02:26:10 +00:00
|
|
|
|
2012-01-10 21:49:42 +00:00
|
|
|
virtual unsigned getAssemblerDialect() { return 0;}
|
2012-01-31 18:14:05 +00:00
|
|
|
virtual void setAssemblerDialect(unsigned i) { }
|
2012-01-10 21:49:42 +00:00
|
|
|
|
2010-08-11 06:37:09 +00:00
|
|
|
bool getShowParsedOperands() const { return ShowParsedOperands; }
|
|
|
|
void setShowParsedOperands(bool Value) { ShowParsedOperands = Value; }
|
|
|
|
|
2010-07-17 02:26:10 +00:00
|
|
|
/// Run - Run the parser on the input source buffer.
|
|
|
|
virtual bool Run(bool NoInitialTextSection, bool NoFinalize = false) = 0;
|
|
|
|
|
2012-10-13 00:26:04 +00:00
|
|
|
virtual void setParsingInlineAsm(bool V) = 0;
|
2012-10-16 20:16:20 +00:00
|
|
|
virtual bool isParsingInlineAsm() = 0;
|
2012-10-13 00:26:04 +00:00
|
|
|
|
2012-10-18 15:49:34 +00:00
|
|
|
/// ParseMSInlineAsm - Parse ms-style inline assembly.
|
|
|
|
virtual bool ParseMSInlineAsm(void *AsmLoc, std::string &AsmString,
|
|
|
|
unsigned &NumOutputs, unsigned &NumInputs,
|
2012-10-18 19:39:30 +00:00
|
|
|
SmallVectorImpl<void *> &OpDecls,
|
2012-10-18 15:49:34 +00:00
|
|
|
SmallVectorImpl<std::string> &Constraints,
|
|
|
|
SmallVectorImpl<std::string> &Clobbers,
|
|
|
|
const MCInstrInfo *MII,
|
|
|
|
const MCInstPrinter *IP,
|
|
|
|
MCAsmParserSemaCallback &SI) = 0;
|
|
|
|
|
2012-10-15 17:19:13 +00:00
|
|
|
/// ParseStatement - Parse the next statement.
|
|
|
|
virtual bool ParseStatement() = 0;
|
|
|
|
|
2012-09-14 14:57:36 +00:00
|
|
|
/// Warning - Emit a warning at the location \p L, with the message \p Msg.
|
2011-05-19 18:00:13 +00:00
|
|
|
///
|
|
|
|
/// \return The return value is true, if warnings are fatal.
|
2011-10-16 04:47:35 +00:00
|
|
|
virtual bool Warning(SMLoc L, const Twine &Msg,
|
|
|
|
ArrayRef<SMRange> Ranges = ArrayRef<SMRange>()) = 0;
|
2009-07-28 22:22:31 +00:00
|
|
|
|
2012-09-14 14:57:36 +00:00
|
|
|
/// Error - Emit an error at the location \p L, with the message \p Msg.
|
2009-07-28 22:22:31 +00:00
|
|
|
///
|
|
|
|
/// \return The return value is always true, as an idiomatic convenience to
|
|
|
|
/// clients.
|
2011-10-16 04:47:35 +00:00
|
|
|
virtual bool Error(SMLoc L, const Twine &Msg,
|
|
|
|
ArrayRef<SMRange> Ranges = ArrayRef<SMRange>()) = 0;
|
2009-07-28 22:22:31 +00:00
|
|
|
|
2010-01-19 20:27:46 +00:00
|
|
|
/// Lex - Get the next AsmToken in the stream, possibly handling file
|
|
|
|
/// inclusion first.
|
|
|
|
virtual const AsmToken &Lex() = 0;
|
2010-07-12 17:18:45 +00:00
|
|
|
|
2010-01-19 21:44:56 +00:00
|
|
|
/// getTok - Get the current AsmToken from the stream.
|
|
|
|
const AsmToken &getTok();
|
2010-07-12 17:18:45 +00:00
|
|
|
|
|
|
|
/// \brief Report an error at the current lexer location.
|
2011-10-16 04:47:35 +00:00
|
|
|
bool TokError(const Twine &Msg,
|
|
|
|
ArrayRef<SMRange> Ranges = ArrayRef<SMRange>());
|
2010-07-12 17:18:45 +00:00
|
|
|
|
2010-07-12 19:08:25 +00:00
|
|
|
/// ParseIdentifier - Parse an identifier or string (as a quoted identifier)
|
2012-09-14 14:57:36 +00:00
|
|
|
/// and set \p Res to the identifier contents.
|
2010-07-12 19:08:25 +00:00
|
|
|
virtual bool ParseIdentifier(StringRef &Res) = 0;
|
|
|
|
|
2010-07-18 20:15:59 +00:00
|
|
|
/// \brief Parse up to the end of statement and return the contents from the
|
|
|
|
/// current token until the end of the statement; the current token on exit
|
|
|
|
/// will be either the EndOfStatement or EOF.
|
|
|
|
virtual StringRef ParseStringToEndOfStatement() = 0;
|
|
|
|
|
2010-09-11 16:18:25 +00:00
|
|
|
/// EatToEndOfStatement - Skip to the end of the current statement, for error
|
|
|
|
/// recovery.
|
|
|
|
virtual void EatToEndOfStatement() = 0;
|
2011-02-11 01:21:00 +00:00
|
|
|
|
2009-08-31 08:08:17 +00:00
|
|
|
/// ParseExpression - Parse an arbitrary expression.
|
|
|
|
///
|
|
|
|
/// @param Res - The value of the expression. The result is undefined
|
|
|
|
/// on error.
|
|
|
|
/// @result - False on success.
|
2010-01-15 19:39:23 +00:00
|
|
|
virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) = 0;
|
2010-01-15 19:28:38 +00:00
|
|
|
bool ParseExpression(const MCExpr *&Res);
|
2010-07-12 17:18:45 +00:00
|
|
|
|
2009-08-31 08:08:17 +00:00
|
|
|
/// ParseParenExpression - Parse an arbitrary expression, assuming that an
|
|
|
|
/// initial '(' has already been consumed.
|
|
|
|
///
|
|
|
|
/// @param Res - The value of the expression. The result is undefined
|
|
|
|
/// on error.
|
|
|
|
/// @result - False on success.
|
2010-01-15 19:28:38 +00:00
|
|
|
virtual bool ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) = 0;
|
2009-08-31 08:08:17 +00:00
|
|
|
|
2009-07-28 22:22:31 +00:00
|
|
|
/// ParseAbsoluteExpression - Parse an expression which must evaluate to an
|
|
|
|
/// absolute value.
|
|
|
|
///
|
|
|
|
/// @param Res - The value of the absolute expression. The result is undefined
|
|
|
|
/// on error.
|
|
|
|
/// @result - False on success.
|
|
|
|
virtual bool ParseAbsoluteExpression(int64_t &Res) = 0;
|
2009-07-20 18:55:04 +00:00
|
|
|
};
|
|
|
|
|
2010-07-17 02:26:10 +00:00
|
|
|
/// \brief Create an MCAsmParser instance.
|
2011-08-16 18:33:49 +00:00
|
|
|
MCAsmParser *createMCAsmParser(SourceMgr &, MCContext &,
|
2010-07-17 02:26:10 +00:00
|
|
|
MCStreamer &, const MCAsmInfo &);
|
|
|
|
|
2009-07-20 18:55:04 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|