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;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief Generic Sema callback for assembly parser.
|
2012-10-18 17:49:34 +02:00
|
|
|
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
|
|
|
};
|
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief Generic assembler parser interface, for use by target specific
|
|
|
|
/// assembly parsers.
|
2009-07-20 20:55:04 +02:00
|
|
|
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:
|
2015-02-15 23:54:22 +01:00
|
|
|
MCAsmParser(const MCAsmParser &) = delete;
|
|
|
|
void operator=(const MCAsmParser &) = delete;
|
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
|
|
|
|
2015-04-21 13:50:52 +02:00
|
|
|
virtual void addAliasForDirective(StringRef Directive, StringRef Alias) = 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;
|
2014-11-11 06:11:47 +01:00
|
|
|
const MCAsmLexer &getLexer() const {
|
|
|
|
return const_cast<MCAsmParser*>(this)->getLexer();
|
|
|
|
}
|
2009-07-29 00:22:31 +02:00
|
|
|
|
2009-08-31 10:07:44 +02:00
|
|
|
virtual MCContext &getContext() = 0;
|
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief 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; }
|
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief Run the parser on the input source buffer.
|
2010-07-17 04:26:10 +02:00
|
|
|
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
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief Parse MS-style inline assembly.
|
2014-11-11 05:58:32 +01:00
|
|
|
virtual bool parseMSInlineAsm(
|
|
|
|
void *AsmLoc, std::string &AsmString, unsigned &NumOutputs,
|
|
|
|
unsigned &NumInputs, SmallVectorImpl<std::pair<void *, bool>> &OpDecls,
|
|
|
|
SmallVectorImpl<std::string> &Constraints,
|
|
|
|
SmallVectorImpl<std::string> &Clobbers, const MCInstrInfo *MII,
|
|
|
|
const MCInstPrinter *IP, MCAsmParserSemaCallback &SI) = 0;
|
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief Emit a note at the location \p L, with the message \p Msg.
|
2014-01-07 03:28:31 +01:00
|
|
|
virtual void Note(SMLoc L, const Twine &Msg,
|
|
|
|
ArrayRef<SMRange> Ranges = None) = 0;
|
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief 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
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief 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
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief Get the next AsmToken in the stream, possibly handling file
|
|
|
|
/// inclusion first.
|
2010-01-19 21:27:46 +01:00
|
|
|
virtual const AsmToken &Lex() = 0;
|
2010-07-12 19:18:45 +02:00
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief Get the current AsmToken from the stream.
|
2014-11-11 06:11:47 +01:00
|
|
|
const AsmToken &getTok() const;
|
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
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief Parse an identifier or string (as a quoted identifier) 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
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief Parse the current token as a string which may include 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
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief Skip to the end of the current statement, for error recovery.
|
2013-02-20 23:21:35 +01:00
|
|
|
virtual void eatToEndOfStatement() = 0;
|
2011-02-11 02:21:00 +01:00
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief Parse an arbitrary expression.
|
2009-08-31 10:08:17 +02:00
|
|
|
///
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \param Res - The value of the expression. The result is undefined
|
2009-08-31 10:08:17 +02:00
|
|
|
/// on error.
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \return - 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
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief Parse a primary expression.
|
2013-04-10 19:35:30 +02:00
|
|
|
///
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \param Res - The value of the expression. The result is undefined
|
2013-04-10 19:35:30 +02:00
|
|
|
/// on error.
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \return - False on success.
|
2013-04-10 19:35:30 +02:00
|
|
|
virtual bool parsePrimaryExpr(const MCExpr *&Res, SMLoc &EndLoc) = 0;
|
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief Parse an arbitrary expression, assuming that an initial '(' has
|
|
|
|
/// already been consumed.
|
2009-08-31 10:08:17 +02:00
|
|
|
///
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \param Res - The value of the expression. The result is undefined
|
2009-08-31 10:08:17 +02:00
|
|
|
/// on error.
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \return - 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
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief Parse an expression which must evaluate to an absolute value.
|
2009-07-29 00:22:31 +02:00
|
|
|
///
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \param Res - The value of the absolute expression. The result is undefined
|
2009-07-29 00:22:31 +02:00
|
|
|
/// on error.
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \return - 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
|
|
|
|
2015-05-02 02:44:14 +02:00
|
|
|
/// \brief Ensure that we have a valid section set in the 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.
|
2015-05-02 02:44:14 +02:00
|
|
|
MCAsmParser *createMCAsmParser(SourceMgr &, MCContext &, MCStreamer &,
|
|
|
|
const MCAsmInfo &);
|
2010-07-17 04:26:10 +02:00
|
|
|
|
2015-06-23 11:49:53 +02:00
|
|
|
} // End llvm namespace
|
2009-07-20 20:55:04 +02:00
|
|
|
|
|
|
|
#endif
|