2009-07-20 20:55:04 +02: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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-10 01:45:19 +01:00
|
|
|
#ifndef LLVM_MC_MCPARSER_MCASMPARSER_H
|
|
|
|
#define LLVM_MC_MCPARSER_MCASMPARSER_H
|
2009-07-20 20:55:04 +02:00
|
|
|
|
2011-10-16 06:47:35 +02:00
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
2013-01-14 20:00:26 +01:00
|
|
|
#include "llvm/MC/MCParser/AsmLexer.h"
|
2012-12-03 18:02:12 +01:00
|
|
|
#include "llvm/Support/DataTypes.h"
|
2013-01-14 20:00:26 +01:00
|
|
|
#include <vector>
|
2009-07-29 00:22:31 +02:00
|
|
|
|
2009-07-20 20:55:04 +02:00
|
|
|
namespace llvm {
|
2010-07-17 04:26:10 +02:00
|
|
|
class MCAsmInfo;
|
2009-07-20 22:01:54 +02:00
|
|
|
class MCAsmLexer;
|
2010-07-12 19:54:38 +02:00
|
|
|
class MCAsmParserExtension;
|
2009-08-31 10:07:44 +02:00
|
|
|
class MCContext;
|
2009-08-31 10:08:17 +02:00
|
|
|
class MCExpr;
|
2012-10-18 17:49:34 +02:00
|
|
|
class MCInstPrinter;
|
|
|
|
class MCInstrInfo;
|
2012-10-15 19:19:13 +02:00
|
|
|
class MCParsedAsmOperand;
|
2009-09-10 02:59:15 +02:00
|
|
|
class MCStreamer;
|
2011-07-26 02:24:13 +02:00
|
|
|
class MCTargetAsmParser;
|
2009-07-29 00:22:31 +02:00
|
|
|
class SMLoc;
|
2011-10-16 06:47:35 +02:00
|
|
|
class SMRange;
|
2010-07-12 20:35:04 +02:00
|
|
|
class SourceMgr;
|
2010-07-12 19:54:38 +02:00
|
|
|
class StringRef;
|
2009-07-29 00:22:31 +02:00
|
|
|
class Twine;
|
2009-07-20 20:55:04 +02:00
|
|
|
|
2012-10-18 17:49:34 +02:00
|
|
|
/// MCAsmParserSemaCallback - Generic Sema callback for assembly parser.
|
|
|
|
class MCAsmParserSemaCallback {
|
|
|
|
public:
|
2012-10-19 09:00:09 +02:00
|
|
|
virtual ~MCAsmParserSemaCallback();
|
2012-10-18 22:27:15 +02:00
|
|
|
virtual void *LookupInlineAsmIdentifier(StringRef Name, void *Loc,
|
2013-01-10 23:10:27 +01:00
|
|
|
unsigned &Size, bool &IsVarDecl) = 0;
|
2012-10-25 23:51:10 +02:00
|
|
|
virtual bool LookupInlineAsmField(StringRef Base, StringRef Member,
|
|
|
|
unsigned &Offset) = 0;
|
2012-10-18 17:49:34 +02:00
|
|
|
};
|
|
|
|
|
2013-01-14 20:00:26 +01:00
|
|
|
|
|
|
|
typedef std::vector<AsmToken> MCAsmMacroArgument;
|
|
|
|
|
|
|
|
|
2009-07-20 20:55:04 +02:00
|
|
|
/// MCAsmParser - Generic assembler parser interface, for use by target specific
|
|
|
|
/// assembly parsers.
|
|
|
|
class MCAsmParser {
|
2010-07-12 19:54:38 +02:00
|
|
|
public:
|
2010-07-19 00:22:07 +02:00
|
|
|
typedef bool (*DirectiveHandler)(MCAsmParserExtension*, StringRef, SMLoc);
|
2010-07-12 19:54:38 +02:00
|
|
|
|
|
|
|
private:
|
2012-08-29 08:28:46 +02:00
|
|
|
MCAsmParser(const MCAsmParser &) LLVM_DELETED_FUNCTION;
|
|
|
|
void operator=(const MCAsmParser &) LLVM_DELETED_FUNCTION;
|
2010-07-17 04:26:10 +02:00
|
|
|
|
2011-07-26 02:24:13 +02:00
|
|
|
MCTargetAsmParser *TargetParser;
|
2010-07-17 04:26:10 +02:00
|
|
|
|
2010-08-11 08:37:09 +02:00
|
|
|
unsigned ShowParsedOperands : 1;
|
|
|
|
|
2009-07-20 20:55:04 +02:00
|
|
|
protected: // Can only create subclasses.
|
|
|
|
MCAsmParser();
|
2010-07-12 19:18:45 +02:00
|
|
|
|
2009-07-20 20:55:04 +02:00
|
|
|
public:
|
|
|
|
virtual ~MCAsmParser();
|
2009-07-20 22:01:54 +02:00
|
|
|
|
2010-07-12 19:54:38 +02:00
|
|
|
virtual void AddDirectiveHandler(MCAsmParserExtension *Object,
|
|
|
|
StringRef Directive,
|
|
|
|
DirectiveHandler Handler) = 0;
|
|
|
|
|
2010-07-12 20:35:04 +02:00
|
|
|
virtual SourceMgr &getSourceManager() = 0;
|
|
|
|
|
2009-07-20 22:01:54 +02:00
|
|
|
virtual MCAsmLexer &getLexer() = 0;
|
2009-07-29 00:22:31 +02:00
|
|
|
|
2009-08-31 10:07:44 +02:00
|
|
|
virtual MCContext &getContext() = 0;
|
|
|
|
|
2010-07-12 19:54:38 +02:00
|
|
|
/// getStreamer - Return the output streamer for the assembler.
|
2009-09-10 02:59:15 +02:00
|
|
|
virtual MCStreamer &getStreamer() = 0;
|
|
|
|
|
2011-07-26 02:24:13 +02:00
|
|
|
MCTargetAsmParser &getTargetParser() const { return *TargetParser; }
|
|
|
|
void setTargetParser(MCTargetAsmParser &P);
|
2010-07-17 04:26:10 +02:00
|
|
|
|
2012-01-10 22:49:42 +01:00
|
|
|
virtual unsigned getAssemblerDialect() { return 0;}
|
2012-01-31 19:14:05 +01:00
|
|
|
virtual void setAssemblerDialect(unsigned i) { }
|
2012-01-10 22:49:42 +01:00
|
|
|
|
2010-08-11 08:37:09 +02:00
|
|
|
bool getShowParsedOperands() const { return ShowParsedOperands; }
|
|
|
|
void setShowParsedOperands(bool Value) { ShowParsedOperands = Value; }
|
|
|
|
|
2010-07-17 04:26:10 +02:00
|
|
|
/// Run - Run the parser on the input source buffer.
|
|
|
|
virtual bool Run(bool NoInitialTextSection, bool NoFinalize = false) = 0;
|
|
|
|
|
2012-10-13 02:26:04 +02:00
|
|
|
virtual void setParsingInlineAsm(bool V) = 0;
|
2012-10-16 22:16:20 +02:00
|
|
|
virtual bool isParsingInlineAsm() = 0;
|
2012-10-13 02:26:04 +02:00
|
|
|
|
2012-10-18 17:49:34 +02:00
|
|
|
/// ParseMSInlineAsm - Parse ms-style inline assembly.
|
|
|
|
virtual bool ParseMSInlineAsm(void *AsmLoc, std::string &AsmString,
|
|
|
|
unsigned &NumOutputs, unsigned &NumInputs,
|
2012-10-23 19:43:43 +02:00
|
|
|
SmallVectorImpl<std::pair<void *, bool> > &OpDecls,
|
2012-10-18 17:49:34 +02:00
|
|
|
SmallVectorImpl<std::string> &Constraints,
|
|
|
|
SmallVectorImpl<std::string> &Clobbers,
|
|
|
|
const MCInstrInfo *MII,
|
|
|
|
const MCInstPrinter *IP,
|
|
|
|
MCAsmParserSemaCallback &SI) = 0;
|
|
|
|
|
2012-09-14 16:57:36 +02:00
|
|
|
/// Warning - Emit a warning at the location \p L, with the message \p Msg.
|
2011-05-19 20:00:13 +02:00
|
|
|
///
|
|
|
|
/// \return The return value is true, if warnings are fatal.
|
2011-10-16 06:47:35 +02:00
|
|
|
virtual bool Warning(SMLoc L, const Twine &Msg,
|
|
|
|
ArrayRef<SMRange> Ranges = ArrayRef<SMRange>()) = 0;
|
2009-07-29 00:22:31 +02:00
|
|
|
|
2012-09-14 16:57:36 +02:00
|
|
|
/// Error - Emit an error at the location \p L, with the message \p Msg.
|
2009-07-29 00:22:31 +02:00
|
|
|
///
|
|
|
|
/// \return The return value is always true, as an idiomatic convenience to
|
|
|
|
/// clients.
|
2011-10-16 06:47:35 +02:00
|
|
|
virtual bool Error(SMLoc L, const Twine &Msg,
|
|
|
|
ArrayRef<SMRange> Ranges = ArrayRef<SMRange>()) = 0;
|
2009-07-29 00:22:31 +02:00
|
|
|
|
2010-01-19 21:27:46 +01:00
|
|
|
/// Lex - Get the next AsmToken in the stream, possibly handling file
|
|
|
|
/// inclusion first.
|
|
|
|
virtual const AsmToken &Lex() = 0;
|
2010-07-12 19:18:45 +02:00
|
|
|
|
2010-01-19 22:44:56 +01:00
|
|
|
/// getTok - Get the current AsmToken from the stream.
|
|
|
|
const AsmToken &getTok();
|
2010-07-12 19:18:45 +02:00
|
|
|
|
|
|
|
/// \brief Report an error at the current lexer location.
|
2011-10-16 06:47:35 +02:00
|
|
|
bool TokError(const Twine &Msg,
|
|
|
|
ArrayRef<SMRange> Ranges = ArrayRef<SMRange>());
|
2010-07-12 19:18:45 +02:00
|
|
|
|
2010-07-12 21:08:25 +02:00
|
|
|
/// ParseIdentifier - Parse an identifier or string (as a quoted identifier)
|
2012-09-14 16:57:36 +02:00
|
|
|
/// and set \p Res to the identifier contents.
|
2010-07-12 21:08:25 +02:00
|
|
|
virtual bool ParseIdentifier(StringRef &Res) = 0;
|
|
|
|
|
2010-07-18 22:15:59 +02: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 18:18:25 +02:00
|
|
|
/// EatToEndOfStatement - Skip to the end of the current statement, for error
|
|
|
|
/// recovery.
|
|
|
|
virtual void EatToEndOfStatement() = 0;
|
2011-02-11 02:21:00 +01:00
|
|
|
|
2013-01-14 19:08:41 +01:00
|
|
|
/// Control a flag in the parser that enables or disables macros.
|
|
|
|
virtual bool MacrosEnabled() = 0;
|
|
|
|
virtual void SetMacrosEnabled(bool flag) = 0;
|
|
|
|
|
2013-01-14 20:00:26 +01:00
|
|
|
/// ParseMacroArgument - Extract AsmTokens for a macro argument. If the
|
|
|
|
/// argument delimiter is initially unknown, set it to AsmToken::Eof. It will
|
|
|
|
/// be set to the correct delimiter by the method.
|
|
|
|
virtual bool ParseMacroArgument(MCAsmMacroArgument &MA,
|
|
|
|
AsmToken::TokenKind &ArgumentDelimiter) = 0;
|
|
|
|
|
2009-08-31 10:08:17 +02: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 20:39:23 +01:00
|
|
|
virtual bool ParseExpression(const MCExpr *&Res, SMLoc &EndLoc) = 0;
|
2010-01-15 20:28:38 +01:00
|
|
|
bool ParseExpression(const MCExpr *&Res);
|
2010-07-12 19:18:45 +02:00
|
|
|
|
2009-08-31 10:08:17 +02: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 20:28:38 +01:00
|
|
|
virtual bool ParseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) = 0;
|
2009-08-31 10:08:17 +02:00
|
|
|
|
2009-07-29 00:22:31 +02: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;
|
2013-01-14 20:15:01 +01:00
|
|
|
|
|
|
|
/// CheckForValidSection - Ensure that we have a valid section set in the
|
|
|
|
/// streamer. Otherwise, report and error and switch to .text.
|
|
|
|
virtual void CheckForValidSection() = 0;
|
2009-07-20 20:55:04 +02:00
|
|
|
};
|
|
|
|
|
2010-07-17 04:26:10 +02:00
|
|
|
/// \brief Create an MCAsmParser instance.
|
2011-08-16 20:33:49 +02:00
|
|
|
MCAsmParser *createMCAsmParser(SourceMgr &, MCContext &,
|
2010-07-17 04:26:10 +02:00
|
|
|
MCStreamer &, const MCAsmInfo &);
|
|
|
|
|
2009-07-20 20:55:04 +02:00
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|