Delete the allocate*TargetMachine functions. Move options to a header file
[oota-llvm.git] / include / llvm / Target / TargetInstrInfo.h
1 //===-- llvm/Target/TargetInstrInfo.h - Instruction Info --------*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 // This file describes the target machine instructions to the code generator.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_TARGET_TARGETINSTRINFO_H
15 #define LLVM_TARGET_TARGETINSTRINFO_H
16
17 #include "Support/DataTypes.h"
18 #include <vector>
19 #include <cassert>
20
21 namespace llvm {
22
23 class MachineInstr;
24 class TargetMachine;
25 class Value;
26 class Type;
27 class Instruction;
28 class Constant;
29 class Function;
30 class MachineCodeForInstruction;
31
32 //---------------------------------------------------------------------------
33 // Data types used to define information about a single machine instruction
34 //---------------------------------------------------------------------------
35
36 typedef short MachineOpCode;
37 typedef unsigned InstrSchedClass;
38
39 //---------------------------------------------------------------------------
40 // struct TargetInstrDescriptor:
41 //      Predefined information about each machine instruction.
42 //      Designed to initialized statically.
43 //
44
45 const unsigned M_NOP_FLAG               = 1 << 0;
46 const unsigned M_BRANCH_FLAG            = 1 << 1;
47 const unsigned M_CALL_FLAG              = 1 << 2;
48 const unsigned M_RET_FLAG               = 1 << 3;
49 const unsigned M_CC_FLAG                = 1 << 6;
50 const unsigned M_LOAD_FLAG              = 1 << 10;
51 const unsigned M_STORE_FLAG             = 1 << 12;
52 const unsigned M_DUMMY_PHI_FLAG = 1 << 13;
53 const unsigned M_PSEUDO_FLAG           = 1 << 14;       // Pseudo instruction
54 // 3-addr instructions which really work like 2-addr ones, eg. X86 add/sub
55 const unsigned M_2_ADDR_FLAG           = 1 << 15;
56
57 // M_TERMINATOR_FLAG - Is this instruction part of the terminator for a basic
58 // block?  Typically this is things like return and branch instructions.
59 // Various passes use this to insert code into the bottom of a basic block, but
60 // before control flow occurs.
61 const unsigned M_TERMINATOR_FLAG       = 1 << 16;
62
63 struct TargetInstrDescriptor {
64   const char *    Name;          // Assembly language mnemonic for the opcode.
65   int             numOperands;   // Number of args; -1 if variable #args
66   int             resultPos;     // Position of the result; -1 if no result
67   unsigned        maxImmedConst; // Largest +ve constant in IMMED field or 0.
68   bool            immedIsSignExtended; // Is IMMED field sign-extended? If so,
69                                  //   smallest -ve value is -(maxImmedConst+1).
70   unsigned        numDelaySlots; // Number of delay slots after instruction
71   unsigned        latency;       // Latency in machine cycles
72   InstrSchedClass schedClass;    // enum  identifying instr sched class
73   unsigned        Flags;         // flags identifying machine instr class
74   unsigned        TSFlags;       // Target Specific Flag values
75   const unsigned *ImplicitUses;  // Registers implicitly read by this instr
76   const unsigned *ImplicitDefs;  // Registers implicitly defined by this instr
77 };
78
79
80 //---------------------------------------------------------------------------
81 /// 
82 /// TargetInstrInfo - Interface to description of machine instructions
83 /// 
84 class TargetInstrInfo {
85   const TargetInstrDescriptor* desc;    // raw array to allow static init'n
86   unsigned NumOpcodes;                  // number of entries in the desc array
87   unsigned numRealOpCodes;              // number of non-dummy op codes
88   
89   TargetInstrInfo(const TargetInstrInfo &);  // DO NOT IMPLEMENT
90   void operator=(const TargetInstrInfo &);   // DO NOT IMPLEMENT
91 public:
92   TargetInstrInfo(const TargetInstrDescriptor *desc, unsigned NumOpcodes);
93   virtual ~TargetInstrInfo();
94
95   // Invariant: All instruction sets use opcode #0 as the PHI instruction
96   enum { PHI = 0 };
97   
98   unsigned getNumOpcodes() const { return NumOpcodes; }
99   
100   /// get - Return the machine instruction descriptor that corresponds to the
101   /// specified instruction opcode.
102   ///
103   const TargetInstrDescriptor& get(MachineOpCode opCode) const {
104     assert((unsigned)opCode < NumOpcodes);
105     return desc[opCode];
106   }
107
108   const char *getName(MachineOpCode opCode) const {
109     return get(opCode).Name;
110   }
111   
112   int getNumOperands(MachineOpCode opCode) const {
113     return get(opCode).numOperands;
114   }
115
116
117   InstrSchedClass getSchedClass(MachineOpCode opCode) const {
118     return get(opCode).schedClass;
119   }
120
121   const unsigned *getImplicitUses(MachineOpCode opCode) const {
122     return get(opCode).ImplicitUses;
123   }
124
125   const unsigned *getImplicitDefs(MachineOpCode opCode) const {
126     return get(opCode).ImplicitDefs;
127   }
128
129
130   //
131   // Query instruction class flags according to the machine-independent
132   // flags listed above.
133   // 
134   bool isReturn(MachineOpCode opCode) const {
135     return get(opCode).Flags & M_RET_FLAG;
136   }
137
138   bool isPseudoInstr(MachineOpCode opCode) const {
139     return get(opCode).Flags & M_PSEUDO_FLAG;
140   }
141   bool isTwoAddrInstr(MachineOpCode opCode) const {
142     return get(opCode).Flags & M_2_ADDR_FLAG;
143   }
144   bool isTerminatorInstr(unsigned Opcode) const {
145     return get(Opcode).Flags & M_TERMINATOR_FLAG;
146   }
147
148   //
149   // Return true if the instruction is a register to register move and
150   // leave the source and dest operands in the passed parameters.
151   //
152   virtual bool isMoveInstr(const MachineInstr& MI,
153                            unsigned& sourceReg,
154                            unsigned& destReg) const {
155     return false;
156   }
157
158
159
160
161   //-------------------------------------------------------------------------
162   // Code generation support for creating individual machine instructions
163   //
164   // WARNING: These methods are Sparc specific
165   //
166   // DO NOT USE ANY OF THESE METHODS THEY ARE DEPRECATED!
167   //
168   //-------------------------------------------------------------------------
169
170   int getResultPos(MachineOpCode opCode) const {
171     return get(opCode).resultPos;
172   }
173   unsigned getNumDelaySlots(MachineOpCode opCode) const {
174     return get(opCode).numDelaySlots;
175   }
176   bool isCCInstr(MachineOpCode opCode) const {
177     return get(opCode).Flags & M_CC_FLAG;
178   }
179   bool isNop(MachineOpCode opCode) const {
180     return get(opCode).Flags & M_NOP_FLAG;
181   }
182   bool isBranch(MachineOpCode opCode) const {
183     return get(opCode).Flags & M_BRANCH_FLAG;
184   }
185   bool isCall(MachineOpCode opCode) const {
186     return get(opCode).Flags & M_CALL_FLAG;
187   }
188   bool isLoad(MachineOpCode opCode) const {
189     return get(opCode).Flags & M_LOAD_FLAG;
190   }
191   bool isStore(MachineOpCode opCode) const {
192     return get(opCode).Flags & M_STORE_FLAG;
193   }
194   bool isDummyPhiInstr(MachineOpCode opCode) const {
195     return get(opCode).Flags & M_DUMMY_PHI_FLAG;
196   }
197   // Check if an instruction can be issued before its operands are ready,
198   // or if a subsequent instruction that uses its result can be issued
199   // before the results are ready.
200   // Default to true since most instructions on many architectures allow this.
201   // 
202   virtual bool hasOperandInterlock(MachineOpCode opCode) const {
203     return true;
204   }  
205   virtual bool hasResultInterlock(MachineOpCode opCode) const {
206     return true;
207   }
208   
209   // 
210   // Latencies for individual instructions and instruction pairs
211   // 
212   virtual int minLatency(MachineOpCode opCode) const {
213     return get(opCode).latency;
214   }
215   
216   virtual int maxLatency(MachineOpCode opCode) const {
217     return get(opCode).latency;
218   }
219
220   //
221   // Which operand holds an immediate constant?  Returns -1 if none
222   // 
223   virtual int getImmedConstantPos(MachineOpCode opCode) const {
224     return -1; // immediate position is machine specific, so say -1 == "none"
225   }
226   
227   // Check if the specified constant fits in the immediate field
228   // of this machine instruction
229   // 
230   virtual bool constantFitsInImmedField(MachineOpCode opCode,
231                                         int64_t intValue) const;
232   
233   // Return the largest positive constant that can be held in the IMMED field
234   // of this machine instruction.
235   // isSignExtended is set to true if the value is sign-extended before use
236   // (this is true for all immediate fields in SPARC instructions).
237   // Return 0 if the instruction has no IMMED field.
238   // 
239   virtual uint64_t maxImmedConstant(MachineOpCode opCode,
240                                     bool &isSignExtended) const {
241     isSignExtended = get(opCode).immedIsSignExtended;
242     return get(opCode).maxImmedConst;
243   }
244
245   //-------------------------------------------------------------------------
246   // Queries about representation of LLVM quantities (e.g., constants)
247   //-------------------------------------------------------------------------
248
249   /// ConstantTypeMustBeLoaded - Test if this type of constant must be loaded
250   /// from memory into a register, i.e., cannot be set bitwise in register and
251   /// cannot use immediate fields of instructions.  Note that this only makes
252   /// sense for primitive types.
253   ///
254   virtual bool ConstantTypeMustBeLoaded(const Constant* CV) const;
255
256   // Test if this constant may not fit in the immediate field of the
257   // machine instructions (probably) generated for this instruction.
258   // 
259   virtual bool ConstantMayNotFitInImmedField(const Constant* CV,
260                                              const Instruction* I) const {
261     return true;                        // safe but very conservative
262   }
263
264   // Get certain common op codes for the current target.  this and all the
265   // Create* methods below should be moved to a machine code generation class
266   // 
267   virtual MachineOpCode getNOPOpCode() const { abort(); }
268
269   // Get the value of an integral constant in the form that must
270   // be put into the machine register.  The specified constant is interpreted
271   // as (i.e., converted if necessary to) the specified destination type.  The
272   // result is always returned as an uint64_t, since the representation of
273   // int64_t and uint64_t are identical.  The argument can be any known const.
274   // 
275   // isValidConstant is set to true if a valid constant was found.
276   // 
277   virtual uint64_t ConvertConstantToIntType(const TargetMachine &target,
278                                             const Value *V,
279                                             const Type *destType,
280                                             bool  &isValidConstant) const {
281     abort();
282   }
283
284   // Create an instruction sequence to put the constant `val' into
285   // the virtual register `dest'.  `val' may be a Constant or a
286   // GlobalValue, viz., the constant address of a global variable or function.
287   // The generated instructions are returned in `mvec'.
288   // Any temp. registers (TmpInstruction) created are recorded in mcfi.
289   // Symbolic constants or constants that must be accessed from memory
290   // are added to the constant pool via MachineFunction::get(F).
291   // 
292   virtual void  CreateCodeToLoadConst(const TargetMachine& target,
293                                       Function* F,
294                                       Value* val,
295                                       Instruction* dest,
296                                       std::vector<MachineInstr*>& mvec,
297                                       MachineCodeForInstruction& mcfi) const {
298     abort();
299   }
300   
301   // Create an instruction sequence to copy an integer value `val'
302   // to a floating point value `dest' by copying to memory and back.
303   // val must be an integral type.  dest must be a Float or Double.
304   // The generated instructions are returned in `mvec'.
305   // Any temp. registers (TmpInstruction) created are recorded in mcfi.
306   // Any stack space required is allocated via mcff.
307   // 
308   virtual void CreateCodeToCopyIntToFloat(const TargetMachine& target,
309                                           Function* F,
310                                           Value* val,
311                                           Instruction* dest,
312                                           std::vector<MachineInstr*>& mvec,
313                                           MachineCodeForInstruction& MI) const {
314     abort();
315   }
316
317   // Similarly, create an instruction sequence to copy an FP value
318   // `val' to an integer value `dest' by copying to memory and back.
319   // The generated instructions are returned in `mvec'.
320   // Any temp. registers (TmpInstruction) created are recorded in mcfi.
321   // Any stack space required is allocated via mcff.
322   // 
323   virtual void CreateCodeToCopyFloatToInt(const TargetMachine& target,
324                                           Function* F,
325                                           Value* val,
326                                           Instruction* dest,
327                                           std::vector<MachineInstr*>& mvec,
328                                           MachineCodeForInstruction& MI) const {
329     abort();
330   }
331   
332   // Create instruction(s) to copy src to dest, for arbitrary types
333   // The generated instructions are returned in `mvec'.
334   // Any temp. registers (TmpInstruction) created are recorded in mcfi.
335   // Any stack space required is allocated via mcff.
336   // 
337   virtual void CreateCopyInstructionsByType(const TargetMachine& target,
338                                             Function* F,
339                                             Value* src,
340                                             Instruction* dest,
341                                             std::vector<MachineInstr*>& mvec,
342                                           MachineCodeForInstruction& MI) const {
343     abort();
344   }
345
346   // Create instruction sequence to produce a sign-extended register value
347   // from an arbitrary sized value (sized in bits, not bytes).
348   // The generated instructions are appended to `mvec'.
349   // Any temp. registers (TmpInstruction) created are recorded in mcfi.
350   // Any stack space required is allocated via mcff.
351   // 
352   virtual void CreateSignExtensionInstructions(const TargetMachine& target,
353                                        Function* F,
354                                        Value* srcVal,
355                                        Value* destVal,
356                                        unsigned numLowBits,
357                                        std::vector<MachineInstr*>& mvec,
358                                        MachineCodeForInstruction& MI) const {
359     abort();
360   }
361
362   // Create instruction sequence to produce a zero-extended register value
363   // from an arbitrary sized value (sized in bits, not bytes).
364   // The generated instructions are appended to `mvec'.
365   // Any temp. registers (TmpInstruction) created are recorded in mcfi.
366   // Any stack space required is allocated via mcff.
367   // 
368   virtual void CreateZeroExtensionInstructions(const TargetMachine& target,
369                                        Function* F,
370                                        Value* srcVal,
371                                        Value* destVal,
372                                        unsigned srcSizeInBits,
373                                        std::vector<MachineInstr*>& mvec,
374                                        MachineCodeForInstruction& mcfi) const {
375     abort();
376   }
377 };
378
379 } // End llvm namespace
380
381 #endif