2009-07-17 22:42:00 +02:00
|
|
|
//===-- llvm/Target/TargetAsmParser.h - Target Assembly Parser --*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TARGET_TARGETPARSER_H
|
|
|
|
#define LLVM_TARGET_TARGETPARSER_H
|
|
|
|
|
2010-07-12 19:27:45 +02:00
|
|
|
#include "llvm/MC/MCParser/MCAsmParserExtension.h"
|
|
|
|
|
2009-07-17 22:42:00 +02:00
|
|
|
namespace llvm {
|
2010-09-29 03:42:58 +02:00
|
|
|
class MCStreamer;
|
2009-07-27 23:49:56 +02:00
|
|
|
class StringRef;
|
2009-07-17 22:42:00 +02:00
|
|
|
class Target;
|
2010-01-14 22:32:45 +01:00
|
|
|
class SMLoc;
|
|
|
|
class AsmToken;
|
2010-01-14 23:21:20 +01:00
|
|
|
class MCParsedAsmOperand;
|
|
|
|
template <typename T> class SmallVectorImpl;
|
2009-07-17 22:42:00 +02:00
|
|
|
|
|
|
|
/// TargetAsmParser - Generic interface to target specific assembly parsers.
|
2010-07-12 19:27:45 +02:00
|
|
|
class TargetAsmParser : public MCAsmParserExtension {
|
2009-07-17 22:42:00 +02:00
|
|
|
TargetAsmParser(const TargetAsmParser &); // DO NOT IMPLEMENT
|
|
|
|
void operator=(const TargetAsmParser &); // DO NOT IMPLEMENT
|
|
|
|
protected: // Can only create subclasses.
|
|
|
|
TargetAsmParser(const Target &);
|
|
|
|
|
2010-07-19 07:44:09 +02:00
|
|
|
/// The Target that this machine was created for.
|
2009-07-17 22:42:00 +02:00
|
|
|
const Target &TheTarget;
|
|
|
|
|
2010-07-19 07:44:09 +02:00
|
|
|
/// The current set of available features.
|
|
|
|
unsigned AvailableFeatures;
|
|
|
|
|
2009-07-17 22:42:00 +02:00
|
|
|
public:
|
|
|
|
virtual ~TargetAsmParser();
|
|
|
|
|
|
|
|
const Target &getTarget() const { return TheTarget; }
|
2009-07-20 20:55:04 +02:00
|
|
|
|
2010-07-19 07:44:09 +02:00
|
|
|
unsigned getAvailableFeatures() const { return AvailableFeatures; }
|
|
|
|
void setAvailableFeatures(unsigned Value) { AvailableFeatures = Value; }
|
|
|
|
|
2009-07-20 20:55:04 +02:00
|
|
|
/// ParseInstruction - Parse one assembly instruction.
|
|
|
|
///
|
|
|
|
/// The parser is positioned following the instruction name. The target
|
|
|
|
/// specific instruction parser should parse the entire instruction and
|
|
|
|
/// construct the appropriate MCInst, or emit an error. On success, the entire
|
|
|
|
/// line should be parsed up to and including the end-of-statement token. On
|
|
|
|
/// failure, the parser is not required to read to the end of the line.
|
|
|
|
//
|
|
|
|
/// \param Name - The instruction name.
|
2010-02-22 05:10:52 +01:00
|
|
|
/// \param NameLoc - The source location of the name.
|
2010-01-14 23:21:20 +01:00
|
|
|
/// \param Operands [out] - The list of parsed operands, this returns
|
|
|
|
/// ownership of them to the caller.
|
2009-07-20 20:55:04 +02:00
|
|
|
/// \return True on failure.
|
2010-07-15 00:38:02 +02:00
|
|
|
virtual bool ParseInstruction(StringRef Name, SMLoc NameLoc,
|
2010-01-14 23:21:20 +01:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands) = 0;
|
2009-09-10 22:51:44 +02:00
|
|
|
|
|
|
|
/// ParseDirective - Parse a target specific assembler directive
|
|
|
|
///
|
|
|
|
/// The parser is positioned following the directive name. The target
|
|
|
|
/// specific directive parser should parse the entire directive doing or
|
|
|
|
/// recording any target specific work, or return true and do nothing if the
|
|
|
|
/// directive is not target specific. If the directive is specific for
|
|
|
|
/// the target, the entire line is parsed up to and including the
|
|
|
|
/// end-of-statement token and false is returned.
|
|
|
|
///
|
2010-02-22 05:10:52 +01:00
|
|
|
/// \param DirectiveID - the identifier token of the directive.
|
2009-09-10 22:51:44 +02:00
|
|
|
virtual bool ParseDirective(AsmToken DirectiveID) = 0;
|
2010-01-14 23:21:20 +01:00
|
|
|
|
2010-09-29 03:42:58 +02:00
|
|
|
/// MatchAndEmitInstruction - Recognize a series of operands of a parsed
|
|
|
|
/// instruction as an actual MCInst and emit it to the specified MCStreamer.
|
|
|
|
/// This returns false on success and returns true on failure to match.
|
2010-08-12 02:55:38 +02:00
|
|
|
///
|
|
|
|
/// On failure, the target parser is responsible for emitting a diagnostic
|
|
|
|
/// explaining the match failure.
|
2010-01-14 23:21:20 +01:00
|
|
|
virtual bool
|
2010-09-29 03:42:58 +02:00
|
|
|
MatchAndEmitInstruction(SMLoc IDLoc,
|
2010-09-29 03:50:45 +02:00
|
|
|
SmallVectorImpl<MCParsedAsmOperand*> &Operands,
|
2010-09-29 03:42:58 +02:00
|
|
|
MCStreamer &Out) = 0;
|
2010-01-14 23:21:20 +01:00
|
|
|
|
2009-07-17 22:42:00 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} // End llvm namespace
|
|
|
|
|
|
|
|
#endif
|