blob: 942b9067e6960bb1dae86fa186f26ade0d2844e9 [file] [log] [blame]
Chris Lattner979634b2010-07-20 18:25:19 +00001//===-- EDDisassembler.h - LLVM Enhanced Disassembler -----------*- C++ -*-===//
Sean Callanan328f60f2010-02-01 08:49:35 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interface for the Enhanced Disassembly library's
11// disassembler class. The disassembler is responsible for vending individual
12// instructions according to a given architecture and disassembly syntax.
13//
14//===----------------------------------------------------------------------===//
15
Chris Lattner979634b2010-07-20 18:25:19 +000016#ifndef LLVM_EDDISASSEMBLER_H
17#define LLVM_EDDISASSEMBLER_H
Sean Callanan328f60f2010-02-01 08:49:35 +000018
Chris Lattner91773ea2010-07-20 18:59:58 +000019#include "EDInfo.h"
Sean Callanan328f60f2010-02-01 08:49:35 +000020#include "llvm/ADT/OwningPtr.h"
21#include "llvm/ADT/Triple.h"
Michael J. Spencer447762d2010-11-29 18:16:10 +000022#include "llvm/Support/Mutex.h"
Chandler Carruth802d7552012-12-04 07:12:27 +000023#include "llvm/Support/raw_ostream.h"
Sean Callanan328f60f2010-02-01 08:49:35 +000024#include <map>
25#include <set>
Sean Callananbdce3882012-02-04 07:45:35 +000026#include <string>
Sean Callanan328f60f2010-02-01 08:49:35 +000027#include <vector>
28
29namespace llvm {
30class AsmLexer;
Evan Chengd60fa58b2011-07-18 20:57:22 +000031class AsmParser;
Sean Callanan328f60f2010-02-01 08:49:35 +000032class AsmToken;
33class MCContext;
34class MCAsmInfo;
35class MCAsmLexer;
Sean Callanan328f60f2010-02-01 08:49:35 +000036class MCDisassembler;
Sean Callanan328f60f2010-02-01 08:49:35 +000037class MCInst;
Craig Topper54bfde72012-04-02 06:09:36 +000038class MCInstPrinter;
39class MCInstrInfo;
Sean Callanan328f60f2010-02-01 08:49:35 +000040class MCParsedAsmOperand;
Evan Chengd60fa58b2011-07-18 20:57:22 +000041class MCRegisterInfo;
Sean Callanan328f60f2010-02-01 08:49:35 +000042class MCStreamer;
Evan Cheng4d1ca962011-07-08 01:53:10 +000043class MCSubtargetInfo;
Evan Cheng11424442011-07-26 00:24:13 +000044class MCTargetAsmLexer;
45class MCTargetAsmParser;
Sean Callanan328f60f2010-02-01 08:49:35 +000046template <typename T> class SmallVectorImpl;
47class SourceMgr;
48class Target;
Sean Callanan814e69b2010-04-13 21:21:57 +000049
50struct EDInstInfo;
Chris Lattner979634b2010-07-20 18:25:19 +000051struct EDInst;
52struct EDOperand;
53struct EDToken;
54
55typedef int (*EDByteReaderCallback)(uint8_t *byte, uint64_t address, void *arg);
Sean Callanan328f60f2010-02-01 08:49:35 +000056
57/// EDDisassembler - Encapsulates a disassembler for a single architecture and
58/// disassembly syntax. Also manages the static disassembler registry.
59struct EDDisassembler {
Chris Lattner979634b2010-07-20 18:25:19 +000060 typedef enum {
61 /*! @constant kEDAssemblySyntaxX86Intel Intel syntax for i386 and x86_64. */
62 kEDAssemblySyntaxX86Intel = 0,
63 /*! @constant kEDAssemblySyntaxX86ATT AT&T syntax for i386 and x86_64. */
64 kEDAssemblySyntaxX86ATT = 1,
65 kEDAssemblySyntaxARMUAL = 2
66 } AssemblySyntax;
67
68
Sean Callanan328f60f2010-02-01 08:49:35 +000069 ////////////////////
70 // Static members //
71 ////////////////////
72
73 /// CPUKey - Encapsulates the descriptor of an architecture/disassembly-syntax
74 /// pair
75 struct CPUKey {
76 /// The architecture type
Sean Callananbdce3882012-02-04 07:45:35 +000077 std::string Triple;
Sean Callanan328f60f2010-02-01 08:49:35 +000078
79 /// The assembly syntax
Chris Lattner979634b2010-07-20 18:25:19 +000080 AssemblySyntax Syntax;
Sean Callanan328f60f2010-02-01 08:49:35 +000081
82 /// operator== - Equality operator
83 bool operator==(const CPUKey &key) const {
Sean Callananbdce3882012-02-04 07:45:35 +000084 return (Triple == key.Triple &&
Sean Callanan328f60f2010-02-01 08:49:35 +000085 Syntax == key.Syntax);
86 }
87
88 /// operator< - Less-than operator
89 bool operator<(const CPUKey &key) const {
Sean Callananbdce3882012-02-04 07:45:35 +000090 return ((Triple < key.Triple) ||
91 ((Triple == key.Triple) && Syntax < (key.Syntax)));
Sean Callanan328f60f2010-02-01 08:49:35 +000092 }
93 };
94
95 typedef std::map<CPUKey, EDDisassembler*> DisassemblerMap_t;
96
Sean Callanan328f60f2010-02-01 08:49:35 +000097 /// A map from disassembler specifications to disassemblers. Populated
98 /// lazily.
99 static DisassemblerMap_t sDisassemblers;
100
101 /// getDisassembler - Returns the specified disassemble, or NULL on failure
102 ///
103 /// @arg arch - The desired architecture
104 /// @arg syntax - The desired disassembly syntax
105 static EDDisassembler *getDisassembler(llvm::Triple::ArchType arch,
Chris Lattner979634b2010-07-20 18:25:19 +0000106 AssemblySyntax syntax);
Sean Callanan328f60f2010-02-01 08:49:35 +0000107
108 /// getDisassembler - Returns the disassembler for a given combination of
109 /// CPU type, CPU subtype, and assembly syntax, or NULL on failure
110 ///
111 /// @arg str - The string representation of the architecture triple, e.g.,
112 /// "x86_64-apple-darwin"
113 /// @arg syntax - The disassembly syntax for the required disassembler
114 static EDDisassembler *getDisassembler(llvm::StringRef str,
Chris Lattner979634b2010-07-20 18:25:19 +0000115 AssemblySyntax syntax);
Sean Callanan328f60f2010-02-01 08:49:35 +0000116
Sean Callanan328f60f2010-02-01 08:49:35 +0000117 ////////////////////////
118 // Per-object members //
119 ////////////////////////
120
Sean Callanan03549ee2010-04-08 00:48:21 +0000121 /// True only if the object has been successfully initialized
Sean Callanan328f60f2010-02-01 08:49:35 +0000122 bool Valid;
Sean Callanan03549ee2010-04-08 00:48:21 +0000123 /// True if the disassembler can provide semantic information
124 bool HasSemantics;
Sean Callanan328f60f2010-02-01 08:49:35 +0000125
Sean Callanan03549ee2010-04-08 00:48:21 +0000126 /// The stream to write errors to
127 llvm::raw_ostream &ErrorStream;
Sean Callanan328f60f2010-02-01 08:49:35 +0000128
Sean Callananbdce3882012-02-04 07:45:35 +0000129 /// The triple/syntax pair for the current architecture
Sean Callanan328f60f2010-02-01 08:49:35 +0000130 CPUKey Key;
Sean Callananbdce3882012-02-04 07:45:35 +0000131 /// The Triple fur the current architecture
132 Triple TgtTriple;
Sean Callanan328f60f2010-02-01 08:49:35 +0000133 /// The LLVM target corresponding to the disassembler
134 const llvm::Target *Tgt;
135 /// The assembly information for the target architecture
136 llvm::OwningPtr<const llvm::MCAsmInfo> AsmInfo;
James Molloy4c493e82011-09-07 17:24:38 +0000137 /// The subtarget information for the target architecture
138 llvm::OwningPtr<const llvm::MCSubtargetInfo> STI;
Craig Topper54bfde72012-04-02 06:09:36 +0000139 // The instruction information for the target architecture.
140 llvm::OwningPtr<const llvm::MCInstrInfo> MII;
Evan Chengd60fa58b2011-07-18 20:57:22 +0000141 // The register information for the target architecture.
142 llvm::OwningPtr<const llvm::MCRegisterInfo> MRI;
Sean Callanan328f60f2010-02-01 08:49:35 +0000143 /// The disassembler for the target architecture
144 llvm::OwningPtr<const llvm::MCDisassembler> Disassembler;
145 /// The output string for the instruction printer; must be guarded with
146 /// PrinterMutex
147 llvm::OwningPtr<std::string> InstString;
148 /// The output stream for the disassembler; must be guarded with
149 /// PrinterMutex
150 llvm::OwningPtr<llvm::raw_string_ostream> InstStream;
151 /// The instruction printer for the target architecture; must be guarded with
152 /// PrinterMutex when printing
153 llvm::OwningPtr<llvm::MCInstPrinter> InstPrinter;
154 /// The mutex that guards the instruction printer's printing functions, which
155 /// use a shared stream
156 llvm::sys::Mutex PrinterMutex;
157 /// The array of instruction information provided by the TableGen backend for
158 /// the target architecture
Sean Callanan814e69b2010-04-13 21:21:57 +0000159 const llvm::EDInstInfo *InstInfos;
Sean Callanan328f60f2010-02-01 08:49:35 +0000160 /// The target-specific lexer for use in tokenizing strings, in
161 /// target-independent and target-specific portions
162 llvm::OwningPtr<llvm::AsmLexer> GenericAsmLexer;
Evan Cheng11424442011-07-26 00:24:13 +0000163 llvm::OwningPtr<llvm::MCTargetAsmLexer> SpecificAsmLexer;
Sean Callanan328f60f2010-02-01 08:49:35 +0000164 /// The guard for the above
165 llvm::sys::Mutex ParserMutex;
166 /// The LLVM number used for the target disassembly syntax variant
167 int LLVMSyntaxVariant;
168
169 typedef std::vector<std::string> regvec_t;
170 typedef std::map<std::string, unsigned> regrmap_t;
171
172 /// A vector of registers for quick mapping from LLVM register IDs to names
173 regvec_t RegVec;
174 /// A map of registers for quick mapping from register names to LLVM IDs
175 regrmap_t RegRMap;
176
177 /// A set of register IDs for aliases of the stack pointer for the current
178 /// architecture
179 std::set<unsigned> stackPointers;
180 /// A set of register IDs for aliases of the program counter for the current
181 /// architecture
182 std::set<unsigned> programCounters;
183
184 /// Constructor - initializes a disassembler with all the necessary objects,
185 /// which come pre-allocated from the registry accessor function
186 ///
187 /// @arg key - the architecture and disassembly syntax for the
188 /// disassembler
189 EDDisassembler(CPUKey& key);
190
191 /// valid - reports whether there was a failure in the constructor.
192 bool valid() {
193 return Valid;
194 }
195
Sean Callanan03549ee2010-04-08 00:48:21 +0000196 /// hasSemantics - reports whether the disassembler can provide operands and
197 /// tokens.
198 bool hasSemantics() {
199 return HasSemantics;
200 }
201
Sean Callanan328f60f2010-02-01 08:49:35 +0000202 ~EDDisassembler();
203
204 /// createInst - creates and returns an instruction given a callback and
205 /// memory address, or NULL on failure
206 ///
207 /// @arg byteReader - A callback function that provides machine code bytes
208 /// @arg address - The address of the first byte of the instruction,
209 /// suitable for passing to byteReader
210 /// @arg arg - An opaque argument for byteReader
211 EDInst *createInst(EDByteReaderCallback byteReader,
212 uint64_t address,
213 void *arg);
214
215 /// initMaps - initializes regVec and regRMap using the provided register
216 /// info
217 ///
218 /// @arg registerInfo - the register information to use as a source
Evan Chengf60768a2011-07-25 20:53:02 +0000219 void initMaps(const llvm::MCRegisterInfo &registerInfo);
Sean Callanan328f60f2010-02-01 08:49:35 +0000220 /// nameWithRegisterID - Returns the name (owned by the EDDisassembler) of a
221 /// register for a given register ID, or NULL on failure
222 ///
223 /// @arg registerID - the ID of the register to be queried
224 const char *nameWithRegisterID(unsigned registerID) const;
225 /// registerIDWithName - Returns the ID of a register for a given register
226 /// name, or (unsigned)-1 on failure
227 ///
228 /// @arg name - The name of the register
229 unsigned registerIDWithName(const char *name) const;
230
231 /// registerIsStackPointer - reports whether a register ID is an alias for the
232 /// stack pointer register
233 ///
234 /// @arg registerID - The LLVM register ID
235 bool registerIsStackPointer(unsigned registerID);
236 /// registerIsStackPointer - reports whether a register ID is an alias for the
237 /// stack pointer register
238 ///
239 /// @arg registerID - The LLVM register ID
240 bool registerIsProgramCounter(unsigned registerID);
241
242 /// printInst - prints an MCInst to a string, returning 0 on success, or -1
243 /// otherwise
244 ///
245 /// @arg str - A reference to a string which is filled in with the string
246 /// representation of the instruction
247 /// @arg inst - A reference to the MCInst to be printed
248 int printInst(std::string& str,
249 llvm::MCInst& inst);
250
251 /// parseInst - extracts operands and tokens from a string for use in
252 /// tokenizing the string. Returns 0 on success, or -1 otherwise.
253 ///
254 /// @arg operands - A reference to a vector that will be filled in with the
255 /// parsed operands
256 /// @arg tokens - A reference to a vector that will be filled in with the
257 /// tokens
258 /// @arg str - The string representation of the instruction
259 int parseInst(llvm::SmallVectorImpl<llvm::MCParsedAsmOperand*> &operands,
260 llvm::SmallVectorImpl<llvm::AsmToken> &tokens,
261 const std::string &str);
262
263 /// llvmSyntaxVariant - returns the LLVM syntax variant for this disassembler
264 int llvmSyntaxVariant() const;
265};
266
Chris Lattner979634b2010-07-20 18:25:19 +0000267} // end namespace llvm
268
Sean Callanan328f60f2010-02-01 08:49:35 +0000269#endif