blob: bccd10b3d97506abf1621e5c2807acd1bd262178 [file] [log] [blame]
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +00001//===-- X86ISelLowering.h - X86 DAG Lowering Interface ----------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file was developed by Chris Lattner and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the interfaces that X86 uses to lower LLVM code into a
11// selection DAG.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef X86ISELLOWERING_H
16#define X86ISELLOWERING_H
17
Evan Cheng559806f2006-01-27 08:10:46 +000018#include "X86Subtarget.h"
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000019#include "llvm/Target/TargetLowering.h"
20#include "llvm/CodeGen/SelectionDAG.h"
21
22namespace llvm {
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000023 namespace X86ISD {
Evan Chengd9558e02006-01-06 00:43:03 +000024 // X86 Specific DAG Nodes
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000025 enum NodeType {
26 // Start the numbering where the builtin ops leave off.
Evan Cheng7df96d62005-12-17 01:21:05 +000027 FIRST_NUMBER = ISD::BUILTIN_OP_END+X86::INSTRUCTION_LIST_END,
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000028
Evan Chenge3413162006-01-09 18:33:28 +000029 /// ADD_FLAG, SUB_FLAG - Same as ISD::ADD and ISD::SUB except it also
30 /// produces a flag result.
31 ADD_FLAG,
32 SUB_FLAG,
33
34 /// ADC, SBB - Add with carry and subtraction with borrow. These
35 /// correspond to X86::ADCxx and X86::SBBxx instructions.
36 ADC,
37 SBB,
38
39 /// SHLD, SHRD - Double shift instructions. These correspond to
40 /// X86::SHLDxx and X86::SHRDxx instructions.
41 SHLD,
42 SHRD,
43
Evan Chengef6ffb12006-01-31 03:14:29 +000044 /// FAND - Bitwise logical AND of floating point values. This corresponds
45 /// to X86::ANDPS or X86::ANDPD.
46 FAND,
47
Evan Cheng223547a2006-01-31 22:28:30 +000048 /// FXOR - Bitwise logical XOR of floating point values. This corresponds
49 /// to X86::XORPS or X86::XORPD.
50 FXOR,
51
Evan Chenga3195e82006-01-12 22:54:21 +000052 /// FILD - This instruction implements SINT_TO_FP with the integer source
53 /// in memory and FP reg result. This corresponds to the X86::FILD*m
54 /// instructions. It has three inputs (token chain, address, and source
Evan Cheng6dab0532006-01-30 08:02:57 +000055 /// type) and three outputs (FP value, token chain, and a flag).
Evan Chenga3195e82006-01-12 22:54:21 +000056 FILD,
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000057
58 /// FP_TO_INT*_IN_MEM - This instruction implements FP_TO_SINT with the
59 /// integer destination in memory and a FP reg source. This corresponds
60 /// to the X86::FIST*m instructions and the rounding mode change stuff. It
Evan Chenga3195e82006-01-12 22:54:21 +000061 /// has two inputs (token chain and address) and two outputs (int value and
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000062 /// token chain).
63 FP_TO_INT16_IN_MEM,
64 FP_TO_INT32_IN_MEM,
65 FP_TO_INT64_IN_MEM,
66
Evan Chengb077b842005-12-21 02:39:21 +000067 /// FLD - This instruction implements an extending load to FP stack slots.
68 /// This corresponds to the X86::FLD32m / X86::FLD64m. It takes a chain
Evan Cheng38bcbaf2005-12-23 07:31:11 +000069 /// operand, ptr to load from, and a ValueType node indicating the type
70 /// to load to.
Evan Chengb077b842005-12-21 02:39:21 +000071 FLD,
72
Evan Chengd90eb7f2006-01-05 00:27:02 +000073 /// FST - This instruction implements a truncating store to FP stack
74 /// slots. This corresponds to the X86::FST32m / X86::FST64m. It takes a
75 /// chain operand, value to store, address, and a ValueType to store it
76 /// as.
77 FST,
78
79 /// FP_SET_RESULT - This corresponds to FpGETRESULT pseudo instrcuction
80 /// which copies from ST(0) to the destination. It takes a chain and writes
81 /// a RFP result and a chain.
82 FP_GET_RESULT,
83
Evan Chengb077b842005-12-21 02:39:21 +000084 /// FP_SET_RESULT - This corresponds to FpSETRESULT pseudo instrcuction
85 /// which copies the source operand to ST(0). It takes a chain and writes
86 /// a chain and a flag.
87 FP_SET_RESULT,
88
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +000089 /// CALL/TAILCALL - These operations represent an abstract X86 call
90 /// instruction, which includes a bunch of information. In particular the
91 /// operands of these node are:
92 ///
93 /// #0 - The incoming token chain
94 /// #1 - The callee
95 /// #2 - The number of arg bytes the caller pushes on the stack.
96 /// #3 - The number of arg bytes the callee pops off the stack.
97 /// #4 - The value to pass in AL/AX/EAX (optional)
98 /// #5 - The value to pass in DL/DX/EDX (optional)
99 ///
100 /// The result values of these nodes are:
101 ///
102 /// #0 - The outgoing token chain
103 /// #1 - The first register result value (optional)
104 /// #2 - The second register result value (optional)
105 ///
106 /// The CALL vs TAILCALL distinction boils down to whether the callee is
107 /// known not to modify the caller's stack frame, as is standard with
108 /// LLVM.
109 CALL,
110 TAILCALL,
Andrew Lenharthb873ff32005-11-20 21:41:10 +0000111
112 /// RDTSC_DAG - This operation implements the lowering for
113 /// readcyclecounter
114 RDTSC_DAG,
Evan Cheng7df96d62005-12-17 01:21:05 +0000115
116 /// X86 compare and logical compare instructions.
117 CMP, TEST,
118
Evan Chengd5781fc2005-12-21 20:21:51 +0000119 /// X86 SetCC. Operand 1 is condition code, and operand 2 is the flag
120 /// operand produced by a CMP instruction.
121 SETCC,
122
123 /// X86 conditional moves. Operand 1 and operand 2 are the two values
124 /// to select from (operand 1 is a R/W operand). Operand 3 is the condition
125 /// code, and operand 4 is the flag operand produced by a CMP or TEST
Evan Chenge3413162006-01-09 18:33:28 +0000126 /// instruction. It also writes a flag result.
Evan Cheng7df96d62005-12-17 01:21:05 +0000127 CMOV,
Evan Cheng898101c2005-12-19 23:12:38 +0000128
Evan Chengd5781fc2005-12-21 20:21:51 +0000129 /// X86 conditional branches. Operand 1 is the chain operand, operand 2
130 /// is the block to branch if condition is true, operand 3 is the
131 /// condition code, and operand 4 is the flag operand produced by a CMP
132 /// or TEST instruction.
Evan Cheng898101c2005-12-19 23:12:38 +0000133 BRCOND,
Evan Chengb077b842005-12-21 02:39:21 +0000134
Evan Cheng67f92a72006-01-11 22:15:48 +0000135 /// Return with a flag operand. Operand 1 is the chain operand, operand
136 /// 2 is the number of bytes of stack to pop.
Evan Chengb077b842005-12-21 02:39:21 +0000137 RET_FLAG,
Evan Cheng67f92a72006-01-11 22:15:48 +0000138
139 /// REP_STOS - Repeat fill, corresponds to X86::REP_STOSx.
140 REP_STOS,
141
142 /// REP_MOVS - Repeat move, corresponds to X86::REP_MOVSx.
143 REP_MOVS,
Evan Cheng223547a2006-01-31 22:28:30 +0000144
145 /// LOAD_PACK Load a 128-bit packed float / double value. It has the same
146 /// operands as a normal load.
147 LOAD_PACK,
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000148 };
Evan Chengd9558e02006-01-06 00:43:03 +0000149
150 // X86 specific condition code. These correspond to X86_*_COND in
151 // X86InstrInfo.td. They must be kept in synch.
152 enum CondCode {
153 COND_A = 0,
154 COND_AE = 1,
155 COND_B = 2,
156 COND_BE = 3,
157 COND_E = 4,
158 COND_G = 5,
159 COND_GE = 6,
160 COND_L = 7,
161 COND_LE = 8,
162 COND_NE = 9,
163 COND_NO = 10,
164 COND_NP = 11,
165 COND_NS = 12,
166 COND_O = 13,
167 COND_P = 14,
168 COND_S = 15,
169 COND_INVALID
170 };
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000171 }
172
173 //===----------------------------------------------------------------------===//
174 // X86TargetLowering - X86 Implementation of the TargetLowering interface
175 class X86TargetLowering : public TargetLowering {
176 int VarArgsFrameIndex; // FrameIndex for start of varargs area.
177 int ReturnAddrIndex; // FrameIndex for return slot.
178 int BytesToPopOnReturn; // Number of arg bytes ret should pop.
179 int BytesCallerReserves; // Number of arg bytes caller makes.
180 public:
181 X86TargetLowering(TargetMachine &TM);
182
183 // Return the number of bytes that a function should pop when it returns (in
184 // addition to the space used by the return address).
185 //
186 unsigned getBytesToPopOnReturn() const { return BytesToPopOnReturn; }
187
188 // Return the number of bytes that the caller reserves for arguments passed
189 // to this function.
190 unsigned getBytesCallerReserves() const { return BytesCallerReserves; }
191
192 /// LowerOperation - Provide custom lowering hooks for some operations.
193 ///
194 virtual SDOperand LowerOperation(SDOperand Op, SelectionDAG &DAG);
195
196 /// LowerArguments - This hook must be implemented to indicate how we should
197 /// lower the arguments for the specified function, into the specified DAG.
198 virtual std::vector<SDOperand>
199 LowerArguments(Function &F, SelectionDAG &DAG);
200
201 /// LowerCallTo - This hook lowers an abstract call to a function into an
202 /// actual call.
203 virtual std::pair<SDOperand, SDOperand>
204 LowerCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg, unsigned CC,
205 bool isTailCall, SDOperand Callee, ArgListTy &Args,
206 SelectionDAG &DAG);
207
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000208 virtual std::pair<SDOperand, SDOperand>
209 LowerFrameReturnAddress(bool isFrameAddr, SDOperand Chain, unsigned Depth,
210 SelectionDAG &DAG);
211
Evan Cheng4a460802006-01-11 00:33:36 +0000212 virtual MachineBasicBlock *InsertAtEndOfBasicBlock(MachineInstr *MI,
213 MachineBasicBlock *MBB);
214
Evan Cheng72261582005-12-20 06:22:03 +0000215 /// getTargetNodeName - This method returns the name of a target specific
216 /// DAG node.
217 virtual const char *getTargetNodeName(unsigned Opcode) const;
218
Evan Cheng3a03ebb2005-12-21 23:05:39 +0000219 /// isMaskedValueZeroForTargetNode - Return true if 'Op & Mask' is known to
220 /// be zero. Op is expected to be a target specific node. Used by DAG
221 /// combiner.
222 virtual bool isMaskedValueZeroForTargetNode(const SDOperand &Op,
Chris Lattnerc6fd6cd2006-01-30 04:09:27 +0000223 uint64_t Mask) const;
Evan Cheng3a03ebb2005-12-21 23:05:39 +0000224
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000225 SDOperand getReturnAddressFrameIndex(SelectionDAG &DAG);
226
Chris Lattner259e97c2006-01-31 19:43:35 +0000227 std::vector<unsigned>
228 getRegForInlineAsmConstraint(const std::string &Constraint) const;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000229 private:
230 // C Calling Convention implementation.
231 std::vector<SDOperand> LowerCCCArguments(Function &F, SelectionDAG &DAG);
232 std::pair<SDOperand, SDOperand>
233 LowerCCCCallTo(SDOperand Chain, const Type *RetTy, bool isVarArg,
234 bool isTailCall,
235 SDOperand Callee, ArgListTy &Args, SelectionDAG &DAG);
236
237 // Fast Calling Convention implementation.
238 std::vector<SDOperand> LowerFastCCArguments(Function &F, SelectionDAG &DAG);
239 std::pair<SDOperand, SDOperand>
240 LowerFastCCCallTo(SDOperand Chain, const Type *RetTy, bool isTailCall,
241 SDOperand Callee, ArgListTy &Args, SelectionDAG &DAG);
Evan Cheng559806f2006-01-27 08:10:46 +0000242
243 /// Subtarget - Keep a pointer to the X86Subtarget around so that we can
244 /// make the right decision when generating code for different targets.
245 const X86Subtarget *Subtarget;
246
247 /// X86ScalarSSE - Select between SSE2 or x87 floating point ops.
248 bool X86ScalarSSE;
Chris Lattnerdbdbf0c2005-11-15 00:40:23 +0000249 };
250}
251
252#endif // X86ISELLOWERING_H