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-15 00:22:36 +01:00
|
|
|
#include "llvm/ADT/StringRef.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"
|
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;
|
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;
|
2009-07-29 00:22:31 +02:00
|
|
|
class Twine;
|
2009-07-20 20:55:04 +02:00
|
|
|
|
2014-06-08 07:07:38 +02:00
|
|
|
class InlineAsmIdentifierInfo {
|
|
|
|
public:
|
|
|
|
void *OpDecl;
|
|
|
|
bool IsVarDecl;
|
|
|
|
unsigned Length, Size, Type;
|
|
|
|
|
|
|
|
void clear() {
|
|
|
|
OpDecl = nullptr;
|
|
|
|
IsVarDecl = false;
|
|
|
|
Length = 1;
|
|
|
|
Size = 0;
|
|
|
|
Type = 0;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-10-18 17:49:34 +02:00
|
|
|
/// MCAsmParserSemaCallback - Generic Sema callback for assembly parser.
|
|
|
|
class MCAsmParserSemaCallback {
|
|
|
|
public:
|
2013-06-02 21:51:54 +02:00
|
|
|
virtual ~MCAsmParserSemaCallback();
|
2013-04-22 19:01:46 +02:00
|
|
|
virtual void *LookupInlineAsmIdentifier(StringRef &LineBuf,
|
2013-05-03 02:15:41 +02:00
|
|
|
InlineAsmIdentifierInfo &Info,
|
|
|
|
bool IsUnevaluatedContext) = 0;
|
2014-09-22 04:21:35 +02:00
|
|
|
virtual StringRef LookupInlineAsmLabel(StringRef Identifier, SourceMgr &SM,
|
2014-09-22 21:49:07 +02:00
|
|
|
SMLoc Location, bool Create) = 0;
|
2013-01-17 20:21:48 +01:00
|
|
|
|
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
|
|
|
};
|
|
|
|
|
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);
|
2013-01-16 01:50:52 +01:00
|
|
|
typedef std::pair<MCAsmParserExtension*, DirectiveHandler>
|
|
|
|
ExtensionDirectiveHandler;
|
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
|
|
|
|
2013-02-20 23:21:35 +01:00
|
|
|
virtual void addDirectiveHandler(StringRef Directive,
|
2013-01-16 01:50:52 +01:00
|
|
|
ExtensionDirectiveHandler Handler) = 0;
|
2010-07-12 19:54:38 +02:00
|
|
|
|
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
|
|
|
|
2013-02-20 23:21:35 +01:00
|
|
|
/// parseMSInlineAsm - Parse ms-style inline assembly.
|
|
|
|
virtual bool parseMSInlineAsm(void *AsmLoc, std::string &AsmString,
|
2012-10-18 17:49:34 +02:00
|
|
|
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;
|
|
|
|
|
2014-01-07 03:28:31 +01: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 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,
|
2013-05-05 02:40:33 +02:00
|
|
|
ArrayRef<SMRange> Ranges = None) = 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,
|
2013-05-05 02:40:33 +02:00
|
|
|
ArrayRef<SMRange> Ranges = None) = 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.
|
2013-05-05 02:40:33 +02:00
|
|
|
bool TokError(const Twine &Msg, ArrayRef<SMRange> Ranges = None);
|
2010-07-12 19:18:45 +02:00
|
|
|
|
2013-02-20 23:21:35 +01: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.
|
2013-02-20 23:21:35 +01:00
|
|
|
virtual bool parseIdentifier(StringRef &Res) = 0;
|
2010-07-12 21:08:25 +02:00
|
|
|
|
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.
|
2013-02-20 23:21:35 +01:00
|
|
|
virtual StringRef parseStringToEndOfStatement() = 0;
|
2010-07-18 22:15:59 +02:00
|
|
|
|
2013-02-20 23:21:35 +01:00
|
|
|
/// parseEscapedString - Parse the current token as a string which may include
|
2013-01-18 02:25:33 +01:00
|
|
|
/// escaped characters and return the string contents.
|
2013-02-20 23:21:35 +01:00
|
|
|
virtual bool parseEscapedString(std::string &Data) = 0;
|
2013-01-18 02:25:33 +01:00
|
|
|
|
2013-02-20 23:21:35 +01:00
|
|
|
/// eatToEndOfStatement - Skip to the end of the current statement, for error
|
2010-09-11 18:18:25 +02:00
|
|
|
/// recovery.
|
2013-02-20 23:21:35 +01:00
|
|
|
virtual void eatToEndOfStatement() = 0;
|
2011-02-11 02:21:00 +01:00
|
|
|
|
2013-02-20 23:21:35 +01:00
|
|
|
/// parseExpression - Parse an arbitrary expression.
|
2009-08-31 10:08:17 +02:00
|
|
|
///
|
|
|
|
/// @param Res - The value of the expression. The result is undefined
|
|
|
|
/// on error.
|
|
|
|
/// @result - False on success.
|
2013-02-20 23:21:35 +01:00
|
|
|
virtual bool parseExpression(const MCExpr *&Res, SMLoc &EndLoc) = 0;
|
|
|
|
bool parseExpression(const MCExpr *&Res);
|
2010-07-12 19:18:45 +02:00
|
|
|
|
2013-04-10 19:35:30 +02: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 23:21:35 +01:00
|
|
|
/// parseParenExpression - Parse an arbitrary expression, assuming that an
|
2009-08-31 10:08:17 +02: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 23:21:35 +01:00
|
|
|
virtual bool parseParenExpression(const MCExpr *&Res, SMLoc &EndLoc) = 0;
|
2009-08-31 10:08:17 +02:00
|
|
|
|
2013-02-20 23:21:35 +01:00
|
|
|
/// parseAbsoluteExpression - Parse an expression which must evaluate to an
|
2009-07-29 00:22:31 +02:00
|
|
|
/// absolute value.
|
|
|
|
///
|
|
|
|
/// @param Res - The value of the absolute expression. The result is undefined
|
|
|
|
/// on error.
|
|
|
|
/// @result - False on success.
|
2013-02-20 23:21:35 +01:00
|
|
|
virtual bool parseAbsoluteExpression(int64_t &Res) = 0;
|
2013-01-14 20:15:01 +01:00
|
|
|
|
2013-02-20 23:21:35 +01:00
|
|
|
/// checkForValidSection - Ensure that we have a valid section set in the
|
2013-02-19 07:23:44 +01:00
|
|
|
/// streamer. Otherwise, report an error and switch to .text.
|
2013-02-20 23:21:35 +01:00
|
|
|
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
|