1 //===-EDToken.h - LLVM Enhanced Disassembler --------------------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines the interface for the Enhanced Disassembly library's token
11 // class. The token is responsible for vending information about the token,
12 // such as its type and logical value.
14 //===----------------------------------------------------------------------===//
16 #ifndef LLVM_EDTOKEN_H
17 #define LLVM_EDTOKEN_H
19 #include "llvm/ADT/StringRef.h"
20 #include "llvm/Support/DataTypes.h"
26 struct EDDisassembler
;
28 /// EDToken - Encapsulates a single token, which can provide a string
29 /// representation of itself or interpret itself in various ways, depending
30 /// on the token type.
40 /// The parent disassembler
41 EDDisassembler
&Disassembler
;
43 /// The token's string representation
45 /// The token's string representation, but in a form suitable for export
47 /// The type of the token, as exposed through the external API
49 /// The type of the token, as recorded by the syntax-specific tokenizer
51 /// The operand corresponding to the token, or (unsigned int)-1 if not
52 /// part of an operand.
55 /// The sign if the token is a literal (1 if negative, 0 otherwise)
57 /// The absolute value if the token is a literal
58 uint64_t LiteralAbsoluteValue
;
59 /// The LLVM register ID if the token is a register name
62 /// Constructor - Initializes an EDToken with the information common to all
65 /// @arg str - The string corresponding to the token
66 /// @arg type - The token's type as exposed through the public API
67 /// @arg localType - The token's type as recorded by the tokenizer
68 /// @arg disassembler - The disassembler responsible for the token
69 EDToken(llvm::StringRef str
,
72 EDDisassembler
&disassembler
);
74 /// makeLiteral - Adds the information specific to a literal
75 /// @arg sign - The sign of the literal (1 if negative, 0
78 /// @arg absoluteValue - The absolute value of the literal
79 void makeLiteral(bool sign
, uint64_t absoluteValue
);
80 /// makeRegister - Adds the information specific to a register
82 /// @arg registerID - The LLVM register ID
83 void makeRegister(unsigned registerID
);
85 /// setOperandID - Links the token to a numbered operand
87 /// @arg operandID - The operand ID to link to
88 void setOperandID(int operandID
);
92 /// type - Returns the public type of the token
93 enum tokenType
type() const;
94 /// localType - Returns the tokenizer-specific type of the token
95 uint64_t localType() const;
96 /// string - Returns the string representation of the token
97 llvm::StringRef
string() const;
98 /// operandID - Returns the operand ID of the token
99 int operandID() const;
101 /// literalSign - Returns the sign of the token
102 /// (1 if negative, 0 if positive or unsigned, -1 if it is not a literal)
103 int literalSign() const;
104 /// literalAbsoluteValue - Retrieves the absolute value of the token, and
105 /// returns -1 if the token is not a literal
106 /// @arg value - A reference to a value that is filled in with the absolute
107 /// value, if it is valid
108 int literalAbsoluteValue(uint64_t &value
) const;
109 /// registerID - Retrieves the register ID of the token, and returns -1 if the
110 /// token is not a register
112 /// @arg registerID - A reference to a value that is filled in with the
113 /// register ID, if it is valid
114 int registerID(unsigned ®isterID
) const;
116 /// tokenize - Tokenizes a string using the platform- and syntax-specific
117 /// tokenizer, and returns 0 on success (-1 on failure)
119 /// @arg tokens - A vector that will be filled in with pointers to
121 /// @arg str - The string, as outputted by the AsmPrinter
122 /// @arg operandOrder - The order of the operands from the operandFlags array
123 /// as they appear in str
124 /// @arg disassembler - The disassembler for the desired target and
126 static int tokenize(std::vector
<EDToken
*> &tokens
,
128 const char *operandOrder
,
129 EDDisassembler
&disassembler
);
131 /// getString - Directs a character pointer to the string, returning 0 on
132 /// success (-1 on failure)
133 /// @arg buf - A reference to a pointer that is set to point to the string.
134 /// The string is still owned by the token.
135 int getString(const char*& buf
);
138 } // end namespace llvm