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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-10 00:45:19 +00:00
|
|
|
#ifndef LLVM_MC_MCPARSER_MCASMPARSER_H
|
|
|
|
#define LLVM_MC_MCPARSER_MCASMPARSER_H
|
2009-07-20 18:55:04 +00:00
|
|
|
|
2011-10-16 04:47:35 +00:00
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
2013-01-14 23:22:36 +00:00
|
|
|
#include "llvm/ADT/StringRef.h"
|
2013-01-14 19:00:26 +00:00
|
|
|
#include "llvm/MC/MCParser/AsmLexer.h"
|
2012-12-03 17:02:12 +00:00
|
|
|
#include "llvm/Support/DataTypes.h"
|
2009-07-28 22:22:31 +00:00
|
|
|
|
2009-07-20 18:55:04 +00:00
|
|
|
namespace llvm {
|
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;
|
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;
|
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:
|
2013-04-22 17:01:46 +00:00
|
|
|
typedef struct {
|
2013-04-22 22:04:25 +00:00
|
|
|
void *OpDecl;
|
2013-04-22 17:01:46 +00:00
|
|
|
bool IsVarDecl;
|
|
|
|
unsigned Length, Size, Type;
|
|
|
|
|
|
|
|
void clear() {
|
2013-04-22 22:04:25 +00:00
|
|
|
OpDecl = 0;
|
2013-04-22 17:01:46 +00:00
|
|
|
IsVarDecl = false;
|
|
|
|
Length = 1;
|
|
|
|
Size = 0;
|
|
|
|
Type = 0;
|
|
|
|
}
|
|
|
|
} InlineAsmIdentifierInfo;
|
|
|
|
|
2013-06-02 19:51:54 +00:00
|
|
|
virtual ~MCAsmParserSemaCallback();
|
2013-04-22 17:01:46 +00:00
|
|
|
virtual void *LookupInlineAsmIdentifier(StringRef &LineBuf,
|
2013-05-03 00:15:41 +00:00
|
|
|
InlineAsmIdentifierInfo &Info,
|
|
|
|
bool IsUnevaluatedContext) = 0;
|
2013-01-17 19:21:48 +00:00
|
|
|
|
2012-10-25 21:51:10 +00:00
|
|
|
virtual bool LookupInlineAsmField(StringRef Base, StringRef Member,
|
|
|
|
unsigned &Offset) = 0;
|
2012-10-18 15:49:34 +00:00
|
|
|
};
|
|
|
|
|
2013-04-22 19:42:15 +00:00
|
|
|
typedef MCAsmParserSemaCallback::InlineAsmIdentifierInfo
|
|
|
|
InlineAsmIdentifierInfo;
|
2013-01-14 19:00:26 +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);
|
2013-01-16 00:50:52 +00:00
|
|
|
typedef std::pair<MCAsmParserExtension*, DirectiveHandler>
|
|
|
|
ExtensionDirectiveHandler;
|
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
|
|
|
|
2013-02-20 22:21:35 +00:00
|
|
|
virtual void addDirectiveHandler(StringRef Directive,
|
2013-01-16 00:50:52 +00:00
|
|
|
ExtensionDirectiveHandler Handler) = 0;
|
2010-07-12 17:54:38 +00:00
|
|
|
|
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
|
|
|
|
2013-02-20 22:21:35 +00:00
|
|
|
/// parseMSInlineAsm - Parse ms-style inline assembly.
|
|
|
|
virtual bool parseMSInlineAsm(void *AsmLoc, std::string &AsmString,
|
2012-10-18 15:49:34 +00:00
|
|
|
unsigned &NumOutputs, unsigned &NumInputs,
|
2012-10-23 17:43:43 +00:00
|
|
|
SmallVectorImpl<std::pair<void *, bool> > &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;
|
|
|
|
|
2014-01-07 02:28:31 +00:00
|
|
|
/// Note - Emit a note at the location \p L, with the message \p Msg.
|
|
|
|
virtual void Note(SMLoc L, const Twine &Msg,
|
|
|
|
ArrayRef<SMRange> Ranges = None) = 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,
|
2013-05-05 00:40:33 +00:00
|
|
|
ArrayRef<SMRange> Ranges = None) = 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,
|
2013-05-05 00:40:33 +00:00
|
|
|
ArrayRef<SMRange> Ranges = None) = 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.
|
2013-05-05 00:40:33 +00:00
|
|
|
bool TokError(const Twine &Msg, ArrayRef<SMRange> Ranges = None);
|
2010-07-12 17:18:45 +00:00
|
|
|
|
2013-02-20 22:21:35 +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.
|
2013-02-20 22:21:35 +00:00
|
|
|
virtual bool parseIdentifier(StringRef &Res) = 0;
|
2010-07-12 19:08:25 +00:00
|
|
|
|
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.
|
2013-02-20 22:21:35 +00:00
|
|
|
virtual StringRef parseStringToEndOfStatement() = 0;
|
2010-07-18 20:15:59 +00:00
|
|
|
|
2013-02-20 22:21:35 +00:00
|
|
|
/// parseEscapedString - Parse the current token as a string which may include
|
2013-01-18 01:25:33 +00:00
|
|
|
/// escaped characters and return the string contents.
|
2013-02-20 22:21:35 +00:00
|
|
|
virtual bool parseEscapedString(std::string &Data) = 0;
|
2013-01-18 01:25:33 +00:00
|
|
|
|
2013-02-20 22:21:35 +00:00
|
|
|
/// eatToEndOfStatement - Skip to the end of the current statement, for error
|
2010-09-11 16:18:25 +00:00
|
|
|
/// recovery.
|
2013-02-20 22:21:35 +00:00
|
|
|
virtual void eatToEndOfStatement() = 0;
|
2011-02-11 01:21:00 +00:00
|
|
|
|
2013-02-20 22:21:35 +00:00
|
|
|
/// parseExpression - Parse an arbitrary expression.
|
2009-08-31 08:08:17 +00:00
|
|
|
///
|
|
|
|
/// @param Res - The value of the expression. The result is undefined
|
|
|
|
/// on error.
|
|
|
|
/// @result - False on success.
|
2013-02-20 22:21:35 +00:00
|
|
|
virtual bool parseExpression(const MCExpr *&Res, SMLoc &EndLoc) = 0;
|
|
|
|
bool parseExpression(const MCExpr *&Res);
|
2010-07-12 17:18:45 +00:00
|
|
|
|
2013-04-10 17:35:30 +00:00
|
|
|
/// parsePrimaryExpr - Parse a primary expression.
|
|
|
|
///
|
|
|
|
/// @param Res - The value of the expression. The result is undefined
|
|
|
|
/// on error.
|
|
|
|
/// @result - False on success.
|
|
|
|
virtual bool parsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) = 0;
|
|
|
|
|
2013-02-20 22:21:35 +00:00
|
|
|
/// parseParenExpression - Parse an arbitrary expression, assuming that an
|
2009-08-31 08:08:17 +00:00
|
|
|
/// initial '(' has already been consumed.
|
|
|
|
///
|
|
|
|
/// @param Res - The value of the expression. The result is undefined
|
|
|
|
/// on error.
|
|
|
|
/// @result - False on success.
|
2013-02-20 22:21:35 +00:00
|
|
|
virtual bool parseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) = 0;
|
2009-08-31 08:08:17 +00:00
|
|
|
|
2013-02-20 22:21:35 +00:00
|
|
|
/// parseAbsoluteExpression - Parse an expression which must evaluate to an
|
2009-07-28 22:22:31 +00:00
|
|
|
/// absolute value.
|
|
|
|
///
|
|
|
|
/// @param Res - The value of the absolute expression. The result is undefined
|
|
|
|
/// on error.
|
|
|
|
/// @result - False on success.
|
2013-02-20 22:21:35 +00:00
|
|
|
virtual bool parseAbsoluteExpression(int64_t &Res) = 0;
|
2013-01-14 19:15:01 +00:00
|
|
|
|
2013-02-20 22:21:35 +00:00
|
|
|
/// checkForValidSection - Ensure that we have a valid section set in the
|
2013-02-19 06:23:44 +00:00
|
|
|
/// streamer. Otherwise, report an error and switch to .text.
|
2013-02-20 22:21:35 +00:00
|
|
|
virtual void checkForValidSection() = 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
|