blob: 3695580a92b575a169b587a010f968b3ee27da7a [file] [log] [blame]
Chris Lattner3e928bb2005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner3e928bb2005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3e928bb2005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner45b8caf2005-01-15 07:15:18 +000016#include "llvm/CodeGen/MachineFrameInfo.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000017#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000018#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000019#include "llvm/CodeGen/PseudoSourceValue.h"
Evan Cheng61bbbab2007-08-16 23:50:06 +000020#include "llvm/Target/TargetFrameInfo.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000021#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000022#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000023#include "llvm/Target/TargetMachine.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000024#include "llvm/Target/TargetOptions.h"
Dan Gohman707e0182008-04-12 04:36:06 +000025#include "llvm/Target/TargetSubtarget.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000026#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000027#include "llvm/Constants.h"
Reid Spencerc1030572007-01-19 21:13:56 +000028#include "llvm/DerivedTypes.h"
Chris Lattner5e46a192006-04-02 03:07:27 +000029#include "llvm/Support/CommandLine.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000030#include "llvm/Support/Compiler.h"
Duncan Sandsdc846502007-10-28 12:59:45 +000031#include "llvm/Support/MathExtras.h"
Chris Lattner79715142007-02-03 01:12:36 +000032#include "llvm/ADT/DenseMap.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000033#include "llvm/ADT/SmallVector.h"
Chris Lattner00755df2007-02-04 00:27:56 +000034#include "llvm/ADT/SmallPtrSet.h"
Evan Cheng033e6812006-03-24 01:17:21 +000035#include <map>
Chris Lattner3e928bb2005-01-07 07:47:09 +000036using namespace llvm;
37
Chris Lattner5e46a192006-04-02 03:07:27 +000038#ifndef NDEBUG
39static cl::opt<bool>
40ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
41 cl::desc("Pop up a window to show dags before legalize"));
42#else
43static const bool ViewLegalizeDAGs = 0;
44#endif
45
Chris Lattner3e928bb2005-01-07 07:47:09 +000046//===----------------------------------------------------------------------===//
47/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
48/// hacks on it until the target machine can handle it. This involves
49/// eliminating value sizes the machine cannot handle (promoting small sizes to
50/// large sizes or splitting up large values into small values) as well as
51/// eliminating operations the machine cannot handle.
52///
53/// This code also does a small amount of optimization and recognition of idioms
54/// as part of its processing. For example, if a target does not support a
55/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
56/// will attempt merge setcc and brc instructions into brcc's.
57///
58namespace {
Chris Lattner360e8202006-06-28 21:58:30 +000059class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattner3e928bb2005-01-07 07:47:09 +000060 TargetLowering &TLI;
61 SelectionDAG &DAG;
62
Chris Lattner6831a812006-02-13 09:18:02 +000063 // Libcall insertion helpers.
64
65 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
66 /// legalized. We use this to ensure that calls are properly serialized
67 /// against each other, including inserted libcalls.
68 SDOperand LastCALLSEQ_END;
69
70 /// IsLegalizingCall - This member is used *only* for purposes of providing
71 /// helpful assertions that a libcall isn't created while another call is
72 /// being legalized (which could lead to non-serialized call sequences).
73 bool IsLegalizingCall;
74
Chris Lattner3e928bb2005-01-07 07:47:09 +000075 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000076 Legal, // The target natively supports this operation.
77 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000078 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000079 };
Chris Lattner6831a812006-02-13 09:18:02 +000080
Chris Lattner3e928bb2005-01-07 07:47:09 +000081 /// ValueTypeActions - This is a bitvector that contains two bits for each
82 /// value type, where the two bits correspond to the LegalizeAction enum.
83 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000084 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000085
Chris Lattner3e928bb2005-01-07 07:47:09 +000086 /// LegalizedNodes - For nodes that are of legal width, and that have more
87 /// than one use, this map indicates what regularized operand to use. This
88 /// allows us to avoid legalizing the same thing more than once.
Roman Levenstein9cac5252008-04-16 16:15:27 +000089 DenseMap<SDOperand, SDOperand> LegalizedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000090
Chris Lattner03c85462005-01-15 05:21:40 +000091 /// PromotedNodes - For nodes that are below legal width, and that have more
92 /// than one use, this map indicates what promoted value to use. This allows
93 /// us to avoid promoting the same thing more than once.
Roman Levenstein9cac5252008-04-16 16:15:27 +000094 DenseMap<SDOperand, SDOperand> PromotedNodes;
Chris Lattner03c85462005-01-15 05:21:40 +000095
Chris Lattnerc7029802006-03-18 01:44:44 +000096 /// ExpandedNodes - For nodes that need to be expanded this map indicates
97 /// which which operands are the expanded version of the input. This allows
98 /// us to avoid expanding the same node more than once.
Roman Levenstein9cac5252008-04-16 16:15:27 +000099 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000100
Chris Lattnerc7029802006-03-18 01:44:44 +0000101 /// SplitNodes - For vector nodes that need to be split, this map indicates
102 /// which which operands are the split version of the input. This allows us
103 /// to avoid splitting the same node more than once.
104 std::map<SDOperand, std::pair<SDOperand, SDOperand> > SplitNodes;
105
Dan Gohman7f321562007-06-25 16:23:39 +0000106 /// ScalarizedNodes - For nodes that need to be converted from vector types to
107 /// scalar types, this contains the mapping of ones we have already
Chris Lattnerc7029802006-03-18 01:44:44 +0000108 /// processed to the result.
Dan Gohman7f321562007-06-25 16:23:39 +0000109 std::map<SDOperand, SDOperand> ScalarizedNodes;
Chris Lattnerc7029802006-03-18 01:44:44 +0000110
Chris Lattner8afc48e2005-01-07 22:28:47 +0000111 void AddLegalizedOperand(SDOperand From, SDOperand To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000112 LegalizedNodes.insert(std::make_pair(From, To));
113 // If someone requests legalization of the new node, return itself.
114 if (From != To)
115 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000116 }
Chris Lattner03c85462005-01-15 05:21:40 +0000117 void AddPromotedOperand(SDOperand From, SDOperand To) {
Chris Lattner40030bf2007-02-04 01:17:38 +0000118 bool isNew = PromotedNodes.insert(std::make_pair(From, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000119 assert(isNew && "Got into the map somehow?");
Chris Lattner69a889e2005-12-20 00:53:54 +0000120 // If someone requests legalization of the new node, return itself.
121 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000122 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000123
Chris Lattner3e928bb2005-01-07 07:47:09 +0000124public:
125
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000126 SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000127
Chris Lattner3e928bb2005-01-07 07:47:09 +0000128 /// getTypeAction - Return how we should legalize values of this type, either
129 /// it is already legal or we need to expand it into multiple registers of
130 /// smaller integer type, or we need to promote it to a larger type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000131 LegalizeAction getTypeAction(MVT VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000132 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000133 }
134
135 /// isTypeLegal - Return true if this type is legal on this target.
136 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000137 bool isTypeLegal(MVT VT) const {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000138 return getTypeAction(VT) == Legal;
139 }
140
Chris Lattner3e928bb2005-01-07 07:47:09 +0000141 void LegalizeDAG();
142
Chris Lattner456a93a2006-01-28 07:39:30 +0000143private:
Dan Gohman7f321562007-06-25 16:23:39 +0000144 /// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000145 /// appropriate for its type.
146 void HandleOp(SDOperand Op);
147
148 /// LegalizeOp - We know that the specified value has a legal type.
149 /// Recursively ensure that the operands have legal types, then return the
150 /// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000151 SDOperand LegalizeOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000152
Dan Gohman82669522007-10-11 23:57:53 +0000153 /// UnrollVectorOp - We know that the given vector has a legal type, however
154 /// the operation it performs is not legal and is an operation that we have
155 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
156 /// operating on each element individually.
157 SDOperand UnrollVectorOp(SDOperand O);
Nate Begeman68679912008-04-25 18:07:40 +0000158
159 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
160 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
161 /// is necessary to spill the vector being inserted into to memory, perform
162 /// the insert there, and then read the result back.
163 SDOperand PerformInsertVectorEltInMemory(SDOperand Vec, SDOperand Val,
164 SDOperand Idx);
Dan Gohman82669522007-10-11 23:57:53 +0000165
Chris Lattnerc7029802006-03-18 01:44:44 +0000166 /// PromoteOp - Given an operation that produces a value in an invalid type,
167 /// promote it to compute the value into a larger type. The produced value
168 /// will have the correct bits for the low portion of the register, but no
169 /// guarantee is made about the top bits: it may be zero, sign-extended, or
170 /// garbage.
Chris Lattner03c85462005-01-15 05:21:40 +0000171 SDOperand PromoteOp(SDOperand O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000172
Chris Lattnerc7029802006-03-18 01:44:44 +0000173 /// ExpandOp - Expand the specified SDOperand into its two component pieces
174 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
175 /// the LegalizeNodes map is filled in for any results that are not expanded,
176 /// the ExpandedNodes map is filled in for any results that are expanded, and
177 /// the Lo/Hi values are returned. This applies to integer types and Vector
178 /// types.
179 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
180
Dan Gohman7f321562007-06-25 16:23:39 +0000181 /// SplitVectorOp - Given an operand of vector type, break it down into
182 /// two smaller values.
Chris Lattnerc7029802006-03-18 01:44:44 +0000183 void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
184
Dan Gohman89b20c02007-06-27 14:06:22 +0000185 /// ScalarizeVectorOp - Given an operand of single-element vector type
186 /// (e.g. v1f32), convert it into the equivalent operation that returns a
187 /// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +0000188 SDOperand ScalarizeVectorOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000189
Chris Lattner4352cc92006-04-04 17:23:26 +0000190 /// isShuffleLegal - Return true if a vector shuffle is legal with the
191 /// specified mask and type. Targets can specify exactly which masks they
192 /// support and the code generator is tasked with not creating illegal masks.
193 ///
194 /// Note that this will also return true for shuffles that are promoted to a
195 /// different type.
196 ///
197 /// If this is a legal shuffle, this method returns the (possibly promoted)
198 /// build_vector Mask. If it's not a legal shuffle, it returns null.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000199 SDNode *isShuffleLegal(MVT VT, SDOperand Mask) const;
Chris Lattner4352cc92006-04-04 17:23:26 +0000200
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000201 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000202 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000203
Nate Begeman750ac1b2006-02-01 07:19:44 +0000204 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
205
Duncan Sands460a14e2008-04-12 17:14:18 +0000206 SDOperand ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
Chris Lattner77e77a62005-01-21 06:05:23 +0000207 SDOperand &Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000208 SDOperand ExpandIntToFP(bool isSigned, MVT DestTy, SDOperand Source);
Chris Lattnercad063f2005-07-16 00:19:57 +0000209
Duncan Sands83ec4b62008-06-06 12:08:01 +0000210 SDOperand EmitStackConvert(SDOperand SrcOp, MVT SlotVT, MVT DestVT);
Chris Lattnerce872152006-03-19 06:31:19 +0000211 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner4352cc92006-04-04 17:23:26 +0000212 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000213 SDOperand ExpandLegalINT_TO_FP(bool isSigned, SDOperand LegalOp, MVT DestVT);
214 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT DestVT, bool isSigned);
215 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT DestVT, bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000216
Chris Lattner456a93a2006-01-28 07:39:30 +0000217 SDOperand ExpandBSWAP(SDOperand Op);
218 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattnere34b3962005-01-19 04:19:40 +0000219 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
220 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000221 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
222 SDOperand &Lo, SDOperand &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000223
Dan Gohman7f321562007-06-25 16:23:39 +0000224 SDOperand ExpandEXTRACT_SUBVECTOR(SDOperand Op);
Chris Lattner4aab2f42006-04-02 05:06:04 +0000225 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000226};
227}
228
Chris Lattner4352cc92006-04-04 17:23:26 +0000229/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
230/// specified mask and type. Targets can specify exactly which masks they
231/// support and the code generator is tasked with not creating illegal masks.
232///
233/// Note that this will also return true for shuffles that are promoted to a
234/// different type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000235SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDOperand Mask) const {
Chris Lattner4352cc92006-04-04 17:23:26 +0000236 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
237 default: return 0;
238 case TargetLowering::Legal:
239 case TargetLowering::Custom:
240 break;
241 case TargetLowering::Promote: {
242 // If this is promoted to a different type, convert the shuffle mask and
243 // ask if it is legal in the promoted type!
Duncan Sands83ec4b62008-06-06 12:08:01 +0000244 MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
Chris Lattner4352cc92006-04-04 17:23:26 +0000245
246 // If we changed # elements, change the shuffle mask.
247 unsigned NumEltsGrowth =
Duncan Sands83ec4b62008-06-06 12:08:01 +0000248 NVT.getVectorNumElements() / VT.getVectorNumElements();
Chris Lattner4352cc92006-04-04 17:23:26 +0000249 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
250 if (NumEltsGrowth > 1) {
251 // Renumber the elements.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000252 SmallVector<SDOperand, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000253 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
254 SDOperand InOp = Mask.getOperand(i);
255 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
256 if (InOp.getOpcode() == ISD::UNDEF)
257 Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
258 else {
259 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
260 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32));
261 }
262 }
263 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000264 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000265 }
266 VT = NVT;
267 break;
268 }
269 }
270 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
271}
272
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000273SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
274 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
275 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000276 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000277 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000278}
279
Chris Lattnere10e6f72007-06-18 21:28:10 +0000280/// ComputeTopDownOrdering - Compute a top-down ordering of the dag, where Order
281/// contains all of a nodes operands before it contains the node.
282static void ComputeTopDownOrdering(SelectionDAG &DAG,
283 SmallVector<SDNode*, 64> &Order) {
284
285 DenseMap<SDNode*, unsigned> Visited;
286 std::vector<SDNode*> Worklist;
287 Worklist.reserve(128);
Chris Lattner32fca002005-10-06 01:20:27 +0000288
Chris Lattnere10e6f72007-06-18 21:28:10 +0000289 // Compute ordering from all of the leaves in the graphs, those (like the
290 // entry node) that have no operands.
291 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
292 E = DAG.allnodes_end(); I != E; ++I) {
293 if (I->getNumOperands() == 0) {
294 Visited[I] = 0 - 1U;
295 Worklist.push_back(I);
296 }
Chris Lattner32fca002005-10-06 01:20:27 +0000297 }
298
Chris Lattnere10e6f72007-06-18 21:28:10 +0000299 while (!Worklist.empty()) {
300 SDNode *N = Worklist.back();
301 Worklist.pop_back();
302
303 if (++Visited[N] != N->getNumOperands())
304 continue; // Haven't visited all operands yet
305
306 Order.push_back(N);
307
308 // Now that we have N in, add anything that uses it if all of their operands
309 // are now done.
310 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
311 UI != E; ++UI)
Roman Levensteindc1adac2008-04-07 10:06:32 +0000312 Worklist.push_back(UI->getUser());
Chris Lattnere10e6f72007-06-18 21:28:10 +0000313 }
314
315 assert(Order.size() == Visited.size() &&
Dan Gohman3461cc92008-06-20 17:15:19 +0000316 Order.size() == DAG.allnodes_size() &&
Chris Lattnere10e6f72007-06-18 21:28:10 +0000317 "Error: DAG is cyclic!");
Chris Lattner32fca002005-10-06 01:20:27 +0000318}
319
Chris Lattner1618beb2005-07-29 00:11:56 +0000320
Chris Lattner3e928bb2005-01-07 07:47:09 +0000321void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000322 LastCALLSEQ_END = DAG.getEntryNode();
323 IsLegalizingCall = false;
324
Chris Lattnerab510a72005-10-02 17:49:46 +0000325 // The legalize process is inherently a bottom-up recursive process (users
326 // legalize their uses before themselves). Given infinite stack space, we
327 // could just start legalizing on the root and traverse the whole graph. In
328 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000329 // blocks. To avoid this problem, compute an ordering of the nodes where each
330 // node is only legalized after all of its operands are legalized.
Chris Lattner0ed44172007-02-04 01:20:02 +0000331 SmallVector<SDNode*, 64> Order;
Chris Lattnere10e6f72007-06-18 21:28:10 +0000332 ComputeTopDownOrdering(DAG, Order);
Chris Lattnerab510a72005-10-02 17:49:46 +0000333
Chris Lattnerc7029802006-03-18 01:44:44 +0000334 for (unsigned i = 0, e = Order.size(); i != e; ++i)
335 HandleOp(SDOperand(Order[i], 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000336
337 // Finally, it's possible the root changed. Get the new root.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000338 SDOperand OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000339 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
340 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000341
342 ExpandedNodes.clear();
343 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000344 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000345 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000346 ScalarizedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000347
348 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000349 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000350}
351
Chris Lattner6831a812006-02-13 09:18:02 +0000352
353/// FindCallEndFromCallStart - Given a chained node that is part of a call
354/// sequence, find the CALLSEQ_END node that terminates the call sequence.
355static SDNode *FindCallEndFromCallStart(SDNode *Node) {
356 if (Node->getOpcode() == ISD::CALLSEQ_END)
357 return Node;
358 if (Node->use_empty())
359 return 0; // No CallSeqEnd
360
361 // The chain is usually at the end.
362 SDOperand TheChain(Node, Node->getNumValues()-1);
363 if (TheChain.getValueType() != MVT::Other) {
364 // Sometimes it's at the beginning.
365 TheChain = SDOperand(Node, 0);
366 if (TheChain.getValueType() != MVT::Other) {
367 // Otherwise, hunt for it.
368 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
369 if (Node->getValueType(i) == MVT::Other) {
370 TheChain = SDOperand(Node, i);
371 break;
372 }
373
374 // Otherwise, we walked into a node without a chain.
375 if (TheChain.getValueType() != MVT::Other)
376 return 0;
377 }
378 }
379
380 for (SDNode::use_iterator UI = Node->use_begin(),
381 E = Node->use_end(); UI != E; ++UI) {
382
383 // Make sure to only follow users of our token chain.
Roman Levensteindc1adac2008-04-07 10:06:32 +0000384 SDNode *User = UI->getUser();
Chris Lattner6831a812006-02-13 09:18:02 +0000385 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
386 if (User->getOperand(i) == TheChain)
387 if (SDNode *Result = FindCallEndFromCallStart(User))
388 return Result;
389 }
390 return 0;
391}
392
393/// FindCallStartFromCallEnd - Given a chained node that is part of a call
394/// sequence, find the CALLSEQ_START node that initiates the call sequence.
395static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
396 assert(Node && "Didn't find callseq_start for a call??");
397 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
398
399 assert(Node->getOperand(0).getValueType() == MVT::Other &&
400 "Node doesn't have a token chain argument!");
401 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
402}
403
404/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
405/// see if any uses can reach Dest. If no dest operands can get to dest,
406/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000407///
408/// Keep track of the nodes we fine that actually do lead to Dest in
409/// NodesLeadingTo. This avoids retraversing them exponential number of times.
410///
411bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000412 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000413 if (N == Dest) return true; // N certainly leads to Dest :)
414
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000415 // If we've already processed this node and it does lead to Dest, there is no
416 // need to reprocess it.
417 if (NodesLeadingTo.count(N)) return true;
418
Chris Lattner6831a812006-02-13 09:18:02 +0000419 // If the first result of this node has been already legalized, then it cannot
420 // reach N.
421 switch (getTypeAction(N->getValueType(0))) {
422 case Legal:
423 if (LegalizedNodes.count(SDOperand(N, 0))) return false;
424 break;
425 case Promote:
426 if (PromotedNodes.count(SDOperand(N, 0))) return false;
427 break;
428 case Expand:
429 if (ExpandedNodes.count(SDOperand(N, 0))) return false;
430 break;
431 }
432
433 // Okay, this node has not already been legalized. Check and legalize all
434 // operands. If none lead to Dest, then we can legalize this node.
435 bool OperandsLeadToDest = false;
436 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
437 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000438 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000439
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000440 if (OperandsLeadToDest) {
441 NodesLeadingTo.insert(N);
442 return true;
443 }
Chris Lattner6831a812006-02-13 09:18:02 +0000444
445 // Okay, this node looks safe, legalize it and return false.
Chris Lattner80edfb32006-04-17 22:10:08 +0000446 HandleOp(SDOperand(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000447 return false;
448}
449
Dan Gohman7f321562007-06-25 16:23:39 +0000450/// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000451/// appropriate for its type.
452void SelectionDAGLegalize::HandleOp(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000453 MVT VT = Op.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000454 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000455 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000456 case Legal: (void)LegalizeOp(Op); break;
457 case Promote: (void)PromoteOp(Op); break;
Chris Lattnerc7029802006-03-18 01:44:44 +0000458 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000459 if (!VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +0000460 // If this is an illegal scalar, expand it into its two component
461 // pieces.
Chris Lattnerc7029802006-03-18 01:44:44 +0000462 SDOperand X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000463 if (Op.getOpcode() == ISD::TargetConstant)
464 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000465 ExpandOp(Op, X, Y);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000466 } else if (VT.getVectorNumElements() == 1) {
Dan Gohman7f321562007-06-25 16:23:39 +0000467 // If this is an illegal single element vector, convert it to a
468 // scalar operation.
469 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000470 } else {
Dan Gohman7f321562007-06-25 16:23:39 +0000471 // Otherwise, this is an illegal multiple element vector.
472 // Split it in half and legalize both parts.
473 SDOperand X, Y;
474 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000475 }
476 break;
477 }
478}
Chris Lattner6831a812006-02-13 09:18:02 +0000479
Evan Cheng9f877882006-12-13 20:57:08 +0000480/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
481/// a load from the constant pool.
482static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng279101e2006-12-12 22:19:28 +0000483 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000484 bool Extend = false;
485
486 // If a FP immediate is precise when represented as a float and if the
487 // target can do an extending load from float to double, we put it into
488 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000489 // double. This shrinks FP constants and canonicalizes them for targets where
490 // an FP extending load is the same cost as a normal load (such as on the x87
491 // fp stack or PPC FP unit).
Duncan Sands83ec4b62008-06-06 12:08:01 +0000492 MVT VT = CFP->getValueType(0);
Chris Lattner02a260a2008-04-20 00:41:09 +0000493 ConstantFP *LLVMC = ConstantFP::get(CFP->getValueAPF());
Evan Cheng9f877882006-12-13 20:57:08 +0000494 if (!UseCP) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000495 if (VT!=MVT::f64 && VT!=MVT::f32)
496 assert(0 && "Invalid type expansion");
Dan Gohman6cf9b8a2008-03-11 00:11:06 +0000497 return DAG.getConstant(LLVMC->getValueAPF().convertToAPInt(),
Evan Chengef120572008-03-04 08:05:30 +0000498 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000499 }
500
Duncan Sands83ec4b62008-06-06 12:08:01 +0000501 MVT OrigVT = VT;
502 MVT SVT = VT;
Evan Chengef120572008-03-04 08:05:30 +0000503 while (SVT != MVT::f32) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000504 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Chengef120572008-03-04 08:05:30 +0000505 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
506 // Only do this if the target has a native EXTLOAD instruction from
507 // smaller type.
Evan Cheng6fd599f2008-03-05 01:30:59 +0000508 TLI.isLoadXLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000509 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000510 const Type *SType = SVT.getTypeForMVT();
Evan Chengef120572008-03-04 08:05:30 +0000511 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
512 VT = SVT;
513 Extend = true;
514 }
Evan Cheng00495212006-12-12 21:32:44 +0000515 }
516
517 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Chengef120572008-03-04 08:05:30 +0000518 if (Extend)
519 return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000520 CPIdx, PseudoSourceValue::getConstantPool(),
Evan Chengef120572008-03-04 08:05:30 +0000521 0, VT);
522 return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx,
523 PseudoSourceValue::getConstantPool(), 0);
Evan Cheng00495212006-12-12 21:32:44 +0000524}
525
Chris Lattner6831a812006-02-13 09:18:02 +0000526
Evan Cheng912095b2007-01-04 21:56:39 +0000527/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
528/// operations.
529static
Duncan Sands83ec4b62008-06-06 12:08:01 +0000530SDOperand ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
Evan Cheng912095b2007-01-04 21:56:39 +0000531 SelectionDAG &DAG, TargetLowering &TLI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000532 MVT VT = Node->getValueType(0);
533 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000534 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
535 "fcopysign expansion only supported for f32 and f64");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000536 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000537
Evan Cheng912095b2007-01-04 21:56:39 +0000538 // First get the sign bit of second operand.
Evan Cheng068c5f42007-01-05 21:31:51 +0000539 SDOperand Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000540 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
541 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000542 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000543 SDOperand SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000544 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000545 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000546 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Evan Cheng912095b2007-01-04 21:56:39 +0000547 if (SizeDiff > 0) {
548 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
549 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
550 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
551 } else if (SizeDiff < 0)
552 SignBit = DAG.getNode(ISD::SIGN_EXTEND, NVT, SignBit);
Evan Cheng068c5f42007-01-05 21:31:51 +0000553
554 // Clear the sign bit of first operand.
555 SDOperand Mask2 = (VT == MVT::f64)
556 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
557 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
558 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Evan Cheng912095b2007-01-04 21:56:39 +0000559 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000560 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
561
562 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000563 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
564 return Result;
565}
566
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000567/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
568static
569SDOperand ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
570 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000571 SDOperand Chain = ST->getChain();
572 SDOperand Ptr = ST->getBasePtr();
573 SDOperand Val = ST->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000574 MVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000575 int Alignment = ST->getAlignment();
576 int SVOffset = ST->getSrcValueOffset();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000577 if (ST->getMemoryVT().isFloatingPoint() ||
578 ST->getMemoryVT().isVector()) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000579 // Expand to a bitconvert of the value to the integer type of the
580 // same size, then a (misaligned) int store.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000581 MVT intVT;
582 if (VT.is128BitVector() || VT == MVT::ppcf128 || VT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000583 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000584 else if (VT.is64BitVector() || VT==MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000585 intVT = MVT::i64;
586 else if (VT==MVT::f32)
587 intVT = MVT::i32;
588 else
Dale Johannesencd9f1742008-02-28 18:36:51 +0000589 assert(0 && "Unaligned store of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000590
591 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
592 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
593 SVOffset, ST->isVolatile(), Alignment);
594 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000595 assert(ST->getMemoryVT().isInteger() &&
596 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000597 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000598 // Get the half-size VT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000599 MVT NewStoredVT =
600 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
601 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000602 int IncrementSize = NumBits / 8;
603
604 // Divide the stored value in two parts.
605 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
606 SDOperand Lo = Val;
607 SDOperand Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
608
609 // Store the two parts
610 SDOperand Store1, Store2;
611 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
612 ST->getSrcValue(), SVOffset, NewStoredVT,
613 ST->isVolatile(), Alignment);
614 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
615 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000616 Alignment = MinAlign(Alignment, IncrementSize);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000617 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
618 ST->getSrcValue(), SVOffset + IncrementSize,
619 NewStoredVT, ST->isVolatile(), Alignment);
620
621 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
622}
623
624/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
625static
626SDOperand ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
627 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000628 int SVOffset = LD->getSrcValueOffset();
629 SDOperand Chain = LD->getChain();
630 SDOperand Ptr = LD->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000631 MVT VT = LD->getValueType(0);
632 MVT LoadedVT = LD->getMemoryVT();
633 if (VT.isFloatingPoint() || VT.isVector()) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000634 // Expand to a (misaligned) integer load of the same size,
Dale Johannesen8155d642008-02-27 22:36:00 +0000635 // then bitconvert to floating point or vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000636 MVT intVT;
637 if (LoadedVT.is128BitVector() ||
Dale Johannesen3c8b59c2008-03-01 03:40:57 +0000638 LoadedVT == MVT::ppcf128 || LoadedVT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000639 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000640 else if (LoadedVT.is64BitVector() || LoadedVT == MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000641 intVT = MVT::i64;
Chris Lattnere400af82007-11-19 21:38:03 +0000642 else if (LoadedVT == MVT::f32)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000643 intVT = MVT::i32;
644 else
Dale Johannesen8155d642008-02-27 22:36:00 +0000645 assert(0 && "Unaligned load of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000646
647 SDOperand newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
648 SVOffset, LD->isVolatile(),
649 LD->getAlignment());
650 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000651 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000652 Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
653
654 SDOperand Ops[] = { Result, Chain };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000655 return DAG.getMergeValues(Ops, 2);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000656 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000657 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000658 "Unaligned load of unsupported type.");
659
Dale Johannesen8155d642008-02-27 22:36:00 +0000660 // Compute the new VT that is half the size of the old one. This is an
661 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000662 unsigned NumBits = LoadedVT.getSizeInBits();
663 MVT NewLoadedVT;
664 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000665 NumBits >>= 1;
666
667 unsigned Alignment = LD->getAlignment();
668 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000669 ISD::LoadExtType HiExtType = LD->getExtensionType();
670
671 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
672 if (HiExtType == ISD::NON_EXTLOAD)
673 HiExtType = ISD::ZEXTLOAD;
674
675 // Load the value in two parts
676 SDOperand Lo, Hi;
677 if (TLI.isLittleEndian()) {
678 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
679 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
680 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
681 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
682 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
683 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000684 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000685 } else {
686 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
687 NewLoadedVT,LD->isVolatile(), Alignment);
688 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
689 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
690 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
691 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000692 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000693 }
694
695 // aggregate the two parts
696 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
697 SDOperand Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
698 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
699
700 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
701 Hi.getValue(1));
702
703 SDOperand Ops[] = { Result, TF };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000704 return DAG.getMergeValues(Ops, 2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000705}
Evan Cheng912095b2007-01-04 21:56:39 +0000706
Dan Gohman82669522007-10-11 23:57:53 +0000707/// UnrollVectorOp - We know that the given vector has a legal type, however
708/// the operation it performs is not legal and is an operation that we have
709/// no way of lowering. "Unroll" the vector, splitting out the scalars and
710/// operating on each element individually.
711SDOperand SelectionDAGLegalize::UnrollVectorOp(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000712 MVT VT = Op.getValueType();
Dan Gohman82669522007-10-11 23:57:53 +0000713 assert(isTypeLegal(VT) &&
714 "Caller should expand or promote operands that are not legal!");
715 assert(Op.Val->getNumValues() == 1 &&
716 "Can't unroll a vector with multiple results!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000717 unsigned NE = VT.getVectorNumElements();
718 MVT EltVT = VT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000719
720 SmallVector<SDOperand, 8> Scalars;
721 SmallVector<SDOperand, 4> Operands(Op.getNumOperands());
722 for (unsigned i = 0; i != NE; ++i) {
723 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
724 SDOperand Operand = Op.getOperand(j);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000725 MVT OperandVT = Operand.getValueType();
726 if (OperandVT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +0000727 // A vector operand; extract a single element.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000728 MVT OperandEltVT = OperandVT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000729 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
730 OperandEltVT,
731 Operand,
732 DAG.getConstant(i, MVT::i32));
733 } else {
734 // A scalar operand; just use it as is.
735 Operands[j] = Operand;
736 }
737 }
738 Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
739 &Operands[0], Operands.size()));
740 }
741
742 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
743}
744
Duncan Sands007f9842008-01-10 10:28:30 +0000745/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000746static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands007f9842008-01-10 10:28:30 +0000747 RTLIB::Libcall Call_F32,
748 RTLIB::Libcall Call_F64,
749 RTLIB::Libcall Call_F80,
750 RTLIB::Libcall Call_PPCF128) {
751 return
752 VT == MVT::f32 ? Call_F32 :
753 VT == MVT::f64 ? Call_F64 :
754 VT == MVT::f80 ? Call_F80 :
755 VT == MVT::ppcf128 ? Call_PPCF128 :
756 RTLIB::UNKNOWN_LIBCALL;
757}
758
Nate Begeman68679912008-04-25 18:07:40 +0000759/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
760/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
761/// is necessary to spill the vector being inserted into to memory, perform
762/// the insert there, and then read the result back.
763SDOperand SelectionDAGLegalize::
764PerformInsertVectorEltInMemory(SDOperand Vec, SDOperand Val, SDOperand Idx) {
765 SDOperand Tmp1 = Vec;
766 SDOperand Tmp2 = Val;
767 SDOperand Tmp3 = Idx;
768
769 // If the target doesn't support this, we have to spill the input vector
770 // to a temporary stack slot, update the element, then reload it. This is
771 // badness. We could also load the value into a vector register (either
772 // with a "move to register" or "extload into register" instruction, then
773 // permute it into place, if the idx is a constant and if the idx is
774 // supported by the target.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000775 MVT VT = Tmp1.getValueType();
776 MVT EltVT = VT.getVectorElementType();
777 MVT IdxVT = Tmp3.getValueType();
778 MVT PtrVT = TLI.getPointerTy();
Nate Begeman68679912008-04-25 18:07:40 +0000779 SDOperand StackPtr = DAG.CreateStackTemporary(VT);
780
781 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr.Val);
782 int SPFI = StackPtrFI->getIndex();
783
784 // Store the vector.
785 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr,
786 PseudoSourceValue::getFixedStack(),
787 SPFI);
788
789 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000790 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Nate Begeman68679912008-04-25 18:07:40 +0000791 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
792 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000793 unsigned EltSize = EltVT.getSizeInBits()/8;
Nate Begeman68679912008-04-25 18:07:40 +0000794 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
795 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
796 // Store the scalar value.
797 Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2,
798 PseudoSourceValue::getFixedStack(), SPFI, EltVT);
799 // Load the updated vector.
800 return DAG.getLoad(VT, Ch, StackPtr, PseudoSourceValue::getFixedStack(),SPFI);
801}
802
Dan Gohmana3466152007-07-13 20:14:11 +0000803/// LegalizeOp - We know that the specified value has a legal type, and
804/// that its operands are legal. Now ensure that the operation itself
805/// is legal, recursively ensuring that the operands' operations remain
806/// legal.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000807SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000808 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
809 return Op;
810
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000811 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000812 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000813 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000814
Chris Lattner3e928bb2005-01-07 07:47:09 +0000815 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000816 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000817 if (Node->getNumValues() > 1) {
818 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000819 if (getTypeAction(Node->getValueType(i)) != Legal) {
820 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000821 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000822 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000823 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000824 }
825 }
826
Chris Lattner45982da2005-05-12 16:53:42 +0000827 // Note that LegalizeOp may be reentered even from single-use nodes, which
828 // means that we always must cache transformed nodes.
Roman Levenstein9cac5252008-04-16 16:15:27 +0000829 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000830 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000831
Nate Begeman9373a812005-08-10 20:51:12 +0000832 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000833 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000834 bool isCustom = false;
835
Chris Lattner3e928bb2005-01-07 07:47:09 +0000836 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000837 case ISD::FrameIndex:
838 case ISD::EntryToken:
839 case ISD::Register:
840 case ISD::BasicBlock:
841 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000842 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000843 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000844 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000845 case ISD::TargetConstantPool:
846 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000847 case ISD::TargetGlobalTLSAddress:
Chris Lattner948c1b12006-01-28 08:31:04 +0000848 case ISD::TargetExternalSymbol:
849 case ISD::VALUETYPE:
850 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +0000851 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +0000852 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +0000853 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +0000854 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +0000855 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +0000856 "This must be legal!");
857 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000858 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000859 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
860 // If this is a target node, legalize it by legalizing the operands then
861 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000862 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000863 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000864 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000865
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000866 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000867
868 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
869 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
870 return Result.getValue(Op.ResNo);
871 }
872 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000873#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +0000874 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000875#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000876 assert(0 && "Do not know how to legalize this operator!");
877 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +0000878 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000879 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000880 case ISD::GlobalTLSAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000881 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000882 case ISD::ConstantPool:
883 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000884 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
885 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000886 case TargetLowering::Custom:
887 Tmp1 = TLI.LowerOperation(Op, DAG);
888 if (Tmp1.Val) Result = Tmp1;
889 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000890 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000891 break;
892 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000893 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000894 case ISD::FRAMEADDR:
895 case ISD::RETURNADDR:
896 // The only option for these nodes is to custom lower them. If the target
897 // does not custom lower them, then return zero.
898 Tmp1 = TLI.LowerOperation(Op, DAG);
899 if (Tmp1.Val)
900 Result = Tmp1;
901 else
902 Result = DAG.getConstant(0, TLI.getPointerTy());
903 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000904 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000905 MVT VT = Node->getValueType(0);
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000906 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
907 default: assert(0 && "This action is not supported yet!");
908 case TargetLowering::Custom:
909 Result = TLI.LowerOperation(Op, DAG);
910 if (Result.Val) break;
911 // Fall Thru
912 case TargetLowering::Legal:
913 Result = DAG.getConstant(0, VT);
914 break;
915 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000916 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000917 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000918 case ISD::EXCEPTIONADDR: {
919 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000920 MVT VT = Node->getValueType(0);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000921 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
922 default: assert(0 && "This action is not supported yet!");
923 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000924 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000925 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000926 }
927 break;
928 case TargetLowering::Custom:
929 Result = TLI.LowerOperation(Op, DAG);
930 if (Result.Val) break;
931 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000932 case TargetLowering::Legal: {
933 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000934 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000935 break;
936 }
937 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000938 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000939 if (Result.Val->getNumValues() == 1) break;
940
941 assert(Result.Val->getNumValues() == 2 &&
942 "Cannot return more than two values!");
943
944 // Since we produced two values, make sure to remember that we
945 // legalized both of them.
946 Tmp1 = LegalizeOp(Result);
947 Tmp2 = LegalizeOp(Result.getValue(1));
948 AddLegalizedOperand(Op.getValue(0), Tmp1);
949 AddLegalizedOperand(Op.getValue(1), Tmp2);
950 return Op.ResNo ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +0000951 case ISD::EHSELECTION: {
952 Tmp1 = LegalizeOp(Node->getOperand(0));
953 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000954 MVT VT = Node->getValueType(0);
Jim Laskey8782d482007-02-28 20:43:58 +0000955 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
956 default: assert(0 && "This action is not supported yet!");
957 case TargetLowering::Expand: {
958 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000959 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +0000960 }
961 break;
962 case TargetLowering::Custom:
963 Result = TLI.LowerOperation(Op, DAG);
964 if (Result.Val) break;
965 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000966 case TargetLowering::Legal: {
967 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000968 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey8782d482007-02-28 20:43:58 +0000969 break;
970 }
971 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000972 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000973 if (Result.Val->getNumValues() == 1) break;
974
975 assert(Result.Val->getNumValues() == 2 &&
976 "Cannot return more than two values!");
977
978 // Since we produced two values, make sure to remember that we
979 // legalized both of them.
980 Tmp1 = LegalizeOp(Result);
981 Tmp2 = LegalizeOp(Result.getValue(1));
982 AddLegalizedOperand(Op.getValue(0), Tmp1);
983 AddLegalizedOperand(Op.getValue(1), Tmp2);
984 return Op.ResNo ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000985 case ISD::EH_RETURN: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000986 MVT VT = Node->getValueType(0);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000987 // The only "good" option for this node is to custom lower it.
988 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
989 default: assert(0 && "This action is not supported at all!");
990 case TargetLowering::Custom:
991 Result = TLI.LowerOperation(Op, DAG);
992 if (Result.Val) break;
993 // Fall Thru
994 case TargetLowering::Legal:
995 // Target does not know, how to lower this, lower to noop
996 Result = LegalizeOp(Node->getOperand(0));
997 break;
998 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000999 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001000 break;
Chris Lattner08951a32005-09-02 01:15:01 +00001001 case ISD::AssertSext:
1002 case ISD::AssertZext:
1003 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001004 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +00001005 break;
Chris Lattner308575b2005-11-20 22:56:56 +00001006 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001007 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +00001008 Result = Node->getOperand(Op.ResNo);
1009 break;
Chris Lattner69a52152005-01-14 22:38:01 +00001010 case ISD::CopyFromReg:
1011 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001012 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001013 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001014 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +00001015 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001016 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001017 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001018 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001019 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1020 } else {
1021 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1022 }
Chris Lattner7310fb12005-12-18 15:27:43 +00001023 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1024 }
Chris Lattner13c184d2005-01-28 06:27:38 +00001025 // Since CopyFromReg produces two values, make sure to remember that we
1026 // legalized both of them.
1027 AddLegalizedOperand(Op.getValue(0), Result);
1028 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1029 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001030 case ISD::UNDEF: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001031 MVT VT = Op.getValueType();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001032 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +00001033 default: assert(0 && "This action is not supported yet!");
1034 case TargetLowering::Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001035 if (VT.isInteger())
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001036 Result = DAG.getConstant(0, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001037 else if (VT.isFloatingPoint())
1038 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf41db212007-09-26 17:26:49 +00001039 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001040 else
1041 assert(0 && "Unknown value type!");
1042 break;
Nate Begemanea19cd52005-04-02 00:41:14 +00001043 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001044 break;
1045 }
1046 break;
1047 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001048
Chris Lattner48b61a72006-03-28 00:40:33 +00001049 case ISD::INTRINSIC_W_CHAIN:
1050 case ISD::INTRINSIC_WO_CHAIN:
1051 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001052 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001053 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1054 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001055 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +00001056
1057 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +00001058 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001059 TargetLowering::Custom) {
1060 Tmp3 = TLI.LowerOperation(Result, DAG);
1061 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001062 }
1063
1064 if (Result.Val->getNumValues() == 1) break;
1065
1066 // Must have return value and chain result.
1067 assert(Result.Val->getNumValues() == 2 &&
1068 "Cannot return more than two values!");
1069
1070 // Since loads produce two values, make sure to remember that we
1071 // legalized both of them.
1072 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1073 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1074 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001075 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001076
Dan Gohman7f460202008-06-30 20:59:49 +00001077 case ISD::DBG_STOPPOINT:
1078 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Chris Lattner36ce6912005-11-29 06:21:05 +00001079 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1080
Dan Gohman7f460202008-06-30 20:59:49 +00001081 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Chris Lattner36ce6912005-11-29 06:21:05 +00001082 case TargetLowering::Promote:
1083 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001084 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001085 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001086 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Dan Gohman44066042008-07-01 00:05:16 +00001087 bool useLABEL = TLI.isOperationLegal(ISD::DBG_LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001088
Dan Gohman7f460202008-06-30 20:59:49 +00001089 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001090 if (MMI && (useDEBUG_LOC || useLABEL)) {
Dan Gohman7f460202008-06-30 20:59:49 +00001091 const CompileUnitDesc *CompileUnit = DSP->getCompileUnit();
1092 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001093
Dan Gohman7f460202008-06-30 20:59:49 +00001094 unsigned Line = DSP->getLine();
1095 unsigned Col = DSP->getColumn();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001096
1097 if (useDEBUG_LOC) {
Dan Gohman44066042008-07-01 00:05:16 +00001098 SmallVector<SDOperand, 8> Ops;
1099 Ops.push_back(Tmp1); // chain
Dan Gohman7f460202008-06-30 20:59:49 +00001100 Ops.push_back(DAG.getConstant(Line, MVT::i32)); // line #
1101 Ops.push_back(DAG.getConstant(Col, MVT::i32)); // col #
Jim Laskeyabf6d172006-01-05 01:25:28 +00001102 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001103 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001104 } else {
Evan Chenga647c922008-02-01 02:05:57 +00001105 unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
Dan Gohman44066042008-07-01 00:05:16 +00001106 Result = DAG.getLabel(ISD::DBG_LABEL, Tmp1, ID);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001107 }
Jim Laskeye81aecb2005-12-21 20:51:37 +00001108 } else {
1109 Result = Tmp1; // chain
1110 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001111 break;
Chris Lattnere7736732005-12-18 23:54:29 +00001112 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001113 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +00001114 if (Tmp1 != Node->getOperand(0) ||
1115 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001116 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +00001117 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +00001118 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
1119 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1120 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1121 } else {
1122 // Otherwise promote them.
1123 Ops.push_back(PromoteOp(Node->getOperand(1)));
1124 Ops.push_back(PromoteOp(Node->getOperand(2)));
1125 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001126 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1127 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001128 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001129 }
1130 break;
1131 }
1132 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001133
1134 case ISD::DECLARE:
1135 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1136 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1137 default: assert(0 && "This action is not supported yet!");
1138 case TargetLowering::Legal:
1139 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1140 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1141 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1142 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1143 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001144 case TargetLowering::Expand:
1145 Result = LegalizeOp(Node->getOperand(0));
1146 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001147 }
1148 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001149
1150 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001151 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001152 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001153 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +00001154 case TargetLowering::Legal:
1155 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1156 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1157 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1158 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001159 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001160 break;
1161 }
1162 break;
1163
Dan Gohman44066042008-07-01 00:05:16 +00001164 case ISD::DBG_LABEL:
1165 case ISD::EH_LABEL:
1166 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1167 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001168 default: assert(0 && "This action is not supported yet!");
1169 case TargetLowering::Legal:
1170 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001171 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001172 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001173 case TargetLowering::Expand:
1174 Result = LegalizeOp(Node->getOperand(0));
1175 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001176 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001177 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001178
Evan Cheng27b7db52008-03-08 00:58:38 +00001179 case ISD::PREFETCH:
1180 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1181 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1182 default: assert(0 && "This action is not supported yet!");
1183 case TargetLowering::Legal:
1184 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1185 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1186 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1187 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1188 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1189 break;
1190 case TargetLowering::Expand:
1191 // It's a noop.
1192 Result = LegalizeOp(Node->getOperand(0));
1193 break;
1194 }
1195 break;
1196
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001197 case ISD::MEMBARRIER: {
1198 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001199 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1200 default: assert(0 && "This action is not supported yet!");
1201 case TargetLowering::Legal: {
1202 SDOperand Ops[6];
1203 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001204 for (int x = 1; x < 6; ++x) {
1205 Ops[x] = Node->getOperand(x);
1206 if (!isTypeLegal(Ops[x].getValueType()))
1207 Ops[x] = PromoteOp(Ops[x]);
1208 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001209 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1210 break;
1211 }
1212 case TargetLowering::Expand:
1213 //There is no libgcc call for this op
1214 Result = Node->getOperand(0); // Noop
1215 break;
1216 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001217 break;
1218 }
1219
Mon P Wang28873102008-06-25 08:15:39 +00001220 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001221 unsigned int num_operands = 4;
1222 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001223 SDOperand Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001224 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001225 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001226 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1227
1228 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1229 default: assert(0 && "This action is not supported yet!");
1230 case TargetLowering::Custom:
1231 Result = TLI.LowerOperation(Result, DAG);
1232 break;
1233 case TargetLowering::Legal:
1234 break;
1235 }
1236 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1237 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1238 return Result.getValue(Op.ResNo);
Duncan Sands126d9072008-07-04 11:47:58 +00001239 }
Mon P Wang28873102008-06-25 08:15:39 +00001240 case ISD::ATOMIC_LOAD_ADD:
1241 case ISD::ATOMIC_LOAD_SUB:
Mon P Wang63307c32008-05-05 19:05:59 +00001242 case ISD::ATOMIC_LOAD_AND:
1243 case ISD::ATOMIC_LOAD_OR:
1244 case ISD::ATOMIC_LOAD_XOR:
Andrew Lenharth507a58a2008-06-14 05:48:15 +00001245 case ISD::ATOMIC_LOAD_NAND:
Mon P Wang63307c32008-05-05 19:05:59 +00001246 case ISD::ATOMIC_LOAD_MIN:
1247 case ISD::ATOMIC_LOAD_MAX:
1248 case ISD::ATOMIC_LOAD_UMIN:
1249 case ISD::ATOMIC_LOAD_UMAX:
1250 case ISD::ATOMIC_SWAP: {
1251 unsigned int num_operands = 3;
1252 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
1253 SDOperand Ops[3];
1254 for (unsigned int x = 0; x < num_operands; ++x)
1255 Ops[x] = LegalizeOp(Node->getOperand(x));
1256 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001257
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001258 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001259 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001260 case TargetLowering::Custom:
1261 Result = TLI.LowerOperation(Result, DAG);
1262 break;
Mon P Wang63307c32008-05-05 19:05:59 +00001263 case TargetLowering::Expand:
Duncan Sands126d9072008-07-04 11:47:58 +00001264 Result = SDOperand(TLI.ReplaceNodeResults(Op.Val, DAG),0);
Mon P Wang63307c32008-05-05 19:05:59 +00001265 break;
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001266 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001267 break;
1268 }
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001269 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1270 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1271 return Result.getValue(Op.ResNo);
Duncan Sands126d9072008-07-04 11:47:58 +00001272 }
Scott Michelc1513d22007-08-08 23:23:31 +00001273 case ISD::Constant: {
1274 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1275 unsigned opAction =
1276 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1277
Chris Lattner3e928bb2005-01-07 07:47:09 +00001278 // We know we don't need to expand constants here, constants only have one
1279 // value and we check that it is fine above.
1280
Scott Michelc1513d22007-08-08 23:23:31 +00001281 if (opAction == TargetLowering::Custom) {
1282 Tmp1 = TLI.LowerOperation(Result, DAG);
1283 if (Tmp1.Val)
1284 Result = Tmp1;
1285 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001286 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001287 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001288 case ISD::ConstantFP: {
1289 // Spill FP immediates to the constant pool if the target cannot directly
1290 // codegen them. Targets often have some immediate values that can be
1291 // efficiently generated into an FP register without a load. We explicitly
1292 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001293 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1294
Chris Lattner3181a772006-01-29 06:26:56 +00001295 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1296 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001297 case TargetLowering::Legal:
1298 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001299 case TargetLowering::Custom:
1300 Tmp3 = TLI.LowerOperation(Result, DAG);
1301 if (Tmp3.Val) {
1302 Result = Tmp3;
1303 break;
1304 }
1305 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001306 case TargetLowering::Expand: {
1307 // Check to see if this FP immediate is already legal.
1308 bool isLegal = false;
1309 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1310 E = TLI.legal_fpimm_end(); I != E; ++I) {
1311 if (CFP->isExactlyValue(*I)) {
1312 isLegal = true;
1313 break;
1314 }
1315 }
1316 // If this is a legal constant, turn it into a TargetConstantFP node.
1317 if (isLegal)
1318 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001319 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001320 }
Nate Begemane1795842008-02-14 08:57:00 +00001321 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001322 break;
1323 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001324 case ISD::TokenFactor:
1325 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001326 Tmp1 = LegalizeOp(Node->getOperand(0));
1327 Tmp2 = LegalizeOp(Node->getOperand(1));
1328 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1329 } else if (Node->getNumOperands() == 3) {
1330 Tmp1 = LegalizeOp(Node->getOperand(0));
1331 Tmp2 = LegalizeOp(Node->getOperand(1));
1332 Tmp3 = LegalizeOp(Node->getOperand(2));
1333 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001334 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001335 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001336 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001337 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1338 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001339 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001340 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001341 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001342
1343 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001344 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001345 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001346 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1347 assert(Tmp3.Val && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001348 // A call within a calling sequence must be legalized to something
1349 // other than the normal CALLSEQ_END. Violating this gets Legalize
1350 // into an infinite loop.
1351 assert ((!IsLegalizingCall ||
1352 Node->getOpcode() != ISD::CALL ||
1353 Tmp3.Val->getOpcode() != ISD::CALLSEQ_END) &&
1354 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001355
1356 // The number of incoming and outgoing values should match; unless the final
1357 // outgoing value is a flag.
1358 assert((Tmp3.Val->getNumValues() == Result.Val->getNumValues() ||
1359 (Tmp3.Val->getNumValues() == Result.Val->getNumValues() + 1 &&
1360 Tmp3.Val->getValueType(Tmp3.Val->getNumValues() - 1) ==
1361 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001362 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001363
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001364 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001365 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +00001366 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001367 if (Tmp3.Val->getValueType(i) == MVT::Flag)
1368 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001369 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +00001370 if (Op.ResNo == i)
1371 Tmp2 = Tmp1;
1372 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
1373 }
1374 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001375 case ISD::EXTRACT_SUBREG: {
1376 Tmp1 = LegalizeOp(Node->getOperand(0));
1377 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1378 assert(idx && "Operand must be a constant");
1379 Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1380 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1381 }
1382 break;
1383 case ISD::INSERT_SUBREG: {
1384 Tmp1 = LegalizeOp(Node->getOperand(0));
1385 Tmp2 = LegalizeOp(Node->getOperand(1));
1386 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1387 assert(idx && "Operand must be a constant");
1388 Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1389 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1390 }
1391 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001392 case ISD::BUILD_VECTOR:
1393 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001394 default: assert(0 && "This action is not supported yet!");
1395 case TargetLowering::Custom:
1396 Tmp3 = TLI.LowerOperation(Result, DAG);
1397 if (Tmp3.Val) {
1398 Result = Tmp3;
1399 break;
1400 }
1401 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001402 case TargetLowering::Expand:
1403 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +00001404 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001405 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001406 break;
1407 case ISD::INSERT_VECTOR_ELT:
1408 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001409 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001410
1411 // The type of the value to insert may not be legal, even though the vector
1412 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1413 // here.
1414 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1415 default: assert(0 && "Cannot expand insert element operand");
1416 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1417 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1418 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001419 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1420
1421 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1422 Node->getValueType(0))) {
1423 default: assert(0 && "This action is not supported yet!");
1424 case TargetLowering::Legal:
1425 break;
1426 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001427 Tmp4 = TLI.LowerOperation(Result, DAG);
1428 if (Tmp4.Val) {
1429 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001430 break;
1431 }
1432 // FALLTHROUGH
1433 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001434 // If the insert index is a constant, codegen this as a scalar_to_vector,
1435 // then a shuffle that inserts it into the right position in the vector.
1436 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001437 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1438 // match the element type of the vector being created.
1439 if (Tmp2.getValueType() ==
Duncan Sands83ec4b62008-06-06 12:08:01 +00001440 Op.getValueType().getVectorElementType()) {
Nate Begeman0325d902008-02-13 06:43:04 +00001441 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
1442 Tmp1.getValueType(), Tmp2);
1443
Duncan Sands83ec4b62008-06-06 12:08:01 +00001444 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1445 MVT ShufMaskVT =
1446 MVT::getIntVectorWithNumElements(NumElts);
1447 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Nate Begeman0325d902008-02-13 06:43:04 +00001448
1449 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1450 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1451 // elt 0 of the RHS.
1452 SmallVector<SDOperand, 8> ShufOps;
1453 for (unsigned i = 0; i != NumElts; ++i) {
1454 if (i != InsertPos->getValue())
1455 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1456 else
1457 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1458 }
1459 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
1460 &ShufOps[0], ShufOps.size());
1461
1462 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1463 Tmp1, ScVec, ShufMask);
1464 Result = LegalizeOp(Result);
1465 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001466 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001467 }
Nate Begeman68679912008-04-25 18:07:40 +00001468 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001469 break;
1470 }
1471 }
1472 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001473 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001474 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1475 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1476 break;
1477 }
1478
Chris Lattnerce872152006-03-19 06:31:19 +00001479 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1480 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1481 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1482 Node->getValueType(0))) {
1483 default: assert(0 && "This action is not supported yet!");
1484 case TargetLowering::Legal:
1485 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001486 case TargetLowering::Custom:
1487 Tmp3 = TLI.LowerOperation(Result, DAG);
1488 if (Tmp3.Val) {
1489 Result = Tmp3;
1490 break;
1491 }
1492 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001493 case TargetLowering::Expand:
1494 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001495 break;
1496 }
Chris Lattnerce872152006-03-19 06:31:19 +00001497 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001498 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001499 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1500 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1501 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1502
1503 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001504 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1505 default: assert(0 && "Unknown operation action!");
1506 case TargetLowering::Legal:
1507 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1508 "vector shuffle should not be created if not legal!");
1509 break;
1510 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001511 Tmp3 = TLI.LowerOperation(Result, DAG);
1512 if (Tmp3.Val) {
1513 Result = Tmp3;
1514 break;
1515 }
1516 // FALLTHROUGH
1517 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001518 MVT VT = Node->getValueType(0);
1519 MVT EltVT = VT.getVectorElementType();
1520 MVT PtrVT = TLI.getPointerTy();
Evan Cheng18dd6d02006-04-05 06:07:11 +00001521 SDOperand Mask = Node->getOperand(2);
1522 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001523 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001524 for (unsigned i = 0; i != NumElems; ++i) {
1525 SDOperand Arg = Mask.getOperand(i);
1526 if (Arg.getOpcode() == ISD::UNDEF) {
1527 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1528 } else {
1529 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1530 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1531 if (Idx < NumElems)
1532 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1533 DAG.getConstant(Idx, PtrVT)));
1534 else
1535 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1536 DAG.getConstant(Idx - NumElems, PtrVT)));
1537 }
1538 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001539 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001540 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001541 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001542 case TargetLowering::Promote: {
1543 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001544 MVT OVT = Node->getValueType(0);
1545 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001546
1547 // Cast the two input vectors.
1548 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1549 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1550
1551 // Convert the shuffle mask to the right # elements.
1552 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1553 assert(Tmp3.Val && "Shuffle not legal?");
1554 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1555 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1556 break;
1557 }
Chris Lattner87100e02006-03-20 01:52:29 +00001558 }
1559 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001560
1561 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001562 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001563 Tmp2 = LegalizeOp(Node->getOperand(1));
1564 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001565 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001566 break;
1567
Dan Gohman7f321562007-06-25 16:23:39 +00001568 case ISD::EXTRACT_SUBVECTOR:
1569 Tmp1 = Node->getOperand(0);
1570 Tmp2 = LegalizeOp(Node->getOperand(1));
1571 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1572 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001573 break;
1574
Chris Lattner6831a812006-02-13 09:18:02 +00001575 case ISD::CALLSEQ_START: {
1576 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1577
1578 // Recursively Legalize all of the inputs of the call end that do not lead
1579 // to this call start. This ensures that any libcalls that need be inserted
1580 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001581 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001582 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001583 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1584 NodesLeadingTo);
1585 }
Chris Lattner6831a812006-02-13 09:18:02 +00001586
1587 // Now that we legalized all of the inputs (which may have inserted
1588 // libcalls) create the new CALLSEQ_START node.
1589 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1590
1591 // Merge in the last call, to ensure that this call start after the last
1592 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001593 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001594 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1595 Tmp1 = LegalizeOp(Tmp1);
1596 }
Chris Lattner6831a812006-02-13 09:18:02 +00001597
1598 // Do not try to legalize the target-specific arguments (#1+).
1599 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001600 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001601 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001602 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001603 }
1604
1605 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001606 AddLegalizedOperand(Op.getValue(0), Result);
1607 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1608 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1609
Chris Lattner6831a812006-02-13 09:18:02 +00001610 // Now that the callseq_start and all of the non-call nodes above this call
1611 // sequence have been legalized, legalize the call itself. During this
1612 // process, no libcalls can/will be inserted, guaranteeing that no calls
1613 // can overlap.
1614 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001615 // Note that we are selecting this call!
1616 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1617 IsLegalizingCall = true;
1618
1619 // Legalize the call, starting from the CALLSEQ_END.
1620 LegalizeOp(LastCALLSEQ_END);
1621 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1622 return Result;
1623 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001624 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001625 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1626 // will cause this node to be legalized as well as handling libcalls right.
1627 if (LastCALLSEQ_END.Val != Node) {
1628 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
Roman Levenstein9cac5252008-04-16 16:15:27 +00001629 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001630 assert(I != LegalizedNodes.end() &&
1631 "Legalizing the call start should have legalized this node!");
1632 return I->second;
1633 }
1634
1635 // Otherwise, the call start has been legalized and everything is going
1636 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001637 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001638 // Do not try to legalize the target-specific arguments (#1+), except for
1639 // an optional flag input.
1640 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1641 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001642 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001643 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001644 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001645 }
1646 } else {
1647 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1648 if (Tmp1 != Node->getOperand(0) ||
1649 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001650 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001651 Ops[0] = Tmp1;
1652 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001653 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001654 }
Chris Lattner6a542892006-01-24 05:48:21 +00001655 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001656 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001657 // This finishes up call legalization.
1658 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001659
1660 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1661 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1662 if (Node->getNumValues() == 2)
1663 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1664 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001665 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001666 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001667 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1668 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1669 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001670 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001671
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001672 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001673 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001674 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001675 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001676 case TargetLowering::Expand: {
1677 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1678 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1679 " not tell us which reg is the stack pointer!");
1680 SDOperand Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001681
1682 // Chain the dynamic stack allocation so that it doesn't modify the stack
1683 // pointer when other instructions are using the stack.
1684 Chain = DAG.getCALLSEQ_START(Chain,
1685 DAG.getConstant(0, TLI.getPointerTy()));
1686
Chris Lattner903d2782006-01-15 08:54:32 +00001687 SDOperand Size = Tmp2.getOperand(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001688 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, VT);
1689 Chain = SP.getValue(1);
1690 unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1691 unsigned StackAlign =
1692 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1693 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001694 SP = DAG.getNode(ISD::AND, VT, SP,
1695 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001696 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001697 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1698
1699 Tmp2 =
1700 DAG.getCALLSEQ_END(Chain,
1701 DAG.getConstant(0, TLI.getPointerTy()),
1702 DAG.getConstant(0, TLI.getPointerTy()),
1703 SDOperand());
1704
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001705 Tmp1 = LegalizeOp(Tmp1);
1706 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001707 break;
1708 }
1709 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001710 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1711 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001712 Tmp1 = LegalizeOp(Tmp3);
1713 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001714 }
Chris Lattner903d2782006-01-15 08:54:32 +00001715 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001716 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001717 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001718 }
Chris Lattner903d2782006-01-15 08:54:32 +00001719 // Since this op produce two values, make sure to remember that we
1720 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001721 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1722 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001723 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001724 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001725 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001726 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001727 bool Changed = false;
1728 // Legalize all of the operands of the inline asm, in case they are nodes
1729 // that need to be expanded or something. Note we skip the asm string and
1730 // all of the TargetConstant flags.
1731 SDOperand Op = LegalizeOp(Ops[0]);
1732 Changed = Op != Ops[0];
1733 Ops[0] = Op;
1734
1735 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1736 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1737 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1738 for (++i; NumVals; ++i, --NumVals) {
1739 SDOperand Op = LegalizeOp(Ops[i]);
1740 if (Op != Ops[i]) {
1741 Changed = true;
1742 Ops[i] = Op;
1743 }
1744 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001745 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001746
1747 if (HasInFlag) {
1748 Op = LegalizeOp(Ops.back());
1749 Changed |= Op != Ops.back();
1750 Ops.back() = Op;
1751 }
1752
1753 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001754 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001755
1756 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001757 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001758 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1759 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001760 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001761 case ISD::BR:
1762 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001763 // Ensure that libcalls are emitted before a branch.
1764 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1765 Tmp1 = LegalizeOp(Tmp1);
1766 LastCALLSEQ_END = DAG.getEntryNode();
1767
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001768 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001769 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001770 case ISD::BRIND:
1771 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1772 // Ensure that libcalls are emitted before a branch.
1773 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1774 Tmp1 = LegalizeOp(Tmp1);
1775 LastCALLSEQ_END = DAG.getEntryNode();
1776
1777 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1778 default: assert(0 && "Indirect target must be legal type (pointer)!");
1779 case Legal:
1780 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1781 break;
1782 }
1783 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1784 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001785 case ISD::BR_JT:
1786 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1787 // Ensure that libcalls are emitted before a branch.
1788 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1789 Tmp1 = LegalizeOp(Tmp1);
1790 LastCALLSEQ_END = DAG.getEntryNode();
1791
1792 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1793 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1794
1795 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1796 default: assert(0 && "This action is not supported yet!");
1797 case TargetLowering::Legal: break;
1798 case TargetLowering::Custom:
1799 Tmp1 = TLI.LowerOperation(Result, DAG);
1800 if (Tmp1.Val) Result = Tmp1;
1801 break;
1802 case TargetLowering::Expand: {
1803 SDOperand Chain = Result.getOperand(0);
1804 SDOperand Table = Result.getOperand(1);
1805 SDOperand Index = Result.getOperand(2);
1806
Duncan Sands83ec4b62008-06-06 12:08:01 +00001807 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001808 MachineFunction &MF = DAG.getMachineFunction();
1809 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001810 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1811 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001812
1813 SDOperand LD;
1814 switch (EntrySize) {
1815 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001816 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001817 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001818 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001819 PseudoSourceValue::getJumpTable(), 0); break;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001820 }
1821
Evan Chengcc415862007-11-09 01:32:10 +00001822 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001823 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001824 // For PIC, the sequence is:
1825 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00001826 // RelocBase can be JumpTable, GOT or some sort of global base.
1827 if (PTy != MVT::i32)
1828 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1829 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1830 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00001831 }
Evan Chengcc415862007-11-09 01:32:10 +00001832 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001833 }
1834 }
1835 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001836 case ISD::BRCOND:
1837 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001838 // Ensure that libcalls are emitted before a return.
1839 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1840 Tmp1 = LegalizeOp(Tmp1);
1841 LastCALLSEQ_END = DAG.getEntryNode();
1842
Chris Lattner47e92232005-01-18 19:27:06 +00001843 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1844 case Expand: assert(0 && "It's impossible to expand bools");
1845 case Legal:
1846 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1847 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001848 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00001849 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001850
1851 // The top bits of the promoted condition are not necessarily zero, ensure
1852 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001853 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001854 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001855 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerf9908172006-11-27 04:39:56 +00001856 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001857 break;
1858 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001859 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001860
1861 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001862 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001863
1864 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1865 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001866 case TargetLowering::Legal: break;
1867 case TargetLowering::Custom:
1868 Tmp1 = TLI.LowerOperation(Result, DAG);
1869 if (Tmp1.Val) Result = Tmp1;
1870 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001871 case TargetLowering::Expand:
1872 // Expand brcond's setcc into its constituent parts and create a BR_CC
1873 // Node.
1874 if (Tmp2.getOpcode() == ISD::SETCC) {
1875 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1876 Tmp2.getOperand(0), Tmp2.getOperand(1),
1877 Node->getOperand(2));
1878 } else {
1879 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1880 DAG.getCondCode(ISD::SETNE), Tmp2,
1881 DAG.getConstant(0, Tmp2.getValueType()),
1882 Node->getOperand(2));
1883 }
1884 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001885 }
1886 break;
1887 case ISD::BR_CC:
1888 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001889 // Ensure that libcalls are emitted before a branch.
1890 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1891 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001892 Tmp2 = Node->getOperand(2); // LHS
1893 Tmp3 = Node->getOperand(3); // RHS
1894 Tmp4 = Node->getOperand(1); // CC
1895
1896 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001897 LastCALLSEQ_END = DAG.getEntryNode();
1898
Nate Begeman750ac1b2006-02-01 07:19:44 +00001899 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1900 // the LHS is a legal SETCC itself. In this case, we need to compare
1901 // the result against zero to select between true and false values.
1902 if (Tmp3.Val == 0) {
1903 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1904 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001905 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001906
1907 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1908 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001909
Chris Lattner181b7a32005-12-17 23:46:46 +00001910 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1911 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001912 case TargetLowering::Legal: break;
1913 case TargetLowering::Custom:
1914 Tmp4 = TLI.LowerOperation(Result, DAG);
1915 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001916 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001917 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001918 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001919 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001920 LoadSDNode *LD = cast<LoadSDNode>(Node);
1921 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1922 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001923
Evan Cheng466685d2006-10-09 20:57:25 +00001924 ISD::LoadExtType ExtType = LD->getExtensionType();
1925 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001926 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00001927 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1928 Tmp3 = Result.getValue(0);
1929 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001930
Evan Cheng466685d2006-10-09 20:57:25 +00001931 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1932 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001933 case TargetLowering::Legal:
1934 // If this is an unaligned load and the target doesn't support it,
1935 // expand it.
1936 if (!TLI.allowsUnalignedMemoryAccesses()) {
1937 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00001938 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001939 if (LD->getAlignment() < ABIAlignment){
1940 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1941 TLI);
1942 Tmp3 = Result.getOperand(0);
1943 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001944 Tmp3 = LegalizeOp(Tmp3);
1945 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001946 }
1947 }
1948 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001949 case TargetLowering::Custom:
1950 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1951 if (Tmp1.Val) {
1952 Tmp3 = LegalizeOp(Tmp1);
1953 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001954 }
Evan Cheng466685d2006-10-09 20:57:25 +00001955 break;
1956 case TargetLowering::Promote: {
1957 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001958 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00001959 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001960 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00001961
1962 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001963 LD->getSrcValueOffset(),
1964 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001965 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1966 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001967 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001968 }
Evan Cheng466685d2006-10-09 20:57:25 +00001969 }
1970 // Since loads produce two values, make sure to remember that we
1971 // legalized both of them.
1972 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1973 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1974 return Op.ResNo ? Tmp4 : Tmp3;
1975 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001976 MVT SrcVT = LD->getMemoryVT();
1977 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001978 int SVOffset = LD->getSrcValueOffset();
1979 unsigned Alignment = LD->getAlignment();
1980 bool isVolatile = LD->isVolatile();
1981
Duncan Sands83ec4b62008-06-06 12:08:01 +00001982 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001983 // Some targets pretend to have an i1 loading operation, and actually
1984 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1985 // bits are guaranteed to be zero; it helps the optimizers understand
1986 // that these bits are zero. It is also useful for EXTLOAD, since it
1987 // tells the optimizers that those bits are undefined. It would be
1988 // nice to have an effective generic way of getting these benefits...
1989 // Until such a way is found, don't insist on promoting i1 here.
1990 (SrcVT != MVT::i1 ||
1991 TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
1992 // Promote to a byte-sized load if not loading an integral number of
1993 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001994 unsigned NewWidth = SrcVT.getStoreSizeInBits();
1995 MVT NVT = MVT::getIntegerVT(NewWidth);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001996 SDOperand Ch;
1997
1998 // The extra bits are guaranteed to be zero, since we stored them that
1999 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2000
2001 ISD::LoadExtType NewExtType =
2002 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2003
2004 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
2005 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2006 NVT, isVolatile, Alignment);
2007
2008 Ch = Result.getValue(1); // The chain.
2009
2010 if (ExtType == ISD::SEXTLOAD)
2011 // Having the top bits zero doesn't help when sign extending.
2012 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2013 Result, DAG.getValueType(SrcVT));
2014 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2015 // All the top bits are guaranteed to be zero - inform the optimizers.
2016 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2017 DAG.getValueType(SrcVT));
2018
2019 Tmp1 = LegalizeOp(Result);
2020 Tmp2 = LegalizeOp(Ch);
2021 } else if (SrcWidth & (SrcWidth - 1)) {
2022 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002023 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002024 "Unsupported extload!");
2025 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2026 assert(RoundWidth < SrcWidth);
2027 unsigned ExtraWidth = SrcWidth - RoundWidth;
2028 assert(ExtraWidth < RoundWidth);
2029 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2030 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002031 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2032 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002033 SDOperand Lo, Hi, Ch;
2034 unsigned IncrementSize;
2035
2036 if (TLI.isLittleEndian()) {
2037 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2038 // Load the bottom RoundWidth bits.
2039 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2040 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2041 Alignment);
2042
2043 // Load the remaining ExtraWidth bits.
2044 IncrementSize = RoundWidth / 8;
2045 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2046 DAG.getIntPtrConstant(IncrementSize));
2047 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2048 LD->getSrcValue(), SVOffset + IncrementSize,
2049 ExtraVT, isVolatile,
2050 MinAlign(Alignment, IncrementSize));
2051
2052 // Build a factor node to remember that this load is independent of the
2053 // other one.
2054 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2055 Hi.getValue(1));
2056
2057 // Move the top bits to the right place.
2058 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2059 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2060
2061 // Join the hi and lo parts.
2062 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002063 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002064 // Big endian - avoid unaligned loads.
2065 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2066 // Load the top RoundWidth bits.
2067 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2068 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2069 Alignment);
2070
2071 // Load the remaining ExtraWidth bits.
2072 IncrementSize = RoundWidth / 8;
2073 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2074 DAG.getIntPtrConstant(IncrementSize));
2075 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2076 LD->getSrcValue(), SVOffset + IncrementSize,
2077 ExtraVT, isVolatile,
2078 MinAlign(Alignment, IncrementSize));
2079
2080 // Build a factor node to remember that this load is independent of the
2081 // other one.
2082 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2083 Hi.getValue(1));
2084
2085 // Move the top bits to the right place.
2086 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2087 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2088
2089 // Join the hi and lo parts.
2090 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2091 }
2092
2093 Tmp1 = LegalizeOp(Result);
2094 Tmp2 = LegalizeOp(Ch);
2095 } else {
2096 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
2097 default: assert(0 && "This action is not supported yet!");
2098 case TargetLowering::Custom:
2099 isCustom = true;
2100 // FALLTHROUGH
2101 case TargetLowering::Legal:
2102 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2103 Tmp1 = Result.getValue(0);
2104 Tmp2 = Result.getValue(1);
2105
2106 if (isCustom) {
2107 Tmp3 = TLI.LowerOperation(Result, DAG);
2108 if (Tmp3.Val) {
2109 Tmp1 = LegalizeOp(Tmp3);
2110 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2111 }
2112 } else {
2113 // If this is an unaligned load and the target doesn't support it,
2114 // expand it.
2115 if (!TLI.allowsUnalignedMemoryAccesses()) {
2116 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002117 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002118 if (LD->getAlignment() < ABIAlignment){
2119 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
2120 TLI);
2121 Tmp1 = Result.getOperand(0);
2122 Tmp2 = Result.getOperand(1);
2123 Tmp1 = LegalizeOp(Tmp1);
2124 Tmp2 = LegalizeOp(Tmp2);
2125 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002126 }
2127 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002128 break;
2129 case TargetLowering::Expand:
2130 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2131 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
2132 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
2133 LD->getSrcValueOffset(),
2134 LD->isVolatile(), LD->getAlignment());
2135 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2136 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2137 Tmp2 = LegalizeOp(Load.getValue(1));
2138 break;
2139 }
2140 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2141 // Turn the unsupported load into an EXTLOAD followed by an explicit
2142 // zero/sign extend inreg.
2143 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2144 Tmp1, Tmp2, LD->getSrcValue(),
2145 LD->getSrcValueOffset(), SrcVT,
2146 LD->isVolatile(), LD->getAlignment());
2147 SDOperand ValRes;
2148 if (ExtType == ISD::SEXTLOAD)
2149 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2150 Result, DAG.getValueType(SrcVT));
2151 else
2152 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2153 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2154 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002155 break;
2156 }
Evan Cheng466685d2006-10-09 20:57:25 +00002157 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002158
Evan Cheng466685d2006-10-09 20:57:25 +00002159 // Since loads produce two values, make sure to remember that we legalized
2160 // both of them.
2161 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2162 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2163 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002164 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002165 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002166 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002167 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002168 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002169 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002170 case Legal:
2171 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
2172 // 1 -> Hi
2173 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002174 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002175 TLI.getShiftAmountTy()));
2176 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2177 } else {
2178 // 0 -> Lo
2179 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2180 Node->getOperand(0));
2181 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002182 break;
2183 case Expand:
2184 // Get both the low and high parts.
2185 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2186 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
2187 Result = Tmp2; // 1 -> Hi
2188 else
2189 Result = Tmp1; // 0 -> Lo
2190 break;
2191 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002192 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002193 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002194
2195 case ISD::CopyToReg:
2196 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002197
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002198 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002199 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002200 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002201 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002202 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002203 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002204 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002205 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002206 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002207 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002208 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2209 Tmp3);
2210 } else {
2211 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002212 }
2213
2214 // Since this produces two values, make sure to remember that we legalized
2215 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002216 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00002217 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002218 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002219 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002220 break;
2221
2222 case ISD::RET:
2223 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002224
2225 // Ensure that libcalls are emitted before a return.
2226 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2227 Tmp1 = LegalizeOp(Tmp1);
2228 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002229
Chris Lattner3e928bb2005-01-07 07:47:09 +00002230 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002231 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002232 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002233 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002234 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002235 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002236 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002237 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002238 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002239 if (!Tmp2.getValueType().isVector()) {
Chris Lattnerf87324e2006-04-11 01:31:51 +00002240 SDOperand Lo, Hi;
2241 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002242
2243 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002244 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002245 std::swap(Lo, Hi);
2246
Evan Cheng13acce32006-12-11 19:27:14 +00002247 if (Hi.Val)
2248 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2249 else
2250 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002251 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002252 } else {
2253 SDNode *InVal = Tmp2.Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002254 int InIx = Tmp2.ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002255 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2256 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002257
Dan Gohman7f321562007-06-25 16:23:39 +00002258 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002259 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002260 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002261 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002262 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002263 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002264 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002265 } else if (NumElems == 1) {
2266 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002267 Tmp2 = ScalarizeVectorOp(Tmp2);
2268 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002269 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002270
2271 // FIXME: Returns of gcc generic vectors smaller than a legal type
2272 // should be returned in integer registers!
2273
Chris Lattnerf87324e2006-04-11 01:31:51 +00002274 // The scalarized value type may not be legal, e.g. it might require
2275 // promotion or expansion. Relegalize the return.
2276 Result = LegalizeOp(Result);
2277 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002278 // FIXME: Returns of gcc generic vectors larger than a legal vector
2279 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00002280 SDOperand Lo, Hi;
2281 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00002282 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002283 Result = LegalizeOp(Result);
2284 }
2285 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002286 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002287 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002288 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002289 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002290 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002291 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002292 }
2293 break;
2294 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002295 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002296 break;
2297 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002298 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002299 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002300 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002301 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2302 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002303 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002304 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002305 break;
2306 case Expand: {
2307 SDOperand Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002308 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002309 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002310 ExpandOp(Node->getOperand(i), Lo, Hi);
2311 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002312 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00002313 if (Hi.Val) {
2314 NewValues.push_back(Hi);
2315 NewValues.push_back(Node->getOperand(i+1));
2316 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002317 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002318 }
2319 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002320 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002321 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002322
2323 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002324 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002325 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002326 Result = DAG.getNode(ISD::RET, MVT::Other,
2327 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002328 break;
2329 }
2330 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002331
Chris Lattner6862dbc2006-01-29 21:02:23 +00002332 if (Result.getOpcode() == ISD::RET) {
2333 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2334 default: assert(0 && "This action is not supported yet!");
2335 case TargetLowering::Legal: break;
2336 case TargetLowering::Custom:
2337 Tmp1 = TLI.LowerOperation(Result, DAG);
2338 if (Tmp1.Val) Result = Tmp1;
2339 break;
2340 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002341 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002342 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002343 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002344 StoreSDNode *ST = cast<StoreSDNode>(Node);
2345 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2346 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002347 int SVOffset = ST->getSrcValueOffset();
2348 unsigned Alignment = ST->getAlignment();
2349 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002350
Evan Cheng8b2794a2006-10-13 21:14:26 +00002351 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002352 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2353 // FIXME: We shouldn't do this for TargetConstantFP's.
2354 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2355 // to phase ordering between legalized code and the dag combiner. This
2356 // probably means that we need to integrate dag combiner and legalizer
2357 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002358 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002359 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002360 if (CFP->getValueType(0) == MVT::f32 &&
2361 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002362 Tmp3 = DAG.getConstant(CFP->getValueAPF().
2363 convertToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002364 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002365 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2366 SVOffset, isVolatile, Alignment);
2367 break;
2368 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002369 // If this target supports 64-bit registers, do a single 64-bit store.
2370 if (getTypeAction(MVT::i64) == Legal) {
2371 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002372 zextOrTrunc(64), MVT::i64);
Chris Lattner3cb93512007-10-15 05:46:06 +00002373 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2374 SVOffset, isVolatile, Alignment);
2375 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002376 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002377 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2378 // stores. If the target supports neither 32- nor 64-bits, this
2379 // xform is certainly not worth it.
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002380 const APInt &IntVal =CFP->getValueAPF().convertToAPInt();
2381 SDOperand Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2382 SDOperand Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002383 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002384
2385 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2386 SVOffset, isVolatile, Alignment);
2387 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002388 DAG.getIntPtrConstant(4));
Chris Lattner3cb93512007-10-15 05:46:06 +00002389 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002390 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002391
2392 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2393 break;
2394 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002395 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002396 }
2397
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002398 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002399 case Legal: {
2400 Tmp3 = LegalizeOp(ST->getValue());
2401 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2402 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002403
Duncan Sands83ec4b62008-06-06 12:08:01 +00002404 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002405 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2406 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002407 case TargetLowering::Legal:
2408 // If this is an unaligned store and the target doesn't support it,
2409 // expand it.
2410 if (!TLI.allowsUnalignedMemoryAccesses()) {
2411 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002412 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002413 if (ST->getAlignment() < ABIAlignment)
2414 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2415 TLI);
2416 }
2417 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002418 case TargetLowering::Custom:
2419 Tmp1 = TLI.LowerOperation(Result, DAG);
2420 if (Tmp1.Val) Result = Tmp1;
2421 break;
2422 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002423 assert(VT.isVector() && "Unknown legal promote case!");
Evan Cheng8b2794a2006-10-13 21:14:26 +00002424 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2425 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2426 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002427 ST->getSrcValue(), SVOffset, isVolatile,
2428 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002429 break;
2430 }
2431 break;
2432 }
2433 case Promote:
2434 // Truncate the value and store the result.
2435 Tmp3 = PromoteOp(ST->getValue());
2436 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002437 SVOffset, ST->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002438 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002439 break;
2440
2441 case Expand:
2442 unsigned IncrementSize = 0;
2443 SDOperand Lo, Hi;
2444
2445 // If this is a vector type, then we have to calculate the increment as
2446 // the product of the element size in bytes, and the number of elements
2447 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002448 if (ST->getValue().getValueType().isVector()) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002449 SDNode *InVal = ST->getValue().Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002450 int InIx = ST->getValue().ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002451 MVT InVT = InVal->getValueType(InIx);
2452 unsigned NumElems = InVT.getVectorNumElements();
2453 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002454
Dan Gohman7f321562007-06-25 16:23:39 +00002455 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002456 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002457 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002458 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002459 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002460 Tmp3 = LegalizeOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002461 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002462 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002463 Result = LegalizeOp(Result);
2464 break;
2465 } else if (NumElems == 1) {
2466 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002467 Tmp3 = ScalarizeVectorOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002468 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002469 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002470 // The scalarized value type may not be legal, e.g. it might require
2471 // promotion or expansion. Relegalize the scalar store.
2472 Result = LegalizeOp(Result);
2473 break;
2474 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002475 SplitVectorOp(ST->getValue(), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002476 IncrementSize = Lo.Val->getValueType(0).getVectorNumElements() *
2477 EVT.getSizeInBits()/8;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002478 }
2479 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002480 ExpandOp(ST->getValue(), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002481 IncrementSize = Hi.Val ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002482
Duncan Sands0753fc12008-02-11 10:37:04 +00002483 if (TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002484 std::swap(Lo, Hi);
2485 }
2486
2487 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002488 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002489
2490 if (Hi.Val == NULL) {
2491 // Must be int <-> float one-to-one expansion.
2492 Result = Lo;
2493 break;
2494 }
2495
Evan Cheng8b2794a2006-10-13 21:14:26 +00002496 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002497 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002498 assert(isTypeLegal(Tmp2.getValueType()) &&
2499 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002500 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002501 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002502 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002503 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002504 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2505 break;
2506 }
2507 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002508 switch (getTypeAction(ST->getValue().getValueType())) {
2509 case Legal:
2510 Tmp3 = LegalizeOp(ST->getValue());
2511 break;
2512 case Promote:
2513 // We can promote the value, the truncstore will still take care of it.
2514 Tmp3 = PromoteOp(ST->getValue());
2515 break;
2516 case Expand:
2517 // Just store the low part. This may become a non-trunc store, so make
2518 // sure to use getTruncStore, not UpdateNodeOperands below.
2519 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2520 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2521 SVOffset, MVT::i8, isVolatile, Alignment);
2522 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002523
Duncan Sands83ec4b62008-06-06 12:08:01 +00002524 MVT StVT = ST->getMemoryVT();
2525 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002526
Duncan Sands83ec4b62008-06-06 12:08:01 +00002527 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002528 // Promote to a byte-sized store with upper bits zero if not
2529 // storing an integral number of bytes. For example, promote
2530 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002531 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Duncan Sands7e857202008-01-22 07:17:34 +00002532 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2533 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2534 SVOffset, NVT, isVolatile, Alignment);
2535 } else if (StWidth & (StWidth - 1)) {
2536 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002537 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002538 "Unsupported truncstore!");
2539 unsigned RoundWidth = 1 << Log2_32(StWidth);
2540 assert(RoundWidth < StWidth);
2541 unsigned ExtraWidth = StWidth - RoundWidth;
2542 assert(ExtraWidth < RoundWidth);
2543 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2544 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002545 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2546 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Duncan Sands7e857202008-01-22 07:17:34 +00002547 SDOperand Lo, Hi;
2548 unsigned IncrementSize;
2549
2550 if (TLI.isLittleEndian()) {
2551 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2552 // Store the bottom RoundWidth bits.
2553 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2554 SVOffset, RoundVT,
2555 isVolatile, Alignment);
2556
2557 // Store the remaining ExtraWidth bits.
2558 IncrementSize = RoundWidth / 8;
2559 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2560 DAG.getIntPtrConstant(IncrementSize));
2561 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2562 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2563 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2564 SVOffset + IncrementSize, ExtraVT, isVolatile,
2565 MinAlign(Alignment, IncrementSize));
2566 } else {
2567 // Big endian - avoid unaligned stores.
2568 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2569 // Store the top RoundWidth bits.
2570 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2571 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2572 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2573 RoundVT, isVolatile, Alignment);
2574
2575 // Store the remaining ExtraWidth bits.
2576 IncrementSize = RoundWidth / 8;
2577 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2578 DAG.getIntPtrConstant(IncrementSize));
2579 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2580 SVOffset + IncrementSize, ExtraVT, isVolatile,
2581 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002582 }
Duncan Sands7e857202008-01-22 07:17:34 +00002583
2584 // The order of the stores doesn't matter.
2585 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2586 } else {
2587 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2588 Tmp2 != ST->getBasePtr())
2589 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2590 ST->getOffset());
2591
2592 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2593 default: assert(0 && "This action is not supported yet!");
2594 case TargetLowering::Legal:
2595 // If this is an unaligned store and the target doesn't support it,
2596 // expand it.
2597 if (!TLI.allowsUnalignedMemoryAccesses()) {
2598 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002599 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002600 if (ST->getAlignment() < ABIAlignment)
2601 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2602 TLI);
2603 }
2604 break;
2605 case TargetLowering::Custom:
2606 Result = TLI.LowerOperation(Result, DAG);
2607 break;
2608 case Expand:
2609 // TRUNCSTORE:i16 i32 -> STORE i16
2610 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2611 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2612 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2613 isVolatile, Alignment);
2614 break;
2615 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002616 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002617 }
2618 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002619 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002620 case ISD::PCMARKER:
2621 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002622 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002623 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002624 case ISD::STACKSAVE:
2625 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002626 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2627 Tmp1 = Result.getValue(0);
2628 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002629
Chris Lattner140d53c2006-01-13 02:50:02 +00002630 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2631 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002632 case TargetLowering::Legal: break;
2633 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002634 Tmp3 = TLI.LowerOperation(Result, DAG);
2635 if (Tmp3.Val) {
2636 Tmp1 = LegalizeOp(Tmp3);
2637 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002638 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002639 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002640 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002641 // Expand to CopyFromReg if the target set
2642 // StackPointerRegisterToSaveRestore.
2643 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002644 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002645 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002646 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002647 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002648 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2649 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002650 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002651 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002652 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002653
2654 // Since stacksave produce two values, make sure to remember that we
2655 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002656 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2657 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2658 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002659
Chris Lattner140d53c2006-01-13 02:50:02 +00002660 case ISD::STACKRESTORE:
2661 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2662 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002663 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002664
2665 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2666 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002667 case TargetLowering::Legal: break;
2668 case TargetLowering::Custom:
2669 Tmp1 = TLI.LowerOperation(Result, DAG);
2670 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002671 break;
2672 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002673 // Expand to CopyToReg if the target set
2674 // StackPointerRegisterToSaveRestore.
2675 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2676 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2677 } else {
2678 Result = Tmp1;
2679 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002680 break;
2681 }
2682 break;
2683
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002684 case ISD::READCYCLECOUNTER:
2685 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002686 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002687 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2688 Node->getValueType(0))) {
2689 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002690 case TargetLowering::Legal:
2691 Tmp1 = Result.getValue(0);
2692 Tmp2 = Result.getValue(1);
2693 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002694 case TargetLowering::Custom:
2695 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002696 Tmp1 = LegalizeOp(Result.getValue(0));
2697 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002698 break;
2699 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002700
2701 // Since rdcc produce two values, make sure to remember that we legalized
2702 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002703 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2704 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002705 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002706
Chris Lattner2ee743f2005-01-14 22:08:15 +00002707 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002708 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2709 case Expand: assert(0 && "It's impossible to expand bools");
2710 case Legal:
2711 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2712 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002713 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002714 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002715 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002716 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002717 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002718 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerb6c80602006-11-28 01:03:30 +00002719 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002720 break;
2721 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002722 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002723 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002724 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002725
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002726 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002727
Nate Begemanb942a3d2005-08-23 04:29:48 +00002728 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002729 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002730 case TargetLowering::Legal: break;
2731 case TargetLowering::Custom: {
2732 Tmp1 = TLI.LowerOperation(Result, DAG);
2733 if (Tmp1.Val) Result = Tmp1;
2734 break;
2735 }
Nate Begeman9373a812005-08-10 20:51:12 +00002736 case TargetLowering::Expand:
2737 if (Tmp1.getOpcode() == ISD::SETCC) {
2738 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2739 Tmp2, Tmp3,
2740 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2741 } else {
2742 Result = DAG.getSelectCC(Tmp1,
2743 DAG.getConstant(0, Tmp1.getValueType()),
2744 Tmp2, Tmp3, ISD::SETNE);
2745 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002746 break;
2747 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002748 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002749 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2750 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002751 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002752 ExtOp = ISD::BIT_CONVERT;
2753 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002754 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002755 ExtOp = ISD::ANY_EXTEND;
2756 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002757 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002758 ExtOp = ISD::FP_EXTEND;
2759 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002760 }
2761 // Promote each of the values to the new type.
2762 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2763 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2764 // Perform the larger operation, then round down.
2765 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002766 if (TruncOp != ISD::FP_ROUND)
2767 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2768 else
2769 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2770 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002771 break;
2772 }
2773 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002774 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002775 case ISD::SELECT_CC: {
2776 Tmp1 = Node->getOperand(0); // LHS
2777 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002778 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2779 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00002780 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002781
Nate Begeman750ac1b2006-02-01 07:19:44 +00002782 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2783
2784 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2785 // the LHS is a legal SETCC itself. In this case, we need to compare
2786 // the result against zero to select between true and false values.
2787 if (Tmp2.Val == 0) {
2788 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2789 CC = DAG.getCondCode(ISD::SETNE);
2790 }
2791 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2792
2793 // Everything is legal, see if we should expand this op or something.
2794 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2795 default: assert(0 && "This action is not supported yet!");
2796 case TargetLowering::Legal: break;
2797 case TargetLowering::Custom:
2798 Tmp1 = TLI.LowerOperation(Result, DAG);
2799 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002800 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002801 }
2802 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002803 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002804 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002805 Tmp1 = Node->getOperand(0);
2806 Tmp2 = Node->getOperand(1);
2807 Tmp3 = Node->getOperand(2);
2808 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2809
2810 // If we had to Expand the SetCC operands into a SELECT node, then it may
2811 // not always be possible to return a true LHS & RHS. In this case, just
2812 // return the value we legalized, returned in the LHS
2813 if (Tmp2.Val == 0) {
2814 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002815 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002816 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002817
Chris Lattner73e142f2006-01-30 22:43:50 +00002818 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002819 default: assert(0 && "Cannot handle this action for SETCC yet!");
2820 case TargetLowering::Custom:
2821 isCustom = true;
2822 // FALLTHROUGH.
2823 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002824 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002825 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002826 Tmp4 = TLI.LowerOperation(Result, DAG);
2827 if (Tmp4.Val) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002828 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002829 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002830 case TargetLowering::Promote: {
2831 // First step, figure out the appropriate operation to use.
2832 // Allow SETCC to not be supported for all legal data types
2833 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00002834 MVT NewInTy = Node->getOperand(0).getValueType();
2835 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002836
2837 // Scan for the appropriate larger type to use.
2838 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002839 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00002840
Duncan Sands83ec4b62008-06-06 12:08:01 +00002841 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002842 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002843 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002844 "Fell off of the edge of the floating point world");
2845
2846 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002847 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002848 break;
2849 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002850 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00002851 assert(0 && "Cannot promote Legal Integer SETCC yet");
2852 else {
2853 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2854 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2855 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002856 Tmp1 = LegalizeOp(Tmp1);
2857 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002858 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002859 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002860 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002861 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002862 case TargetLowering::Expand:
2863 // Expand a setcc node into a select_cc of the same condition, lhs, and
2864 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00002865 MVT VT = Node->getValueType(0);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002866 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2867 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002868 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002869 break;
2870 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002871 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00002872 case ISD::VSETCC: {
2873 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2874 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
2875 SDOperand CC = Node->getOperand(2);
2876
2877 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
2878
2879 // Everything is legal, see if we should expand this op or something.
2880 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
2881 default: assert(0 && "This action is not supported yet!");
2882 case TargetLowering::Legal: break;
2883 case TargetLowering::Custom:
2884 Tmp1 = TLI.LowerOperation(Result, DAG);
2885 if (Tmp1.Val) Result = Tmp1;
2886 break;
2887 }
2888 break;
2889 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002890
Chris Lattner5b359c62005-04-02 04:00:59 +00002891 case ISD::SHL_PARTS:
2892 case ISD::SRA_PARTS:
2893 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002894 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002895 bool Changed = false;
2896 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2897 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2898 Changed |= Ops.back() != Node->getOperand(i);
2899 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002900 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002901 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002902
Evan Cheng05a2d562006-01-09 18:31:59 +00002903 switch (TLI.getOperationAction(Node->getOpcode(),
2904 Node->getValueType(0))) {
2905 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002906 case TargetLowering::Legal: break;
2907 case TargetLowering::Custom:
2908 Tmp1 = TLI.LowerOperation(Result, DAG);
2909 if (Tmp1.Val) {
2910 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002911 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002912 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002913 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2914 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002915 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002916 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002917 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002918 return RetVal;
2919 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002920 break;
2921 }
2922
Chris Lattner2c8086f2005-04-02 05:00:07 +00002923 // Since these produce multiple values, make sure to remember that we
2924 // legalized all of them.
2925 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2926 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2927 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002928 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002929
2930 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002931 case ISD::ADD:
2932 case ISD::SUB:
2933 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002934 case ISD::MULHS:
2935 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002936 case ISD::UDIV:
2937 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002938 case ISD::AND:
2939 case ISD::OR:
2940 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002941 case ISD::SHL:
2942 case ISD::SRL:
2943 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002944 case ISD::FADD:
2945 case ISD::FSUB:
2946 case ISD::FMUL:
2947 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00002948 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002949 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002950 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2951 case Expand: assert(0 && "Not possible");
2952 case Legal:
2953 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2954 break;
2955 case Promote:
2956 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2957 break;
2958 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002959
2960 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002961
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002962 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002963 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002964 case TargetLowering::Legal: break;
2965 case TargetLowering::Custom:
2966 Tmp1 = TLI.LowerOperation(Result, DAG);
2967 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002968 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002969 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002970 MVT VT = Op.getValueType();
Dan Gohman525178c2007-10-08 18:33:35 +00002971
2972 // See if multiply or divide can be lowered using two-result operations.
2973 SDVTList VTs = DAG.getVTList(VT, VT);
2974 if (Node->getOpcode() == ISD::MUL) {
2975 // We just need the low half of the multiply; try both the signed
2976 // and unsigned forms. If the target supports both SMUL_LOHI and
2977 // UMUL_LOHI, form a preference by checking which forms of plain
2978 // MULH it supports.
2979 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2980 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2981 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2982 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2983 unsigned OpToUse = 0;
2984 if (HasSMUL_LOHI && !HasMULHS) {
2985 OpToUse = ISD::SMUL_LOHI;
2986 } else if (HasUMUL_LOHI && !HasMULHU) {
2987 OpToUse = ISD::UMUL_LOHI;
2988 } else if (HasSMUL_LOHI) {
2989 OpToUse = ISD::SMUL_LOHI;
2990 } else if (HasUMUL_LOHI) {
2991 OpToUse = ISD::UMUL_LOHI;
2992 }
2993 if (OpToUse) {
2994 Result = SDOperand(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0);
2995 break;
2996 }
2997 }
2998 if (Node->getOpcode() == ISD::MULHS &&
2999 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
3000 Result = SDOperand(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
3001 break;
3002 }
3003 if (Node->getOpcode() == ISD::MULHU &&
3004 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
3005 Result = SDOperand(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
3006 break;
3007 }
3008 if (Node->getOpcode() == ISD::SDIV &&
3009 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3010 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0);
3011 break;
3012 }
3013 if (Node->getOpcode() == ISD::UDIV &&
3014 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3015 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0);
3016 break;
3017 }
3018
Dan Gohman82669522007-10-11 23:57:53 +00003019 // Check to see if we have a libcall for this operator.
3020 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3021 bool isSigned = false;
3022 switch (Node->getOpcode()) {
3023 case ISD::UDIV:
3024 case ISD::SDIV:
3025 if (VT == MVT::i32) {
3026 LC = Node->getOpcode() == ISD::UDIV
Evan Cheng56966222007-01-12 02:11:51 +00003027 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003028 isSigned = Node->getOpcode() == ISD::SDIV;
3029 }
3030 break;
3031 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003032 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3033 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003034 break;
3035 default: break;
3036 }
3037 if (LC != RTLIB::UNKNOWN_LIBCALL) {
3038 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003039 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003040 break;
3041 }
3042
Duncan Sands83ec4b62008-06-06 12:08:01 +00003043 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003044 "Cannot expand this binary operator!");
3045 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003046 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003047 break;
3048 }
Evan Chengcc987612006-04-12 21:20:24 +00003049 case TargetLowering::Promote: {
3050 switch (Node->getOpcode()) {
3051 default: assert(0 && "Do not know how to promote this BinOp!");
3052 case ISD::AND:
3053 case ISD::OR:
3054 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003055 MVT OVT = Node->getValueType(0);
3056 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3057 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003058 // Bit convert each of the values to the new type.
3059 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3060 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3061 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3062 // Bit convert the result back the original type.
3063 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3064 break;
3065 }
3066 }
3067 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003068 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003069 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003070
Dan Gohmane14ea862007-10-05 14:17:22 +00003071 case ISD::SMUL_LOHI:
3072 case ISD::UMUL_LOHI:
3073 case ISD::SDIVREM:
3074 case ISD::UDIVREM:
3075 // These nodes will only be produced by target-specific lowering, so
3076 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003077 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003078 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003079
3080 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3081 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3082 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003083 break;
3084
Chris Lattnera09f8482006-03-05 05:09:38 +00003085 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3086 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3087 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3088 case Expand: assert(0 && "Not possible");
3089 case Legal:
3090 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3091 break;
3092 case Promote:
3093 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3094 break;
3095 }
3096
3097 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3098
3099 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3100 default: assert(0 && "Operation not supported");
3101 case TargetLowering::Custom:
3102 Tmp1 = TLI.LowerOperation(Result, DAG);
3103 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003104 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003105 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003106 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003107 // If this target supports fabs/fneg natively and select is cheap,
3108 // do this efficiently.
3109 if (!TLI.isSelectExpensive() &&
3110 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3111 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003112 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003113 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003114 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003115 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003116 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
3117 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003118 SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003119 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3120 // Get the absolute value of the result.
3121 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
3122 // Select between the nabs and abs value based on the sign bit of
3123 // the input.
3124 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3125 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3126 AbsVal),
3127 AbsVal);
3128 Result = LegalizeOp(Result);
3129 break;
3130 }
3131
3132 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003133 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003134 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3135 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3136 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3137 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003138 break;
3139 }
Evan Cheng912095b2007-01-04 21:56:39 +00003140 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003141 break;
3142
Nate Begeman551bf3f2006-02-17 05:43:56 +00003143 case ISD::ADDC:
3144 case ISD::SUBC:
3145 Tmp1 = LegalizeOp(Node->getOperand(0));
3146 Tmp2 = LegalizeOp(Node->getOperand(1));
3147 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3148 // Since this produces two values, make sure to remember that we legalized
3149 // both of them.
3150 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3151 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3152 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003153
Nate Begeman551bf3f2006-02-17 05:43:56 +00003154 case ISD::ADDE:
3155 case ISD::SUBE:
3156 Tmp1 = LegalizeOp(Node->getOperand(0));
3157 Tmp2 = LegalizeOp(Node->getOperand(1));
3158 Tmp3 = LegalizeOp(Node->getOperand(2));
3159 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3160 // Since this produces two values, make sure to remember that we legalized
3161 // both of them.
3162 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3163 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3164 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00003165
Nate Begeman419f8b62005-10-18 00:27:41 +00003166 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003167 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003168 // TODO: handle the case where the Lo and Hi operands are not of legal type
3169 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3170 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3171 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003172 case TargetLowering::Promote:
3173 case TargetLowering::Custom:
3174 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003175 case TargetLowering::Legal:
3176 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3177 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3178 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003179 case TargetLowering::Expand:
3180 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3181 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3182 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003183 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003184 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00003185 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003186 break;
3187 }
3188 break;
3189 }
3190
Nate Begemanc105e192005-04-06 00:23:54 +00003191 case ISD::UREM:
3192 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003193 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003194 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3195 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003196
Nate Begemanc105e192005-04-06 00:23:54 +00003197 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003198 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3199 case TargetLowering::Custom:
3200 isCustom = true;
3201 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003202 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003203 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003204 if (isCustom) {
3205 Tmp1 = TLI.LowerOperation(Result, DAG);
3206 if (Tmp1.Val) Result = Tmp1;
3207 }
Nate Begemanc105e192005-04-06 00:23:54 +00003208 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003209 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003210 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003211 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003212 MVT VT = Node->getValueType(0);
Dan Gohman525178c2007-10-08 18:33:35 +00003213
3214 // See if remainder can be lowered using two-result operations.
3215 SDVTList VTs = DAG.getVTList(VT, VT);
3216 if (Node->getOpcode() == ISD::SREM &&
3217 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3218 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3219 break;
3220 }
3221 if (Node->getOpcode() == ISD::UREM &&
3222 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3223 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3224 break;
3225 }
3226
Duncan Sands83ec4b62008-06-06 12:08:01 +00003227 if (VT.isInteger()) {
Dan Gohman525178c2007-10-08 18:33:35 +00003228 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003229 TargetLowering::Legal) {
3230 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00003231 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003232 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3233 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003234 } else if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003235 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003236 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003237 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003238 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003239 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3240 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003241 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003242 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003243 }
Dan Gohman0d974262007-11-06 22:11:54 +00003244 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003245 assert(VT.isFloatingPoint() &&
Dan Gohman0d974262007-11-06 22:11:54 +00003246 "remainder op must have integer or floating-point type");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003247 if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003248 Result = LegalizeOp(UnrollVectorOp(Op));
3249 } else {
3250 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003251 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3252 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman80176312007-11-05 23:35:22 +00003253 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003254 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003255 }
Nate Begemanc105e192005-04-06 00:23:54 +00003256 }
3257 break;
3258 }
Dan Gohman525178c2007-10-08 18:33:35 +00003259 }
Nate Begemanc105e192005-04-06 00:23:54 +00003260 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003261 case ISD::VAARG: {
3262 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3263 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3264
Duncan Sands83ec4b62008-06-06 12:08:01 +00003265 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003266 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3267 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003268 case TargetLowering::Custom:
3269 isCustom = true;
3270 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003271 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003272 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3273 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003274 Tmp1 = Result.getValue(1);
3275
3276 if (isCustom) {
3277 Tmp2 = TLI.LowerOperation(Result, DAG);
3278 if (Tmp2.Val) {
3279 Result = LegalizeOp(Tmp2);
3280 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3281 }
3282 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003283 break;
3284 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003285 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
3286 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003287 // Increment the pointer, VAList, to the next vaarg
3288 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003289 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begemanacc398c2006-01-25 18:21:52 +00003290 TLI.getPointerTy()));
3291 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00003292 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003293 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003294 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003295 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003296 Result = LegalizeOp(Result);
3297 break;
3298 }
3299 }
3300 // Since VAARG produces two values, make sure to remember that we
3301 // legalized both of them.
3302 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00003303 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3304 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003305 }
3306
3307 case ISD::VACOPY:
3308 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3309 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3310 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3311
3312 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3313 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003314 case TargetLowering::Custom:
3315 isCustom = true;
3316 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003317 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003318 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3319 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003320 if (isCustom) {
3321 Tmp1 = TLI.LowerOperation(Result, DAG);
3322 if (Tmp1.Val) Result = Tmp1;
3323 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003324 break;
3325 case TargetLowering::Expand:
3326 // This defaults to loading a pointer from the input and storing it to the
3327 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003328 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3329 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dan Gohman499c1bd2008-04-17 02:09:26 +00003330 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3331 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003332 break;
3333 }
3334 break;
3335
3336 case ISD::VAEND:
3337 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3338 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3339
3340 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3341 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003342 case TargetLowering::Custom:
3343 isCustom = true;
3344 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003345 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003346 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003347 if (isCustom) {
3348 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
3349 if (Tmp1.Val) Result = Tmp1;
3350 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003351 break;
3352 case TargetLowering::Expand:
3353 Result = Tmp1; // Default to a no-op, return the chain
3354 break;
3355 }
3356 break;
3357
3358 case ISD::VASTART:
3359 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3360 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3361
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003362 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3363
Nate Begemanacc398c2006-01-25 18:21:52 +00003364 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3365 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003366 case TargetLowering::Legal: break;
3367 case TargetLowering::Custom:
3368 Tmp1 = TLI.LowerOperation(Result, DAG);
3369 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003370 break;
3371 }
3372 break;
3373
Nate Begeman35ef9132006-01-11 21:21:00 +00003374 case ISD::ROTL:
3375 case ISD::ROTR:
3376 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3377 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003378 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003379 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3380 default:
3381 assert(0 && "ROTL/ROTR legalize operation not supported");
3382 break;
3383 case TargetLowering::Legal:
3384 break;
3385 case TargetLowering::Custom:
3386 Tmp1 = TLI.LowerOperation(Result, DAG);
3387 if (Tmp1.Val) Result = Tmp1;
3388 break;
3389 case TargetLowering::Promote:
3390 assert(0 && "Do not know how to promote ROTL/ROTR");
3391 break;
3392 case TargetLowering::Expand:
3393 assert(0 && "Do not know how to expand ROTL/ROTR");
3394 break;
3395 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003396 break;
3397
Nate Begemand88fc032006-01-14 03:14:10 +00003398 case ISD::BSWAP:
3399 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3400 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003401 case TargetLowering::Custom:
3402 assert(0 && "Cannot custom legalize this yet!");
3403 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003404 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003405 break;
3406 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003407 MVT OVT = Tmp1.getValueType();
3408 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3409 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003410
Chris Lattner456a93a2006-01-28 07:39:30 +00003411 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3412 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3413 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3414 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3415 break;
3416 }
3417 case TargetLowering::Expand:
3418 Result = ExpandBSWAP(Tmp1);
3419 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003420 }
3421 break;
3422
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003423 case ISD::CTPOP:
3424 case ISD::CTTZ:
3425 case ISD::CTLZ:
3426 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3427 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003428 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003429 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003430 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003431 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003432 TargetLowering::Custom) {
3433 Tmp1 = TLI.LowerOperation(Result, DAG);
3434 if (Tmp1.Val) {
3435 Result = Tmp1;
3436 }
Scott Michel910b66d2007-07-30 21:00:31 +00003437 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003438 break;
3439 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003440 MVT OVT = Tmp1.getValueType();
3441 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003442
3443 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003444 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3445 // Perform the larger operation, then subtract if needed.
3446 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003447 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003448 case ISD::CTPOP:
3449 Result = Tmp1;
3450 break;
3451 case ISD::CTTZ:
3452 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00003453 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003454 DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003455 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003456 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003457 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003458 break;
3459 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003460 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003461 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003462 DAG.getConstant(NVT.getSizeInBits() -
3463 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003464 break;
3465 }
3466 break;
3467 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003468 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003469 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003470 break;
3471 }
3472 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003473
Chris Lattner2c8086f2005-04-02 05:00:07 +00003474 // Unary operators
3475 case ISD::FABS:
3476 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003477 case ISD::FSQRT:
3478 case ISD::FSIN:
3479 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003480 Tmp1 = LegalizeOp(Node->getOperand(0));
3481 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003482 case TargetLowering::Promote:
3483 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003484 isCustom = true;
3485 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003486 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003487 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003488 if (isCustom) {
3489 Tmp1 = TLI.LowerOperation(Result, DAG);
3490 if (Tmp1.Val) Result = Tmp1;
3491 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003492 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003493 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003494 switch (Node->getOpcode()) {
3495 default: assert(0 && "Unreachable!");
3496 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003497 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3498 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003499 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003500 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003501 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003502 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003503 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003504 Tmp2 = DAG.getConstantFP(0.0, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003505 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00003506 ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003507 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3508 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003509 break;
3510 }
3511 case ISD::FSQRT:
3512 case ISD::FSIN:
3513 case ISD::FCOS: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003514 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003515
3516 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003517 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003518 Result = LegalizeOp(UnrollVectorOp(Op));
3519 break;
3520 }
3521
Evan Cheng56966222007-01-12 02:11:51 +00003522 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003523 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003524 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003525 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3526 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003527 break;
3528 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003529 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3530 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003531 break;
3532 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003533 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3534 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003535 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003536 default: assert(0 && "Unreachable!");
3537 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00003538 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003539 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003540 break;
3541 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003542 }
3543 break;
3544 }
3545 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003546 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003547 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003548
3549 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003550 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003551 Result = LegalizeOp(UnrollVectorOp(Op));
3552 break;
3553 }
3554
3555 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003556 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3557 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003558 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003559 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003560 break;
3561 }
Chris Lattner35481892005-12-23 00:16:34 +00003562 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003563 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003564 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3565 Node->getValueType(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003566 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003567 // The input has to be a vector type, we have to either scalarize it, pack
3568 // it, or convert it based on whether the input vector type is legal.
3569 SDNode *InVal = Node->getOperand(0).Val;
Dale Johannesene5269622007-10-20 00:07:52 +00003570 int InIx = Node->getOperand(0).ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003571 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3572 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohman7f321562007-06-25 16:23:39 +00003573
3574 // Figure out if there is a simple type corresponding to this Vector
3575 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003576 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00003577 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003578 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003579 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3580 LegalizeOp(Node->getOperand(0)));
3581 break;
3582 } else if (NumElems == 1) {
3583 // Turn this into a bit convert of the scalar input.
3584 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3585 ScalarizeVectorOp(Node->getOperand(0)));
3586 break;
3587 } else {
3588 // FIXME: UNIMP! Store then reload
3589 assert(0 && "Cast from unsupported vector type not implemented yet!");
3590 }
Chris Lattner67993f72006-01-23 07:30:46 +00003591 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003592 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3593 Node->getOperand(0).getValueType())) {
3594 default: assert(0 && "Unknown operation action!");
3595 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003596 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3597 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003598 break;
3599 case TargetLowering::Legal:
3600 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003601 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003602 break;
3603 }
3604 }
3605 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003606
Chris Lattner2c8086f2005-04-02 05:00:07 +00003607 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003608 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003609 case ISD::UINT_TO_FP: {
3610 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003611 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3612 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003613 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003614 Node->getOperand(0).getValueType())) {
3615 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003616 case TargetLowering::Custom:
3617 isCustom = true;
3618 // FALLTHROUGH
3619 case TargetLowering::Legal:
3620 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003621 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003622 if (isCustom) {
3623 Tmp1 = TLI.LowerOperation(Result, DAG);
3624 if (Tmp1.Val) Result = Tmp1;
3625 }
3626 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003627 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00003628 Result = ExpandLegalINT_TO_FP(isSigned,
3629 LegalizeOp(Node->getOperand(0)),
3630 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003631 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003632 case TargetLowering::Promote:
3633 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
3634 Node->getValueType(0),
3635 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003636 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00003637 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003638 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00003639 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003640 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
3641 Node->getValueType(0), Node->getOperand(0));
3642 break;
3643 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003644 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003645 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003646 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
3647 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003648 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003649 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
3650 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003651 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003652 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3653 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003654 break;
3655 }
3656 break;
3657 }
3658 case ISD::TRUNCATE:
3659 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3660 case Legal:
3661 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003662 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003663 break;
3664 case Expand:
3665 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3666
3667 // Since the result is legal, we should just be able to truncate the low
3668 // part of the source.
3669 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3670 break;
3671 case Promote:
3672 Result = PromoteOp(Node->getOperand(0));
3673 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3674 break;
3675 }
3676 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003677
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003678 case ISD::FP_TO_SINT:
3679 case ISD::FP_TO_UINT:
3680 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3681 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003682 Tmp1 = LegalizeOp(Node->getOperand(0));
3683
Chris Lattner1618beb2005-07-29 00:11:56 +00003684 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3685 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003686 case TargetLowering::Custom:
3687 isCustom = true;
3688 // FALLTHROUGH
3689 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003690 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003691 if (isCustom) {
3692 Tmp1 = TLI.LowerOperation(Result, DAG);
3693 if (Tmp1.Val) Result = Tmp1;
3694 }
3695 break;
3696 case TargetLowering::Promote:
3697 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3698 Node->getOpcode() == ISD::FP_TO_SINT);
3699 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003700 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003701 if (Node->getOpcode() == ISD::FP_TO_UINT) {
3702 SDOperand True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003703 MVT VT = Node->getOperand(0).getValueType();
3704 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00003705 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00003706 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
3707 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003708 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00003709 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003710 Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
Nate Begemand2558e32005-08-14 01:20:53 +00003711 Node->getOperand(0), Tmp2, ISD::SETLT);
3712 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3713 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003714 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003715 Tmp2));
3716 False = DAG.getNode(ISD::XOR, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003717 DAG.getConstant(x, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003718 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3719 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003720 } else {
3721 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3722 }
3723 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003724 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003725 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003726 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003727 MVT VT = Op.getValueType();
3728 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003729 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003730 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003731 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3732 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3733 Node->getOperand(0), DAG.getValueType(MVT::f64));
3734 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3735 DAG.getIntPtrConstant(1));
3736 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3737 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003738 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3739 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3740 Tmp2 = DAG.getConstantFP(apf, OVT);
3741 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3742 // FIXME: generated code sucks.
3743 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3744 DAG.getNode(ISD::ADD, MVT::i32,
3745 DAG.getNode(ISD::FP_TO_SINT, VT,
3746 DAG.getNode(ISD::FSUB, OVT,
3747 Node->getOperand(0), Tmp2)),
3748 DAG.getConstant(0x80000000, MVT::i32)),
3749 DAG.getNode(ISD::FP_TO_SINT, VT,
3750 Node->getOperand(0)),
3751 DAG.getCondCode(ISD::SETGE));
3752 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003753 break;
3754 }
Dan Gohmana2e94852008-03-10 23:03:31 +00003755 // Convert f32 / f64 to i32 / i64 / i128.
Evan Cheng56966222007-01-12 02:11:51 +00003756 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng6af00d52006-12-13 01:57:55 +00003757 switch (Node->getOpcode()) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003758 case ISD::FP_TO_SINT: {
Dan Gohmana2e94852008-03-10 23:03:31 +00003759 if (VT == MVT::i32) {
3760 if (OVT == MVT::f32)
3761 LC = RTLIB::FPTOSINT_F32_I32;
3762 else if (OVT == MVT::f64)
3763 LC = RTLIB::FPTOSINT_F64_I32;
3764 else
3765 assert(0 && "Unexpected i32-to-fp conversion!");
3766 } else if (VT == MVT::i64) {
3767 if (OVT == MVT::f32)
3768 LC = RTLIB::FPTOSINT_F32_I64;
3769 else if (OVT == MVT::f64)
3770 LC = RTLIB::FPTOSINT_F64_I64;
3771 else if (OVT == MVT::f80)
3772 LC = RTLIB::FPTOSINT_F80_I64;
3773 else if (OVT == MVT::ppcf128)
3774 LC = RTLIB::FPTOSINT_PPCF128_I64;
3775 else
3776 assert(0 && "Unexpected i64-to-fp conversion!");
3777 } else if (VT == MVT::i128) {
3778 if (OVT == MVT::f32)
3779 LC = RTLIB::FPTOSINT_F32_I128;
3780 else if (OVT == MVT::f64)
3781 LC = RTLIB::FPTOSINT_F64_I128;
3782 else if (OVT == MVT::f80)
3783 LC = RTLIB::FPTOSINT_F80_I128;
3784 else if (OVT == MVT::ppcf128)
3785 LC = RTLIB::FPTOSINT_PPCF128_I128;
3786 else
3787 assert(0 && "Unexpected i128-to-fp conversion!");
3788 } else {
3789 assert(0 && "Unexpectd int-to-fp conversion!");
Dale Johannesen73328d12007-09-19 23:55:34 +00003790 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003791 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003792 }
3793 case ISD::FP_TO_UINT: {
Dan Gohmana2e94852008-03-10 23:03:31 +00003794 if (VT == MVT::i32) {
3795 if (OVT == MVT::f32)
3796 LC = RTLIB::FPTOUINT_F32_I32;
3797 else if (OVT == MVT::f64)
3798 LC = RTLIB::FPTOUINT_F64_I32;
3799 else if (OVT == MVT::f80)
3800 LC = RTLIB::FPTOUINT_F80_I32;
3801 else
3802 assert(0 && "Unexpected i32-to-fp conversion!");
3803 } else if (VT == MVT::i64) {
3804 if (OVT == MVT::f32)
3805 LC = RTLIB::FPTOUINT_F32_I64;
3806 else if (OVT == MVT::f64)
3807 LC = RTLIB::FPTOUINT_F64_I64;
3808 else if (OVT == MVT::f80)
3809 LC = RTLIB::FPTOUINT_F80_I64;
3810 else if (OVT == MVT::ppcf128)
3811 LC = RTLIB::FPTOUINT_PPCF128_I64;
3812 else
3813 assert(0 && "Unexpected i64-to-fp conversion!");
3814 } else if (VT == MVT::i128) {
3815 if (OVT == MVT::f32)
3816 LC = RTLIB::FPTOUINT_F32_I128;
3817 else if (OVT == MVT::f64)
3818 LC = RTLIB::FPTOUINT_F64_I128;
3819 else if (OVT == MVT::f80)
3820 LC = RTLIB::FPTOUINT_F80_I128;
3821 else if (OVT == MVT::ppcf128)
3822 LC = RTLIB::FPTOUINT_PPCF128_I128;
3823 else
3824 assert(0 && "Unexpected i128-to-fp conversion!");
3825 } else {
3826 assert(0 && "Unexpectd int-to-fp conversion!");
Dale Johannesen73328d12007-09-19 23:55:34 +00003827 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003828 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003829 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003830 default: assert(0 && "Unreachable!");
3831 }
3832 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003833 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003834 break;
3835 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003836 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003837 Tmp1 = PromoteOp(Node->getOperand(0));
3838 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3839 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003840 break;
3841 }
3842 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003843
Chris Lattnerf2670a82008-01-16 06:57:07 +00003844 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003845 MVT DstVT = Op.getValueType();
3846 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003847 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3848 // The only other way we can lower this is to turn it into a STORE,
3849 // LOAD pair, targetting a temporary location (a stack slot).
3850 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3851 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00003852 }
3853 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3854 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3855 case Legal:
3856 Tmp1 = LegalizeOp(Node->getOperand(0));
3857 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3858 break;
3859 case Promote:
3860 Tmp1 = PromoteOp(Node->getOperand(0));
3861 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3862 break;
3863 }
3864 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003865 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003866 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003867 MVT DstVT = Op.getValueType();
3868 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003869 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3870 if (SrcVT == MVT::ppcf128) {
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003871 SDOperand Lo;
3872 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003873 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003874 if (DstVT!=MVT::f64)
3875 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00003876 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00003877 }
Chris Lattner0bd48932008-01-17 07:00:52 +00003878 // The only other way we can lower this is to turn it into a STORE,
3879 // LOAD pair, targetting a temporary location (a stack slot).
3880 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3881 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00003882 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00003883 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3884 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3885 case Legal:
3886 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003887 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003888 break;
3889 case Promote:
3890 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003891 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3892 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003893 break;
3894 }
3895 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003896 }
Chris Lattner13c78e22005-09-02 00:18:10 +00003897 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003898 case ISD::ZERO_EXTEND:
3899 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003900 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003901 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003902 case Legal:
3903 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00003904 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00003905 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3906 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00003907 Tmp1 = TLI.LowerOperation(Result, DAG);
3908 if (Tmp1.Val) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00003909 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003910 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003911 case Promote:
3912 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003913 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003914 Tmp1 = PromoteOp(Node->getOperand(0));
3915 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003916 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003917 case ISD::ZERO_EXTEND:
3918 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003919 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003920 Result = DAG.getZeroExtendInReg(Result,
3921 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003922 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003923 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003924 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003925 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003926 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003927 Result,
3928 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003929 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003930 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003931 }
3932 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003933 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003934 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003935 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003936 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003937
3938 // If this operation is not supported, convert it to a shl/shr or load/store
3939 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003940 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3941 default: assert(0 && "This action not supported for this op yet!");
3942 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003943 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003944 break;
3945 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003946 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003947 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003948 // NOTE: we could fall back on load/store here too for targets without
3949 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003950 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
3951 ExtraVT.getSizeInBits();
Chris Lattner27ff1122005-01-22 00:31:52 +00003952 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003953 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3954 Node->getOperand(0), ShiftCst);
3955 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3956 Result, ShiftCst);
3957 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003958 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003959 // EXTLOAD pair, targetting a temporary location (a stack slot).
3960
3961 // NOTE: there is a choice here between constantly creating new stack
3962 // slots and always reusing the same one. We currently always create
3963 // new ones, as reuse may inhibit scheduling.
Chris Lattnera66bb392008-01-16 07:51:34 +00003964 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3965 Node->getValueType(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00003966 } else {
3967 assert(0 && "Unknown op");
3968 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003969 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003970 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003971 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003972 }
Duncan Sands36397f52007-07-27 12:58:54 +00003973 case ISD::TRAMPOLINE: {
3974 SDOperand Ops[6];
3975 for (unsigned i = 0; i != 6; ++i)
3976 Ops[i] = LegalizeOp(Node->getOperand(i));
3977 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3978 // The only option for this node is to custom lower it.
3979 Result = TLI.LowerOperation(Result, DAG);
3980 assert(Result.Val && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00003981
3982 // Since trampoline produces two values, make sure to remember that we
3983 // legalized both of them.
3984 Tmp1 = LegalizeOp(Result.getValue(1));
3985 Result = LegalizeOp(Result);
3986 AddLegalizedOperand(SDOperand(Node, 0), Result);
3987 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3988 return Op.ResNo ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00003989 }
Dan Gohman9c78a392008-05-14 00:43:10 +00003990 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003991 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003992 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3993 default: assert(0 && "This action not supported for this op yet!");
3994 case TargetLowering::Custom:
3995 Result = TLI.LowerOperation(Op, DAG);
3996 if (Result.Val) break;
3997 // Fall Thru
3998 case TargetLowering::Legal:
3999 // If this operation is not supported, lower it to constant 1
4000 Result = DAG.getConstant(1, VT);
4001 break;
4002 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00004003 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004004 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004005 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004006 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004007 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4008 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00004009 case TargetLowering::Legal:
4010 Tmp1 = LegalizeOp(Node->getOperand(0));
4011 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4012 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004013 case TargetLowering::Custom:
4014 Result = TLI.LowerOperation(Op, DAG);
4015 if (Result.Val) break;
4016 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00004017 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004018 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00004019 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004020 TargetLowering::ArgListTy Args;
4021 std::pair<SDOperand,SDOperand> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00004022 TLI.LowerCallTo(Tmp1, Type::VoidTy,
4023 false, false, false, CallingConv::C, false,
Chris Lattner034f12e2008-01-15 22:09:33 +00004024 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
4025 Args, DAG);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004026 Result = CallResult.second;
4027 break;
4028 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004029 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004030 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00004031 }
Chris Lattner456a93a2006-01-28 07:39:30 +00004032
Chris Lattner4ddd2832006-04-08 04:13:17 +00004033 assert(Result.getValueType() == Op.getValueType() &&
4034 "Bad legalization!");
4035
Chris Lattner456a93a2006-01-28 07:39:30 +00004036 // Make sure that the generated code is itself legal.
4037 if (Result != Op)
4038 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004039
Chris Lattner45982da2005-05-12 16:53:42 +00004040 // Note that LegalizeOp may be reentered even from single-use nodes, which
4041 // means that we always must cache transformed nodes.
4042 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004043 return Result;
4044}
4045
Chris Lattner8b6fa222005-01-15 22:16:26 +00004046/// PromoteOp - Given an operation that produces a value in an invalid type,
4047/// promote it to compute the value into a larger type. The produced value will
4048/// have the correct bits for the low portion of the register, but no guarantee
4049/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00004050SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004051 MVT VT = Op.getValueType();
4052 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004053 assert(getTypeAction(VT) == Promote &&
4054 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004055 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00004056 "Cannot promote to smaller type!");
4057
Chris Lattner03c85462005-01-15 05:21:40 +00004058 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00004059 SDOperand Result;
4060 SDNode *Node = Op.Val;
4061
Roman Levenstein9cac5252008-04-16 16:15:27 +00004062 DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004063 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004064
Chris Lattner03c85462005-01-15 05:21:40 +00004065 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004066 case ISD::CopyFromReg:
4067 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004068 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004069#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004070 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004071#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004072 assert(0 && "Do not know how to promote this operator!");
4073 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004074 case ISD::UNDEF:
4075 Result = DAG.getNode(ISD::UNDEF, NVT);
4076 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004077 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004078 if (VT != MVT::i1)
4079 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4080 else
4081 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004082 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4083 break;
4084 case ISD::ConstantFP:
4085 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4086 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4087 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004088
Chris Lattner82fbfb62005-01-18 02:59:52 +00004089 case ISD::SETCC:
Scott Michel5b8f82e2008-03-10 15:42:14 +00004090 assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
Nate Begeman5922f562008-03-14 00:53:31 +00004091 && "SetCC type is not legal??");
Scott Michel5b8f82e2008-03-10 15:42:14 +00004092 Result = DAG.getNode(ISD::SETCC,
Nate Begeman5922f562008-03-14 00:53:31 +00004093 TLI.getSetCCResultType(Node->getOperand(0)),
4094 Node->getOperand(0), Node->getOperand(1),
4095 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004096 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00004097
Chris Lattner03c85462005-01-15 05:21:40 +00004098 case ISD::TRUNCATE:
4099 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4100 case Legal:
4101 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004102 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004103 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004104 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Chris Lattner03c85462005-01-15 05:21:40 +00004105 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4106 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004107 case Promote:
4108 // The truncation is not required, because we don't guarantee anything
4109 // about high bits anyway.
4110 Result = PromoteOp(Node->getOperand(0));
4111 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004112 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004113 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4114 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00004115 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004116 }
4117 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004118 case ISD::SIGN_EXTEND:
4119 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004120 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004121 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4122 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4123 case Legal:
4124 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00004125 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004126 break;
4127 case Promote:
4128 // Promote the reg if it's smaller.
4129 Result = PromoteOp(Node->getOperand(0));
4130 // The high bits are not guaranteed to be anything. Insert an extend.
4131 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00004132 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004133 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004134 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00004135 Result = DAG.getZeroExtendInReg(Result,
4136 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004137 break;
4138 }
4139 break;
Chris Lattner35481892005-12-23 00:16:34 +00004140 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004141 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4142 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00004143 Result = PromoteOp(Result);
4144 break;
4145
Chris Lattner8b6fa222005-01-15 22:16:26 +00004146 case ISD::FP_EXTEND:
4147 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4148 case ISD::FP_ROUND:
4149 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4150 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4151 case Promote: assert(0 && "Unreachable with 2 FP types!");
4152 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004153 if (Node->getConstantOperandVal(1) == 0) {
4154 // Input is legal? Do an FP_ROUND_INREG.
4155 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4156 DAG.getValueType(VT));
4157 } else {
4158 // Just remove the truncate, it isn't affecting the value.
4159 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4160 Node->getOperand(1));
4161 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004162 break;
4163 }
4164 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004165 case ISD::SINT_TO_FP:
4166 case ISD::UINT_TO_FP:
4167 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4168 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004169 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00004170 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004171 break;
4172
4173 case Promote:
4174 Result = PromoteOp(Node->getOperand(0));
4175 if (Node->getOpcode() == ISD::SINT_TO_FP)
4176 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004177 Result,
4178 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004179 else
Chris Lattner23993562005-04-13 02:38:47 +00004180 Result = DAG.getZeroExtendInReg(Result,
4181 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004182 // No extra round required here.
4183 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004184 break;
4185 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004186 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4187 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00004188 // Round if we cannot tolerate excess precision.
4189 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004190 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4191 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004192 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004193 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004194 break;
4195
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004196 case ISD::SIGN_EXTEND_INREG:
4197 Result = PromoteOp(Node->getOperand(0));
4198 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4199 Node->getOperand(1));
4200 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004201 case ISD::FP_TO_SINT:
4202 case ISD::FP_TO_UINT:
4203 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4204 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004205 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004206 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004207 break;
4208 case Promote:
4209 // The input result is prerounded, so we don't have to do anything
4210 // special.
4211 Tmp1 = PromoteOp(Node->getOperand(0));
4212 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004213 }
Nate Begemand2558e32005-08-14 01:20:53 +00004214 // If we're promoting a UINT to a larger size, check to see if the new node
4215 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4216 // we can use that instead. This allows us to generate better code for
4217 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4218 // legal, such as PowerPC.
4219 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004220 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004221 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4222 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00004223 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4224 } else {
4225 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4226 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004227 break;
4228
Chris Lattner2c8086f2005-04-02 05:00:07 +00004229 case ISD::FABS:
4230 case ISD::FNEG:
4231 Tmp1 = PromoteOp(Node->getOperand(0));
4232 assert(Tmp1.getValueType() == NVT);
4233 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4234 // NOTE: we do not have to do any extra rounding here for
4235 // NoExcessFPPrecision, because we know the input will have the appropriate
4236 // precision, and these operations don't modify precision at all.
4237 break;
4238
Chris Lattnerda6ba872005-04-28 21:44:33 +00004239 case ISD::FSQRT:
4240 case ISD::FSIN:
4241 case ISD::FCOS:
4242 Tmp1 = PromoteOp(Node->getOperand(0));
4243 assert(Tmp1.getValueType() == NVT);
4244 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004245 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004246 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4247 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004248 break;
4249
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004250 case ISD::FPOWI: {
4251 // Promote f32 powi to f64 powi. Note that this could insert a libcall
4252 // directly as well, which may be better.
4253 Tmp1 = PromoteOp(Node->getOperand(0));
4254 assert(Tmp1.getValueType() == NVT);
4255 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
4256 if (NoExcessFPPrecision)
4257 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4258 DAG.getValueType(VT));
4259 break;
4260 }
4261
Mon P Wang28873102008-06-25 08:15:39 +00004262 case ISD::ATOMIC_CMP_SWAP: {
4263 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004264 Tmp2 = PromoteOp(Node->getOperand(2));
4265 Tmp3 = PromoteOp(Node->getOperand(3));
Mon P Wang28873102008-06-25 08:15:39 +00004266 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4267 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004268 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004269 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004270 // Remember that we legalized the chain.
4271 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4272 break;
4273 }
Mon P Wang28873102008-06-25 08:15:39 +00004274 case ISD::ATOMIC_LOAD_ADD:
4275 case ISD::ATOMIC_LOAD_SUB:
Mon P Wang63307c32008-05-05 19:05:59 +00004276 case ISD::ATOMIC_LOAD_AND:
4277 case ISD::ATOMIC_LOAD_OR:
4278 case ISD::ATOMIC_LOAD_XOR:
Andrew Lenharth507a58a2008-06-14 05:48:15 +00004279 case ISD::ATOMIC_LOAD_NAND:
Mon P Wang63307c32008-05-05 19:05:59 +00004280 case ISD::ATOMIC_LOAD_MIN:
4281 case ISD::ATOMIC_LOAD_MAX:
4282 case ISD::ATOMIC_LOAD_UMIN:
4283 case ISD::ATOMIC_LOAD_UMAX:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004284 case ISD::ATOMIC_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004285 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004286 Tmp2 = PromoteOp(Node->getOperand(2));
Mon P Wang28873102008-06-25 08:15:39 +00004287 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4288 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004289 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004290 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004291 // Remember that we legalized the chain.
4292 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4293 break;
4294 }
4295
Chris Lattner03c85462005-01-15 05:21:40 +00004296 case ISD::AND:
4297 case ISD::OR:
4298 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004299 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004300 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004301 case ISD::MUL:
4302 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004303 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004304 // that too is okay if they are integer operations.
4305 Tmp1 = PromoteOp(Node->getOperand(0));
4306 Tmp2 = PromoteOp(Node->getOperand(1));
4307 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4308 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004309 break;
4310 case ISD::FADD:
4311 case ISD::FSUB:
4312 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004313 Tmp1 = PromoteOp(Node->getOperand(0));
4314 Tmp2 = PromoteOp(Node->getOperand(1));
4315 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4316 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4317
4318 // Floating point operations will give excess precision that we may not be
4319 // able to tolerate. If we DO allow excess precision, just leave it,
4320 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004321 // FIXME: Why would we need to round FP ops more than integer ones?
4322 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004323 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004324 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4325 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004326 break;
4327
Chris Lattner8b6fa222005-01-15 22:16:26 +00004328 case ISD::SDIV:
4329 case ISD::SREM:
4330 // These operators require that their input be sign extended.
4331 Tmp1 = PromoteOp(Node->getOperand(0));
4332 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004333 if (NVT.isInteger()) {
Chris Lattner15e4b012005-07-10 00:07:11 +00004334 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4335 DAG.getValueType(VT));
4336 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4337 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004338 }
4339 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4340
4341 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004342 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004343 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4344 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004345 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004346 case ISD::FDIV:
4347 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004348 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004349 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004350 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004351 case Expand: assert(0 && "not implemented");
4352 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4353 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004354 }
4355 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004356 case Expand: assert(0 && "not implemented");
4357 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4358 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004359 }
Chris Lattner01b3d732005-09-28 22:28:18 +00004360 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4361
4362 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004363 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00004364 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4365 DAG.getValueType(VT));
4366 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004367
4368 case ISD::UDIV:
4369 case ISD::UREM:
4370 // These operators require that their input be zero extended.
4371 Tmp1 = PromoteOp(Node->getOperand(0));
4372 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004373 assert(NVT.isInteger() && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00004374 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4375 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004376 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4377 break;
4378
4379 case ISD::SHL:
4380 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00004381 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004382 break;
4383 case ISD::SRA:
4384 // The input value must be properly sign extended.
4385 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00004386 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4387 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00004388 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004389 break;
4390 case ISD::SRL:
4391 // The input value must be properly zero extended.
4392 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00004393 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004394 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004395 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004396
4397 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004398 Tmp1 = Node->getOperand(0); // Get the chain.
4399 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004400 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4401 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004402 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004403 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004404 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
4405 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004406 // Increment the pointer, VAList, to the next vaarg
4407 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004408 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004409 TLI.getPointerTy()));
4410 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00004411 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004412 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004413 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004414 }
4415 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004416 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004417 break;
4418
Evan Cheng466685d2006-10-09 20:57:25 +00004419 case ISD::LOAD: {
4420 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004421 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4422 ? ISD::EXTLOAD : LD->getExtensionType();
4423 Result = DAG.getExtLoad(ExtType, NVT,
4424 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004425 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004426 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004427 LD->isVolatile(),
4428 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004429 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004430 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004431 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004432 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004433 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004434 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4435 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004436
Duncan Sands83ec4b62008-06-06 12:08:01 +00004437 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004438 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004439 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4440 // Ensure that the resulting node is at least the same size as the operands'
4441 // value types, because we cannot assume that TLI.getSetCCValueType() is
4442 // constant.
4443 Result = DAG.getNode(ISD::SELECT, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004444 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004445 }
Nate Begeman9373a812005-08-10 20:51:12 +00004446 case ISD::SELECT_CC:
4447 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4448 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4449 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004450 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004451 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004452 case ISD::BSWAP:
4453 Tmp1 = Node->getOperand(0);
4454 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4455 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4456 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004457 DAG.getConstant(NVT.getSizeInBits() -
4458 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004459 TLI.getShiftAmountTy()));
4460 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004461 case ISD::CTPOP:
4462 case ISD::CTTZ:
4463 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004464 // Zero extend the argument
4465 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004466 // Perform the larger operation, then subtract if needed.
4467 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004468 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004469 case ISD::CTPOP:
4470 Result = Tmp1;
4471 break;
4472 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004473 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004474 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004475 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004476 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004477 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004478 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004479 break;
4480 case ISD::CTLZ:
4481 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004482 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004483 DAG.getConstant(NVT.getSizeInBits() -
4484 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004485 break;
4486 }
4487 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004488 case ISD::EXTRACT_SUBVECTOR:
4489 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004490 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004491 case ISD::EXTRACT_VECTOR_ELT:
4492 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4493 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004494 }
4495
4496 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004497
4498 // Make sure the result is itself legal.
4499 Result = LegalizeOp(Result);
4500
4501 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004502 AddPromotedOperand(Op, Result);
4503 return Result;
4504}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004505
Dan Gohman7f321562007-06-25 16:23:39 +00004506/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4507/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4508/// based on the vector type. The return type of this matches the element type
4509/// of the vector, which may not be legal for the target.
4510SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004511 // We know that operand #0 is the Vec vector. If the index is a constant
4512 // or if the invec is a supported hardware type, we can use it. Otherwise,
4513 // lower to a store then an indexed load.
4514 SDOperand Vec = Op.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004515 SDOperand Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00004516
Duncan Sands83ec4b62008-06-06 12:08:01 +00004517 MVT TVT = Vec.getValueType();
4518 unsigned NumElems = TVT.getVectorNumElements();
Chris Lattner15972212006-03-31 17:55:51 +00004519
Dan Gohman7f321562007-06-25 16:23:39 +00004520 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4521 default: assert(0 && "This action is not supported yet!");
4522 case TargetLowering::Custom: {
4523 Vec = LegalizeOp(Vec);
4524 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4525 SDOperand Tmp3 = TLI.LowerOperation(Op, DAG);
4526 if (Tmp3.Val)
4527 return Tmp3;
4528 break;
4529 }
4530 case TargetLowering::Legal:
4531 if (isTypeLegal(TVT)) {
4532 Vec = LegalizeOp(Vec);
4533 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004534 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004535 }
4536 break;
4537 case TargetLowering::Expand:
4538 break;
4539 }
4540
4541 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004542 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004543 Op = ScalarizeVectorOp(Vec);
4544 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00004545 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00004546 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Chris Lattner15972212006-03-31 17:55:51 +00004547 SDOperand Lo, Hi;
4548 SplitVectorOp(Vec, Lo, Hi);
Nate Begeman55030dc2008-01-29 02:24:00 +00004549 if (CIdx->getValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00004550 Vec = Lo;
4551 } else {
4552 Vec = Hi;
Nate Begeman55030dc2008-01-29 02:24:00 +00004553 Idx = DAG.getConstant(CIdx->getValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00004554 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00004555 }
Dan Gohman7f321562007-06-25 16:23:39 +00004556
Chris Lattner15972212006-03-31 17:55:51 +00004557 // It's now an extract from the appropriate high or low part. Recurse.
4558 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004559 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00004560 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004561 // Store the value to a temporary stack slot, then LOAD the scalar
4562 // element back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004563 SDOperand StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dan Gohman7f321562007-06-25 16:23:39 +00004564 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
4565
4566 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004567 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dan Gohman7f321562007-06-25 16:23:39 +00004568 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4569 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004570
Duncan Sands8e4eb092008-06-08 20:54:56 +00004571 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Chris Lattnerf185e672007-10-19 16:47:35 +00004572 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004573 else
Chris Lattnerf185e672007-10-19 16:47:35 +00004574 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004575
Dan Gohman7f321562007-06-25 16:23:39 +00004576 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4577
4578 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00004579 }
Dan Gohman7f321562007-06-25 16:23:39 +00004580 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00004581}
4582
Dan Gohman7f321562007-06-25 16:23:39 +00004583/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00004584/// we assume the operation can be split if it is not already legal.
Dan Gohman7f321562007-06-25 16:23:39 +00004585SDOperand SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDOperand Op) {
Dan Gohman65956352007-06-13 15:12:02 +00004586 // We know that operand #0 is the Vec vector. For now we assume the index
4587 // is a constant and that the extracted result is a supported hardware type.
4588 SDOperand Vec = Op.getOperand(0);
4589 SDOperand Idx = LegalizeOp(Op.getOperand(1));
4590
Duncan Sands83ec4b62008-06-06 12:08:01 +00004591 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Dan Gohman65956352007-06-13 15:12:02 +00004592
Duncan Sands83ec4b62008-06-06 12:08:01 +00004593 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00004594 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004595 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00004596 }
4597
4598 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
4599 SDOperand Lo, Hi;
4600 SplitVectorOp(Vec, Lo, Hi);
4601 if (CIdx->getValue() < NumElems/2) {
4602 Vec = Lo;
4603 } else {
4604 Vec = Hi;
4605 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
4606 }
4607
4608 // It's now an extract from the appropriate high or low part. Recurse.
4609 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004610 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00004611}
4612
Nate Begeman750ac1b2006-02-01 07:19:44 +00004613/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4614/// with condition CC on the current target. This usually involves legalizing
4615/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4616/// there may be no choice but to create a new SetCC node to represent the
4617/// legalized value of setcc lhs, rhs. In this case, the value is returned in
4618/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
4619void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
4620 SDOperand &RHS,
4621 SDOperand &CC) {
Dale Johannesen638ccd52007-10-06 01:24:11 +00004622 SDOperand Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004623
4624 switch (getTypeAction(LHS.getValueType())) {
4625 case Legal:
4626 Tmp1 = LegalizeOp(LHS); // LHS
4627 Tmp2 = LegalizeOp(RHS); // RHS
4628 break;
4629 case Promote:
4630 Tmp1 = PromoteOp(LHS); // LHS
4631 Tmp2 = PromoteOp(RHS); // RHS
4632
4633 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004634 if (LHS.getValueType().isInteger()) {
4635 MVT VT = LHS.getValueType();
4636 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00004637
4638 // Otherwise, we have to insert explicit sign or zero extends. Note
4639 // that we could insert sign extends for ALL conditions, but zero extend
4640 // is cheaper on many machines (an AND instead of two shifts), so prefer
4641 // it.
4642 switch (cast<CondCodeSDNode>(CC)->get()) {
4643 default: assert(0 && "Unknown integer comparison!");
4644 case ISD::SETEQ:
4645 case ISD::SETNE:
4646 case ISD::SETUGE:
4647 case ISD::SETUGT:
4648 case ISD::SETULE:
4649 case ISD::SETULT:
4650 // ALL of these operations will work if we either sign or zero extend
4651 // the operands (including the unsigned comparisons!). Zero extend is
4652 // usually a simpler/cheaper operation, so prefer it.
4653 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4654 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4655 break;
4656 case ISD::SETGE:
4657 case ISD::SETGT:
4658 case ISD::SETLT:
4659 case ISD::SETLE:
4660 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4661 DAG.getValueType(VT));
4662 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4663 DAG.getValueType(VT));
4664 break;
4665 }
4666 }
4667 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004668 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004669 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00004670 if (VT == MVT::f32 || VT == MVT::f64) {
4671 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00004672 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00004673 switch (cast<CondCodeSDNode>(CC)->get()) {
4674 case ISD::SETEQ:
4675 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00004676 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004677 break;
4678 case ISD::SETNE:
4679 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00004680 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004681 break;
4682 case ISD::SETGE:
4683 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00004684 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004685 break;
4686 case ISD::SETLT:
4687 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00004688 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004689 break;
4690 case ISD::SETLE:
4691 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00004692 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004693 break;
4694 case ISD::SETGT:
4695 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00004696 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004697 break;
4698 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00004699 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4700 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004701 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00004702 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004703 break;
4704 default:
Evan Cheng56966222007-01-12 02:11:51 +00004705 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004706 switch (cast<CondCodeSDNode>(CC)->get()) {
4707 case ISD::SETONE:
4708 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004709 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004710 // Fallthrough
4711 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004712 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004713 break;
4714 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004715 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004716 break;
4717 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004718 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004719 break;
4720 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004721 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004722 break;
Evan Cheng56966222007-01-12 02:11:51 +00004723 case ISD::SETUEQ:
4724 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004725 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004726 default: assert(0 && "Unsupported FP setcc!");
4727 }
4728 }
Duncan Sandsf9516202008-06-30 10:19:09 +00004729
Evan Cheng2b49c502006-12-15 02:59:56 +00004730 SDOperand Dummy;
Duncan Sands4bdcb612008-07-02 17:40:58 +00004731 SDOperand Ops[2] = { LHS, RHS };
4732 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004733 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004734 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004735 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004736 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004737 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00004738 CC);
Duncan Sands4bdcb612008-07-02 17:40:58 +00004739 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004740 false /*sign irrelevant*/, Dummy);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004741 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004742 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004743 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4744 Tmp2 = SDOperand();
4745 }
4746 LHS = Tmp1;
4747 RHS = Tmp2;
4748 return;
4749 }
4750
Nate Begeman750ac1b2006-02-01 07:19:44 +00004751 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
4752 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004753 ExpandOp(RHS, RHSLo, RHSHi);
4754 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4755
4756 if (VT==MVT::ppcf128) {
4757 // FIXME: This generated code sucks. We want to generate
4758 // FCMP crN, hi1, hi2
4759 // BNE crN, L:
4760 // FCMP crN, lo1, lo2
4761 // The following can be improved, but not that much.
Scott Michel5b8f82e2008-03-10 15:42:14 +00004762 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETEQ);
4763 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004764 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004765 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETNE);
4766 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004767 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4768 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
4769 Tmp2 = SDOperand();
4770 break;
4771 }
4772
4773 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004774 case ISD::SETEQ:
4775 case ISD::SETNE:
4776 if (RHSLo == RHSHi)
4777 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4778 if (RHSCST->isAllOnesValue()) {
4779 // Comparison to -1.
4780 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4781 Tmp2 = RHSLo;
4782 break;
4783 }
4784
4785 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4786 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4787 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4788 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4789 break;
4790 default:
4791 // If this is a comparison of the sign bit, just look at the top part.
4792 // X > -1, x < 0
4793 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4794 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004795 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00004796 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4797 CST->isAllOnesValue())) { // X > -1
4798 Tmp1 = LHSHi;
4799 Tmp2 = RHSHi;
4800 break;
4801 }
4802
4803 // FIXME: This generated code sucks.
4804 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004805 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004806 default: assert(0 && "Unknown integer setcc!");
4807 case ISD::SETLT:
4808 case ISD::SETULT: LowCC = ISD::SETULT; break;
4809 case ISD::SETGT:
4810 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4811 case ISD::SETLE:
4812 case ISD::SETULE: LowCC = ISD::SETULE; break;
4813 case ISD::SETGE:
4814 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4815 }
4816
4817 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4818 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4819 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4820
4821 // NOTE: on targets without efficient SELECT of bools, we can always use
4822 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004823 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004824 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
Nate Begeman5922f562008-03-14 00:53:31 +00004825 LowCC, false, DagCombineInfo);
Evan Cheng2e677812007-02-08 22:16:19 +00004826 if (!Tmp1.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004827 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4828 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004829 CCCode, false, DagCombineInfo);
4830 if (!Tmp2.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004831 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004832 RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00004833
4834 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4835 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
Dan Gohman002e5d02008-03-13 22:13:53 +00004836 if ((Tmp1C && Tmp1C->isNullValue()) ||
4837 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00004838 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4839 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00004840 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00004841 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4842 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4843 // low part is known false, returns high part.
4844 // For LE / GE, if high part is known false, ignore the low part.
4845 // For LT / GT, if high part is known true, ignore the low part.
4846 Tmp1 = Tmp2;
4847 Tmp2 = SDOperand();
4848 } else {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004849 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004850 ISD::SETEQ, false, DagCombineInfo);
4851 if (!Result.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004852 Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004853 ISD::SETEQ);
Evan Cheng2e677812007-02-08 22:16:19 +00004854 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4855 Result, Tmp1, Tmp2));
4856 Tmp1 = Result;
4857 Tmp2 = SDOperand();
4858 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004859 }
4860 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004861 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004862 LHS = Tmp1;
4863 RHS = Tmp2;
4864}
4865
Chris Lattner1401d152008-01-16 07:45:30 +00004866/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4867/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4868/// a load from the stack slot to DestVT, extending it if needed.
4869/// The resultant code need not be legal.
4870SDOperand SelectionDAGLegalize::EmitStackConvert(SDOperand SrcOp,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004871 MVT SlotVT,
4872 MVT DestVT) {
Chris Lattner35481892005-12-23 00:16:34 +00004873 // Create the stack frame object.
Mon P Wang364d73d2008-07-05 20:40:31 +00004874 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
4875 SrcOp.getValueType().getTypeForMVT());
4876 SDOperand FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
4877
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004878 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004879 int SPFI = StackPtrFI->getIndex();
Mon P Wang364d73d2008-07-05 20:40:31 +00004880
Duncan Sands83ec4b62008-06-06 12:08:01 +00004881 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
4882 unsigned SlotSize = SlotVT.getSizeInBits();
4883 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang364d73d2008-07-05 20:40:31 +00004884 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
4885 DestVT.getTypeForMVT());
Chris Lattner35481892005-12-23 00:16:34 +00004886
Chris Lattner1401d152008-01-16 07:45:30 +00004887 // Emit a store to the stack slot. Use a truncstore if the input value is
4888 // later than DestVT.
4889 SDOperand Store;
Mon P Wang364d73d2008-07-05 20:40:31 +00004890
Chris Lattner1401d152008-01-16 07:45:30 +00004891 if (SrcSize > SlotSize)
Dan Gohman69de1932008-02-06 22:27:42 +00004892 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Mon P Wang364d73d2008-07-05 20:40:31 +00004893 PseudoSourceValue::getFixedStack(), SPFI, SlotVT,
4894 false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004895 else {
4896 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman69de1932008-02-06 22:27:42 +00004897 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Mon P Wang364d73d2008-07-05 20:40:31 +00004898 PseudoSourceValue::getFixedStack(), SPFI,
4899 false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004900 }
4901
Chris Lattner35481892005-12-23 00:16:34 +00004902 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00004903 if (SlotSize == DestSize)
Mon P Wang364d73d2008-07-05 20:40:31 +00004904 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0, false, DestAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004905
4906 assert(SlotSize < DestSize && "Unknown extension!");
Mon P Wang364d73d2008-07-05 20:40:31 +00004907 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT,
4908 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00004909}
4910
Chris Lattner4352cc92006-04-04 17:23:26 +00004911SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
4912 // Create a vector sized/aligned stack slot, store the value to element #0,
4913 // then load the whole vector back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004914 SDOperand StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00004915
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004916 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004917 int SPFI = StackPtrFI->getIndex();
4918
Evan Cheng786225a2006-10-05 23:01:46 +00004919 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004920 PseudoSourceValue::getFixedStack(), SPFI);
Dan Gohman69de1932008-02-06 22:27:42 +00004921 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004922 PseudoSourceValue::getFixedStack(), SPFI);
Chris Lattner4352cc92006-04-04 17:23:26 +00004923}
4924
4925
Chris Lattnerce872152006-03-19 06:31:19 +00004926/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004927/// support the operation, but do support the resultant vector type.
Chris Lattnerce872152006-03-19 06:31:19 +00004928SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
4929
4930 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004931 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004932 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004933 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00004934 SDOperand SplatValue = Node->getOperand(0);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004935
4936 // FIXME: it would be far nicer to change this into map<SDOperand,uint64_t>
4937 // and use a bitmask instead of a list of elements.
Evan Cheng033e6812006-03-24 01:17:21 +00004938 std::map<SDOperand, std::vector<unsigned> > Values;
4939 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004940 bool isConstant = true;
4941 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4942 SplatValue.getOpcode() != ISD::UNDEF)
4943 isConstant = false;
4944
Evan Cheng033e6812006-03-24 01:17:21 +00004945 for (unsigned i = 1; i < NumElems; ++i) {
4946 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004947 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004948 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004949 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004950 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00004951 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004952
4953 // If this isn't a constant element or an undef, we can't use a constant
4954 // pool load.
4955 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4956 V.getOpcode() != ISD::UNDEF)
4957 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004958 }
4959
4960 if (isOnlyLowElement) {
4961 // If the low element is an undef too, then this whole things is an undef.
4962 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4963 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4964 // Otherwise, turn this into a scalar_to_vector node.
4965 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4966 Node->getOperand(0));
4967 }
4968
Chris Lattner2eb86532006-03-24 07:29:17 +00004969 // If all elements are constants, create a load from the constant pool.
4970 if (isConstant) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004971 MVT VT = Node->getValueType(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004972 std::vector<Constant*> CV;
4973 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4974 if (ConstantFPSDNode *V =
4975 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Chris Lattner02a260a2008-04-20 00:41:09 +00004976 CV.push_back(ConstantFP::get(V->getValueAPF()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004977 } else if (ConstantSDNode *V =
Chris Lattner02a260a2008-04-20 00:41:09 +00004978 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
4979 CV.push_back(ConstantInt::get(V->getAPIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004980 } else {
4981 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner02a260a2008-04-20 00:41:09 +00004982 const Type *OpNTy =
Duncan Sands83ec4b62008-06-06 12:08:01 +00004983 Node->getOperand(0).getValueType().getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00004984 CV.push_back(UndefValue::get(OpNTy));
4985 }
4986 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00004987 Constant *CP = ConstantVector::get(CV);
Chris Lattner2eb86532006-03-24 07:29:17 +00004988 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman69de1932008-02-06 22:27:42 +00004989 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00004990 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004991 }
4992
Chris Lattner87100e02006-03-20 01:52:29 +00004993 if (SplatValue.Val) { // Splat of one value?
4994 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands83ec4b62008-06-06 12:08:01 +00004995 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
4996 SDOperand Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
Evan Cheng033e6812006-03-24 01:17:21 +00004997 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004998 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4999 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00005000
5001 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005002 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00005003 // Get the splatted value into the low element of a vector register.
5004 SDOperand LowValVec =
5005 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
5006
5007 // Return shuffle(LowValVec, undef, <0,0,0,0>)
5008 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
5009 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
5010 SplatMask);
5011 }
5012 }
5013
Evan Cheng033e6812006-03-24 01:17:21 +00005014 // If there are only two unique elements, we may be able to turn this into a
5015 // vector shuffle.
5016 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005017 // Get the two values in deterministic order.
5018 SDOperand Val1 = Node->getOperand(1);
5019 SDOperand Val2;
5020 std::map<SDOperand, std::vector<unsigned> >::iterator MI = Values.begin();
5021 if (MI->first != Val1)
5022 Val2 = MI->first;
5023 else
5024 Val2 = (++MI)->first;
5025
5026 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
5027 // vector shuffle has the undef vector on the RHS.
5028 if (Val1.getOpcode() == ISD::UNDEF)
5029 std::swap(Val1, Val2);
5030
Evan Cheng033e6812006-03-24 01:17:21 +00005031 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005032 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5033 MVT MaskEltVT = MaskVT.getVectorElementType();
Evan Cheng033e6812006-03-24 01:17:21 +00005034 std::vector<SDOperand> MaskVec(NumElems);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005035
5036 // Set elements of the shuffle mask for Val1.
5037 std::vector<unsigned> &Val1Elts = Values[Val1];
5038 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5039 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5040
5041 // Set elements of the shuffle mask for Val2.
5042 std::vector<unsigned> &Val2Elts = Values[Val2];
5043 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5044 if (Val2.getOpcode() != ISD::UNDEF)
5045 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5046 else
5047 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
5048
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005049 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
5050 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00005051
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005052 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005053 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
5054 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005055 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
5056 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
5057 SDOperand Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng033e6812006-03-24 01:17:21 +00005058
5059 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005060 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Evan Cheng033e6812006-03-24 01:17:21 +00005061 }
5062 }
Chris Lattnerce872152006-03-19 06:31:19 +00005063
5064 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5065 // aligned object on the stack, store each element into it, then load
5066 // the result as a vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005067 MVT VT = Node->getValueType(0);
Chris Lattnerce872152006-03-19 06:31:19 +00005068 // Create the stack frame object.
Chris Lattner85dd3be2007-10-15 17:48:57 +00005069 SDOperand FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005070
5071 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005072 SmallVector<SDOperand, 8> Stores;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005073 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Chris Lattnerce872152006-03-19 06:31:19 +00005074 // Store (in the right endianness) the elements to memory.
5075 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5076 // Ignore undef elements.
5077 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5078
Chris Lattner841c8822006-03-22 01:46:54 +00005079 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00005080
5081 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
5082 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5083
Evan Cheng786225a2006-10-05 23:01:46 +00005084 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00005085 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00005086 }
5087
5088 SDOperand StoreChain;
5089 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005090 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5091 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005092 else
5093 StoreChain = DAG.getEntryNode();
5094
5095 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00005096 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005097}
5098
Chris Lattner5b359c62005-04-02 04:00:59 +00005099void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
5100 SDOperand Op, SDOperand Amt,
5101 SDOperand &Lo, SDOperand &Hi) {
5102 // Expand the subcomponents.
5103 SDOperand LHSL, LHSH;
5104 ExpandOp(Op, LHSL, LHSH);
5105
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005106 SDOperand Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005107 MVT VT = LHSL.getValueType();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00005108 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005109 Hi = Lo.getValue(1);
5110}
5111
5112
Chris Lattnere34b3962005-01-19 04:19:40 +00005113/// ExpandShift - Try to find a clever way to expand this shift operation out to
5114/// smaller elements. If we can't find a way that is more efficient than a
5115/// libcall on this target, return false. Otherwise, return true with the
5116/// low-parts expanded into Lo and Hi.
5117bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
5118 SDOperand &Lo, SDOperand &Hi) {
5119 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5120 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005121
Duncan Sands83ec4b62008-06-06 12:08:01 +00005122 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005123 SDOperand ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005124 MVT ShTy = ShAmt.getValueType();
5125 unsigned ShBits = ShTy.getSizeInBits();
5126 unsigned VTBits = Op.getValueType().getSizeInBits();
5127 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005128
Chris Lattner7a3c8552007-10-14 20:35:12 +00005129 // Handle the case when Amt is an immediate.
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005130 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
5131 unsigned Cst = CN->getValue();
5132 // Expand the incoming operand to be shifted, so that we have its parts
5133 SDOperand InL, InH;
5134 ExpandOp(Op, InL, InH);
5135 switch(Opc) {
5136 case ISD::SHL:
5137 if (Cst > VTBits) {
5138 Lo = DAG.getConstant(0, NVT);
5139 Hi = DAG.getConstant(0, NVT);
5140 } else if (Cst > NVTBits) {
5141 Lo = DAG.getConstant(0, NVT);
5142 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005143 } else if (Cst == NVTBits) {
5144 Lo = DAG.getConstant(0, NVT);
5145 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005146 } else {
5147 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5148 Hi = DAG.getNode(ISD::OR, NVT,
5149 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5150 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5151 }
5152 return true;
5153 case ISD::SRL:
5154 if (Cst > VTBits) {
5155 Lo = DAG.getConstant(0, NVT);
5156 Hi = DAG.getConstant(0, NVT);
5157 } else if (Cst > NVTBits) {
5158 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5159 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005160 } else if (Cst == NVTBits) {
5161 Lo = InH;
5162 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005163 } else {
5164 Lo = DAG.getNode(ISD::OR, NVT,
5165 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5166 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5167 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5168 }
5169 return true;
5170 case ISD::SRA:
5171 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005172 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005173 DAG.getConstant(NVTBits-1, ShTy));
5174 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005175 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005176 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005177 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005178 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005179 } else if (Cst == NVTBits) {
5180 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00005181 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005182 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005183 } else {
5184 Lo = DAG.getNode(ISD::OR, NVT,
5185 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5186 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5187 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5188 }
5189 return true;
5190 }
5191 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005192
5193 // Okay, the shift amount isn't constant. However, if we can tell that it is
5194 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005195 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5196 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005197 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005198
Dan Gohman9e255b72008-02-22 01:12:31 +00005199 // If we know that if any of the high bits of the shift amount are one, then
5200 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005201 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005202 // Mask out the high bit, which we know is set.
5203 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005204 DAG.getConstant(~Mask, Amt.getValueType()));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005205
5206 // Expand the incoming operand to be shifted, so that we have its parts
5207 SDOperand InL, InH;
5208 ExpandOp(Op, InL, InH);
5209 switch(Opc) {
5210 case ISD::SHL:
5211 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5212 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5213 return true;
5214 case ISD::SRL:
5215 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5216 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5217 return true;
5218 case ISD::SRA:
5219 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5220 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5221 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5222 return true;
5223 }
5224 }
5225
Dan Gohman9e255b72008-02-22 01:12:31 +00005226 // If we know that the high bits of the shift amount are all zero, then we can
5227 // do this as a couple of simple shifts.
5228 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005229 // Compute 32-amt.
5230 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
5231 DAG.getConstant(NVTBits, Amt.getValueType()),
5232 Amt);
5233
5234 // Expand the incoming operand to be shifted, so that we have its parts
5235 SDOperand InL, InH;
5236 ExpandOp(Op, InL, InH);
5237 switch(Opc) {
5238 case ISD::SHL:
5239 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5240 Hi = DAG.getNode(ISD::OR, NVT,
5241 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5242 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5243 return true;
5244 case ISD::SRL:
5245 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5246 Lo = DAG.getNode(ISD::OR, NVT,
5247 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5248 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5249 return true;
5250 case ISD::SRA:
5251 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5252 Lo = DAG.getNode(ISD::OR, NVT,
5253 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5254 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5255 return true;
5256 }
5257 }
5258
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005259 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005260}
Chris Lattner77e77a62005-01-21 06:05:23 +00005261
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005262
Chris Lattner77e77a62005-01-21 06:05:23 +00005263// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5264// does not fit into a register, return the lo part and set the hi part to the
5265// by-reg argument. If it does fit into a single register, return the result
5266// and leave the Hi part unset.
Duncan Sands460a14e2008-04-12 17:14:18 +00005267SDOperand SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Reid Spencer47857812006-12-31 05:55:36 +00005268 bool isSigned, SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005269 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5270 // The input chain to this libcall is the entry node of the function.
5271 // Legalizing the call will automatically add the previous call to the
5272 // dependence.
5273 SDOperand InChain = DAG.getEntryNode();
5274
Chris Lattner77e77a62005-01-21 06:05:23 +00005275 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005276 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005277 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005278 MVT ArgVT = Node->getOperand(i).getValueType();
5279 const Type *ArgTy = ArgVT.getTypeForMVT();
Reid Spencer47857812006-12-31 05:55:36 +00005280 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005281 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005282 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005283 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005284 }
Duncan Sands460a14e2008-04-12 17:14:18 +00005285 SDOperand Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
5286 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005287
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005288 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005289 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005290 std::pair<SDOperand,SDOperand> CallInfo =
Duncan Sands00fee652008-02-14 17:28:50 +00005291 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, CallingConv::C,
5292 false, Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005293
Chris Lattner6831a812006-02-13 09:18:02 +00005294 // Legalize the call sequence, starting with the chain. This will advance
5295 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5296 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5297 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00005298 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005299 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005300 default: assert(0 && "Unknown thing");
5301 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005302 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005303 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005304 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005305 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005306 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005307 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005308 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005309}
5310
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005311
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005312/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5313///
Chris Lattner77e77a62005-01-21 06:05:23 +00005314SDOperand SelectionDAGLegalize::
Duncan Sands83ec4b62008-06-06 12:08:01 +00005315ExpandIntToFP(bool isSigned, MVT DestTy, SDOperand Source) {
5316 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005317 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005318
Evan Cheng9845eb52008-04-01 02:18:22 +00005319 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5320 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005321 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005322 // incoming integer is set. To handle this, we dynamically test to see if
5323 // it is set, and, if so, add a fudge factor.
Dan Gohman034f60e2008-03-11 01:59:03 +00005324 SDOperand Hi;
5325 if (ExpandSource) {
5326 SDOperand Lo;
5327 ExpandOp(Source, Lo, Hi);
5328 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5329 } else {
5330 // The comparison for the sign bit will use the entire operand.
5331 Hi = Source;
5332 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005333
Chris Lattner66de05b2005-05-13 04:45:13 +00005334 // If this is unsigned, and not supported, first perform the conversion to
5335 // signed, then adjust the result if the sign bit is set.
Dan Gohman034f60e2008-03-11 01:59:03 +00005336 SDOperand SignedConv = ExpandIntToFP(true, DestTy, Source);
Chris Lattner66de05b2005-05-13 04:45:13 +00005337
Scott Michel5b8f82e2008-03-10 15:42:14 +00005338 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005339 DAG.getConstant(0, Hi.getValueType()),
5340 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005341 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005342 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5343 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005344 uint64_t FF = 0x5f800000ULL;
5345 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohman34bc1782008-03-05 02:07:31 +00005346 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005347
Chris Lattner5839bf22005-08-26 17:15:30 +00005348 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00005349 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5350 SDOperand FudgeInReg;
5351 if (DestTy == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005352 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005353 PseudoSourceValue::getConstantPool(), 0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005354 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005355 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005356 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005357 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005358 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005359 MVT::f32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005360 else
5361 assert(0 && "Unexpected conversion");
5362
Duncan Sands83ec4b62008-06-06 12:08:01 +00005363 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005364 if (SCVT != DestTy) {
5365 // Destination type needs to be expanded as well. The FADD now we are
5366 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005367 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5368 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dan Gohmand91446d2008-03-05 01:08:17 +00005369 SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005370 SignedConv, SignedConv.getValue(1));
5371 }
5372 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5373 }
Chris Lattner473a9902005-09-29 06:44:39 +00005374 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005375 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005376
Chris Lattnera88a2602005-05-14 05:33:54 +00005377 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00005378 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00005379 default: assert(0 && "This action not implemented for this operation!");
5380 case TargetLowering::Legal:
5381 case TargetLowering::Expand:
5382 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005383 case TargetLowering::Custom: {
5384 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
5385 Source), DAG);
5386 if (NV.Val)
5387 return LegalizeOp(NV);
5388 break; // The target decided this was legal after all
5389 }
Chris Lattnera88a2602005-05-14 05:33:54 +00005390 }
5391
Chris Lattner13689e22005-05-12 07:00:44 +00005392 // Expand the source, then glue it back together for the call. We must expand
5393 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00005394 if (ExpandSource) {
5395 SDOperand SrcLo, SrcHi;
5396 ExpandOp(Source, SrcLo, SrcHi);
5397 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5398 }
Chris Lattner13689e22005-05-12 07:00:44 +00005399
Evan Cheng56966222007-01-12 02:11:51 +00005400 RTLIB::Libcall LC;
Evan Cheng110cf482008-04-01 01:50:16 +00005401 if (SourceVT == MVT::i32) {
5402 if (DestTy == MVT::f32)
Evan Chengdb45d1c2008-04-01 02:00:09 +00005403 LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32;
Evan Cheng110cf482008-04-01 01:50:16 +00005404 else {
5405 assert(DestTy == MVT::f64 && "Unknown fp value type!");
5406 LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64;
5407 }
5408 } else if (SourceVT == MVT::i64) {
Dan Gohmand91446d2008-03-05 01:08:17 +00005409 if (DestTy == MVT::f32)
5410 LC = RTLIB::SINTTOFP_I64_F32;
Dan Gohman034f60e2008-03-11 01:59:03 +00005411 else if (DestTy == MVT::f64)
Dan Gohmand91446d2008-03-05 01:08:17 +00005412 LC = RTLIB::SINTTOFP_I64_F64;
Dan Gohman034f60e2008-03-11 01:59:03 +00005413 else if (DestTy == MVT::f80)
5414 LC = RTLIB::SINTTOFP_I64_F80;
5415 else {
5416 assert(DestTy == MVT::ppcf128 && "Unknown fp value type!");
5417 LC = RTLIB::SINTTOFP_I64_PPCF128;
Dan Gohmand91446d2008-03-05 01:08:17 +00005418 }
5419 } else if (SourceVT == MVT::i128) {
5420 if (DestTy == MVT::f32)
5421 LC = RTLIB::SINTTOFP_I128_F32;
5422 else if (DestTy == MVT::f64)
5423 LC = RTLIB::SINTTOFP_I128_F64;
5424 else if (DestTy == MVT::f80)
5425 LC = RTLIB::SINTTOFP_I128_F80;
5426 else {
5427 assert(DestTy == MVT::ppcf128 && "Unknown fp value type!");
5428 LC = RTLIB::SINTTOFP_I128_PPCF128;
5429 }
5430 } else {
5431 assert(0 && "Unknown int value type");
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005432 }
Chris Lattner6831a812006-02-13 09:18:02 +00005433
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005434 assert(TLI.getLibcallName(LC) && "Don't know how to expand this SINT_TO_FP!");
Chris Lattner6831a812006-02-13 09:18:02 +00005435 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
Dan Gohmana2e94852008-03-10 23:03:31 +00005436 SDOperand HiPart;
Duncan Sands460a14e2008-04-12 17:14:18 +00005437 SDOperand Result = ExpandLibCall(LC, Source.Val, isSigned, HiPart);
Evan Cheng110cf482008-04-01 01:50:16 +00005438 if (Result.getValueType() != DestTy && HiPart.Val)
Dan Gohmana2e94852008-03-10 23:03:31 +00005439 Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5440 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005441}
Misha Brukmanedf128a2005-04-21 22:36:52 +00005442
Chris Lattner22cde6a2006-01-28 08:25:58 +00005443/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5444/// INT_TO_FP operation of the specified operand when the target requests that
5445/// we expand it. At this point, we know that the result and operand types are
5446/// legal for the target.
5447SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5448 SDOperand Op0,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005449 MVT DestVT) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005450 if (Op0.getValueType() == MVT::i32) {
5451 // simple 32-bit [signed|unsigned] integer to float/double expansion
5452
Chris Lattner23594d42008-01-16 07:03:22 +00005453 // Get the stack frame index of a 8 byte buffer.
5454 SDOperand StackSlot = DAG.CreateStackTemporary(MVT::f64);
5455
Chris Lattner22cde6a2006-01-28 08:25:58 +00005456 // word offset constant for Hi/Lo address computation
5457 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
5458 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00005459 SDOperand Hi = StackSlot;
5460 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
5461 if (TLI.isLittleEndian())
5462 std::swap(Hi, Lo);
5463
Chris Lattner22cde6a2006-01-28 08:25:58 +00005464 // if signed map to unsigned space
5465 SDOperand Op0Mapped;
5466 if (isSigned) {
5467 // constant used to invert sign bit (signed to unsigned mapping)
5468 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
5469 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5470 } else {
5471 Op0Mapped = Op0;
5472 }
5473 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00005474 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005475 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005476 // initial hi portion of constructed double
5477 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
5478 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00005479 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005480 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00005481 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005482 // FP constant to bias correct the final result
5483 SDOperand Bias = DAG.getConstantFP(isSigned ?
5484 BitsToDouble(0x4330000080000000ULL)
5485 : BitsToDouble(0x4330000000000000ULL),
5486 MVT::f64);
5487 // subtract the bias
5488 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
5489 // final result
5490 SDOperand Result;
5491 // handle final rounding
5492 if (DestVT == MVT::f64) {
5493 // do nothing
5494 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00005495 } else if (DestVT.bitsLT(MVT::f64)) {
Chris Lattner0bd48932008-01-17 07:00:52 +00005496 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5497 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005498 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005499 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005500 }
5501 return Result;
5502 }
5503 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
5504 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
5505
Scott Michel5b8f82e2008-03-10 15:42:14 +00005506 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005507 DAG.getConstant(0, Op0.getValueType()),
5508 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005509 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005510 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5511 SignSet, Four, Zero);
5512
5513 // If the sign bit of the integer is set, the large number will be treated
5514 // as a negative number. To counteract this, the dynamic code adds an
5515 // offset depending on the data type.
5516 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005517 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005518 default: assert(0 && "Unsupported integer type!");
5519 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5520 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5521 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5522 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5523 }
5524 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005525 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005526
5527 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
5528 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5529 SDOperand FudgeInReg;
5530 if (DestVT == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005531 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005532 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005533 else {
Dan Gohman69de1932008-02-06 22:27:42 +00005534 FudgeInReg =
5535 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5536 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005537 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005538 MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00005539 }
5540
5541 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5542}
5543
5544/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5545/// *INT_TO_FP operation of the specified operand when the target requests that
5546/// we promote it. At this point, we know that the result and operand types are
5547/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5548/// operation that takes a larger input.
5549SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005550 MVT DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005551 bool isSigned) {
5552 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005553 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005554
5555 unsigned OpToUse = 0;
5556
5557 // Scan for the appropriate larger type to use.
5558 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005559 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
5560 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005561
5562 // If the target supports SINT_TO_FP of this type, use it.
5563 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5564 default: break;
5565 case TargetLowering::Legal:
5566 if (!TLI.isTypeLegal(NewInTy))
5567 break; // Can't use this datatype.
5568 // FALL THROUGH.
5569 case TargetLowering::Custom:
5570 OpToUse = ISD::SINT_TO_FP;
5571 break;
5572 }
5573 if (OpToUse) break;
5574 if (isSigned) continue;
5575
5576 // If the target supports UINT_TO_FP of this type, use it.
5577 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5578 default: break;
5579 case TargetLowering::Legal:
5580 if (!TLI.isTypeLegal(NewInTy))
5581 break; // Can't use this datatype.
5582 // FALL THROUGH.
5583 case TargetLowering::Custom:
5584 OpToUse = ISD::UINT_TO_FP;
5585 break;
5586 }
5587 if (OpToUse) break;
5588
5589 // Otherwise, try a larger type.
5590 }
5591
5592 // Okay, we found the operation and type to use. Zero extend our input to the
5593 // desired type then run the operation on it.
5594 return DAG.getNode(OpToUse, DestVT,
5595 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5596 NewInTy, LegalOp));
5597}
5598
5599/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5600/// FP_TO_*INT operation of the specified operand when the target requests that
5601/// we promote it. At this point, we know that the result and operand types are
5602/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5603/// operation that returns a larger result.
5604SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005605 MVT DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005606 bool isSigned) {
5607 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005608 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005609
5610 unsigned OpToUse = 0;
5611
5612 // Scan for the appropriate larger type to use.
5613 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005614 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
5615 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005616
5617 // If the target supports FP_TO_SINT returning this type, use it.
5618 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5619 default: break;
5620 case TargetLowering::Legal:
5621 if (!TLI.isTypeLegal(NewOutTy))
5622 break; // Can't use this datatype.
5623 // FALL THROUGH.
5624 case TargetLowering::Custom:
5625 OpToUse = ISD::FP_TO_SINT;
5626 break;
5627 }
5628 if (OpToUse) break;
5629
5630 // If the target supports FP_TO_UINT of this type, use it.
5631 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5632 default: break;
5633 case TargetLowering::Legal:
5634 if (!TLI.isTypeLegal(NewOutTy))
5635 break; // Can't use this datatype.
5636 // FALL THROUGH.
5637 case TargetLowering::Custom:
5638 OpToUse = ISD::FP_TO_UINT;
5639 break;
5640 }
5641 if (OpToUse) break;
5642
5643 // Otherwise, try a larger type.
5644 }
5645
Chris Lattner27a6c732007-11-24 07:07:01 +00005646
5647 // Okay, we found the operation and type to use.
5648 SDOperand Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00005649
Chris Lattner27a6c732007-11-24 07:07:01 +00005650 // If the operation produces an invalid type, it must be custom lowered. Use
5651 // the target lowering hooks to expand it. Just keep the low part of the
5652 // expanded operation, we know that we're truncating anyway.
5653 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands126d9072008-07-04 11:47:58 +00005654 Operation = SDOperand(TLI.ReplaceNodeResults(Operation.Val, DAG), 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00005655 assert(Operation.Val && "Didn't return anything");
5656 }
Duncan Sands126d9072008-07-04 11:47:58 +00005657
Chris Lattner27a6c732007-11-24 07:07:01 +00005658 // Truncate the result of the extended FP_TO_*INT operation to the desired
5659 // size.
5660 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005661}
5662
5663/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5664///
5665SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005666 MVT VT = Op.getValueType();
5667 MVT SHVT = TLI.getShiftAmountTy();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005668 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005669 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005670 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5671 case MVT::i16:
5672 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5673 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5674 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5675 case MVT::i32:
5676 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5677 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5678 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5679 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5680 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5681 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5682 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5683 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5684 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5685 case MVT::i64:
5686 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5687 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5688 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5689 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5690 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5691 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5692 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5693 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5694 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5695 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5696 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5697 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5698 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5699 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5700 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5701 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5702 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5703 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5704 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5705 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5706 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5707 }
5708}
5709
5710/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5711///
5712SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
5713 switch (Opc) {
5714 default: assert(0 && "Cannot expand this yet!");
5715 case ISD::CTPOP: {
5716 static const uint64_t mask[6] = {
5717 0x5555555555555555ULL, 0x3333333333333333ULL,
5718 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5719 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5720 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005721 MVT VT = Op.getValueType();
5722 MVT ShVT = TLI.getShiftAmountTy();
5723 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005724 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5725 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
5726 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
5727 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5728 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5729 DAG.getNode(ISD::AND, VT,
5730 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5731 }
5732 return Op;
5733 }
5734 case ISD::CTLZ: {
5735 // for now, we do this:
5736 // x = x | (x >> 1);
5737 // x = x | (x >> 2);
5738 // ...
5739 // x = x | (x >>16);
5740 // x = x | (x >>32); // for 64-bit input
5741 // return popcount(~x);
5742 //
5743 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005744 MVT VT = Op.getValueType();
5745 MVT ShVT = TLI.getShiftAmountTy();
5746 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005747 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5748 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5749 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5750 }
5751 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5752 return DAG.getNode(ISD::CTPOP, VT, Op);
5753 }
5754 case ISD::CTTZ: {
5755 // for now, we use: { return popcount(~x & (x - 1)); }
5756 // unless the target has ctlz but not ctpop, in which case we use:
5757 // { return 32 - nlz(~x & (x-1)); }
5758 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005759 MVT VT = Op.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005760 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
5761 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
5762 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5763 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5764 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5765 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5766 TLI.isOperationLegal(ISD::CTLZ, VT))
5767 return DAG.getNode(ISD::SUB, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005768 DAG.getConstant(VT.getSizeInBits(), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005769 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5770 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5771 }
5772 }
5773}
Chris Lattnere34b3962005-01-19 04:19:40 +00005774
Chris Lattner3e928bb2005-01-07 07:47:09 +00005775/// ExpandOp - Expand the specified SDOperand into its two component pieces
5776/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5777/// LegalizeNodes map is filled in for any results that are not expanded, the
5778/// ExpandedNodes map is filled in for any results that are expanded, and the
5779/// Lo/Hi values are returned.
5780void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00005781 MVT VT = Op.getValueType();
5782 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005783 SDNode *Node = Op.Val;
5784 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00005785 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00005786 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00005787
Chris Lattner6fdcb252005-09-02 20:32:45 +00005788 // See if we already expanded it.
Roman Levenstein9cac5252008-04-16 16:15:27 +00005789 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00005790 = ExpandedNodes.find(Op);
5791 if (I != ExpandedNodes.end()) {
5792 Lo = I->second.first;
5793 Hi = I->second.second;
5794 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005795 }
5796
Chris Lattner3e928bb2005-01-07 07:47:09 +00005797 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005798 case ISD::CopyFromReg:
5799 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005800 case ISD::FP_ROUND_INREG:
5801 if (VT == MVT::ppcf128 &&
5802 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5803 TargetLowering::Custom) {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005804 SDOperand SrcLo, SrcHi, Src;
5805 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5806 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
5807 SDOperand Result = TLI.LowerOperation(
5808 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005809 assert(Result.Val->getOpcode() == ISD::BUILD_PAIR);
5810 Lo = Result.Val->getOperand(0);
5811 Hi = Result.Val->getOperand(1);
5812 break;
5813 }
5814 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00005815 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005816#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005817 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005818#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00005819 assert(0 && "Do not know how to expand this operator!");
5820 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00005821 case ISD::EXTRACT_ELEMENT:
5822 ExpandOp(Node->getOperand(0), Lo, Hi);
5823 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
5824 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00005825 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00005826 case ISD::EXTRACT_VECTOR_ELT:
5827 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5828 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5829 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5830 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005831 case ISD::UNDEF:
5832 Lo = DAG.getNode(ISD::UNDEF, NVT);
5833 Hi = DAG.getNode(ISD::UNDEF, NVT);
5834 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005835 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005836 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00005837 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5838 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5839 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005840 break;
5841 }
Evan Cheng00495212006-12-12 21:32:44 +00005842 case ISD::ConstantFP: {
5843 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00005844 if (CFP->getValueType(0) == MVT::ppcf128) {
5845 APInt api = CFP->getValueAPF().convertToAPInt();
5846 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5847 MVT::f64);
5848 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5849 MVT::f64);
5850 break;
5851 }
Evan Cheng279101e2006-12-12 22:19:28 +00005852 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005853 if (getTypeAction(Lo.getValueType()) == Expand)
5854 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005855 break;
5856 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005857 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005858 // Return the operands.
5859 Lo = Node->getOperand(0);
5860 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005861 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005862
5863 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00005864 if (Node->getNumValues() == 1) {
5865 ExpandOp(Op.getOperand(0), Lo, Hi);
5866 break;
5867 }
Chris Lattner27a6c732007-11-24 07:07:01 +00005868 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
5869 assert(Op.ResNo == 0 && Node->getNumValues() == 2 &&
5870 Op.getValue(1).getValueType() == MVT::Other &&
5871 "unhandled MERGE_VALUES");
5872 ExpandOp(Op.getOperand(0), Lo, Hi);
5873 // Remember that we legalized the chain.
5874 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5875 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005876
5877 case ISD::SIGN_EXTEND_INREG:
5878 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005879 // sext_inreg the low part if needed.
5880 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5881
5882 // The high part gets the sign extension from the lo-part. This handles
5883 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005884 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005885 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00005886 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005887 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005888
Nate Begemand88fc032006-01-14 03:14:10 +00005889 case ISD::BSWAP: {
5890 ExpandOp(Node->getOperand(0), Lo, Hi);
5891 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
5892 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5893 Lo = TempLo;
5894 break;
5895 }
5896
Chris Lattneredb1add2005-05-11 04:51:16 +00005897 case ISD::CTPOP:
5898 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005899 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5900 DAG.getNode(ISD::CTPOP, NVT, Lo),
5901 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005902 Hi = DAG.getConstant(0, NVT);
5903 break;
5904
Chris Lattner39a8f332005-05-12 19:05:01 +00005905 case ISD::CTLZ: {
5906 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005907 ExpandOp(Node->getOperand(0), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005908 SDOperand BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Chris Lattner39a8f332005-05-12 19:05:01 +00005909 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Scott Michel5b8f82e2008-03-10 15:42:14 +00005910 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005911 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005912 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
5913 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5914
5915 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5916 Hi = DAG.getConstant(0, NVT);
5917 break;
5918 }
5919
5920 case ISD::CTTZ: {
5921 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005922 ExpandOp(Node->getOperand(0), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005923 SDOperand BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Chris Lattner39a8f332005-05-12 19:05:01 +00005924 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Scott Michel5b8f82e2008-03-10 15:42:14 +00005925 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005926 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005927 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
5928 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5929
5930 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5931 Hi = DAG.getConstant(0, NVT);
5932 break;
5933 }
Chris Lattneredb1add2005-05-11 04:51:16 +00005934
Nate Begemanacc398c2006-01-25 18:21:52 +00005935 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005936 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5937 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00005938 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5939 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5940
5941 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005942 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00005943 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00005944 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00005945 std::swap(Lo, Hi);
5946 break;
5947 }
5948
Chris Lattner3e928bb2005-01-07 07:47:09 +00005949 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00005950 LoadSDNode *LD = cast<LoadSDNode>(Node);
5951 SDOperand Ch = LD->getChain(); // Legalize the chain.
5952 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
5953 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005954 int SVOffset = LD->getSrcValueOffset();
5955 unsigned Alignment = LD->getAlignment();
5956 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005957
Evan Cheng466685d2006-10-09 20:57:25 +00005958 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005959 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5960 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00005961 if (VT == MVT::f32 || VT == MVT::f64) {
5962 // f32->i32 or f64->i64 one to one expansion.
5963 // Remember that we legalized the chain.
5964 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00005965 // Recursively expand the new load.
5966 if (getTypeAction(NVT) == Expand)
5967 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005968 break;
5969 }
Chris Lattnerec39a452005-01-19 18:02:17 +00005970
Evan Cheng466685d2006-10-09 20:57:25 +00005971 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005972 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Evan Cheng466685d2006-10-09 20:57:25 +00005973 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00005974 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00005975 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00005976 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005977 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5978 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00005979
Evan Cheng466685d2006-10-09 20:57:25 +00005980 // Build a factor node to remember that this load is independent of the
5981 // other one.
5982 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5983 Hi.getValue(1));
5984
5985 // Remember that we legalized the chain.
5986 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00005987 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00005988 std::swap(Lo, Hi);
5989 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005990 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00005991
Dale Johannesenb6210fc2007-10-19 20:29:00 +00005992 if ((VT == MVT::f64 && EVT == MVT::f32) ||
5993 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00005994 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
5995 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005996 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00005997 // Remember that we legalized the chain.
5998 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
5999 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
6000 break;
6001 }
Evan Cheng466685d2006-10-09 20:57:25 +00006002
6003 if (EVT == NVT)
6004 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006005 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006006 else
6007 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006008 SVOffset, EVT, isVolatile,
6009 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006010
6011 // Remember that we legalized the chain.
6012 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
6013
6014 if (ExtType == ISD::SEXTLOAD) {
6015 // The high part is obtained by SRA'ing all but one of the bits of the
6016 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006017 unsigned LoSize = Lo.getValueType().getSizeInBits();
Evan Cheng466685d2006-10-09 20:57:25 +00006018 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6019 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6020 } else if (ExtType == ISD::ZEXTLOAD) {
6021 // The high part is just a zero.
6022 Hi = DAG.getConstant(0, NVT);
6023 } else /* if (ExtType == ISD::EXTLOAD) */ {
6024 // The high part is undefined.
6025 Hi = DAG.getNode(ISD::UNDEF, NVT);
6026 }
6027 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006028 break;
6029 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006030 case ISD::AND:
6031 case ISD::OR:
6032 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
6033 SDOperand LL, LH, RL, RH;
6034 ExpandOp(Node->getOperand(0), LL, LH);
6035 ExpandOp(Node->getOperand(1), RL, RH);
6036 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
6037 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
6038 break;
6039 }
6040 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00006041 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006042 ExpandOp(Node->getOperand(1), LL, LH);
6043 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006044 if (getTypeAction(NVT) == Expand)
6045 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00006046 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006047 if (VT != MVT::f32)
6048 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006049 break;
6050 }
Nate Begeman9373a812005-08-10 20:51:12 +00006051 case ISD::SELECT_CC: {
6052 SDOperand TL, TH, FL, FH;
6053 ExpandOp(Node->getOperand(2), TL, TH);
6054 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006055 if (getTypeAction(NVT) == Expand)
6056 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00006057 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6058 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006059 if (VT != MVT::f32)
6060 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6061 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006062 break;
6063 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006064 case ISD::ANY_EXTEND:
6065 // The low part is any extension of the input (which degenerates to a copy).
6066 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
6067 // The high part is undefined.
6068 Hi = DAG.getNode(ISD::UNDEF, NVT);
6069 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006070 case ISD::SIGN_EXTEND: {
6071 // The low part is just a sign extension of the input (which degenerates to
6072 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006073 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006074
Chris Lattner3e928bb2005-01-07 07:47:09 +00006075 // The high part is obtained by SRA'ing all but one of the bits of the lo
6076 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006077 unsigned LoSize = Lo.getValueType().getSizeInBits();
Chris Lattner8137c9e2006-01-28 05:07:51 +00006078 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6079 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006080 break;
6081 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006082 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006083 // The low part is just a zero extension of the input (which degenerates to
6084 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006085 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006086
Chris Lattner3e928bb2005-01-07 07:47:09 +00006087 // The high part is just a zero.
6088 Hi = DAG.getConstant(0, NVT);
6089 break;
Chris Lattner35481892005-12-23 00:16:34 +00006090
Chris Lattner4c948eb2007-02-13 23:55:16 +00006091 case ISD::TRUNCATE: {
6092 // The input value must be larger than this value. Expand *it*.
6093 SDOperand NewLo;
6094 ExpandOp(Node->getOperand(0), NewLo, Hi);
6095
6096 // The low part is now either the right size, or it is closer. If not the
6097 // right size, make an illegal truncate so we recursively expand it.
6098 if (NewLo.getValueType() != Node->getValueType(0))
6099 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6100 ExpandOp(NewLo, Lo, Hi);
6101 break;
6102 }
6103
Chris Lattner35481892005-12-23 00:16:34 +00006104 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006105 SDOperand Tmp;
6106 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6107 // If the target wants to, allow it to lower this itself.
6108 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6109 case Expand: assert(0 && "cannot expand FP!");
6110 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6111 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6112 }
6113 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6114 }
6115
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006116 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006117 if (VT == MVT::f32 || VT == MVT::f64) {
6118 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006119 if (getTypeAction(NVT) == Expand)
6120 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006121 break;
6122 }
6123
6124 // If source operand will be expanded to the same type as VT, i.e.
6125 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006126 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006127 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6128 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006129 break;
6130 }
6131
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006132 // Turn this into a load/store pair by default.
6133 if (Tmp.Val == 0)
Chris Lattner1401d152008-01-16 07:45:30 +00006134 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006135
Chris Lattner35481892005-12-23 00:16:34 +00006136 ExpandOp(Tmp, Lo, Hi);
6137 break;
6138 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006139
Chris Lattner27a6c732007-11-24 07:07:01 +00006140 case ISD::READCYCLECOUNTER: {
Chris Lattner308575b2005-11-20 22:56:56 +00006141 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6142 TargetLowering::Custom &&
6143 "Must custom expand ReadCycleCounter");
Chris Lattner27a6c732007-11-24 07:07:01 +00006144 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6145 assert(Tmp.Val && "Node must be custom expanded!");
6146 ExpandOp(Tmp.getValue(0), Lo, Hi);
Chris Lattner308575b2005-11-20 22:56:56 +00006147 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006148 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006149 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006150 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006151
Mon P Wang28873102008-06-25 08:15:39 +00006152 case ISD::ATOMIC_CMP_SWAP: {
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006153 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6154 assert(Tmp.Val && "Node must be custom expanded!");
6155 ExpandOp(Tmp.getValue(0), Lo, Hi);
6156 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
6157 LegalizeOp(Tmp.getValue(1)));
6158 break;
6159 }
6160
6161
6162
Chris Lattner4e6c7462005-01-08 19:27:05 +00006163 // These operators cannot be expanded directly, emit them as calls to
6164 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006165 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006166 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00006167 SDOperand Op;
6168 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6169 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006170 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6171 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006172 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006173
Chris Lattnerf20d1832005-07-30 01:40:57 +00006174 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6175
Chris Lattner80a3e942005-07-29 00:33:32 +00006176 // Now that the custom expander is done, expand the result, which is still
6177 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00006178 if (Op.Val) {
6179 ExpandOp(Op, Lo, Hi);
6180 break;
6181 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006182 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006183
Dale Johannesen161e8972007-10-05 20:04:43 +00006184 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmana2e94852008-03-10 23:03:31 +00006185 if (VT == MVT::i64) {
6186 if (Node->getOperand(0).getValueType() == MVT::f32)
6187 LC = RTLIB::FPTOSINT_F32_I64;
6188 else if (Node->getOperand(0).getValueType() == MVT::f64)
6189 LC = RTLIB::FPTOSINT_F64_I64;
6190 else if (Node->getOperand(0).getValueType() == MVT::f80)
6191 LC = RTLIB::FPTOSINT_F80_I64;
6192 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6193 LC = RTLIB::FPTOSINT_PPCF128_I64;
Duncan Sands460a14e2008-04-12 17:14:18 +00006194 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006195 } else if (VT == MVT::i128) {
6196 if (Node->getOperand(0).getValueType() == MVT::f32)
6197 LC = RTLIB::FPTOSINT_F32_I128;
6198 else if (Node->getOperand(0).getValueType() == MVT::f64)
6199 LC = RTLIB::FPTOSINT_F64_I128;
6200 else if (Node->getOperand(0).getValueType() == MVT::f80)
6201 LC = RTLIB::FPTOSINT_F80_I128;
6202 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6203 LC = RTLIB::FPTOSINT_PPCF128_I128;
Duncan Sands460a14e2008-04-12 17:14:18 +00006204 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006205 } else {
6206 assert(0 && "Unexpected uint-to-fp conversion!");
6207 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006208 break;
Evan Cheng56966222007-01-12 02:11:51 +00006209 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006210
Evan Cheng56966222007-01-12 02:11:51 +00006211 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006212 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006213 SDOperand Op;
6214 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6215 case Expand: assert(0 && "cannot expand FP!");
6216 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6217 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6218 }
6219
6220 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6221
6222 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00006223 if (Op.Val) {
6224 ExpandOp(Op, Lo, Hi);
6225 break;
6226 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006227 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006228
Evan Chengdaccea182007-10-05 01:09:32 +00006229 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmana2e94852008-03-10 23:03:31 +00006230 if (VT == MVT::i64) {
6231 if (Node->getOperand(0).getValueType() == MVT::f32)
6232 LC = RTLIB::FPTOUINT_F32_I64;
6233 else if (Node->getOperand(0).getValueType() == MVT::f64)
6234 LC = RTLIB::FPTOUINT_F64_I64;
6235 else if (Node->getOperand(0).getValueType() == MVT::f80)
6236 LC = RTLIB::FPTOUINT_F80_I64;
6237 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6238 LC = RTLIB::FPTOUINT_PPCF128_I64;
Duncan Sands460a14e2008-04-12 17:14:18 +00006239 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006240 } else if (VT == MVT::i128) {
6241 if (Node->getOperand(0).getValueType() == MVT::f32)
6242 LC = RTLIB::FPTOUINT_F32_I128;
6243 else if (Node->getOperand(0).getValueType() == MVT::f64)
6244 LC = RTLIB::FPTOUINT_F64_I128;
6245 else if (Node->getOperand(0).getValueType() == MVT::f80)
6246 LC = RTLIB::FPTOUINT_F80_I128;
6247 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6248 LC = RTLIB::FPTOUINT_PPCF128_I128;
Duncan Sands460a14e2008-04-12 17:14:18 +00006249 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006250 } else {
6251 assert(0 && "Unexpected uint-to-fp conversion!");
6252 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006253 break;
Evan Cheng56966222007-01-12 02:11:51 +00006254 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006255
Evan Cheng05a2d562006-01-09 18:31:59 +00006256 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006257 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006258 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006259 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006260 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006261 Op = TLI.LowerOperation(Op, DAG);
6262 if (Op.Val) {
6263 // Now that the custom expander is done, expand the result, which is
6264 // still VT.
6265 ExpandOp(Op, Lo, Hi);
6266 break;
6267 }
6268 }
6269
Chris Lattner79980b02006-09-13 03:50:39 +00006270 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6271 // this X << 1 as X+X.
6272 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman002e5d02008-03-13 22:13:53 +00006273 if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
Chris Lattner79980b02006-09-13 03:50:39 +00006274 TLI.isOperationLegal(ISD::ADDE, NVT)) {
6275 SDOperand LoOps[2], HiOps[3];
6276 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6277 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6278 LoOps[1] = LoOps[0];
6279 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6280
6281 HiOps[1] = HiOps[0];
6282 HiOps[2] = Lo.getValue(1);
6283 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6284 break;
6285 }
6286 }
6287
Chris Lattnere34b3962005-01-19 04:19:40 +00006288 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006289 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006290 break;
Chris Lattner47599822005-04-02 03:38:53 +00006291
6292 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006293 TargetLowering::LegalizeAction Action =
6294 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6295 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6296 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006297 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006298 break;
6299 }
6300
Chris Lattnere34b3962005-01-19 04:19:40 +00006301 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006302 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006303 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006304 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006305
Evan Cheng05a2d562006-01-09 18:31:59 +00006306 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006307 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006308 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006309 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006310 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006311 Op = TLI.LowerOperation(Op, DAG);
6312 if (Op.Val) {
6313 // Now that the custom expander is done, expand the result, which is
6314 // still VT.
6315 ExpandOp(Op, Lo, Hi);
6316 break;
6317 }
6318 }
6319
Chris Lattnere34b3962005-01-19 04:19:40 +00006320 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006321 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006322 break;
Chris Lattner47599822005-04-02 03:38:53 +00006323
6324 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006325 TargetLowering::LegalizeAction Action =
6326 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6327 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6328 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006329 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006330 break;
6331 }
6332
Chris Lattnere34b3962005-01-19 04:19:40 +00006333 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006334 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006335 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006336 }
6337
6338 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006339 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006340 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006341 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006342 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006343 Op = TLI.LowerOperation(Op, DAG);
6344 if (Op.Val) {
6345 // Now that the custom expander is done, expand the result, which is
6346 // still VT.
6347 ExpandOp(Op, Lo, Hi);
6348 break;
6349 }
6350 }
6351
Chris Lattnere34b3962005-01-19 04:19:40 +00006352 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006353 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006354 break;
Chris Lattner47599822005-04-02 03:38:53 +00006355
6356 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006357 TargetLowering::LegalizeAction Action =
6358 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6359 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6360 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006361 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006362 break;
6363 }
6364
Chris Lattnere34b3962005-01-19 04:19:40 +00006365 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006366 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006367 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006368 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006369
Misha Brukmanedf128a2005-04-21 22:36:52 +00006370 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006371 case ISD::SUB: {
6372 // If the target wants to custom expand this, let them.
6373 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6374 TargetLowering::Custom) {
Duncan Sands69bfb152008-06-22 09:42:16 +00006375 SDOperand Result = TLI.LowerOperation(Op, DAG);
6376 if (Result.Val) {
6377 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006378 break;
6379 }
6380 }
6381
6382 // Expand the subcomponents.
6383 SDOperand LHSL, LHSH, RHSL, RHSH;
6384 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6385 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00006386 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6387 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006388 LoOps[0] = LHSL;
6389 LoOps[1] = RHSL;
6390 HiOps[0] = LHSH;
6391 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006392 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00006393 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006394 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006395 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006396 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00006397 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006398 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006399 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006400 }
Chris Lattner84f67882005-01-20 18:52:28 +00006401 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006402 }
Chris Lattnerb429f732007-05-17 18:15:41 +00006403
6404 case ISD::ADDC:
6405 case ISD::SUBC: {
6406 // Expand the subcomponents.
6407 SDOperand LHSL, LHSH, RHSL, RHSH;
6408 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6409 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6410 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6411 SDOperand LoOps[2] = { LHSL, RHSL };
6412 SDOperand HiOps[3] = { LHSH, RHSH };
6413
6414 if (Node->getOpcode() == ISD::ADDC) {
6415 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6416 HiOps[2] = Lo.getValue(1);
6417 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6418 } else {
6419 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6420 HiOps[2] = Lo.getValue(1);
6421 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6422 }
6423 // Remember that we legalized the flag.
6424 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6425 break;
6426 }
6427 case ISD::ADDE:
6428 case ISD::SUBE: {
6429 // Expand the subcomponents.
6430 SDOperand LHSL, LHSH, RHSL, RHSH;
6431 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6432 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6433 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6434 SDOperand LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6435 SDOperand HiOps[3] = { LHSH, RHSH };
6436
6437 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6438 HiOps[2] = Lo.getValue(1);
6439 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6440
6441 // Remember that we legalized the flag.
6442 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6443 break;
6444 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006445 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006446 // If the target wants to custom expand this, let them.
6447 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00006448 SDOperand New = TLI.LowerOperation(Op, DAG);
6449 if (New.Val) {
6450 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006451 break;
6452 }
6453 }
6454
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006455 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6456 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00006457 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6458 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6459 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Nate Begemanc7c16572005-04-11 03:01:51 +00006460 SDOperand LL, LH, RL, RH;
6461 ExpandOp(Node->getOperand(0), LL, LH);
6462 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006463 unsigned OuterBitSize = Op.getValueSizeInBits();
6464 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00006465 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6466 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00006467 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6468 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6469 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00006470 // The inputs are both zero-extended.
6471 if (HasUMUL_LOHI) {
6472 // We can emit a umul_lohi.
6473 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6474 Hi = SDOperand(Lo.Val, 1);
6475 break;
6476 }
6477 if (HasMULHU) {
6478 // We can emit a mulhu+mul.
6479 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6480 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6481 break;
6482 }
Dan Gohman525178c2007-10-08 18:33:35 +00006483 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006484 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00006485 // The input values are both sign-extended.
6486 if (HasSMUL_LOHI) {
6487 // We can emit a smul_lohi.
6488 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6489 Hi = SDOperand(Lo.Val, 1);
6490 break;
6491 }
6492 if (HasMULHS) {
6493 // We can emit a mulhs+mul.
6494 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6495 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6496 break;
6497 }
6498 }
6499 if (HasUMUL_LOHI) {
6500 // Lo,Hi = umul LHS, RHS.
6501 SDOperand UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
6502 DAG.getVTList(NVT, NVT), LL, RL);
6503 Lo = UMulLOHI;
6504 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00006505 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6506 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6507 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6508 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00006509 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00006510 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00006511 if (HasMULHU) {
6512 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6513 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6514 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6515 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6516 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6517 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6518 break;
6519 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006520 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006521
Dan Gohman525178c2007-10-08 18:33:35 +00006522 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006523 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00006524 break;
6525 }
Evan Cheng56966222007-01-12 02:11:51 +00006526 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006527 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006528 break;
6529 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006530 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006531 break;
6532 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006533 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006534 break;
6535 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006536 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006537 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00006538
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006539 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00006540 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6541 RTLIB::ADD_F64,
6542 RTLIB::ADD_F80,
6543 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006544 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006545 break;
6546 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00006547 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6548 RTLIB::SUB_F64,
6549 RTLIB::SUB_F80,
6550 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006551 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006552 break;
6553 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00006554 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6555 RTLIB::MUL_F64,
6556 RTLIB::MUL_F80,
6557 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006558 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006559 break;
6560 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006561 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6562 RTLIB::DIV_F64,
6563 RTLIB::DIV_F80,
6564 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006565 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006566 break;
6567 case ISD::FP_EXTEND:
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006568 if (VT == MVT::ppcf128) {
6569 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6570 Node->getOperand(0).getValueType()==MVT::f64);
6571 const uint64_t zero = 0;
6572 if (Node->getOperand(0).getValueType()==MVT::f32)
6573 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6574 else
6575 Hi = Node->getOperand(0);
6576 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6577 break;
6578 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006579 Lo = ExpandLibCall(RTLIB::FPEXT_F32_F64, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006580 break;
6581 case ISD::FP_ROUND:
Duncan Sands460a14e2008-04-12 17:14:18 +00006582 Lo = ExpandLibCall(RTLIB::FPROUND_F64_F32, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006583 break;
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006584 case ISD::FPOWI:
Duncan Sands460a14e2008-04-12 17:14:18 +00006585 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::POWI_F32,
6586 RTLIB::POWI_F64,
6587 RTLIB::POWI_F80,
6588 RTLIB::POWI_PPCF128),
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006589 Node, false, Hi);
6590 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006591 case ISD::FSQRT:
6592 case ISD::FSIN:
6593 case ISD::FCOS: {
Evan Cheng56966222007-01-12 02:11:51 +00006594 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006595 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00006596 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00006597 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6598 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006599 break;
6600 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00006601 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6602 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006603 break;
6604 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00006605 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6606 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006607 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006608 default: assert(0 && "Unreachable!");
6609 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006610 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00006611 break;
6612 }
Evan Cheng966bf242006-12-16 00:52:40 +00006613 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006614 if (VT == MVT::ppcf128) {
6615 SDOperand Tmp;
6616 ExpandOp(Node->getOperand(0), Lo, Tmp);
6617 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6618 // lo = hi==fabs(hi) ? lo : -lo;
6619 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6620 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6621 DAG.getCondCode(ISD::SETEQ));
6622 break;
6623 }
Evan Cheng966bf242006-12-16 00:52:40 +00006624 SDOperand Mask = (VT == MVT::f64)
6625 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6626 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6627 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6628 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6629 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6630 if (getTypeAction(NVT) == Expand)
6631 ExpandOp(Lo, Lo, Hi);
6632 break;
6633 }
6634 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006635 if (VT == MVT::ppcf128) {
6636 ExpandOp(Node->getOperand(0), Lo, Hi);
6637 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6638 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6639 break;
6640 }
Evan Cheng966bf242006-12-16 00:52:40 +00006641 SDOperand Mask = (VT == MVT::f64)
6642 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6643 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6644 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6645 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6646 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6647 if (getTypeAction(NVT) == Expand)
6648 ExpandOp(Lo, Lo, Hi);
6649 break;
6650 }
Evan Cheng912095b2007-01-04 21:56:39 +00006651 case ISD::FCOPYSIGN: {
6652 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6653 if (getTypeAction(NVT) == Expand)
6654 ExpandOp(Lo, Lo, Hi);
6655 break;
6656 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006657 case ISD::SINT_TO_FP:
6658 case ISD::UINT_TO_FP: {
6659 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006660 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00006661
6662 // Promote the operand if needed. Do this before checking for
6663 // ppcf128 so conversions of i16 and i8 work.
6664 if (getTypeAction(SrcVT) == Promote) {
6665 SDOperand Tmp = PromoteOp(Node->getOperand(0));
6666 Tmp = isSigned
6667 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6668 DAG.getValueType(SrcVT))
6669 : DAG.getZeroExtendInReg(Tmp, SrcVT);
6670 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
6671 SrcVT = Node->getOperand(0).getValueType();
6672 }
6673
Dan Gohmana2e94852008-03-10 23:03:31 +00006674 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006675 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006676 if (isSigned) {
6677 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6678 Node->getOperand(0)));
6679 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6680 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006681 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006682 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6683 Node->getOperand(0)));
6684 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6685 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00006686 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006687 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6688 DAG.getConstant(0, MVT::i32),
6689 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6690 DAG.getConstantFP(
6691 APFloat(APInt(128, 2, TwoE32)),
6692 MVT::ppcf128)),
6693 Hi,
6694 DAG.getCondCode(ISD::SETLT)),
6695 Lo, Hi);
6696 }
6697 break;
6698 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00006699 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6700 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006701 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen6e63e092007-10-12 17:52:03 +00006702 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6703 Lo, Hi);
6704 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6705 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6706 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6707 DAG.getConstant(0, MVT::i64),
6708 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6709 DAG.getConstantFP(
6710 APFloat(APInt(128, 2, TwoE64)),
6711 MVT::ppcf128)),
6712 Hi,
6713 DAG.getCondCode(ISD::SETLT)),
6714 Lo, Hi);
6715 break;
6716 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006717
Dan Gohmana2e94852008-03-10 23:03:31 +00006718 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6719 Node->getOperand(0));
Evan Cheng110cf482008-04-01 01:50:16 +00006720 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00006721 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00006722 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00006723 break;
6724 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00006725 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006726
Chris Lattner83397362005-12-21 18:02:52 +00006727 // Make sure the resultant values have been legalized themselves, unless this
6728 // is a type that requires multi-step expansion.
6729 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6730 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00006731 if (Hi.Val)
6732 // Don't legalize the high part if it is expanded to a single node.
6733 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00006734 }
Evan Cheng05a2d562006-01-09 18:31:59 +00006735
6736 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00006737 bool isNew = ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi)));
Evan Cheng05a2d562006-01-09 18:31:59 +00006738 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006739}
6740
Dan Gohman7f321562007-06-25 16:23:39 +00006741/// SplitVectorOp - Given an operand of vector type, break it down into
6742/// two smaller values, still of vector type.
Chris Lattnerc7029802006-03-18 01:44:44 +00006743void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
6744 SDOperand &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006745 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006746 SDNode *Node = Op.Val;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006747 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00006748 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00006749
Duncan Sands83ec4b62008-06-06 12:08:01 +00006750 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00006751
6752 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6753 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6754
Duncan Sands83ec4b62008-06-06 12:08:01 +00006755 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
6756 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006757
Chris Lattnerc7029802006-03-18 01:44:44 +00006758 // See if we already split it.
6759 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
6760 = SplitNodes.find(Op);
6761 if (I != SplitNodes.end()) {
6762 Lo = I->second.first;
6763 Hi = I->second.second;
6764 return;
6765 }
6766
6767 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006768 default:
6769#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006770 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006771#endif
6772 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00006773 case ISD::UNDEF:
6774 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6775 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6776 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006777 case ISD::BUILD_PAIR:
6778 Lo = Node->getOperand(0);
6779 Hi = Node->getOperand(1);
6780 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00006781 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00006782 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
6783 SplitVectorOp(Node->getOperand(0), Lo, Hi);
6784 unsigned Index = Idx->getValue();
6785 SDOperand ScalarOp = Node->getOperand(1);
6786 if (Index < NewNumElts_Lo)
6787 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
6788 DAG.getIntPtrConstant(Index));
6789 else
6790 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6791 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
6792 break;
6793 }
6794 SDOperand Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
6795 Node->getOperand(1),
6796 Node->getOperand(2));
6797 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00006798 break;
6799 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00006800 case ISD::VECTOR_SHUFFLE: {
6801 // Build the low part.
6802 SDOperand Mask = Node->getOperand(2);
6803 SmallVector<SDOperand, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006804 MVT PtrVT = TLI.getPointerTy();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006805
6806 // Insert all of the elements from the input that are needed. We use
6807 // buildvector of extractelement here because the input vectors will have
6808 // to be legalized, so this makes the code simpler.
6809 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Nate Begeman5922f562008-03-14 00:53:31 +00006810 SDOperand IdxNode = Mask.getOperand(i);
6811 if (IdxNode.getOpcode() == ISD::UNDEF) {
6812 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6813 continue;
6814 }
6815 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006816 SDOperand InVec = Node->getOperand(0);
6817 if (Idx >= NumElements) {
6818 InVec = Node->getOperand(1);
6819 Idx -= NumElements;
6820 }
6821 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6822 DAG.getConstant(Idx, PtrVT)));
6823 }
6824 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6825 Ops.clear();
6826
6827 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Nate Begeman5922f562008-03-14 00:53:31 +00006828 SDOperand IdxNode = Mask.getOperand(i);
6829 if (IdxNode.getOpcode() == ISD::UNDEF) {
6830 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6831 continue;
6832 }
6833 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006834 SDOperand InVec = Node->getOperand(0);
6835 if (Idx >= NumElements) {
6836 InVec = Node->getOperand(1);
6837 Idx -= NumElements;
6838 }
6839 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6840 DAG.getConstant(Idx, PtrVT)));
6841 }
6842 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6843 break;
6844 }
Dan Gohman7f321562007-06-25 16:23:39 +00006845 case ISD::BUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006846 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00006847 Node->op_begin()+NewNumElts_Lo);
6848 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006849
Nate Begeman5db1afb2007-11-15 21:15:26 +00006850 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00006851 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006852 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006853 break;
6854 }
Dan Gohman7f321562007-06-25 16:23:39 +00006855 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00006856 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00006857 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6858 if (NewNumSubvectors == 1) {
6859 Lo = Node->getOperand(0);
6860 Hi = Node->getOperand(1);
6861 } else {
6862 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
6863 Node->op_begin()+NewNumSubvectors);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006864 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00006865
Dan Gohman7f321562007-06-25 16:23:39 +00006866 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumSubvectors,
6867 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006868 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00006869 }
Dan Gohman65956352007-06-13 15:12:02 +00006870 break;
6871 }
Dan Gohmanc6230962007-10-17 14:48:28 +00006872 case ISD::SELECT: {
6873 SDOperand Cond = Node->getOperand(0);
6874
6875 SDOperand LL, LH, RL, RH;
6876 SplitVectorOp(Node->getOperand(1), LL, LH);
6877 SplitVectorOp(Node->getOperand(2), RL, RH);
6878
Duncan Sands83ec4b62008-06-06 12:08:01 +00006879 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00006880 // Handle a vector merge.
6881 SDOperand CL, CH;
6882 SplitVectorOp(Cond, CL, CH);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006883 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6884 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006885 } else {
6886 // Handle a simple select with vector operands.
Nate Begeman5db1afb2007-11-15 21:15:26 +00006887 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6888 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006889 }
6890 break;
6891 }
Chris Lattner80c1a562008-06-30 02:43:01 +00006892 case ISD::SELECT_CC: {
6893 SDOperand CondLHS = Node->getOperand(0);
6894 SDOperand CondRHS = Node->getOperand(1);
6895 SDOperand CondCode = Node->getOperand(4);
6896
6897 SDOperand LL, LH, RL, RH;
6898 SplitVectorOp(Node->getOperand(2), LL, LH);
6899 SplitVectorOp(Node->getOperand(3), RL, RH);
6900
6901 // Handle a simple select with vector operands.
6902 Lo = DAG.getNode(ISD::SELECT_CC, NewVT_Lo, CondLHS, CondRHS,
6903 LL, RL, CondCode);
6904 Hi = DAG.getNode(ISD::SELECT_CC, NewVT_Hi, CondLHS, CondRHS,
6905 LH, RH, CondCode);
6906 break;
6907 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00006908 case ISD::VSETCC: {
6909 SDOperand LL, LH, RL, RH;
6910 SplitVectorOp(Node->getOperand(0), LL, LH);
6911 SplitVectorOp(Node->getOperand(1), RL, RH);
6912 Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2));
6913 Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2));
6914 break;
6915 }
Dan Gohman7f321562007-06-25 16:23:39 +00006916 case ISD::ADD:
6917 case ISD::SUB:
6918 case ISD::MUL:
6919 case ISD::FADD:
6920 case ISD::FSUB:
6921 case ISD::FMUL:
6922 case ISD::SDIV:
6923 case ISD::UDIV:
6924 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00006925 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006926 case ISD::AND:
6927 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00006928 case ISD::XOR:
6929 case ISD::UREM:
6930 case ISD::SREM:
6931 case ISD::FREM: {
Chris Lattnerc7029802006-03-18 01:44:44 +00006932 SDOperand LL, LH, RL, RH;
6933 SplitVectorOp(Node->getOperand(0), LL, LH);
6934 SplitVectorOp(Node->getOperand(1), RL, RH);
6935
Nate Begeman5db1afb2007-11-15 21:15:26 +00006936 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
6937 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00006938 break;
6939 }
Dan Gohman82669522007-10-11 23:57:53 +00006940 case ISD::FPOWI: {
6941 SDOperand L, H;
6942 SplitVectorOp(Node->getOperand(0), L, H);
6943
Nate Begeman5db1afb2007-11-15 21:15:26 +00006944 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
6945 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00006946 break;
6947 }
6948 case ISD::CTTZ:
6949 case ISD::CTLZ:
6950 case ISD::CTPOP:
6951 case ISD::FNEG:
6952 case ISD::FABS:
6953 case ISD::FSQRT:
6954 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00006955 case ISD::FCOS:
6956 case ISD::FP_TO_SINT:
6957 case ISD::FP_TO_UINT:
6958 case ISD::SINT_TO_FP:
6959 case ISD::UINT_TO_FP: {
Dan Gohman82669522007-10-11 23:57:53 +00006960 SDOperand L, H;
6961 SplitVectorOp(Node->getOperand(0), L, H);
6962
Nate Begeman5db1afb2007-11-15 21:15:26 +00006963 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
6964 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00006965 break;
6966 }
Dan Gohman7f321562007-06-25 16:23:39 +00006967 case ISD::LOAD: {
6968 LoadSDNode *LD = cast<LoadSDNode>(Node);
6969 SDOperand Ch = LD->getChain();
6970 SDOperand Ptr = LD->getBasePtr();
6971 const Value *SV = LD->getSrcValue();
6972 int SVOffset = LD->getSrcValueOffset();
6973 unsigned Alignment = LD->getAlignment();
6974 bool isVolatile = LD->isVolatile();
6975
Nate Begeman5db1afb2007-11-15 21:15:26 +00006976 Lo = DAG.getLoad(NewVT_Lo, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006977 unsigned IncrementSize = NewNumElts_Lo * NewEltVT.getSizeInBits()/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00006978 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006979 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006980 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006981 Alignment = MinAlign(Alignment, IncrementSize);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006982 Hi = DAG.getLoad(NewVT_Hi, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00006983
6984 // Build a factor node to remember that this load is independent of the
6985 // other one.
6986 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
6987 Hi.getValue(1));
6988
6989 // Remember that we legalized the chain.
6990 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00006991 break;
6992 }
Dan Gohman7f321562007-06-25 16:23:39 +00006993 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00006994 // We know the result is a vector. The input may be either a vector or a
6995 // scalar value.
Dan Gohman10a7aa62007-06-29 00:09:08 +00006996 SDOperand InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006997 if (!InOp.getValueType().isVector() ||
6998 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00006999 // The input is a scalar or single-element vector.
7000 // Lower to a store/load so that it can be split.
7001 // FIXME: this could be improved probably.
Chris Lattner85dd3be2007-10-15 17:48:57 +00007002 SDOperand Ptr = DAG.CreateStackTemporary(InOp.getValueType());
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00007003 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(Ptr.Val);
Chris Lattner7692eb42006-03-23 21:16:34 +00007004
Evan Cheng786225a2006-10-05 23:01:46 +00007005 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00007006 InOp, Ptr,
Dan Gohman3069b872008-02-07 18:41:25 +00007007 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00007008 FI->getIndex());
7009 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohman3069b872008-02-07 18:41:25 +00007010 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00007011 FI->getIndex());
Chris Lattner7692eb42006-03-23 21:16:34 +00007012 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007013 // Split the vector and convert each of the pieces now.
7014 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007015 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
7016 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007017 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007018 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007019 }
7020
7021 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00007022 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007023 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007024 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007025}
7026
7027
Dan Gohman89b20c02007-06-27 14:06:22 +00007028/// ScalarizeVectorOp - Given an operand of single-element vector type
7029/// (e.g. v1f32), convert it into the equivalent operation that returns a
7030/// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +00007031SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007032 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Chris Lattnerc7029802006-03-18 01:44:44 +00007033 SDNode *Node = Op.Val;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007034 MVT NewVT = Op.getValueType().getVectorElementType();
7035 assert(Op.getValueType().getVectorNumElements() == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00007036
Dan Gohman7f321562007-06-25 16:23:39 +00007037 // See if we already scalarized it.
7038 std::map<SDOperand, SDOperand>::iterator I = ScalarizedNodes.find(Op);
7039 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00007040
7041 SDOperand Result;
7042 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00007043 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007044#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007045 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007046#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007047 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7048 case ISD::ADD:
7049 case ISD::FADD:
7050 case ISD::SUB:
7051 case ISD::FSUB:
7052 case ISD::MUL:
7053 case ISD::FMUL:
7054 case ISD::SDIV:
7055 case ISD::UDIV:
7056 case ISD::FDIV:
7057 case ISD::SREM:
7058 case ISD::UREM:
7059 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007060 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007061 case ISD::AND:
7062 case ISD::OR:
7063 case ISD::XOR:
7064 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00007065 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007066 ScalarizeVectorOp(Node->getOperand(0)),
7067 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007068 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007069 case ISD::FNEG:
7070 case ISD::FABS:
7071 case ISD::FSQRT:
7072 case ISD::FSIN:
7073 case ISD::FCOS:
7074 Result = DAG.getNode(Node->getOpcode(),
7075 NewVT,
7076 ScalarizeVectorOp(Node->getOperand(0)));
7077 break;
Dan Gohman9e04c822007-10-12 14:13:46 +00007078 case ISD::FPOWI:
7079 Result = DAG.getNode(Node->getOpcode(),
7080 NewVT,
7081 ScalarizeVectorOp(Node->getOperand(0)),
7082 Node->getOperand(1));
7083 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007084 case ISD::LOAD: {
7085 LoadSDNode *LD = cast<LoadSDNode>(Node);
7086 SDOperand Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7087 SDOperand Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00007088
Dan Gohman7f321562007-06-25 16:23:39 +00007089 const Value *SV = LD->getSrcValue();
7090 int SVOffset = LD->getSrcValueOffset();
7091 Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset,
7092 LD->isVolatile(), LD->getAlignment());
7093
Chris Lattnerc7029802006-03-18 01:44:44 +00007094 // Remember that we legalized the chain.
7095 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7096 break;
7097 }
Dan Gohman7f321562007-06-25 16:23:39 +00007098 case ISD::BUILD_VECTOR:
7099 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007100 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007101 case ISD::INSERT_VECTOR_ELT:
7102 // Returning the inserted scalar element.
7103 Result = Node->getOperand(1);
7104 break;
7105 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007106 assert(Node->getOperand(0).getValueType() == NewVT &&
7107 "Concat of non-legal vectors not yet supported!");
7108 Result = Node->getOperand(0);
7109 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007110 case ISD::VECTOR_SHUFFLE: {
7111 // Figure out if the scalar is the LHS or RHS and return it.
7112 SDOperand EltNum = Node->getOperand(2).getOperand(0);
7113 if (cast<ConstantSDNode>(EltNum)->getValue())
7114 Result = ScalarizeVectorOp(Node->getOperand(1));
7115 else
7116 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007117 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007118 }
7119 case ISD::EXTRACT_SUBVECTOR:
7120 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00007121 assert(Result.getValueType() == NewVT);
7122 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007123 case ISD::BIT_CONVERT: {
7124 SDOperand Op0 = Op.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007125 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007126 Op0 = ScalarizeVectorOp(Op0);
7127 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007128 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007129 }
Dan Gohman7f321562007-06-25 16:23:39 +00007130 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007131 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007132 ScalarizeVectorOp(Op.getOperand(1)),
7133 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007134 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007135 case ISD::SELECT_CC:
7136 Result = DAG.getNode(ISD::SELECT_CC, NewVT, Node->getOperand(0),
7137 Node->getOperand(1),
7138 ScalarizeVectorOp(Op.getOperand(2)),
7139 ScalarizeVectorOp(Op.getOperand(3)),
7140 Node->getOperand(4));
7141 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007142 case ISD::VSETCC: {
7143 SDOperand Op0 = ScalarizeVectorOp(Op.getOperand(0));
7144 SDOperand Op1 = ScalarizeVectorOp(Op.getOperand(1));
7145 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0), Op0, Op1,
7146 Op.getOperand(2));
7147 Result = DAG.getNode(ISD::SELECT, NewVT, Result,
7148 DAG.getConstant(-1ULL, NewVT),
7149 DAG.getConstant(0ULL, NewVT));
7150 break;
7151 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007152 }
7153
7154 if (TLI.isTypeLegal(NewVT))
7155 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007156 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7157 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007158 return Result;
7159}
7160
Chris Lattner3e928bb2005-01-07 07:47:09 +00007161
7162// SelectionDAG::Legalize - This is the entry point for the file.
7163//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00007164void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00007165 if (ViewLegalizeDAGs) viewGraph();
7166
Chris Lattner3e928bb2005-01-07 07:47:09 +00007167 /// run - This is the main entry point to this class.
7168 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00007169 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00007170}
7171