blob: f964fb6be51c1297acb0c5ebdba396163b653eb2 [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.
131 LegalizeAction getTypeAction(MVT::ValueType 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 ///
137 bool isTypeLegal(MVT::ValueType VT) const {
138 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.
199 SDNode *isShuffleLegal(MVT::ValueType VT, SDOperand Mask) const;
200
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);
208 SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy,
209 SDOperand Source);
Chris Lattnercad063f2005-07-16 00:19:57 +0000210
Chris Lattner1401d152008-01-16 07:45:30 +0000211 SDOperand EmitStackConvert(SDOperand SrcOp, MVT::ValueType SlotVT,
212 MVT::ValueType DestVT);
Chris Lattnerce872152006-03-19 06:31:19 +0000213 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner4352cc92006-04-04 17:23:26 +0000214 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Jim Laskey6269ed12005-08-17 00:39:29 +0000215 SDOperand ExpandLegalINT_TO_FP(bool isSigned,
216 SDOperand LegalOp,
217 MVT::ValueType DestVT);
Nate Begeman5a8441e2005-07-16 02:02:34 +0000218 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
219 bool isSigned);
Chris Lattner1618beb2005-07-29 00:11:56 +0000220 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
221 bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000222
Chris Lattner456a93a2006-01-28 07:39:30 +0000223 SDOperand ExpandBSWAP(SDOperand Op);
224 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattnere34b3962005-01-19 04:19:40 +0000225 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
226 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000227 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
228 SDOperand &Lo, SDOperand &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000229
Dan Gohman7f321562007-06-25 16:23:39 +0000230 SDOperand ExpandEXTRACT_SUBVECTOR(SDOperand Op);
Chris Lattner4aab2f42006-04-02 05:06:04 +0000231 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000232};
233}
234
Chris Lattner4352cc92006-04-04 17:23:26 +0000235/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
236/// specified mask and type. Targets can specify exactly which masks they
237/// support and the code generator is tasked with not creating illegal masks.
238///
239/// Note that this will also return true for shuffles that are promoted to a
240/// different type.
241SDNode *SelectionDAGLegalize::isShuffleLegal(MVT::ValueType VT,
242 SDOperand Mask) const {
243 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
244 default: return 0;
245 case TargetLowering::Legal:
246 case TargetLowering::Custom:
247 break;
248 case TargetLowering::Promote: {
249 // If this is promoted to a different type, convert the shuffle mask and
250 // ask if it is legal in the promoted type!
251 MVT::ValueType NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
252
253 // If we changed # elements, change the shuffle mask.
254 unsigned NumEltsGrowth =
255 MVT::getVectorNumElements(NVT) / MVT::getVectorNumElements(VT);
256 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
257 if (NumEltsGrowth > 1) {
258 // Renumber the elements.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000259 SmallVector<SDOperand, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000260 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
261 SDOperand InOp = Mask.getOperand(i);
262 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
263 if (InOp.getOpcode() == ISD::UNDEF)
264 Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
265 else {
266 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
267 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32));
268 }
269 }
270 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000271 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000272 }
273 VT = NVT;
274 break;
275 }
276 }
277 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
278}
279
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000280SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
281 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
282 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000283 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000284 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000285}
286
Chris Lattnere10e6f72007-06-18 21:28:10 +0000287/// ComputeTopDownOrdering - Compute a top-down ordering of the dag, where Order
288/// contains all of a nodes operands before it contains the node.
289static void ComputeTopDownOrdering(SelectionDAG &DAG,
290 SmallVector<SDNode*, 64> &Order) {
291
292 DenseMap<SDNode*, unsigned> Visited;
293 std::vector<SDNode*> Worklist;
294 Worklist.reserve(128);
Chris Lattner32fca002005-10-06 01:20:27 +0000295
Chris Lattnere10e6f72007-06-18 21:28:10 +0000296 // Compute ordering from all of the leaves in the graphs, those (like the
297 // entry node) that have no operands.
298 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
299 E = DAG.allnodes_end(); I != E; ++I) {
300 if (I->getNumOperands() == 0) {
301 Visited[I] = 0 - 1U;
302 Worklist.push_back(I);
303 }
Chris Lattner32fca002005-10-06 01:20:27 +0000304 }
305
Chris Lattnere10e6f72007-06-18 21:28:10 +0000306 while (!Worklist.empty()) {
307 SDNode *N = Worklist.back();
308 Worklist.pop_back();
309
310 if (++Visited[N] != N->getNumOperands())
311 continue; // Haven't visited all operands yet
312
313 Order.push_back(N);
314
315 // Now that we have N in, add anything that uses it if all of their operands
316 // are now done.
317 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
318 UI != E; ++UI)
Roman Levensteindc1adac2008-04-07 10:06:32 +0000319 Worklist.push_back(UI->getUser());
Chris Lattnere10e6f72007-06-18 21:28:10 +0000320 }
321
322 assert(Order.size() == Visited.size() &&
323 Order.size() ==
324 (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) &&
325 "Error: DAG is cyclic!");
Chris Lattner32fca002005-10-06 01:20:27 +0000326}
327
Chris Lattner1618beb2005-07-29 00:11:56 +0000328
Chris Lattner3e928bb2005-01-07 07:47:09 +0000329void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000330 LastCALLSEQ_END = DAG.getEntryNode();
331 IsLegalizingCall = false;
332
Chris Lattnerab510a72005-10-02 17:49:46 +0000333 // The legalize process is inherently a bottom-up recursive process (users
334 // legalize their uses before themselves). Given infinite stack space, we
335 // could just start legalizing on the root and traverse the whole graph. In
336 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000337 // blocks. To avoid this problem, compute an ordering of the nodes where each
338 // node is only legalized after all of its operands are legalized.
Chris Lattner0ed44172007-02-04 01:20:02 +0000339 SmallVector<SDNode*, 64> Order;
Chris Lattnere10e6f72007-06-18 21:28:10 +0000340 ComputeTopDownOrdering(DAG, Order);
Chris Lattnerab510a72005-10-02 17:49:46 +0000341
Chris Lattnerc7029802006-03-18 01:44:44 +0000342 for (unsigned i = 0, e = Order.size(); i != e; ++i)
343 HandleOp(SDOperand(Order[i], 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000344
345 // Finally, it's possible the root changed. Get the new root.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000346 SDOperand OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000347 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
348 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000349
350 ExpandedNodes.clear();
351 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000352 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000353 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000354 ScalarizedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000355
356 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000357 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000358}
359
Chris Lattner6831a812006-02-13 09:18:02 +0000360
361/// FindCallEndFromCallStart - Given a chained node that is part of a call
362/// sequence, find the CALLSEQ_END node that terminates the call sequence.
363static SDNode *FindCallEndFromCallStart(SDNode *Node) {
364 if (Node->getOpcode() == ISD::CALLSEQ_END)
365 return Node;
366 if (Node->use_empty())
367 return 0; // No CallSeqEnd
368
369 // The chain is usually at the end.
370 SDOperand TheChain(Node, Node->getNumValues()-1);
371 if (TheChain.getValueType() != MVT::Other) {
372 // Sometimes it's at the beginning.
373 TheChain = SDOperand(Node, 0);
374 if (TheChain.getValueType() != MVT::Other) {
375 // Otherwise, hunt for it.
376 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
377 if (Node->getValueType(i) == MVT::Other) {
378 TheChain = SDOperand(Node, i);
379 break;
380 }
381
382 // Otherwise, we walked into a node without a chain.
383 if (TheChain.getValueType() != MVT::Other)
384 return 0;
385 }
386 }
387
388 for (SDNode::use_iterator UI = Node->use_begin(),
389 E = Node->use_end(); UI != E; ++UI) {
390
391 // Make sure to only follow users of our token chain.
Roman Levensteindc1adac2008-04-07 10:06:32 +0000392 SDNode *User = UI->getUser();
Chris Lattner6831a812006-02-13 09:18:02 +0000393 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
394 if (User->getOperand(i) == TheChain)
395 if (SDNode *Result = FindCallEndFromCallStart(User))
396 return Result;
397 }
398 return 0;
399}
400
401/// FindCallStartFromCallEnd - Given a chained node that is part of a call
402/// sequence, find the CALLSEQ_START node that initiates the call sequence.
403static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
404 assert(Node && "Didn't find callseq_start for a call??");
405 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
406
407 assert(Node->getOperand(0).getValueType() == MVT::Other &&
408 "Node doesn't have a token chain argument!");
409 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
410}
411
412/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
413/// see if any uses can reach Dest. If no dest operands can get to dest,
414/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000415///
416/// Keep track of the nodes we fine that actually do lead to Dest in
417/// NodesLeadingTo. This avoids retraversing them exponential number of times.
418///
419bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000420 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000421 if (N == Dest) return true; // N certainly leads to Dest :)
422
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000423 // If we've already processed this node and it does lead to Dest, there is no
424 // need to reprocess it.
425 if (NodesLeadingTo.count(N)) return true;
426
Chris Lattner6831a812006-02-13 09:18:02 +0000427 // If the first result of this node has been already legalized, then it cannot
428 // reach N.
429 switch (getTypeAction(N->getValueType(0))) {
430 case Legal:
431 if (LegalizedNodes.count(SDOperand(N, 0))) return false;
432 break;
433 case Promote:
434 if (PromotedNodes.count(SDOperand(N, 0))) return false;
435 break;
436 case Expand:
437 if (ExpandedNodes.count(SDOperand(N, 0))) return false;
438 break;
439 }
440
441 // Okay, this node has not already been legalized. Check and legalize all
442 // operands. If none lead to Dest, then we can legalize this node.
443 bool OperandsLeadToDest = false;
444 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
445 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000446 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000447
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000448 if (OperandsLeadToDest) {
449 NodesLeadingTo.insert(N);
450 return true;
451 }
Chris Lattner6831a812006-02-13 09:18:02 +0000452
453 // Okay, this node looks safe, legalize it and return false.
Chris Lattner80edfb32006-04-17 22:10:08 +0000454 HandleOp(SDOperand(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000455 return false;
456}
457
Dan Gohman7f321562007-06-25 16:23:39 +0000458/// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000459/// appropriate for its type.
460void SelectionDAGLegalize::HandleOp(SDOperand Op) {
Dan Gohman7f321562007-06-25 16:23:39 +0000461 MVT::ValueType VT = Op.getValueType();
462 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000463 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000464 case Legal: (void)LegalizeOp(Op); break;
465 case Promote: (void)PromoteOp(Op); break;
Chris Lattnerc7029802006-03-18 01:44:44 +0000466 case Expand:
Dan Gohman7f321562007-06-25 16:23:39 +0000467 if (!MVT::isVector(VT)) {
468 // If this is an illegal scalar, expand it into its two component
469 // pieces.
Chris Lattnerc7029802006-03-18 01:44:44 +0000470 SDOperand X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000471 if (Op.getOpcode() == ISD::TargetConstant)
472 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000473 ExpandOp(Op, X, Y);
Dan Gohman7f321562007-06-25 16:23:39 +0000474 } else if (MVT::getVectorNumElements(VT) == 1) {
475 // If this is an illegal single element vector, convert it to a
476 // scalar operation.
477 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000478 } else {
Dan Gohman7f321562007-06-25 16:23:39 +0000479 // Otherwise, this is an illegal multiple element vector.
480 // Split it in half and legalize both parts.
481 SDOperand X, Y;
482 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000483 }
484 break;
485 }
486}
Chris Lattner6831a812006-02-13 09:18:02 +0000487
Evan Cheng9f877882006-12-13 20:57:08 +0000488/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
489/// a load from the constant pool.
490static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng279101e2006-12-12 22:19:28 +0000491 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000492 bool Extend = false;
493
494 // If a FP immediate is precise when represented as a float and if the
495 // target can do an extending load from float to double, we put it into
496 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000497 // double. This shrinks FP constants and canonicalizes them for targets where
498 // an FP extending load is the same cost as a normal load (such as on the x87
499 // fp stack or PPC FP unit).
Evan Cheng00495212006-12-12 21:32:44 +0000500 MVT::ValueType VT = CFP->getValueType(0);
Chris Lattner02a260a2008-04-20 00:41:09 +0000501 ConstantFP *LLVMC = ConstantFP::get(CFP->getValueAPF());
Evan Cheng9f877882006-12-13 20:57:08 +0000502 if (!UseCP) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000503 if (VT!=MVT::f64 && VT!=MVT::f32)
504 assert(0 && "Invalid type expansion");
Dan Gohman6cf9b8a2008-03-11 00:11:06 +0000505 return DAG.getConstant(LLVMC->getValueAPF().convertToAPInt(),
Evan Chengef120572008-03-04 08:05:30 +0000506 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000507 }
508
Evan Chengef120572008-03-04 08:05:30 +0000509 MVT::ValueType OrigVT = VT;
510 MVT::ValueType SVT = VT;
511 while (SVT != MVT::f32) {
512 SVT = (unsigned)SVT - 1;
513 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
514 // Only do this if the target has a native EXTLOAD instruction from
515 // smaller type.
Evan Cheng6fd599f2008-03-05 01:30:59 +0000516 TLI.isLoadXLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000517 TLI.ShouldShrinkFPConstant(OrigVT)) {
Evan Chengef120572008-03-04 08:05:30 +0000518 const Type *SType = MVT::getTypeForValueType(SVT);
519 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
520 VT = SVT;
521 Extend = true;
522 }
Evan Cheng00495212006-12-12 21:32:44 +0000523 }
524
525 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Chengef120572008-03-04 08:05:30 +0000526 if (Extend)
527 return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000528 CPIdx, PseudoSourceValue::getConstantPool(),
Evan Chengef120572008-03-04 08:05:30 +0000529 0, VT);
530 return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx,
531 PseudoSourceValue::getConstantPool(), 0);
Evan Cheng00495212006-12-12 21:32:44 +0000532}
533
Chris Lattner6831a812006-02-13 09:18:02 +0000534
Evan Cheng912095b2007-01-04 21:56:39 +0000535/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
536/// operations.
537static
538SDOperand ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT::ValueType NVT,
539 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng068c5f42007-01-05 21:31:51 +0000540 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng912095b2007-01-04 21:56:39 +0000541 MVT::ValueType SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000542 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
543 "fcopysign expansion only supported for f32 and f64");
Evan Cheng912095b2007-01-04 21:56:39 +0000544 MVT::ValueType SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000545
Evan Cheng912095b2007-01-04 21:56:39 +0000546 // First get the sign bit of second operand.
Evan Cheng068c5f42007-01-05 21:31:51 +0000547 SDOperand Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000548 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
549 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000550 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000551 SDOperand SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000552 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000553 // Shift right or sign-extend it if the two operands have different types.
554 int SizeDiff = MVT::getSizeInBits(SrcNVT) - MVT::getSizeInBits(NVT);
555 if (SizeDiff > 0) {
556 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
557 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
558 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
559 } else if (SizeDiff < 0)
560 SignBit = DAG.getNode(ISD::SIGN_EXTEND, NVT, SignBit);
Evan Cheng068c5f42007-01-05 21:31:51 +0000561
562 // Clear the sign bit of first operand.
563 SDOperand Mask2 = (VT == MVT::f64)
564 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
565 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
566 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Evan Cheng912095b2007-01-04 21:56:39 +0000567 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000568 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
569
570 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000571 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
572 return Result;
573}
574
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000575/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
576static
577SDOperand ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
578 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000579 SDOperand Chain = ST->getChain();
580 SDOperand Ptr = ST->getBasePtr();
581 SDOperand Val = ST->getValue();
582 MVT::ValueType VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000583 int Alignment = ST->getAlignment();
584 int SVOffset = ST->getSrcValueOffset();
Dale Johannesen8155d642008-02-27 22:36:00 +0000585 if (MVT::isFloatingPoint(ST->getMemoryVT()) ||
586 MVT::isVector(ST->getMemoryVT())) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000587 // Expand to a bitconvert of the value to the integer type of the
588 // same size, then a (misaligned) int store.
589 MVT::ValueType intVT;
Dale Johannesen3c8b59c2008-03-01 03:40:57 +0000590 if (MVT::is128BitVector(VT) || VT == MVT::ppcf128 || VT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000591 intVT = MVT::i128;
Dale Johannesen3c8b59c2008-03-01 03:40:57 +0000592 else if (MVT::is64BitVector(VT) || VT==MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000593 intVT = MVT::i64;
594 else if (VT==MVT::f32)
595 intVT = MVT::i32;
596 else
Dale Johannesencd9f1742008-02-28 18:36:51 +0000597 assert(0 && "Unaligned store of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000598
599 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
600 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
601 SVOffset, ST->isVolatile(), Alignment);
602 }
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000603 assert(MVT::isInteger(ST->getMemoryVT()) &&
Dale Johannesen8155d642008-02-27 22:36:00 +0000604 !MVT::isVector(ST->getMemoryVT()) &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000605 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000606 // Get the half-size VT
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000607 MVT::ValueType NewStoredVT = ST->getMemoryVT() - 1;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000608 int NumBits = MVT::getSizeInBits(NewStoredVT);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000609 int IncrementSize = NumBits / 8;
610
611 // Divide the stored value in two parts.
612 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
613 SDOperand Lo = Val;
614 SDOperand Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
615
616 // Store the two parts
617 SDOperand Store1, Store2;
618 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
619 ST->getSrcValue(), SVOffset, NewStoredVT,
620 ST->isVolatile(), Alignment);
621 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
622 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000623 Alignment = MinAlign(Alignment, IncrementSize);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000624 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
625 ST->getSrcValue(), SVOffset + IncrementSize,
626 NewStoredVT, ST->isVolatile(), Alignment);
627
628 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
629}
630
631/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
632static
633SDOperand ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
634 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000635 int SVOffset = LD->getSrcValueOffset();
636 SDOperand Chain = LD->getChain();
637 SDOperand Ptr = LD->getBasePtr();
638 MVT::ValueType VT = LD->getValueType(0);
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000639 MVT::ValueType LoadedVT = LD->getMemoryVT();
Dale Johannesen8155d642008-02-27 22:36:00 +0000640 if (MVT::isFloatingPoint(VT) || MVT::isVector(VT)) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000641 // Expand to a (misaligned) integer load of the same size,
Dale Johannesen8155d642008-02-27 22:36:00 +0000642 // then bitconvert to floating point or vector.
Dale Johannesen907f28c2007-09-08 19:29:23 +0000643 MVT::ValueType intVT;
Dale Johannesen3c8b59c2008-03-01 03:40:57 +0000644 if (MVT::is128BitVector(LoadedVT) ||
645 LoadedVT == MVT::ppcf128 || LoadedVT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000646 intVT = MVT::i128;
Dale Johannesen3c8b59c2008-03-01 03:40:57 +0000647 else if (MVT::is64BitVector(LoadedVT) || LoadedVT == MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000648 intVT = MVT::i64;
Chris Lattnere400af82007-11-19 21:38:03 +0000649 else if (LoadedVT == MVT::f32)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000650 intVT = MVT::i32;
651 else
Dale Johannesen8155d642008-02-27 22:36:00 +0000652 assert(0 && "Unaligned load of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000653
654 SDOperand newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
655 SVOffset, LD->isVolatile(),
656 LD->getAlignment());
657 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
Dale Johannesen8155d642008-02-27 22:36:00 +0000658 if (MVT::isFloatingPoint(VT) && LoadedVT != VT)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000659 Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
660
661 SDOperand Ops[] = { Result, Chain };
662 return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
663 Ops, 2);
664 }
Dale Johannesen8155d642008-02-27 22:36:00 +0000665 assert(MVT::isInteger(LoadedVT) && !MVT::isVector(LoadedVT) &&
Chris Lattnere400af82007-11-19 21:38:03 +0000666 "Unaligned load of unsupported type.");
667
Dale Johannesen8155d642008-02-27 22:36:00 +0000668 // Compute the new VT that is half the size of the old one. This is an
669 // integer MVT.
Chris Lattnere400af82007-11-19 21:38:03 +0000670 unsigned NumBits = MVT::getSizeInBits(LoadedVT);
671 MVT::ValueType NewLoadedVT;
Dale Johannesen8155d642008-02-27 22:36:00 +0000672 NewLoadedVT = MVT::getIntegerType(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000673 NumBits >>= 1;
674
675 unsigned Alignment = LD->getAlignment();
676 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000677 ISD::LoadExtType HiExtType = LD->getExtensionType();
678
679 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
680 if (HiExtType == ISD::NON_EXTLOAD)
681 HiExtType = ISD::ZEXTLOAD;
682
683 // Load the value in two parts
684 SDOperand Lo, Hi;
685 if (TLI.isLittleEndian()) {
686 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
687 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
688 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
689 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
690 Hi = DAG.getExtLoad(HiExtType, 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 } else {
694 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
695 NewLoadedVT,LD->isVolatile(), Alignment);
696 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
697 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
698 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
699 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000700 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000701 }
702
703 // aggregate the two parts
704 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
705 SDOperand Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
706 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
707
708 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
709 Hi.getValue(1));
710
711 SDOperand Ops[] = { Result, TF };
712 return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other), Ops, 2);
713}
Evan Cheng912095b2007-01-04 21:56:39 +0000714
Dan Gohman82669522007-10-11 23:57:53 +0000715/// UnrollVectorOp - We know that the given vector has a legal type, however
716/// the operation it performs is not legal and is an operation that we have
717/// no way of lowering. "Unroll" the vector, splitting out the scalars and
718/// operating on each element individually.
719SDOperand SelectionDAGLegalize::UnrollVectorOp(SDOperand Op) {
720 MVT::ValueType VT = Op.getValueType();
721 assert(isTypeLegal(VT) &&
722 "Caller should expand or promote operands that are not legal!");
723 assert(Op.Val->getNumValues() == 1 &&
724 "Can't unroll a vector with multiple results!");
725 unsigned NE = MVT::getVectorNumElements(VT);
726 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
727
728 SmallVector<SDOperand, 8> Scalars;
729 SmallVector<SDOperand, 4> Operands(Op.getNumOperands());
730 for (unsigned i = 0; i != NE; ++i) {
731 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
732 SDOperand Operand = Op.getOperand(j);
733 MVT::ValueType OperandVT = Operand.getValueType();
734 if (MVT::isVector(OperandVT)) {
735 // A vector operand; extract a single element.
736 MVT::ValueType OperandEltVT = MVT::getVectorElementType(OperandVT);
737 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
738 OperandEltVT,
739 Operand,
740 DAG.getConstant(i, MVT::i32));
741 } else {
742 // A scalar operand; just use it as is.
743 Operands[j] = Operand;
744 }
745 }
746 Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
747 &Operands[0], Operands.size()));
748 }
749
750 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
751}
752
Duncan Sands007f9842008-01-10 10:28:30 +0000753/// GetFPLibCall - Return the right libcall for the given floating point type.
754static RTLIB::Libcall GetFPLibCall(MVT::ValueType VT,
755 RTLIB::Libcall Call_F32,
756 RTLIB::Libcall Call_F64,
757 RTLIB::Libcall Call_F80,
758 RTLIB::Libcall Call_PPCF128) {
759 return
760 VT == MVT::f32 ? Call_F32 :
761 VT == MVT::f64 ? Call_F64 :
762 VT == MVT::f80 ? Call_F80 :
763 VT == MVT::ppcf128 ? Call_PPCF128 :
764 RTLIB::UNKNOWN_LIBCALL;
765}
766
Nate Begeman68679912008-04-25 18:07:40 +0000767/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
768/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
769/// is necessary to spill the vector being inserted into to memory, perform
770/// the insert there, and then read the result back.
771SDOperand SelectionDAGLegalize::
772PerformInsertVectorEltInMemory(SDOperand Vec, SDOperand Val, SDOperand Idx) {
773 SDOperand Tmp1 = Vec;
774 SDOperand Tmp2 = Val;
775 SDOperand Tmp3 = Idx;
776
777 // If the target doesn't support this, we have to spill the input vector
778 // to a temporary stack slot, update the element, then reload it. This is
779 // badness. We could also load the value into a vector register (either
780 // with a "move to register" or "extload into register" instruction, then
781 // permute it into place, if the idx is a constant and if the idx is
782 // supported by the target.
783 MVT::ValueType VT = Tmp1.getValueType();
784 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
785 MVT::ValueType IdxVT = Tmp3.getValueType();
786 MVT::ValueType PtrVT = TLI.getPointerTy();
787 SDOperand StackPtr = DAG.CreateStackTemporary(VT);
788
789 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr.Val);
790 int SPFI = StackPtrFI->getIndex();
791
792 // Store the vector.
793 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr,
794 PseudoSourceValue::getFixedStack(),
795 SPFI);
796
797 // Truncate or zero extend offset to target pointer type.
798 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
799 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
800 // Add the offset to the index.
801 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
802 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
803 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
804 // Store the scalar value.
805 Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2,
806 PseudoSourceValue::getFixedStack(), SPFI, EltVT);
807 // Load the updated vector.
808 return DAG.getLoad(VT, Ch, StackPtr, PseudoSourceValue::getFixedStack(),SPFI);
809}
810
Dan Gohmana3466152007-07-13 20:14:11 +0000811/// LegalizeOp - We know that the specified value has a legal type, and
812/// that its operands are legal. Now ensure that the operation itself
813/// is legal, recursively ensuring that the operands' operations remain
814/// legal.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000815SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000816 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
817 return Op;
818
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000819 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000820 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000821 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000822
Chris Lattner3e928bb2005-01-07 07:47:09 +0000823 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000824 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000825 if (Node->getNumValues() > 1) {
826 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000827 if (getTypeAction(Node->getValueType(i)) != Legal) {
828 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000829 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000830 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000831 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000832 }
833 }
834
Chris Lattner45982da2005-05-12 16:53:42 +0000835 // Note that LegalizeOp may be reentered even from single-use nodes, which
836 // means that we always must cache transformed nodes.
Roman Levenstein9cac5252008-04-16 16:15:27 +0000837 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000838 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000839
Nate Begeman9373a812005-08-10 20:51:12 +0000840 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000841 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000842 bool isCustom = false;
843
Chris Lattner3e928bb2005-01-07 07:47:09 +0000844 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000845 case ISD::FrameIndex:
846 case ISD::EntryToken:
847 case ISD::Register:
848 case ISD::BasicBlock:
849 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000850 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000851 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000852 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000853 case ISD::TargetConstantPool:
854 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000855 case ISD::TargetGlobalTLSAddress:
Chris Lattner948c1b12006-01-28 08:31:04 +0000856 case ISD::TargetExternalSymbol:
857 case ISD::VALUETYPE:
858 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +0000859 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +0000860 case ISD::STRING:
861 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +0000862 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +0000863 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +0000864 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +0000865 "This must be legal!");
866 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000867 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000868 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
869 // If this is a target node, legalize it by legalizing the operands then
870 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000871 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000872 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000873 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000874
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000875 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000876
877 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
878 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
879 return Result.getValue(Op.ResNo);
880 }
881 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000882#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +0000883 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000884#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000885 assert(0 && "Do not know how to legalize this operator!");
886 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +0000887 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000888 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000889 case ISD::GlobalTLSAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000890 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000891 case ISD::ConstantPool:
892 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000893 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
894 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000895 case TargetLowering::Custom:
896 Tmp1 = TLI.LowerOperation(Op, DAG);
897 if (Tmp1.Val) Result = Tmp1;
898 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000899 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000900 break;
901 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000902 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000903 case ISD::FRAMEADDR:
904 case ISD::RETURNADDR:
905 // The only option for these nodes is to custom lower them. If the target
906 // does not custom lower them, then return zero.
907 Tmp1 = TLI.LowerOperation(Op, DAG);
908 if (Tmp1.Val)
909 Result = Tmp1;
910 else
911 Result = DAG.getConstant(0, TLI.getPointerTy());
912 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000913 case ISD::FRAME_TO_ARGS_OFFSET: {
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000914 MVT::ValueType VT = Node->getValueType(0);
915 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
916 default: assert(0 && "This action is not supported yet!");
917 case TargetLowering::Custom:
918 Result = TLI.LowerOperation(Op, DAG);
919 if (Result.Val) break;
920 // Fall Thru
921 case TargetLowering::Legal:
922 Result = DAG.getConstant(0, VT);
923 break;
924 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000925 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000926 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000927 case ISD::EXCEPTIONADDR: {
928 Tmp1 = LegalizeOp(Node->getOperand(0));
929 MVT::ValueType VT = Node->getValueType(0);
930 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
931 default: assert(0 && "This action is not supported yet!");
932 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000933 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000934 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000935 }
936 break;
937 case TargetLowering::Custom:
938 Result = TLI.LowerOperation(Op, DAG);
939 if (Result.Val) break;
940 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000941 case TargetLowering::Legal: {
942 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp1 };
943 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
Duncan Sandsb027fa02007-12-31 18:35:50 +0000944 Ops, 2);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000945 break;
946 }
947 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000948 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000949 if (Result.Val->getNumValues() == 1) break;
950
951 assert(Result.Val->getNumValues() == 2 &&
952 "Cannot return more than two values!");
953
954 // Since we produced two values, make sure to remember that we
955 // legalized both of them.
956 Tmp1 = LegalizeOp(Result);
957 Tmp2 = LegalizeOp(Result.getValue(1));
958 AddLegalizedOperand(Op.getValue(0), Tmp1);
959 AddLegalizedOperand(Op.getValue(1), Tmp2);
960 return Op.ResNo ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +0000961 case ISD::EHSELECTION: {
962 Tmp1 = LegalizeOp(Node->getOperand(0));
963 Tmp2 = LegalizeOp(Node->getOperand(1));
964 MVT::ValueType VT = Node->getValueType(0);
965 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
966 default: assert(0 && "This action is not supported yet!");
967 case TargetLowering::Expand: {
968 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000969 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +0000970 }
971 break;
972 case TargetLowering::Custom:
973 Result = TLI.LowerOperation(Op, DAG);
974 if (Result.Val) break;
975 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000976 case TargetLowering::Legal: {
977 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp2 };
978 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
Duncan Sandsb027fa02007-12-31 18:35:50 +0000979 Ops, 2);
Jim Laskey8782d482007-02-28 20:43:58 +0000980 break;
981 }
982 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000983 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000984 if (Result.Val->getNumValues() == 1) break;
985
986 assert(Result.Val->getNumValues() == 2 &&
987 "Cannot return more than two values!");
988
989 // Since we produced two values, make sure to remember that we
990 // legalized both of them.
991 Tmp1 = LegalizeOp(Result);
992 Tmp2 = LegalizeOp(Result.getValue(1));
993 AddLegalizedOperand(Op.getValue(0), Tmp1);
994 AddLegalizedOperand(Op.getValue(1), Tmp2);
995 return Op.ResNo ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000996 case ISD::EH_RETURN: {
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000997 MVT::ValueType VT = Node->getValueType(0);
998 // The only "good" option for this node is to custom lower it.
999 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1000 default: assert(0 && "This action is not supported at all!");
1001 case TargetLowering::Custom:
1002 Result = TLI.LowerOperation(Op, DAG);
1003 if (Result.Val) break;
1004 // Fall Thru
1005 case TargetLowering::Legal:
1006 // Target does not know, how to lower this, lower to noop
1007 Result = LegalizeOp(Node->getOperand(0));
1008 break;
1009 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001010 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001011 break;
Chris Lattner08951a32005-09-02 01:15:01 +00001012 case ISD::AssertSext:
1013 case ISD::AssertZext:
1014 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001015 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +00001016 break;
Chris Lattner308575b2005-11-20 22:56:56 +00001017 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001018 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +00001019 Result = Node->getOperand(Op.ResNo);
1020 break;
Chris Lattner69a52152005-01-14 22:38:01 +00001021 case ISD::CopyFromReg:
1022 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001023 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001024 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001025 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +00001026 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001027 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001028 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001029 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001030 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1031 } else {
1032 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1033 }
Chris Lattner7310fb12005-12-18 15:27:43 +00001034 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1035 }
Chris Lattner13c184d2005-01-28 06:27:38 +00001036 // Since CopyFromReg produces two values, make sure to remember that we
1037 // legalized both of them.
1038 AddLegalizedOperand(Op.getValue(0), Result);
1039 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1040 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001041 case ISD::UNDEF: {
1042 MVT::ValueType VT = Op.getValueType();
1043 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +00001044 default: assert(0 && "This action is not supported yet!");
1045 case TargetLowering::Expand:
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001046 if (MVT::isInteger(VT))
1047 Result = DAG.getConstant(0, VT);
1048 else if (MVT::isFloatingPoint(VT))
Dale Johannesenf41db212007-09-26 17:26:49 +00001049 Result = DAG.getConstantFP(APFloat(APInt(MVT::getSizeInBits(VT), 0)),
1050 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001051 else
1052 assert(0 && "Unknown value type!");
1053 break;
Nate Begemanea19cd52005-04-02 00:41:14 +00001054 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001055 break;
1056 }
1057 break;
1058 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001059
Chris Lattner48b61a72006-03-28 00:40:33 +00001060 case ISD::INTRINSIC_W_CHAIN:
1061 case ISD::INTRINSIC_WO_CHAIN:
1062 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001063 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001064 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1065 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001066 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +00001067
1068 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +00001069 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001070 TargetLowering::Custom) {
1071 Tmp3 = TLI.LowerOperation(Result, DAG);
1072 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001073 }
1074
1075 if (Result.Val->getNumValues() == 1) break;
1076
1077 // Must have return value and chain result.
1078 assert(Result.Val->getNumValues() == 2 &&
1079 "Cannot return more than two values!");
1080
1081 // Since loads produce two values, make sure to remember that we
1082 // legalized both of them.
1083 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1084 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1085 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001086 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001087
1088 case ISD::LOCATION:
1089 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
1090 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1091
1092 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
1093 case TargetLowering::Promote:
1094 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001095 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001096 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001097 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Jim Laskey1ee29252007-01-26 14:34:52 +00001098 bool useLABEL = TLI.isOperationLegal(ISD::LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001099
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001100 if (MMI && (useDEBUG_LOC || useLABEL)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001101 const std::string &FName =
1102 cast<StringSDNode>(Node->getOperand(3))->getValue();
1103 const std::string &DirName =
1104 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001105 unsigned SrcFile = MMI->RecordSource(DirName, FName);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001106
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001107 SmallVector<SDOperand, 8> Ops;
Jim Laskeye81aecb2005-12-21 20:51:37 +00001108 Ops.push_back(Tmp1); // chain
Jim Laskeyabf6d172006-01-05 01:25:28 +00001109 SDOperand LineOp = Node->getOperand(1);
1110 SDOperand ColOp = Node->getOperand(2);
1111
1112 if (useDEBUG_LOC) {
1113 Ops.push_back(LineOp); // line #
1114 Ops.push_back(ColOp); // col #
1115 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001116 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001117 } else {
Jim Laskeyd0e58e32006-02-15 19:34:44 +00001118 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
1119 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Evan Chenga647c922008-02-01 02:05:57 +00001120 unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001121 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Evan Chengbb81d972008-01-31 09:59:15 +00001122 Ops.push_back(DAG.getConstant(0, MVT::i32)); // a debug label
1123 Result = DAG.getNode(ISD::LABEL, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001124 }
Jim Laskeye81aecb2005-12-21 20:51:37 +00001125 } else {
1126 Result = Tmp1; // chain
1127 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001128 break;
Chris Lattnere7736732005-12-18 23:54:29 +00001129 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001130 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +00001131 if (Tmp1 != Node->getOperand(0) ||
1132 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001133 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +00001134 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +00001135 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
1136 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1137 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1138 } else {
1139 // Otherwise promote them.
1140 Ops.push_back(PromoteOp(Node->getOperand(1)));
1141 Ops.push_back(PromoteOp(Node->getOperand(2)));
1142 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001143 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1144 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001145 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001146 }
1147 break;
1148 }
1149 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001150
1151 case ISD::DECLARE:
1152 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1153 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1154 default: assert(0 && "This action is not supported yet!");
1155 case TargetLowering::Legal:
1156 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1157 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1158 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1159 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1160 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001161 case TargetLowering::Expand:
1162 Result = LegalizeOp(Node->getOperand(0));
1163 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001164 }
1165 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001166
1167 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001168 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001169 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001170 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +00001171 case TargetLowering::Legal:
1172 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1173 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1174 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1175 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001176 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001177 break;
1178 }
1179 break;
1180
Jim Laskey1ee29252007-01-26 14:34:52 +00001181 case ISD::LABEL:
Evan Chengbb81d972008-01-31 09:59:15 +00001182 assert(Node->getNumOperands() == 3 && "Invalid LABEL node!");
Jim Laskey1ee29252007-01-26 14:34:52 +00001183 switch (TLI.getOperationAction(ISD::LABEL, MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001184 default: assert(0 && "This action is not supported yet!");
1185 case TargetLowering::Legal:
1186 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1187 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Evan Chengbb81d972008-01-31 09:59:15 +00001188 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the "flavor" operand.
1189 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001190 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001191 case TargetLowering::Expand:
1192 Result = LegalizeOp(Node->getOperand(0));
1193 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001194 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001195 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001196
Evan Cheng27b7db52008-03-08 00:58:38 +00001197 case ISD::PREFETCH:
1198 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1199 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1200 default: assert(0 && "This action is not supported yet!");
1201 case TargetLowering::Legal:
1202 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1203 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1204 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1205 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1206 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1207 break;
1208 case TargetLowering::Expand:
1209 // It's a noop.
1210 Result = LegalizeOp(Node->getOperand(0));
1211 break;
1212 }
1213 break;
1214
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001215 case ISD::MEMBARRIER: {
1216 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001217 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1218 default: assert(0 && "This action is not supported yet!");
1219 case TargetLowering::Legal: {
1220 SDOperand Ops[6];
1221 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001222 for (int x = 1; x < 6; ++x) {
1223 Ops[x] = Node->getOperand(x);
1224 if (!isTypeLegal(Ops[x].getValueType()))
1225 Ops[x] = PromoteOp(Ops[x]);
1226 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001227 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1228 break;
1229 }
1230 case TargetLowering::Expand:
1231 //There is no libgcc call for this op
1232 Result = Node->getOperand(0); // Noop
1233 break;
1234 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001235 break;
1236 }
1237
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001238 case ISD::ATOMIC_LCS:
1239 case ISD::ATOMIC_LAS:
1240 case ISD::ATOMIC_SWAP: {
1241 assert(((Node->getNumOperands() == 4 && Node->getOpcode() == ISD::ATOMIC_LCS) ||
1242 (Node->getNumOperands() == 3 && Node->getOpcode() == ISD::ATOMIC_LAS) ||
1243 (Node->getNumOperands() == 3 && Node->getOpcode() == ISD::ATOMIC_SWAP)) &&
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001244 "Invalid Atomic node!");
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001245 int num = Node->getOpcode() == ISD::ATOMIC_LCS ? 4 : 3;
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001246 SDOperand Ops[4];
1247 for (int x = 0; x < num; ++x)
1248 Ops[x] = LegalizeOp(Node->getOperand(x));
1249 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num);
1250
1251 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001252 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001253 case TargetLowering::Custom:
1254 Result = TLI.LowerOperation(Result, DAG);
1255 break;
1256 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001257 break;
1258 }
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001259 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1260 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1261 return Result.getValue(Op.ResNo);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001262 }
1263
Scott Michelc1513d22007-08-08 23:23:31 +00001264 case ISD::Constant: {
1265 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1266 unsigned opAction =
1267 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1268
Chris Lattner3e928bb2005-01-07 07:47:09 +00001269 // We know we don't need to expand constants here, constants only have one
1270 // value and we check that it is fine above.
1271
Scott Michelc1513d22007-08-08 23:23:31 +00001272 if (opAction == TargetLowering::Custom) {
1273 Tmp1 = TLI.LowerOperation(Result, DAG);
1274 if (Tmp1.Val)
1275 Result = Tmp1;
1276 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001277 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001278 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001279 case ISD::ConstantFP: {
1280 // Spill FP immediates to the constant pool if the target cannot directly
1281 // codegen them. Targets often have some immediate values that can be
1282 // efficiently generated into an FP register without a load. We explicitly
1283 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001284 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1285
Chris Lattner3181a772006-01-29 06:26:56 +00001286 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1287 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001288 case TargetLowering::Legal:
1289 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001290 case TargetLowering::Custom:
1291 Tmp3 = TLI.LowerOperation(Result, DAG);
1292 if (Tmp3.Val) {
1293 Result = Tmp3;
1294 break;
1295 }
1296 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001297 case TargetLowering::Expand: {
1298 // Check to see if this FP immediate is already legal.
1299 bool isLegal = false;
1300 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1301 E = TLI.legal_fpimm_end(); I != E; ++I) {
1302 if (CFP->isExactlyValue(*I)) {
1303 isLegal = true;
1304 break;
1305 }
1306 }
1307 // If this is a legal constant, turn it into a TargetConstantFP node.
1308 if (isLegal)
1309 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001310 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001311 }
Nate Begemane1795842008-02-14 08:57:00 +00001312 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001313 break;
1314 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001315 case ISD::TokenFactor:
1316 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001317 Tmp1 = LegalizeOp(Node->getOperand(0));
1318 Tmp2 = LegalizeOp(Node->getOperand(1));
1319 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1320 } else if (Node->getNumOperands() == 3) {
1321 Tmp1 = LegalizeOp(Node->getOperand(0));
1322 Tmp2 = LegalizeOp(Node->getOperand(1));
1323 Tmp3 = LegalizeOp(Node->getOperand(2));
1324 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001325 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001326 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001327 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001328 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1329 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001330 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001331 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001332 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001333
1334 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001335 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001336 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001337 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1338 assert(Tmp3.Val && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001339 // A call within a calling sequence must be legalized to something
1340 // other than the normal CALLSEQ_END. Violating this gets Legalize
1341 // into an infinite loop.
1342 assert ((!IsLegalizingCall ||
1343 Node->getOpcode() != ISD::CALL ||
1344 Tmp3.Val->getOpcode() != ISD::CALLSEQ_END) &&
1345 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001346
1347 // The number of incoming and outgoing values should match; unless the final
1348 // outgoing value is a flag.
1349 assert((Tmp3.Val->getNumValues() == Result.Val->getNumValues() ||
1350 (Tmp3.Val->getNumValues() == Result.Val->getNumValues() + 1 &&
1351 Tmp3.Val->getValueType(Tmp3.Val->getNumValues() - 1) ==
1352 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001353 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001354
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001355 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001356 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +00001357 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001358 if (Tmp3.Val->getValueType(i) == MVT::Flag)
1359 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001360 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +00001361 if (Op.ResNo == i)
1362 Tmp2 = Tmp1;
1363 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
1364 }
1365 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001366 case ISD::EXTRACT_SUBREG: {
1367 Tmp1 = LegalizeOp(Node->getOperand(0));
1368 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1369 assert(idx && "Operand must be a constant");
1370 Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1371 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1372 }
1373 break;
1374 case ISD::INSERT_SUBREG: {
1375 Tmp1 = LegalizeOp(Node->getOperand(0));
1376 Tmp2 = LegalizeOp(Node->getOperand(1));
1377 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1378 assert(idx && "Operand must be a constant");
1379 Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1380 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1381 }
1382 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001383 case ISD::BUILD_VECTOR:
1384 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001385 default: assert(0 && "This action is not supported yet!");
1386 case TargetLowering::Custom:
1387 Tmp3 = TLI.LowerOperation(Result, DAG);
1388 if (Tmp3.Val) {
1389 Result = Tmp3;
1390 break;
1391 }
1392 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001393 case TargetLowering::Expand:
1394 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +00001395 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001396 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001397 break;
1398 case ISD::INSERT_VECTOR_ELT:
1399 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001400 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001401
1402 // The type of the value to insert may not be legal, even though the vector
1403 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1404 // here.
1405 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1406 default: assert(0 && "Cannot expand insert element operand");
1407 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1408 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1409 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001410 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1411
1412 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1413 Node->getValueType(0))) {
1414 default: assert(0 && "This action is not supported yet!");
1415 case TargetLowering::Legal:
1416 break;
1417 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001418 Tmp4 = TLI.LowerOperation(Result, DAG);
1419 if (Tmp4.Val) {
1420 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001421 break;
1422 }
1423 // FALLTHROUGH
1424 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001425 // If the insert index is a constant, codegen this as a scalar_to_vector,
1426 // then a shuffle that inserts it into the right position in the vector.
1427 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001428 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1429 // match the element type of the vector being created.
1430 if (Tmp2.getValueType() ==
1431 MVT::getVectorElementType(Op.getValueType())) {
1432 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
1433 Tmp1.getValueType(), Tmp2);
1434
1435 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
1436 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
1437 MVT::ValueType ShufMaskEltVT = MVT::getVectorElementType(ShufMaskVT);
1438
1439 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1440 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1441 // elt 0 of the RHS.
1442 SmallVector<SDOperand, 8> ShufOps;
1443 for (unsigned i = 0; i != NumElts; ++i) {
1444 if (i != InsertPos->getValue())
1445 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1446 else
1447 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1448 }
1449 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
1450 &ShufOps[0], ShufOps.size());
1451
1452 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1453 Tmp1, ScVec, ShufMask);
1454 Result = LegalizeOp(Result);
1455 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001456 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001457 }
Nate Begeman68679912008-04-25 18:07:40 +00001458 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001459 break;
1460 }
1461 }
1462 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001463 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001464 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1465 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1466 break;
1467 }
1468
Chris Lattnerce872152006-03-19 06:31:19 +00001469 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1470 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1471 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1472 Node->getValueType(0))) {
1473 default: assert(0 && "This action is not supported yet!");
1474 case TargetLowering::Legal:
1475 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001476 case TargetLowering::Custom:
1477 Tmp3 = TLI.LowerOperation(Result, DAG);
1478 if (Tmp3.Val) {
1479 Result = Tmp3;
1480 break;
1481 }
1482 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001483 case TargetLowering::Expand:
1484 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001485 break;
1486 }
Chris Lattnerce872152006-03-19 06:31:19 +00001487 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001488 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001489 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1490 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1491 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1492
1493 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001494 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1495 default: assert(0 && "Unknown operation action!");
1496 case TargetLowering::Legal:
1497 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1498 "vector shuffle should not be created if not legal!");
1499 break;
1500 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001501 Tmp3 = TLI.LowerOperation(Result, DAG);
1502 if (Tmp3.Val) {
1503 Result = Tmp3;
1504 break;
1505 }
1506 // FALLTHROUGH
1507 case TargetLowering::Expand: {
1508 MVT::ValueType VT = Node->getValueType(0);
Dan Gohman51eaa862007-06-14 22:58:02 +00001509 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001510 MVT::ValueType PtrVT = TLI.getPointerTy();
1511 SDOperand Mask = Node->getOperand(2);
1512 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001513 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001514 for (unsigned i = 0; i != NumElems; ++i) {
1515 SDOperand Arg = Mask.getOperand(i);
1516 if (Arg.getOpcode() == ISD::UNDEF) {
1517 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1518 } else {
1519 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1520 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1521 if (Idx < NumElems)
1522 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1523 DAG.getConstant(Idx, PtrVT)));
1524 else
1525 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1526 DAG.getConstant(Idx - NumElems, PtrVT)));
1527 }
1528 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001529 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001530 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001531 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001532 case TargetLowering::Promote: {
1533 // Change base type to a different vector type.
1534 MVT::ValueType OVT = Node->getValueType(0);
1535 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1536
1537 // Cast the two input vectors.
1538 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1539 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1540
1541 // Convert the shuffle mask to the right # elements.
1542 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1543 assert(Tmp3.Val && "Shuffle not legal?");
1544 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1545 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1546 break;
1547 }
Chris Lattner87100e02006-03-20 01:52:29 +00001548 }
1549 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001550
1551 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001552 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001553 Tmp2 = LegalizeOp(Node->getOperand(1));
1554 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001555 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001556 break;
1557
Dan Gohman7f321562007-06-25 16:23:39 +00001558 case ISD::EXTRACT_SUBVECTOR:
1559 Tmp1 = Node->getOperand(0);
1560 Tmp2 = LegalizeOp(Node->getOperand(1));
1561 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1562 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001563 break;
1564
Chris Lattner6831a812006-02-13 09:18:02 +00001565 case ISD::CALLSEQ_START: {
1566 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1567
1568 // Recursively Legalize all of the inputs of the call end that do not lead
1569 // to this call start. This ensures that any libcalls that need be inserted
1570 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001571 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001572 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001573 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1574 NodesLeadingTo);
1575 }
Chris Lattner6831a812006-02-13 09:18:02 +00001576
1577 // Now that we legalized all of the inputs (which may have inserted
1578 // libcalls) create the new CALLSEQ_START node.
1579 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1580
1581 // Merge in the last call, to ensure that this call start after the last
1582 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001583 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001584 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1585 Tmp1 = LegalizeOp(Tmp1);
1586 }
Chris Lattner6831a812006-02-13 09:18:02 +00001587
1588 // Do not try to legalize the target-specific arguments (#1+).
1589 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001590 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001591 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001592 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001593 }
1594
1595 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001596 AddLegalizedOperand(Op.getValue(0), Result);
1597 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1598 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1599
Chris Lattner6831a812006-02-13 09:18:02 +00001600 // Now that the callseq_start and all of the non-call nodes above this call
1601 // sequence have been legalized, legalize the call itself. During this
1602 // process, no libcalls can/will be inserted, guaranteeing that no calls
1603 // can overlap.
1604 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1605 SDOperand InCallSEQ = LastCALLSEQ_END;
1606 // Note that we are selecting this call!
1607 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1608 IsLegalizingCall = true;
1609
1610 // Legalize the call, starting from the CALLSEQ_END.
1611 LegalizeOp(LastCALLSEQ_END);
1612 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1613 return Result;
1614 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001615 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001616 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1617 // will cause this node to be legalized as well as handling libcalls right.
1618 if (LastCALLSEQ_END.Val != Node) {
1619 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
Roman Levenstein9cac5252008-04-16 16:15:27 +00001620 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001621 assert(I != LegalizedNodes.end() &&
1622 "Legalizing the call start should have legalized this node!");
1623 return I->second;
1624 }
1625
1626 // Otherwise, the call start has been legalized and everything is going
1627 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001628 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001629 // Do not try to legalize the target-specific arguments (#1+), except for
1630 // an optional flag input.
1631 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1632 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001633 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001634 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001635 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001636 }
1637 } else {
1638 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1639 if (Tmp1 != Node->getOperand(0) ||
1640 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001641 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001642 Ops[0] = Tmp1;
1643 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001644 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001645 }
Chris Lattner6a542892006-01-24 05:48:21 +00001646 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001647 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001648 // This finishes up call legalization.
1649 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001650
1651 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1652 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1653 if (Node->getNumValues() == 2)
1654 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1655 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001656 case ISD::DYNAMIC_STACKALLOC: {
Evan Cheng61bbbab2007-08-16 23:50:06 +00001657 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001658 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1659 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1660 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001661 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001662
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001663 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001664 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001665 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001666 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001667 case TargetLowering::Expand: {
1668 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1669 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1670 " not tell us which reg is the stack pointer!");
1671 SDOperand Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001672
1673 // Chain the dynamic stack allocation so that it doesn't modify the stack
1674 // pointer when other instructions are using the stack.
1675 Chain = DAG.getCALLSEQ_START(Chain,
1676 DAG.getConstant(0, TLI.getPointerTy()));
1677
Chris Lattner903d2782006-01-15 08:54:32 +00001678 SDOperand Size = Tmp2.getOperand(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001679 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, VT);
1680 Chain = SP.getValue(1);
1681 unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1682 unsigned StackAlign =
1683 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1684 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001685 SP = DAG.getNode(ISD::AND, VT, SP,
1686 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001687 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001688 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1689
1690 Tmp2 =
1691 DAG.getCALLSEQ_END(Chain,
1692 DAG.getConstant(0, TLI.getPointerTy()),
1693 DAG.getConstant(0, TLI.getPointerTy()),
1694 SDOperand());
1695
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001696 Tmp1 = LegalizeOp(Tmp1);
1697 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001698 break;
1699 }
1700 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001701 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1702 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001703 Tmp1 = LegalizeOp(Tmp3);
1704 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001705 }
Chris Lattner903d2782006-01-15 08:54:32 +00001706 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001707 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001708 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001709 }
Chris Lattner903d2782006-01-15 08:54:32 +00001710 // Since this op produce two values, make sure to remember that we
1711 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001712 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1713 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001714 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001715 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001716 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001717 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001718 bool Changed = false;
1719 // Legalize all of the operands of the inline asm, in case they are nodes
1720 // that need to be expanded or something. Note we skip the asm string and
1721 // all of the TargetConstant flags.
1722 SDOperand Op = LegalizeOp(Ops[0]);
1723 Changed = Op != Ops[0];
1724 Ops[0] = Op;
1725
1726 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1727 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1728 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1729 for (++i; NumVals; ++i, --NumVals) {
1730 SDOperand Op = LegalizeOp(Ops[i]);
1731 if (Op != Ops[i]) {
1732 Changed = true;
1733 Ops[i] = Op;
1734 }
1735 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001736 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001737
1738 if (HasInFlag) {
1739 Op = LegalizeOp(Ops.back());
1740 Changed |= Op != Ops.back();
1741 Ops.back() = Op;
1742 }
1743
1744 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001745 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001746
1747 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001748 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001749 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1750 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001751 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001752 case ISD::BR:
1753 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001754 // Ensure that libcalls are emitted before a branch.
1755 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1756 Tmp1 = LegalizeOp(Tmp1);
1757 LastCALLSEQ_END = DAG.getEntryNode();
1758
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001759 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001760 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001761 case ISD::BRIND:
1762 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1763 // 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
1768 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1769 default: assert(0 && "Indirect target must be legal type (pointer)!");
1770 case Legal:
1771 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1772 break;
1773 }
1774 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1775 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001776 case ISD::BR_JT:
1777 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1778 // Ensure that libcalls are emitted before a branch.
1779 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1780 Tmp1 = LegalizeOp(Tmp1);
1781 LastCALLSEQ_END = DAG.getEntryNode();
1782
1783 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1784 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1785
1786 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1787 default: assert(0 && "This action is not supported yet!");
1788 case TargetLowering::Legal: break;
1789 case TargetLowering::Custom:
1790 Tmp1 = TLI.LowerOperation(Result, DAG);
1791 if (Tmp1.Val) Result = Tmp1;
1792 break;
1793 case TargetLowering::Expand: {
1794 SDOperand Chain = Result.getOperand(0);
1795 SDOperand Table = Result.getOperand(1);
1796 SDOperand Index = Result.getOperand(2);
1797
1798 MVT::ValueType PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001799 MachineFunction &MF = DAG.getMachineFunction();
1800 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001801 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1802 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001803
1804 SDOperand LD;
1805 switch (EntrySize) {
1806 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001807 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001808 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001809 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001810 PseudoSourceValue::getJumpTable(), 0); break;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001811 }
1812
Evan Chengcc415862007-11-09 01:32:10 +00001813 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001814 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001815 // For PIC, the sequence is:
1816 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00001817 // RelocBase can be JumpTable, GOT or some sort of global base.
1818 if (PTy != MVT::i32)
1819 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1820 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1821 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00001822 }
Evan Chengcc415862007-11-09 01:32:10 +00001823 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001824 }
1825 }
1826 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001827 case ISD::BRCOND:
1828 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001829 // Ensure that libcalls are emitted before a return.
1830 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1831 Tmp1 = LegalizeOp(Tmp1);
1832 LastCALLSEQ_END = DAG.getEntryNode();
1833
Chris Lattner47e92232005-01-18 19:27:06 +00001834 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1835 case Expand: assert(0 && "It's impossible to expand bools");
1836 case Legal:
1837 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1838 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001839 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00001840 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001841
1842 // The top bits of the promoted condition are not necessarily zero, ensure
1843 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001844 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001845 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001846 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerf9908172006-11-27 04:39:56 +00001847 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001848 break;
1849 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001850 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001851
1852 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001853 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001854
1855 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1856 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001857 case TargetLowering::Legal: break;
1858 case TargetLowering::Custom:
1859 Tmp1 = TLI.LowerOperation(Result, DAG);
1860 if (Tmp1.Val) Result = Tmp1;
1861 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001862 case TargetLowering::Expand:
1863 // Expand brcond's setcc into its constituent parts and create a BR_CC
1864 // Node.
1865 if (Tmp2.getOpcode() == ISD::SETCC) {
1866 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1867 Tmp2.getOperand(0), Tmp2.getOperand(1),
1868 Node->getOperand(2));
1869 } else {
1870 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1871 DAG.getCondCode(ISD::SETNE), Tmp2,
1872 DAG.getConstant(0, Tmp2.getValueType()),
1873 Node->getOperand(2));
1874 }
1875 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001876 }
1877 break;
1878 case ISD::BR_CC:
1879 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001880 // Ensure that libcalls are emitted before a branch.
1881 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1882 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001883 Tmp2 = Node->getOperand(2); // LHS
1884 Tmp3 = Node->getOperand(3); // RHS
1885 Tmp4 = Node->getOperand(1); // CC
1886
1887 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001888 LastCALLSEQ_END = DAG.getEntryNode();
1889
Nate Begeman750ac1b2006-02-01 07:19:44 +00001890 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1891 // the LHS is a legal SETCC itself. In this case, we need to compare
1892 // the result against zero to select between true and false values.
1893 if (Tmp3.Val == 0) {
1894 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1895 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001896 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001897
1898 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1899 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001900
Chris Lattner181b7a32005-12-17 23:46:46 +00001901 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1902 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001903 case TargetLowering::Legal: break;
1904 case TargetLowering::Custom:
1905 Tmp4 = TLI.LowerOperation(Result, DAG);
1906 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001907 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001908 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001909 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001910 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001911 LoadSDNode *LD = cast<LoadSDNode>(Node);
1912 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1913 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001914
Evan Cheng466685d2006-10-09 20:57:25 +00001915 ISD::LoadExtType ExtType = LD->getExtensionType();
1916 if (ExtType == ISD::NON_EXTLOAD) {
1917 MVT::ValueType VT = Node->getValueType(0);
1918 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1919 Tmp3 = Result.getValue(0);
1920 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001921
Evan Cheng466685d2006-10-09 20:57:25 +00001922 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1923 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001924 case TargetLowering::Legal:
1925 // If this is an unaligned load and the target doesn't support it,
1926 // expand it.
1927 if (!TLI.allowsUnalignedMemoryAccesses()) {
1928 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001929 getABITypeAlignment(MVT::getTypeForValueType(LD->getMemoryVT()));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001930 if (LD->getAlignment() < ABIAlignment){
1931 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1932 TLI);
1933 Tmp3 = Result.getOperand(0);
1934 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001935 Tmp3 = LegalizeOp(Tmp3);
1936 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001937 }
1938 }
1939 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001940 case TargetLowering::Custom:
1941 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1942 if (Tmp1.Val) {
1943 Tmp3 = LegalizeOp(Tmp1);
1944 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001945 }
Evan Cheng466685d2006-10-09 20:57:25 +00001946 break;
1947 case TargetLowering::Promote: {
1948 // Only promote a load of vector type to another.
1949 assert(MVT::isVector(VT) && "Cannot promote this load!");
1950 // Change base type to a different vector type.
1951 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1952
1953 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001954 LD->getSrcValueOffset(),
1955 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001956 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1957 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001958 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001959 }
Evan Cheng466685d2006-10-09 20:57:25 +00001960 }
1961 // Since loads produce two values, make sure to remember that we
1962 // legalized both of them.
1963 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1964 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1965 return Op.ResNo ? Tmp4 : Tmp3;
1966 } else {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001967 MVT::ValueType SrcVT = LD->getMemoryVT();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001968 unsigned SrcWidth = MVT::getSizeInBits(SrcVT);
1969 int SVOffset = LD->getSrcValueOffset();
1970 unsigned Alignment = LD->getAlignment();
1971 bool isVolatile = LD->isVolatile();
1972
1973 if (SrcWidth != MVT::getStoreSizeInBits(SrcVT) &&
1974 // Some targets pretend to have an i1 loading operation, and actually
1975 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1976 // bits are guaranteed to be zero; it helps the optimizers understand
1977 // that these bits are zero. It is also useful for EXTLOAD, since it
1978 // tells the optimizers that those bits are undefined. It would be
1979 // nice to have an effective generic way of getting these benefits...
1980 // Until such a way is found, don't insist on promoting i1 here.
1981 (SrcVT != MVT::i1 ||
1982 TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
1983 // Promote to a byte-sized load if not loading an integral number of
1984 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
1985 unsigned NewWidth = MVT::getStoreSizeInBits(SrcVT);
1986 MVT::ValueType NVT = MVT::getIntegerType(NewWidth);
1987 SDOperand Ch;
1988
1989 // The extra bits are guaranteed to be zero, since we stored them that
1990 // way. A zext load from NVT thus automatically gives zext from SrcVT.
1991
1992 ISD::LoadExtType NewExtType =
1993 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
1994
1995 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
1996 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
1997 NVT, isVolatile, Alignment);
1998
1999 Ch = Result.getValue(1); // The chain.
2000
2001 if (ExtType == ISD::SEXTLOAD)
2002 // Having the top bits zero doesn't help when sign extending.
2003 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2004 Result, DAG.getValueType(SrcVT));
2005 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2006 // All the top bits are guaranteed to be zero - inform the optimizers.
2007 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2008 DAG.getValueType(SrcVT));
2009
2010 Tmp1 = LegalizeOp(Result);
2011 Tmp2 = LegalizeOp(Ch);
2012 } else if (SrcWidth & (SrcWidth - 1)) {
2013 // If not loading a power-of-2 number of bits, expand as two loads.
2014 assert(MVT::isExtendedVT(SrcVT) && !MVT::isVector(SrcVT) &&
2015 "Unsupported extload!");
2016 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2017 assert(RoundWidth < SrcWidth);
2018 unsigned ExtraWidth = SrcWidth - RoundWidth;
2019 assert(ExtraWidth < RoundWidth);
2020 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2021 "Load size not an integral number of bytes!");
2022 MVT::ValueType RoundVT = MVT::getIntegerType(RoundWidth);
2023 MVT::ValueType ExtraVT = MVT::getIntegerType(ExtraWidth);
2024 SDOperand Lo, Hi, Ch;
2025 unsigned IncrementSize;
2026
2027 if (TLI.isLittleEndian()) {
2028 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2029 // Load the bottom RoundWidth bits.
2030 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2031 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2032 Alignment);
2033
2034 // Load the remaining ExtraWidth bits.
2035 IncrementSize = RoundWidth / 8;
2036 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2037 DAG.getIntPtrConstant(IncrementSize));
2038 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2039 LD->getSrcValue(), SVOffset + IncrementSize,
2040 ExtraVT, isVolatile,
2041 MinAlign(Alignment, IncrementSize));
2042
2043 // Build a factor node to remember that this load is independent of the
2044 // other one.
2045 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2046 Hi.getValue(1));
2047
2048 // Move the top bits to the right place.
2049 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2050 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2051
2052 // Join the hi and lo parts.
2053 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002054 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002055 // Big endian - avoid unaligned loads.
2056 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2057 // Load the top RoundWidth bits.
2058 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2059 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2060 Alignment);
2061
2062 // Load the remaining ExtraWidth bits.
2063 IncrementSize = RoundWidth / 8;
2064 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2065 DAG.getIntPtrConstant(IncrementSize));
2066 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2067 LD->getSrcValue(), SVOffset + IncrementSize,
2068 ExtraVT, isVolatile,
2069 MinAlign(Alignment, IncrementSize));
2070
2071 // Build a factor node to remember that this load is independent of the
2072 // other one.
2073 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2074 Hi.getValue(1));
2075
2076 // Move the top bits to the right place.
2077 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2078 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2079
2080 // Join the hi and lo parts.
2081 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2082 }
2083
2084 Tmp1 = LegalizeOp(Result);
2085 Tmp2 = LegalizeOp(Ch);
2086 } else {
2087 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
2088 default: assert(0 && "This action is not supported yet!");
2089 case TargetLowering::Custom:
2090 isCustom = true;
2091 // FALLTHROUGH
2092 case TargetLowering::Legal:
2093 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2094 Tmp1 = Result.getValue(0);
2095 Tmp2 = Result.getValue(1);
2096
2097 if (isCustom) {
2098 Tmp3 = TLI.LowerOperation(Result, DAG);
2099 if (Tmp3.Val) {
2100 Tmp1 = LegalizeOp(Tmp3);
2101 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2102 }
2103 } else {
2104 // If this is an unaligned load and the target doesn't support it,
2105 // expand it.
2106 if (!TLI.allowsUnalignedMemoryAccesses()) {
2107 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002108 getABITypeAlignment(MVT::getTypeForValueType(LD->getMemoryVT()));
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002109 if (LD->getAlignment() < ABIAlignment){
2110 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
2111 TLI);
2112 Tmp1 = Result.getOperand(0);
2113 Tmp2 = Result.getOperand(1);
2114 Tmp1 = LegalizeOp(Tmp1);
2115 Tmp2 = LegalizeOp(Tmp2);
2116 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002117 }
2118 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002119 break;
2120 case TargetLowering::Expand:
2121 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2122 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
2123 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
2124 LD->getSrcValueOffset(),
2125 LD->isVolatile(), LD->getAlignment());
2126 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2127 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2128 Tmp2 = LegalizeOp(Load.getValue(1));
2129 break;
2130 }
2131 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2132 // Turn the unsupported load into an EXTLOAD followed by an explicit
2133 // zero/sign extend inreg.
2134 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2135 Tmp1, Tmp2, LD->getSrcValue(),
2136 LD->getSrcValueOffset(), SrcVT,
2137 LD->isVolatile(), LD->getAlignment());
2138 SDOperand ValRes;
2139 if (ExtType == ISD::SEXTLOAD)
2140 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2141 Result, DAG.getValueType(SrcVT));
2142 else
2143 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2144 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2145 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002146 break;
2147 }
Evan Cheng466685d2006-10-09 20:57:25 +00002148 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002149
Evan Cheng466685d2006-10-09 20:57:25 +00002150 // Since loads produce two values, make sure to remember that we legalized
2151 // both of them.
2152 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2153 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2154 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002155 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002156 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002157 case ISD::EXTRACT_ELEMENT: {
2158 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
2159 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002160 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002161 case Legal:
2162 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
2163 // 1 -> Hi
2164 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
2165 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
2166 TLI.getShiftAmountTy()));
2167 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2168 } else {
2169 // 0 -> Lo
2170 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2171 Node->getOperand(0));
2172 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002173 break;
2174 case Expand:
2175 // Get both the low and high parts.
2176 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2177 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
2178 Result = Tmp2; // 1 -> Hi
2179 else
2180 Result = Tmp1; // 0 -> Lo
2181 break;
2182 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002183 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002184 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002185
2186 case ISD::CopyToReg:
2187 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002188
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002189 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002190 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002191 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002192 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002193 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002194 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002195 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002196 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002197 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002198 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002199 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2200 Tmp3);
2201 } else {
2202 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002203 }
2204
2205 // Since this produces two values, make sure to remember that we legalized
2206 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002207 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00002208 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002209 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002210 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002211 break;
2212
2213 case ISD::RET:
2214 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002215
2216 // Ensure that libcalls are emitted before a return.
2217 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2218 Tmp1 = LegalizeOp(Tmp1);
2219 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002220
Chris Lattner3e928bb2005-01-07 07:47:09 +00002221 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002222 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002223 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002224 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002225 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002226 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002227 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002228 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002229 case Expand:
Dan Gohman7f321562007-06-25 16:23:39 +00002230 if (!MVT::isVector(Tmp2.getValueType())) {
Chris Lattnerf87324e2006-04-11 01:31:51 +00002231 SDOperand Lo, Hi;
2232 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002233
2234 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002235 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002236 std::swap(Lo, Hi);
2237
Evan Cheng13acce32006-12-11 19:27:14 +00002238 if (Hi.Val)
2239 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2240 else
2241 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002242 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002243 } else {
2244 SDNode *InVal = Tmp2.Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002245 int InIx = Tmp2.ResNo;
2246 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(InIx));
2247 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(InIx));
Chris Lattnerf87324e2006-04-11 01:31:51 +00002248
Dan Gohman7f321562007-06-25 16:23:39 +00002249 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002250 // type. If so, convert to the vector type.
Chris Lattnerf87324e2006-04-11 01:31:51 +00002251 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002252 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002253 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002254 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002255 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002256 } else if (NumElems == 1) {
2257 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002258 Tmp2 = ScalarizeVectorOp(Tmp2);
2259 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002260 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002261
2262 // FIXME: Returns of gcc generic vectors smaller than a legal type
2263 // should be returned in integer registers!
2264
Chris Lattnerf87324e2006-04-11 01:31:51 +00002265 // The scalarized value type may not be legal, e.g. it might require
2266 // promotion or expansion. Relegalize the return.
2267 Result = LegalizeOp(Result);
2268 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002269 // FIXME: Returns of gcc generic vectors larger than a legal vector
2270 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00002271 SDOperand Lo, Hi;
2272 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00002273 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002274 Result = LegalizeOp(Result);
2275 }
2276 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002277 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002278 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002279 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002280 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002281 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002282 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002283 }
2284 break;
2285 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002286 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002287 break;
2288 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002289 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002290 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002291 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002292 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2293 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002294 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002295 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002296 break;
2297 case Expand: {
2298 SDOperand Lo, Hi;
Dan Gohman6595cb32007-06-27 16:08:04 +00002299 assert(!MVT::isExtendedVT(Node->getOperand(i).getValueType()) &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002300 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002301 ExpandOp(Node->getOperand(i), Lo, Hi);
2302 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002303 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00002304 if (Hi.Val) {
2305 NewValues.push_back(Hi);
2306 NewValues.push_back(Node->getOperand(i+1));
2307 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002308 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002309 }
2310 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002311 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002312 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002313
2314 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002315 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002316 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002317 Result = DAG.getNode(ISD::RET, MVT::Other,
2318 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002319 break;
2320 }
2321 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002322
Chris Lattner6862dbc2006-01-29 21:02:23 +00002323 if (Result.getOpcode() == ISD::RET) {
2324 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2325 default: assert(0 && "This action is not supported yet!");
2326 case TargetLowering::Legal: break;
2327 case TargetLowering::Custom:
2328 Tmp1 = TLI.LowerOperation(Result, DAG);
2329 if (Tmp1.Val) Result = Tmp1;
2330 break;
2331 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002332 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002333 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002334 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002335 StoreSDNode *ST = cast<StoreSDNode>(Node);
2336 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2337 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002338 int SVOffset = ST->getSrcValueOffset();
2339 unsigned Alignment = ST->getAlignment();
2340 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002341
Evan Cheng8b2794a2006-10-13 21:14:26 +00002342 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002343 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2344 // FIXME: We shouldn't do this for TargetConstantFP's.
2345 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2346 // to phase ordering between legalized code and the dag combiner. This
2347 // probably means that we need to integrate dag combiner and legalizer
2348 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002349 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002350 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002351 if (CFP->getValueType(0) == MVT::f32 &&
2352 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002353 Tmp3 = DAG.getConstant(CFP->getValueAPF().
2354 convertToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002355 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002356 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2357 SVOffset, isVolatile, Alignment);
2358 break;
2359 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002360 // If this target supports 64-bit registers, do a single 64-bit store.
2361 if (getTypeAction(MVT::i64) == Legal) {
2362 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002363 zextOrTrunc(64), MVT::i64);
Chris Lattner3cb93512007-10-15 05:46:06 +00002364 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2365 SVOffset, isVolatile, Alignment);
2366 break;
2367 } else if (getTypeAction(MVT::i32) == Legal) {
2368 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2369 // stores. If the target supports neither 32- nor 64-bits, this
2370 // xform is certainly not worth it.
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002371 const APInt &IntVal =CFP->getValueAPF().convertToAPInt();
2372 SDOperand Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2373 SDOperand Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002374 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002375
2376 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2377 SVOffset, isVolatile, Alignment);
2378 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002379 DAG.getIntPtrConstant(4));
Chris Lattner3cb93512007-10-15 05:46:06 +00002380 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002381 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002382
2383 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2384 break;
2385 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002386 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002387 }
2388
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002389 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002390 case Legal: {
2391 Tmp3 = LegalizeOp(ST->getValue());
2392 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2393 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002394
Evan Cheng8b2794a2006-10-13 21:14:26 +00002395 MVT::ValueType VT = Tmp3.getValueType();
2396 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2397 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002398 case TargetLowering::Legal:
2399 // If this is an unaligned store and the target doesn't support it,
2400 // expand it.
2401 if (!TLI.allowsUnalignedMemoryAccesses()) {
2402 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002403 getABITypeAlignment(MVT::getTypeForValueType(ST->getMemoryVT()));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002404 if (ST->getAlignment() < ABIAlignment)
2405 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2406 TLI);
2407 }
2408 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002409 case TargetLowering::Custom:
2410 Tmp1 = TLI.LowerOperation(Result, DAG);
2411 if (Tmp1.Val) Result = Tmp1;
2412 break;
2413 case TargetLowering::Promote:
2414 assert(MVT::isVector(VT) && "Unknown legal promote case!");
2415 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2416 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2417 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002418 ST->getSrcValue(), SVOffset, isVolatile,
2419 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002420 break;
2421 }
2422 break;
2423 }
2424 case Promote:
2425 // Truncate the value and store the result.
2426 Tmp3 = PromoteOp(ST->getValue());
2427 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002428 SVOffset, ST->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002429 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002430 break;
2431
2432 case Expand:
2433 unsigned IncrementSize = 0;
2434 SDOperand Lo, Hi;
2435
2436 // If this is a vector type, then we have to calculate the increment as
2437 // the product of the element size in bytes, and the number of elements
2438 // in the high half of the vector.
Dan Gohman7f321562007-06-25 16:23:39 +00002439 if (MVT::isVector(ST->getValue().getValueType())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002440 SDNode *InVal = ST->getValue().Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002441 int InIx = ST->getValue().ResNo;
Chris Lattner0bd48932008-01-17 07:00:52 +00002442 MVT::ValueType InVT = InVal->getValueType(InIx);
2443 unsigned NumElems = MVT::getVectorNumElements(InVT);
2444 MVT::ValueType EVT = MVT::getVectorElementType(InVT);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002445
Dan Gohman7f321562007-06-25 16:23:39 +00002446 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002447 // type. If so, convert to the vector type.
Evan Cheng8b2794a2006-10-13 21:14:26 +00002448 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002449 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002450 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002451 Tmp3 = LegalizeOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002452 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002453 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002454 Result = LegalizeOp(Result);
2455 break;
2456 } else if (NumElems == 1) {
2457 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002458 Tmp3 = ScalarizeVectorOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002459 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002460 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002461 // The scalarized value type may not be legal, e.g. it might require
2462 // promotion or expansion. Relegalize the scalar store.
2463 Result = LegalizeOp(Result);
2464 break;
2465 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002466 SplitVectorOp(ST->getValue(), Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00002467 IncrementSize = MVT::getVectorNumElements(Lo.Val->getValueType(0)) *
2468 MVT::getSizeInBits(EVT)/8;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002469 }
2470 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002471 ExpandOp(ST->getValue(), Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002472 IncrementSize = Hi.Val ? MVT::getSizeInBits(Hi.getValueType())/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002473
Duncan Sands0753fc12008-02-11 10:37:04 +00002474 if (TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002475 std::swap(Lo, Hi);
2476 }
2477
2478 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002479 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002480
2481 if (Hi.Val == NULL) {
2482 // Must be int <-> float one-to-one expansion.
2483 Result = Lo;
2484 break;
2485 }
2486
Evan Cheng8b2794a2006-10-13 21:14:26 +00002487 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002488 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002489 assert(isTypeLegal(Tmp2.getValueType()) &&
2490 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002491 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002492 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002493 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002494 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002495 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2496 break;
2497 }
2498 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002499 switch (getTypeAction(ST->getValue().getValueType())) {
2500 case Legal:
2501 Tmp3 = LegalizeOp(ST->getValue());
2502 break;
2503 case Promote:
2504 // We can promote the value, the truncstore will still take care of it.
2505 Tmp3 = PromoteOp(ST->getValue());
2506 break;
2507 case Expand:
2508 // Just store the low part. This may become a non-trunc store, so make
2509 // sure to use getTruncStore, not UpdateNodeOperands below.
2510 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2511 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2512 SVOffset, MVT::i8, isVolatile, Alignment);
2513 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002514
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002515 MVT::ValueType StVT = ST->getMemoryVT();
Duncan Sands7e857202008-01-22 07:17:34 +00002516 unsigned StWidth = MVT::getSizeInBits(StVT);
2517
2518 if (StWidth != MVT::getStoreSizeInBits(StVT)) {
2519 // Promote to a byte-sized store with upper bits zero if not
2520 // storing an integral number of bytes. For example, promote
2521 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
2522 MVT::ValueType NVT = MVT::getIntegerType(MVT::getStoreSizeInBits(StVT));
2523 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2524 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2525 SVOffset, NVT, isVolatile, Alignment);
2526 } else if (StWidth & (StWidth - 1)) {
2527 // If not storing a power-of-2 number of bits, expand as two stores.
2528 assert(MVT::isExtendedVT(StVT) && !MVT::isVector(StVT) &&
2529 "Unsupported truncstore!");
2530 unsigned RoundWidth = 1 << Log2_32(StWidth);
2531 assert(RoundWidth < StWidth);
2532 unsigned ExtraWidth = StWidth - RoundWidth;
2533 assert(ExtraWidth < RoundWidth);
2534 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2535 "Store size not an integral number of bytes!");
2536 MVT::ValueType RoundVT = MVT::getIntegerType(RoundWidth);
2537 MVT::ValueType ExtraVT = MVT::getIntegerType(ExtraWidth);
2538 SDOperand Lo, Hi;
2539 unsigned IncrementSize;
2540
2541 if (TLI.isLittleEndian()) {
2542 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2543 // Store the bottom RoundWidth bits.
2544 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2545 SVOffset, RoundVT,
2546 isVolatile, Alignment);
2547
2548 // Store the remaining ExtraWidth bits.
2549 IncrementSize = RoundWidth / 8;
2550 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2551 DAG.getIntPtrConstant(IncrementSize));
2552 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2553 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2554 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2555 SVOffset + IncrementSize, ExtraVT, isVolatile,
2556 MinAlign(Alignment, IncrementSize));
2557 } else {
2558 // Big endian - avoid unaligned stores.
2559 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2560 // Store the top RoundWidth bits.
2561 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2562 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2563 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2564 RoundVT, isVolatile, Alignment);
2565
2566 // Store the remaining ExtraWidth bits.
2567 IncrementSize = RoundWidth / 8;
2568 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2569 DAG.getIntPtrConstant(IncrementSize));
2570 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2571 SVOffset + IncrementSize, ExtraVT, isVolatile,
2572 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002573 }
Duncan Sands7e857202008-01-22 07:17:34 +00002574
2575 // The order of the stores doesn't matter.
2576 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2577 } else {
2578 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2579 Tmp2 != ST->getBasePtr())
2580 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2581 ST->getOffset());
2582
2583 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2584 default: assert(0 && "This action is not supported yet!");
2585 case TargetLowering::Legal:
2586 // If this is an unaligned store and the target doesn't support it,
2587 // expand it.
2588 if (!TLI.allowsUnalignedMemoryAccesses()) {
2589 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002590 getABITypeAlignment(MVT::getTypeForValueType(ST->getMemoryVT()));
Duncan Sands7e857202008-01-22 07:17:34 +00002591 if (ST->getAlignment() < ABIAlignment)
2592 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2593 TLI);
2594 }
2595 break;
2596 case TargetLowering::Custom:
2597 Result = TLI.LowerOperation(Result, DAG);
2598 break;
2599 case Expand:
2600 // TRUNCSTORE:i16 i32 -> STORE i16
2601 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2602 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2603 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2604 isVolatile, Alignment);
2605 break;
2606 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002607 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002608 }
2609 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002610 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002611 case ISD::PCMARKER:
2612 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002613 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002614 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002615 case ISD::STACKSAVE:
2616 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002617 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2618 Tmp1 = Result.getValue(0);
2619 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002620
Chris Lattner140d53c2006-01-13 02:50:02 +00002621 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2622 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002623 case TargetLowering::Legal: break;
2624 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002625 Tmp3 = TLI.LowerOperation(Result, DAG);
2626 if (Tmp3.Val) {
2627 Tmp1 = LegalizeOp(Tmp3);
2628 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002629 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002630 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002631 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002632 // Expand to CopyFromReg if the target set
2633 // StackPointerRegisterToSaveRestore.
2634 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002635 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002636 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002637 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002638 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002639 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2640 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002641 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002642 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002643 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002644
2645 // Since stacksave produce two values, make sure to remember that we
2646 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002647 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2648 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2649 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002650
Chris Lattner140d53c2006-01-13 02:50:02 +00002651 case ISD::STACKRESTORE:
2652 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2653 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002654 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002655
2656 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2657 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002658 case TargetLowering::Legal: break;
2659 case TargetLowering::Custom:
2660 Tmp1 = TLI.LowerOperation(Result, DAG);
2661 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002662 break;
2663 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002664 // Expand to CopyToReg if the target set
2665 // StackPointerRegisterToSaveRestore.
2666 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2667 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2668 } else {
2669 Result = Tmp1;
2670 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002671 break;
2672 }
2673 break;
2674
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002675 case ISD::READCYCLECOUNTER:
2676 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002677 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002678 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2679 Node->getValueType(0))) {
2680 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002681 case TargetLowering::Legal:
2682 Tmp1 = Result.getValue(0);
2683 Tmp2 = Result.getValue(1);
2684 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002685 case TargetLowering::Custom:
2686 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002687 Tmp1 = LegalizeOp(Result.getValue(0));
2688 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002689 break;
2690 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002691
2692 // Since rdcc produce two values, make sure to remember that we legalized
2693 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002694 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2695 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002696 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002697
Chris Lattner2ee743f2005-01-14 22:08:15 +00002698 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002699 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2700 case Expand: assert(0 && "It's impossible to expand bools");
2701 case Legal:
2702 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2703 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002704 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002705 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002706 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002707 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002708 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002709 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerb6c80602006-11-28 01:03:30 +00002710 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002711 break;
2712 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002713 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002714 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002715 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002716
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002717 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002718
Nate Begemanb942a3d2005-08-23 04:29:48 +00002719 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002720 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002721 case TargetLowering::Legal: break;
2722 case TargetLowering::Custom: {
2723 Tmp1 = TLI.LowerOperation(Result, DAG);
2724 if (Tmp1.Val) Result = Tmp1;
2725 break;
2726 }
Nate Begeman9373a812005-08-10 20:51:12 +00002727 case TargetLowering::Expand:
2728 if (Tmp1.getOpcode() == ISD::SETCC) {
2729 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2730 Tmp2, Tmp3,
2731 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2732 } else {
2733 Result = DAG.getSelectCC(Tmp1,
2734 DAG.getConstant(0, Tmp1.getValueType()),
2735 Tmp2, Tmp3, ISD::SETNE);
2736 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002737 break;
2738 case TargetLowering::Promote: {
2739 MVT::ValueType NVT =
2740 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2741 unsigned ExtOp, TruncOp;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002742 if (MVT::isVector(Tmp2.getValueType())) {
2743 ExtOp = ISD::BIT_CONVERT;
2744 TruncOp = ISD::BIT_CONVERT;
2745 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002746 ExtOp = ISD::ANY_EXTEND;
2747 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002748 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002749 ExtOp = ISD::FP_EXTEND;
2750 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002751 }
2752 // Promote each of the values to the new type.
2753 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2754 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2755 // Perform the larger operation, then round down.
2756 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002757 if (TruncOp != ISD::FP_ROUND)
2758 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2759 else
2760 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2761 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002762 break;
2763 }
2764 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002765 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002766 case ISD::SELECT_CC: {
2767 Tmp1 = Node->getOperand(0); // LHS
2768 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002769 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2770 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00002771 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002772
Nate Begeman750ac1b2006-02-01 07:19:44 +00002773 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2774
2775 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2776 // the LHS is a legal SETCC itself. In this case, we need to compare
2777 // the result against zero to select between true and false values.
2778 if (Tmp2.Val == 0) {
2779 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2780 CC = DAG.getCondCode(ISD::SETNE);
2781 }
2782 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2783
2784 // Everything is legal, see if we should expand this op or something.
2785 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2786 default: assert(0 && "This action is not supported yet!");
2787 case TargetLowering::Legal: break;
2788 case TargetLowering::Custom:
2789 Tmp1 = TLI.LowerOperation(Result, DAG);
2790 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002791 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002792 }
2793 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002794 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002795 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002796 Tmp1 = Node->getOperand(0);
2797 Tmp2 = Node->getOperand(1);
2798 Tmp3 = Node->getOperand(2);
2799 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2800
2801 // If we had to Expand the SetCC operands into a SELECT node, then it may
2802 // not always be possible to return a true LHS & RHS. In this case, just
2803 // return the value we legalized, returned in the LHS
2804 if (Tmp2.Val == 0) {
2805 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002806 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002807 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002808
Chris Lattner73e142f2006-01-30 22:43:50 +00002809 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002810 default: assert(0 && "Cannot handle this action for SETCC yet!");
2811 case TargetLowering::Custom:
2812 isCustom = true;
2813 // FALLTHROUGH.
2814 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002815 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002816 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002817 Tmp4 = TLI.LowerOperation(Result, DAG);
2818 if (Tmp4.Val) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002819 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002820 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002821 case TargetLowering::Promote: {
2822 // First step, figure out the appropriate operation to use.
2823 // Allow SETCC to not be supported for all legal data types
2824 // Mostly this targets FP
2825 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
Chris Lattner00755df2007-02-04 00:27:56 +00002826 MVT::ValueType OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002827
2828 // Scan for the appropriate larger type to use.
2829 while (1) {
2830 NewInTy = (MVT::ValueType)(NewInTy+1);
2831
2832 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
2833 "Fell off of the edge of the integer world");
2834 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
2835 "Fell off of the edge of the floating point world");
2836
2837 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002838 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002839 break;
2840 }
2841 if (MVT::isInteger(NewInTy))
2842 assert(0 && "Cannot promote Legal Integer SETCC yet");
2843 else {
2844 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2845 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2846 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002847 Tmp1 = LegalizeOp(Tmp1);
2848 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002849 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002850 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002851 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002852 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002853 case TargetLowering::Expand:
2854 // Expand a setcc node into a select_cc of the same condition, lhs, and
2855 // rhs that selects between const 1 (true) and const 0 (false).
2856 MVT::ValueType VT = Node->getValueType(0);
2857 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2858 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002859 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002860 break;
2861 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002862 break;
Chris Lattner52d08bd2005-05-09 20:23:03 +00002863
Chris Lattner5b359c62005-04-02 04:00:59 +00002864 case ISD::SHL_PARTS:
2865 case ISD::SRA_PARTS:
2866 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002867 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002868 bool Changed = false;
2869 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2870 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2871 Changed |= Ops.back() != Node->getOperand(i);
2872 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002873 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002874 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002875
Evan Cheng05a2d562006-01-09 18:31:59 +00002876 switch (TLI.getOperationAction(Node->getOpcode(),
2877 Node->getValueType(0))) {
2878 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002879 case TargetLowering::Legal: break;
2880 case TargetLowering::Custom:
2881 Tmp1 = TLI.LowerOperation(Result, DAG);
2882 if (Tmp1.Val) {
2883 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002884 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002885 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002886 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2887 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002888 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002889 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002890 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002891 return RetVal;
2892 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002893 break;
2894 }
2895
Chris Lattner2c8086f2005-04-02 05:00:07 +00002896 // Since these produce multiple values, make sure to remember that we
2897 // legalized all of them.
2898 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2899 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2900 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002901 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002902
2903 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002904 case ISD::ADD:
2905 case ISD::SUB:
2906 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002907 case ISD::MULHS:
2908 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002909 case ISD::UDIV:
2910 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002911 case ISD::AND:
2912 case ISD::OR:
2913 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002914 case ISD::SHL:
2915 case ISD::SRL:
2916 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002917 case ISD::FADD:
2918 case ISD::FSUB:
2919 case ISD::FMUL:
2920 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00002921 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002922 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002923 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2924 case Expand: assert(0 && "Not possible");
2925 case Legal:
2926 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2927 break;
2928 case Promote:
2929 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2930 break;
2931 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002932
2933 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002934
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002935 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002936 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002937 case TargetLowering::Legal: break;
2938 case TargetLowering::Custom:
2939 Tmp1 = TLI.LowerOperation(Result, DAG);
2940 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002941 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002942 case TargetLowering::Expand: {
Dan Gohman525178c2007-10-08 18:33:35 +00002943 MVT::ValueType VT = Op.getValueType();
2944
2945 // See if multiply or divide can be lowered using two-result operations.
2946 SDVTList VTs = DAG.getVTList(VT, VT);
2947 if (Node->getOpcode() == ISD::MUL) {
2948 // We just need the low half of the multiply; try both the signed
2949 // and unsigned forms. If the target supports both SMUL_LOHI and
2950 // UMUL_LOHI, form a preference by checking which forms of plain
2951 // MULH it supports.
2952 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2953 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2954 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2955 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2956 unsigned OpToUse = 0;
2957 if (HasSMUL_LOHI && !HasMULHS) {
2958 OpToUse = ISD::SMUL_LOHI;
2959 } else if (HasUMUL_LOHI && !HasMULHU) {
2960 OpToUse = ISD::UMUL_LOHI;
2961 } else if (HasSMUL_LOHI) {
2962 OpToUse = ISD::SMUL_LOHI;
2963 } else if (HasUMUL_LOHI) {
2964 OpToUse = ISD::UMUL_LOHI;
2965 }
2966 if (OpToUse) {
2967 Result = SDOperand(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0);
2968 break;
2969 }
2970 }
2971 if (Node->getOpcode() == ISD::MULHS &&
2972 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
2973 Result = SDOperand(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
2974 break;
2975 }
2976 if (Node->getOpcode() == ISD::MULHU &&
2977 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
2978 Result = SDOperand(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
2979 break;
2980 }
2981 if (Node->getOpcode() == ISD::SDIV &&
2982 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
2983 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0);
2984 break;
2985 }
2986 if (Node->getOpcode() == ISD::UDIV &&
2987 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
2988 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0);
2989 break;
2990 }
2991
Dan Gohman82669522007-10-11 23:57:53 +00002992 // Check to see if we have a libcall for this operator.
2993 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
2994 bool isSigned = false;
2995 switch (Node->getOpcode()) {
2996 case ISD::UDIV:
2997 case ISD::SDIV:
2998 if (VT == MVT::i32) {
2999 LC = Node->getOpcode() == ISD::UDIV
Evan Cheng56966222007-01-12 02:11:51 +00003000 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003001 isSigned = Node->getOpcode() == ISD::SDIV;
3002 }
3003 break;
3004 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003005 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3006 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003007 break;
3008 default: break;
3009 }
3010 if (LC != RTLIB::UNKNOWN_LIBCALL) {
3011 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003012 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003013 break;
3014 }
3015
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003016 assert(MVT::isVector(Node->getValueType(0)) &&
3017 "Cannot expand this binary operator!");
3018 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003019 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003020 break;
3021 }
Evan Chengcc987612006-04-12 21:20:24 +00003022 case TargetLowering::Promote: {
3023 switch (Node->getOpcode()) {
3024 default: assert(0 && "Do not know how to promote this BinOp!");
3025 case ISD::AND:
3026 case ISD::OR:
3027 case ISD::XOR: {
3028 MVT::ValueType OVT = Node->getValueType(0);
3029 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3030 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
3031 // Bit convert each of the values to the new type.
3032 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3033 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3034 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3035 // Bit convert the result back the original type.
3036 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3037 break;
3038 }
3039 }
3040 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003041 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003042 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003043
Dan Gohmane14ea862007-10-05 14:17:22 +00003044 case ISD::SMUL_LOHI:
3045 case ISD::UMUL_LOHI:
3046 case ISD::SDIVREM:
3047 case ISD::UDIVREM:
3048 // These nodes will only be produced by target-specific lowering, so
3049 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003050 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003051 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003052
3053 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3054 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3055 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003056 break;
3057
Chris Lattnera09f8482006-03-05 05:09:38 +00003058 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3059 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3060 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3061 case Expand: assert(0 && "Not possible");
3062 case Legal:
3063 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3064 break;
3065 case Promote:
3066 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3067 break;
3068 }
3069
3070 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3071
3072 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3073 default: assert(0 && "Operation not supported");
3074 case TargetLowering::Custom:
3075 Tmp1 = TLI.LowerOperation(Result, DAG);
3076 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003077 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003078 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003079 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003080 // If this target supports fabs/fneg natively and select is cheap,
3081 // do this efficiently.
3082 if (!TLI.isSelectExpensive() &&
3083 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3084 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003085 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003086 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003087 // Get the sign bit of the RHS.
3088 MVT::ValueType IVT =
3089 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
3090 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003091 SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003092 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3093 // Get the absolute value of the result.
3094 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
3095 // Select between the nabs and abs value based on the sign bit of
3096 // the input.
3097 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3098 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3099 AbsVal),
3100 AbsVal);
3101 Result = LegalizeOp(Result);
3102 break;
3103 }
3104
3105 // Otherwise, do bitwise ops!
Evan Cheng912095b2007-01-04 21:56:39 +00003106 MVT::ValueType NVT =
3107 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3108 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3109 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3110 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003111 break;
3112 }
Evan Cheng912095b2007-01-04 21:56:39 +00003113 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003114 break;
3115
Nate Begeman551bf3f2006-02-17 05:43:56 +00003116 case ISD::ADDC:
3117 case ISD::SUBC:
3118 Tmp1 = LegalizeOp(Node->getOperand(0));
3119 Tmp2 = LegalizeOp(Node->getOperand(1));
3120 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3121 // Since this produces two values, make sure to remember that we legalized
3122 // both of them.
3123 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3124 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3125 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003126
Nate Begeman551bf3f2006-02-17 05:43:56 +00003127 case ISD::ADDE:
3128 case ISD::SUBE:
3129 Tmp1 = LegalizeOp(Node->getOperand(0));
3130 Tmp2 = LegalizeOp(Node->getOperand(1));
3131 Tmp3 = LegalizeOp(Node->getOperand(2));
3132 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3133 // Since this produces two values, make sure to remember that we legalized
3134 // both of them.
3135 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3136 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3137 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00003138
Nate Begeman419f8b62005-10-18 00:27:41 +00003139 case ISD::BUILD_PAIR: {
3140 MVT::ValueType PairTy = Node->getValueType(0);
3141 // TODO: handle the case where the Lo and Hi operands are not of legal type
3142 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3143 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3144 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003145 case TargetLowering::Promote:
3146 case TargetLowering::Custom:
3147 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003148 case TargetLowering::Legal:
3149 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3150 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3151 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003152 case TargetLowering::Expand:
3153 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3154 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3155 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
3156 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
3157 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00003158 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003159 break;
3160 }
3161 break;
3162 }
3163
Nate Begemanc105e192005-04-06 00:23:54 +00003164 case ISD::UREM:
3165 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003166 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003167 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3168 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003169
Nate Begemanc105e192005-04-06 00:23:54 +00003170 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003171 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3172 case TargetLowering::Custom:
3173 isCustom = true;
3174 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003175 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003176 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003177 if (isCustom) {
3178 Tmp1 = TLI.LowerOperation(Result, DAG);
3179 if (Tmp1.Val) Result = Tmp1;
3180 }
Nate Begemanc105e192005-04-06 00:23:54 +00003181 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003182 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003183 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003184 bool isSigned = DivOpc == ISD::SDIV;
Dan Gohman525178c2007-10-08 18:33:35 +00003185 MVT::ValueType VT = Node->getValueType(0);
3186
3187 // See if remainder can be lowered using two-result operations.
3188 SDVTList VTs = DAG.getVTList(VT, VT);
3189 if (Node->getOpcode() == ISD::SREM &&
3190 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3191 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3192 break;
3193 }
3194 if (Node->getOpcode() == ISD::UREM &&
3195 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3196 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3197 break;
3198 }
3199
3200 if (MVT::isInteger(VT)) {
3201 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003202 TargetLowering::Legal) {
3203 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00003204 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003205 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3206 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Dan Gohman80176312007-11-05 23:35:22 +00003207 } else if (MVT::isVector(VT)) {
3208 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003209 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003210 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003211 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003212 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3213 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003214 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003215 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003216 }
Dan Gohman0d974262007-11-06 22:11:54 +00003217 } else {
3218 assert(MVT::isFloatingPoint(VT) &&
3219 "remainder op must have integer or floating-point type");
Dan Gohman80176312007-11-05 23:35:22 +00003220 if (MVT::isVector(VT)) {
3221 Result = LegalizeOp(UnrollVectorOp(Op));
3222 } else {
3223 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003224 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3225 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman80176312007-11-05 23:35:22 +00003226 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003227 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003228 }
Nate Begemanc105e192005-04-06 00:23:54 +00003229 }
3230 break;
3231 }
Dan Gohman525178c2007-10-08 18:33:35 +00003232 }
Nate Begemanc105e192005-04-06 00:23:54 +00003233 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003234 case ISD::VAARG: {
3235 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3236 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3237
Chris Lattner5c62f332006-01-28 07:42:08 +00003238 MVT::ValueType VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003239 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3240 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003241 case TargetLowering::Custom:
3242 isCustom = true;
3243 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003244 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003245 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3246 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003247 Tmp1 = Result.getValue(1);
3248
3249 if (isCustom) {
3250 Tmp2 = TLI.LowerOperation(Result, DAG);
3251 if (Tmp2.Val) {
3252 Result = LegalizeOp(Tmp2);
3253 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3254 }
3255 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003256 break;
3257 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003258 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
3259 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003260 // Increment the pointer, VAList, to the next vaarg
3261 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3262 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3263 TLI.getPointerTy()));
3264 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00003265 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003266 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003267 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003268 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003269 Result = LegalizeOp(Result);
3270 break;
3271 }
3272 }
3273 // Since VAARG produces two values, make sure to remember that we
3274 // legalized both of them.
3275 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00003276 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3277 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003278 }
3279
3280 case ISD::VACOPY:
3281 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3282 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3283 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3284
3285 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3286 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003287 case TargetLowering::Custom:
3288 isCustom = true;
3289 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003290 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003291 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3292 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003293 if (isCustom) {
3294 Tmp1 = TLI.LowerOperation(Result, DAG);
3295 if (Tmp1.Val) Result = Tmp1;
3296 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003297 break;
3298 case TargetLowering::Expand:
3299 // This defaults to loading a pointer from the input and storing it to the
3300 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003301 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3302 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dan Gohman499c1bd2008-04-17 02:09:26 +00003303 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3304 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003305 break;
3306 }
3307 break;
3308
3309 case ISD::VAEND:
3310 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3311 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3312
3313 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3314 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003315 case TargetLowering::Custom:
3316 isCustom = true;
3317 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003318 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003319 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003320 if (isCustom) {
3321 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
3322 if (Tmp1.Val) Result = Tmp1;
3323 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003324 break;
3325 case TargetLowering::Expand:
3326 Result = Tmp1; // Default to a no-op, return the chain
3327 break;
3328 }
3329 break;
3330
3331 case ISD::VASTART:
3332 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3333 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3334
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003335 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3336
Nate Begemanacc398c2006-01-25 18:21:52 +00003337 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3338 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003339 case TargetLowering::Legal: break;
3340 case TargetLowering::Custom:
3341 Tmp1 = TLI.LowerOperation(Result, DAG);
3342 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003343 break;
3344 }
3345 break;
3346
Nate Begeman35ef9132006-01-11 21:21:00 +00003347 case ISD::ROTL:
3348 case ISD::ROTR:
3349 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3350 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003351 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003352 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3353 default:
3354 assert(0 && "ROTL/ROTR legalize operation not supported");
3355 break;
3356 case TargetLowering::Legal:
3357 break;
3358 case TargetLowering::Custom:
3359 Tmp1 = TLI.LowerOperation(Result, DAG);
3360 if (Tmp1.Val) Result = Tmp1;
3361 break;
3362 case TargetLowering::Promote:
3363 assert(0 && "Do not know how to promote ROTL/ROTR");
3364 break;
3365 case TargetLowering::Expand:
3366 assert(0 && "Do not know how to expand ROTL/ROTR");
3367 break;
3368 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003369 break;
3370
Nate Begemand88fc032006-01-14 03:14:10 +00003371 case ISD::BSWAP:
3372 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3373 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003374 case TargetLowering::Custom:
3375 assert(0 && "Cannot custom legalize this yet!");
3376 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003377 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003378 break;
3379 case TargetLowering::Promote: {
3380 MVT::ValueType OVT = Tmp1.getValueType();
3381 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanb55757e2007-05-18 17:52:13 +00003382 unsigned DiffBits = MVT::getSizeInBits(NVT) - MVT::getSizeInBits(OVT);
Nate Begemand88fc032006-01-14 03:14:10 +00003383
Chris Lattner456a93a2006-01-28 07:39:30 +00003384 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3385 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3386 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3387 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3388 break;
3389 }
3390 case TargetLowering::Expand:
3391 Result = ExpandBSWAP(Tmp1);
3392 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003393 }
3394 break;
3395
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003396 case ISD::CTPOP:
3397 case ISD::CTTZ:
3398 case ISD::CTLZ:
3399 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3400 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003401 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003402 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003403 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003404 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003405 TargetLowering::Custom) {
3406 Tmp1 = TLI.LowerOperation(Result, DAG);
3407 if (Tmp1.Val) {
3408 Result = Tmp1;
3409 }
Scott Michel910b66d2007-07-30 21:00:31 +00003410 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003411 break;
3412 case TargetLowering::Promote: {
3413 MVT::ValueType OVT = Tmp1.getValueType();
3414 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003415
3416 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003417 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3418 // Perform the larger operation, then subtract if needed.
3419 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003420 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003421 case ISD::CTPOP:
3422 Result = Tmp1;
3423 break;
3424 case ISD::CTTZ:
3425 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00003426 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003427 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003428 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003429 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Scott Michel910b66d2007-07-30 21:00:31 +00003430 DAG.getConstant(MVT::getSizeInBits(OVT),NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003431 break;
3432 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003433 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003434 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003435 DAG.getConstant(MVT::getSizeInBits(NVT) -
3436 MVT::getSizeInBits(OVT), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003437 break;
3438 }
3439 break;
3440 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003441 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003442 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003443 break;
3444 }
3445 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003446
Chris Lattner2c8086f2005-04-02 05:00:07 +00003447 // Unary operators
3448 case ISD::FABS:
3449 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003450 case ISD::FSQRT:
3451 case ISD::FSIN:
3452 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003453 Tmp1 = LegalizeOp(Node->getOperand(0));
3454 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003455 case TargetLowering::Promote:
3456 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003457 isCustom = true;
3458 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003459 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003460 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003461 if (isCustom) {
3462 Tmp1 = TLI.LowerOperation(Result, DAG);
3463 if (Tmp1.Val) Result = Tmp1;
3464 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003465 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003466 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003467 switch (Node->getOpcode()) {
3468 default: assert(0 && "Unreachable!");
3469 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003470 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3471 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003472 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003473 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003474 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003475 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
3476 MVT::ValueType VT = Node->getValueType(0);
3477 Tmp2 = DAG.getConstantFP(0.0, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003478 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00003479 ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003480 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3481 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003482 break;
3483 }
3484 case ISD::FSQRT:
3485 case ISD::FSIN:
3486 case ISD::FCOS: {
3487 MVT::ValueType VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003488
3489 // Expand unsupported unary vector operators by unrolling them.
3490 if (MVT::isVector(VT)) {
3491 Result = LegalizeOp(UnrollVectorOp(Op));
3492 break;
3493 }
3494
Evan Cheng56966222007-01-12 02:11:51 +00003495 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003496 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003497 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003498 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3499 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003500 break;
3501 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003502 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3503 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003504 break;
3505 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003506 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3507 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003508 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003509 default: assert(0 && "Unreachable!");
3510 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00003511 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003512 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003513 break;
3514 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003515 }
3516 break;
3517 }
3518 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003519 case ISD::FPOWI: {
Dan Gohman82669522007-10-11 23:57:53 +00003520 MVT::ValueType VT = Node->getValueType(0);
3521
3522 // Expand unsupported unary vector operators by unrolling them.
3523 if (MVT::isVector(VT)) {
3524 Result = LegalizeOp(UnrollVectorOp(Op));
3525 break;
3526 }
3527
3528 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003529 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3530 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003531 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003532 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003533 break;
3534 }
Chris Lattner35481892005-12-23 00:16:34 +00003535 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003536 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003537 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3538 Node->getValueType(0));
Dan Gohman7f321562007-06-25 16:23:39 +00003539 } else if (MVT::isVector(Op.getOperand(0).getValueType())) {
3540 // The input has to be a vector type, we have to either scalarize it, pack
3541 // it, or convert it based on whether the input vector type is legal.
3542 SDNode *InVal = Node->getOperand(0).Val;
Dale Johannesene5269622007-10-20 00:07:52 +00003543 int InIx = Node->getOperand(0).ResNo;
3544 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(InIx));
3545 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(InIx));
Dan Gohman7f321562007-06-25 16:23:39 +00003546
3547 // Figure out if there is a simple type corresponding to this Vector
3548 // type. If so, convert to the vector type.
3549 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3550 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003551 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003552 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3553 LegalizeOp(Node->getOperand(0)));
3554 break;
3555 } else if (NumElems == 1) {
3556 // Turn this into a bit convert of the scalar input.
3557 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3558 ScalarizeVectorOp(Node->getOperand(0)));
3559 break;
3560 } else {
3561 // FIXME: UNIMP! Store then reload
3562 assert(0 && "Cast from unsupported vector type not implemented yet!");
3563 }
Chris Lattner67993f72006-01-23 07:30:46 +00003564 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003565 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3566 Node->getOperand(0).getValueType())) {
3567 default: assert(0 && "Unknown operation action!");
3568 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003569 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3570 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003571 break;
3572 case TargetLowering::Legal:
3573 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003574 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003575 break;
3576 }
3577 }
3578 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003579
Chris Lattner2c8086f2005-04-02 05:00:07 +00003580 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003581 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003582 case ISD::UINT_TO_FP: {
3583 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003584 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3585 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003586 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003587 Node->getOperand(0).getValueType())) {
3588 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003589 case TargetLowering::Custom:
3590 isCustom = true;
3591 // FALLTHROUGH
3592 case TargetLowering::Legal:
3593 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003594 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003595 if (isCustom) {
3596 Tmp1 = TLI.LowerOperation(Result, DAG);
3597 if (Tmp1.Val) Result = Tmp1;
3598 }
3599 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003600 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00003601 Result = ExpandLegalINT_TO_FP(isSigned,
3602 LegalizeOp(Node->getOperand(0)),
3603 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003604 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003605 case TargetLowering::Promote:
3606 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
3607 Node->getValueType(0),
3608 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003609 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00003610 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003611 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00003612 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003613 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
3614 Node->getValueType(0), Node->getOperand(0));
3615 break;
3616 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003617 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003618 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003619 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
3620 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003621 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003622 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
3623 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003624 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003625 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3626 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003627 break;
3628 }
3629 break;
3630 }
3631 case ISD::TRUNCATE:
3632 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3633 case Legal:
3634 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003635 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003636 break;
3637 case Expand:
3638 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3639
3640 // Since the result is legal, we should just be able to truncate the low
3641 // part of the source.
3642 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3643 break;
3644 case Promote:
3645 Result = PromoteOp(Node->getOperand(0));
3646 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3647 break;
3648 }
3649 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003650
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003651 case ISD::FP_TO_SINT:
3652 case ISD::FP_TO_UINT:
3653 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3654 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003655 Tmp1 = LegalizeOp(Node->getOperand(0));
3656
Chris Lattner1618beb2005-07-29 00:11:56 +00003657 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3658 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003659 case TargetLowering::Custom:
3660 isCustom = true;
3661 // FALLTHROUGH
3662 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003663 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003664 if (isCustom) {
3665 Tmp1 = TLI.LowerOperation(Result, DAG);
3666 if (Tmp1.Val) Result = Tmp1;
3667 }
3668 break;
3669 case TargetLowering::Promote:
3670 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3671 Node->getOpcode() == ISD::FP_TO_SINT);
3672 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003673 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003674 if (Node->getOpcode() == ISD::FP_TO_UINT) {
3675 SDOperand True, False;
3676 MVT::ValueType VT = Node->getOperand(0).getValueType();
3677 MVT::ValueType NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00003678 const uint64_t zero[] = {0, 0};
3679 APFloat apf = APFloat(APInt(MVT::getSizeInBits(VT), 2, zero));
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003680 APInt x = APInt::getSignBit(MVT::getSizeInBits(NVT));
3681 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00003682 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003683 Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
Nate Begemand2558e32005-08-14 01:20:53 +00003684 Node->getOperand(0), Tmp2, ISD::SETLT);
3685 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3686 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003687 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003688 Tmp2));
3689 False = DAG.getNode(ISD::XOR, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003690 DAG.getConstant(x, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003691 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3692 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003693 } else {
3694 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3695 }
3696 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003697 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003698 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003699 case Expand: {
Evan Cheng6af00d52006-12-13 01:57:55 +00003700 MVT::ValueType VT = Op.getValueType();
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003701 MVT::ValueType OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003702 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003703 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003704 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3705 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3706 Node->getOperand(0), DAG.getValueType(MVT::f64));
3707 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3708 DAG.getIntPtrConstant(1));
3709 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3710 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003711 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3712 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3713 Tmp2 = DAG.getConstantFP(apf, OVT);
3714 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3715 // FIXME: generated code sucks.
3716 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3717 DAG.getNode(ISD::ADD, MVT::i32,
3718 DAG.getNode(ISD::FP_TO_SINT, VT,
3719 DAG.getNode(ISD::FSUB, OVT,
3720 Node->getOperand(0), Tmp2)),
3721 DAG.getConstant(0x80000000, MVT::i32)),
3722 DAG.getNode(ISD::FP_TO_SINT, VT,
3723 Node->getOperand(0)),
3724 DAG.getCondCode(ISD::SETGE));
3725 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003726 break;
3727 }
Dan Gohmana2e94852008-03-10 23:03:31 +00003728 // Convert f32 / f64 to i32 / i64 / i128.
Evan Cheng56966222007-01-12 02:11:51 +00003729 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng6af00d52006-12-13 01:57:55 +00003730 switch (Node->getOpcode()) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003731 case ISD::FP_TO_SINT: {
Dan Gohmana2e94852008-03-10 23:03:31 +00003732 if (VT == MVT::i32) {
3733 if (OVT == MVT::f32)
3734 LC = RTLIB::FPTOSINT_F32_I32;
3735 else if (OVT == MVT::f64)
3736 LC = RTLIB::FPTOSINT_F64_I32;
3737 else
3738 assert(0 && "Unexpected i32-to-fp conversion!");
3739 } else if (VT == MVT::i64) {
3740 if (OVT == MVT::f32)
3741 LC = RTLIB::FPTOSINT_F32_I64;
3742 else if (OVT == MVT::f64)
3743 LC = RTLIB::FPTOSINT_F64_I64;
3744 else if (OVT == MVT::f80)
3745 LC = RTLIB::FPTOSINT_F80_I64;
3746 else if (OVT == MVT::ppcf128)
3747 LC = RTLIB::FPTOSINT_PPCF128_I64;
3748 else
3749 assert(0 && "Unexpected i64-to-fp conversion!");
3750 } else if (VT == MVT::i128) {
3751 if (OVT == MVT::f32)
3752 LC = RTLIB::FPTOSINT_F32_I128;
3753 else if (OVT == MVT::f64)
3754 LC = RTLIB::FPTOSINT_F64_I128;
3755 else if (OVT == MVT::f80)
3756 LC = RTLIB::FPTOSINT_F80_I128;
3757 else if (OVT == MVT::ppcf128)
3758 LC = RTLIB::FPTOSINT_PPCF128_I128;
3759 else
3760 assert(0 && "Unexpected i128-to-fp conversion!");
3761 } else {
3762 assert(0 && "Unexpectd int-to-fp conversion!");
Dale Johannesen73328d12007-09-19 23:55:34 +00003763 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003764 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003765 }
3766 case ISD::FP_TO_UINT: {
Dan Gohmana2e94852008-03-10 23:03:31 +00003767 if (VT == MVT::i32) {
3768 if (OVT == MVT::f32)
3769 LC = RTLIB::FPTOUINT_F32_I32;
3770 else if (OVT == MVT::f64)
3771 LC = RTLIB::FPTOUINT_F64_I32;
3772 else if (OVT == MVT::f80)
3773 LC = RTLIB::FPTOUINT_F80_I32;
3774 else
3775 assert(0 && "Unexpected i32-to-fp conversion!");
3776 } else if (VT == MVT::i64) {
3777 if (OVT == MVT::f32)
3778 LC = RTLIB::FPTOUINT_F32_I64;
3779 else if (OVT == MVT::f64)
3780 LC = RTLIB::FPTOUINT_F64_I64;
3781 else if (OVT == MVT::f80)
3782 LC = RTLIB::FPTOUINT_F80_I64;
3783 else if (OVT == MVT::ppcf128)
3784 LC = RTLIB::FPTOUINT_PPCF128_I64;
3785 else
3786 assert(0 && "Unexpected i64-to-fp conversion!");
3787 } else if (VT == MVT::i128) {
3788 if (OVT == MVT::f32)
3789 LC = RTLIB::FPTOUINT_F32_I128;
3790 else if (OVT == MVT::f64)
3791 LC = RTLIB::FPTOUINT_F64_I128;
3792 else if (OVT == MVT::f80)
3793 LC = RTLIB::FPTOUINT_F80_I128;
3794 else if (OVT == MVT::ppcf128)
3795 LC = RTLIB::FPTOUINT_PPCF128_I128;
3796 else
3797 assert(0 && "Unexpected i128-to-fp conversion!");
3798 } else {
3799 assert(0 && "Unexpectd int-to-fp conversion!");
Dale Johannesen73328d12007-09-19 23:55:34 +00003800 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003801 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003802 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003803 default: assert(0 && "Unreachable!");
3804 }
3805 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003806 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003807 break;
3808 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003809 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003810 Tmp1 = PromoteOp(Node->getOperand(0));
3811 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3812 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003813 break;
3814 }
3815 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003816
Chris Lattnerf2670a82008-01-16 06:57:07 +00003817 case ISD::FP_EXTEND: {
Chris Lattner0bd48932008-01-17 07:00:52 +00003818 MVT::ValueType DstVT = Op.getValueType();
3819 MVT::ValueType SrcVT = Op.getOperand(0).getValueType();
3820 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3821 // The only other way we can lower this is to turn it into a STORE,
3822 // LOAD pair, targetting a temporary location (a stack slot).
3823 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3824 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00003825 }
3826 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3827 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3828 case Legal:
3829 Tmp1 = LegalizeOp(Node->getOperand(0));
3830 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3831 break;
3832 case Promote:
3833 Tmp1 = PromoteOp(Node->getOperand(0));
3834 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3835 break;
3836 }
3837 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003838 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003839 case ISD::FP_ROUND: {
Chris Lattner0bd48932008-01-17 07:00:52 +00003840 MVT::ValueType DstVT = Op.getValueType();
3841 MVT::ValueType SrcVT = Op.getOperand(0).getValueType();
3842 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3843 if (SrcVT == MVT::ppcf128) {
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003844 SDOperand Lo;
3845 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003846 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003847 if (DstVT!=MVT::f64)
3848 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00003849 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00003850 }
Chris Lattner0bd48932008-01-17 07:00:52 +00003851 // The only other way we can lower this is to turn it into a STORE,
3852 // LOAD pair, targetting a temporary location (a stack slot).
3853 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3854 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00003855 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00003856 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3857 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3858 case Legal:
3859 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003860 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003861 break;
3862 case Promote:
3863 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003864 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3865 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003866 break;
3867 }
3868 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003869 }
Chris Lattner13c78e22005-09-02 00:18:10 +00003870 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003871 case ISD::ZERO_EXTEND:
3872 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003873 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003874 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003875 case Legal:
3876 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel0123b7d2008-02-15 23:05:48 +00003877 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3878 TargetLowering::Custom) {
3879 Tmp2 = TLI.LowerOperation(Result, DAG);
3880 if (Tmp2.Val) {
3881 Tmp1 = Tmp2;
3882 }
3883 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003884 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003885 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003886 case Promote:
3887 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003888 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003889 Tmp1 = PromoteOp(Node->getOperand(0));
3890 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003891 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003892 case ISD::ZERO_EXTEND:
3893 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003894 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003895 Result = DAG.getZeroExtendInReg(Result,
3896 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003897 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003898 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003899 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003900 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003901 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003902 Result,
3903 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003904 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003905 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003906 }
3907 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003908 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003909 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003910 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003911 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003912
3913 // If this operation is not supported, convert it to a shl/shr or load/store
3914 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003915 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3916 default: assert(0 && "This action not supported for this op yet!");
3917 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003918 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003919 break;
3920 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003921 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003922 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003923 // NOTE: we could fall back on load/store here too for targets without
3924 // SAR. However, it is doubtful that any exist.
3925 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
3926 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00003927 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003928 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3929 Node->getOperand(0), ShiftCst);
3930 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3931 Result, ShiftCst);
3932 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003933 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003934 // EXTLOAD pair, targetting a temporary location (a stack slot).
3935
3936 // NOTE: there is a choice here between constantly creating new stack
3937 // slots and always reusing the same one. We currently always create
3938 // new ones, as reuse may inhibit scheduling.
Chris Lattnera66bb392008-01-16 07:51:34 +00003939 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3940 Node->getValueType(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00003941 } else {
3942 assert(0 && "Unknown op");
3943 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003944 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003945 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003946 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003947 }
Duncan Sands36397f52007-07-27 12:58:54 +00003948 case ISD::TRAMPOLINE: {
3949 SDOperand Ops[6];
3950 for (unsigned i = 0; i != 6; ++i)
3951 Ops[i] = LegalizeOp(Node->getOperand(i));
3952 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3953 // The only option for this node is to custom lower it.
3954 Result = TLI.LowerOperation(Result, DAG);
3955 assert(Result.Val && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00003956
3957 // Since trampoline produces two values, make sure to remember that we
3958 // legalized both of them.
3959 Tmp1 = LegalizeOp(Result.getValue(1));
3960 Result = LegalizeOp(Result);
3961 AddLegalizedOperand(SDOperand(Node, 0), Result);
3962 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3963 return Op.ResNo ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00003964 }
Dan Gohman1a024862008-01-31 00:41:03 +00003965 case ISD::FLT_ROUNDS_: {
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003966 MVT::ValueType VT = Node->getValueType(0);
3967 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3968 default: assert(0 && "This action not supported for this op yet!");
3969 case TargetLowering::Custom:
3970 Result = TLI.LowerOperation(Op, DAG);
3971 if (Result.Val) break;
3972 // Fall Thru
3973 case TargetLowering::Legal:
3974 // If this operation is not supported, lower it to constant 1
3975 Result = DAG.getConstant(1, VT);
3976 break;
3977 }
3978 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003979 case ISD::TRAP: {
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003980 MVT::ValueType VT = Node->getValueType(0);
3981 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3982 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00003983 case TargetLowering::Legal:
3984 Tmp1 = LegalizeOp(Node->getOperand(0));
3985 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3986 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003987 case TargetLowering::Custom:
3988 Result = TLI.LowerOperation(Op, DAG);
3989 if (Result.Val) break;
3990 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00003991 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003992 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00003993 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003994 TargetLowering::ArgListTy Args;
3995 std::pair<SDOperand,SDOperand> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00003996 TLI.LowerCallTo(Tmp1, Type::VoidTy,
3997 false, false, false, CallingConv::C, false,
Chris Lattner034f12e2008-01-15 22:09:33 +00003998 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
3999 Args, DAG);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004000 Result = CallResult.second;
4001 break;
4002 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004003 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004004 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00004005 }
Chris Lattner456a93a2006-01-28 07:39:30 +00004006
Chris Lattner4ddd2832006-04-08 04:13:17 +00004007 assert(Result.getValueType() == Op.getValueType() &&
4008 "Bad legalization!");
4009
Chris Lattner456a93a2006-01-28 07:39:30 +00004010 // Make sure that the generated code is itself legal.
4011 if (Result != Op)
4012 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004013
Chris Lattner45982da2005-05-12 16:53:42 +00004014 // Note that LegalizeOp may be reentered even from single-use nodes, which
4015 // means that we always must cache transformed nodes.
4016 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004017 return Result;
4018}
4019
Chris Lattner8b6fa222005-01-15 22:16:26 +00004020/// PromoteOp - Given an operation that produces a value in an invalid type,
4021/// promote it to compute the value into a larger type. The produced value will
4022/// have the correct bits for the low portion of the register, but no guarantee
4023/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00004024SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
4025 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00004026 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004027 assert(getTypeAction(VT) == Promote &&
4028 "Caller should expand or legalize operands that are not promotable!");
4029 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
4030 "Cannot promote to smaller type!");
4031
Chris Lattner03c85462005-01-15 05:21:40 +00004032 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00004033 SDOperand Result;
4034 SDNode *Node = Op.Val;
4035
Roman Levenstein9cac5252008-04-16 16:15:27 +00004036 DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004037 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004038
Chris Lattner03c85462005-01-15 05:21:40 +00004039 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004040 case ISD::CopyFromReg:
4041 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004042 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004043#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004044 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004045#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004046 assert(0 && "Do not know how to promote this operator!");
4047 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004048 case ISD::UNDEF:
4049 Result = DAG.getNode(ISD::UNDEF, NVT);
4050 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004051 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004052 if (VT != MVT::i1)
4053 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4054 else
4055 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004056 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4057 break;
4058 case ISD::ConstantFP:
4059 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4060 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4061 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004062
Chris Lattner82fbfb62005-01-18 02:59:52 +00004063 case ISD::SETCC:
Scott Michel5b8f82e2008-03-10 15:42:14 +00004064 assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
Nate Begeman5922f562008-03-14 00:53:31 +00004065 && "SetCC type is not legal??");
Scott Michel5b8f82e2008-03-10 15:42:14 +00004066 Result = DAG.getNode(ISD::SETCC,
Nate Begeman5922f562008-03-14 00:53:31 +00004067 TLI.getSetCCResultType(Node->getOperand(0)),
4068 Node->getOperand(0), Node->getOperand(1),
4069 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004070 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00004071
Chris Lattner03c85462005-01-15 05:21:40 +00004072 case ISD::TRUNCATE:
4073 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4074 case Legal:
4075 Result = LegalizeOp(Node->getOperand(0));
4076 assert(Result.getValueType() >= NVT &&
4077 "This truncation doesn't make sense!");
4078 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
4079 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4080 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004081 case Promote:
4082 // The truncation is not required, because we don't guarantee anything
4083 // about high bits anyway.
4084 Result = PromoteOp(Node->getOperand(0));
4085 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004086 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004087 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4088 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00004089 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004090 }
4091 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004092 case ISD::SIGN_EXTEND:
4093 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004094 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004095 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4096 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4097 case Legal:
4098 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00004099 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004100 break;
4101 case Promote:
4102 // Promote the reg if it's smaller.
4103 Result = PromoteOp(Node->getOperand(0));
4104 // The high bits are not guaranteed to be anything. Insert an extend.
4105 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00004106 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004107 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004108 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00004109 Result = DAG.getZeroExtendInReg(Result,
4110 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004111 break;
4112 }
4113 break;
Chris Lattner35481892005-12-23 00:16:34 +00004114 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004115 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4116 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00004117 Result = PromoteOp(Result);
4118 break;
4119
Chris Lattner8b6fa222005-01-15 22:16:26 +00004120 case ISD::FP_EXTEND:
4121 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4122 case ISD::FP_ROUND:
4123 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4124 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4125 case Promote: assert(0 && "Unreachable with 2 FP types!");
4126 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004127 if (Node->getConstantOperandVal(1) == 0) {
4128 // Input is legal? Do an FP_ROUND_INREG.
4129 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4130 DAG.getValueType(VT));
4131 } else {
4132 // Just remove the truncate, it isn't affecting the value.
4133 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4134 Node->getOperand(1));
4135 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004136 break;
4137 }
4138 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004139 case ISD::SINT_TO_FP:
4140 case ISD::UINT_TO_FP:
4141 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4142 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004143 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00004144 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004145 break;
4146
4147 case Promote:
4148 Result = PromoteOp(Node->getOperand(0));
4149 if (Node->getOpcode() == ISD::SINT_TO_FP)
4150 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004151 Result,
4152 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004153 else
Chris Lattner23993562005-04-13 02:38:47 +00004154 Result = DAG.getZeroExtendInReg(Result,
4155 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004156 // No extra round required here.
4157 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004158 break;
4159 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004160 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4161 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00004162 // Round if we cannot tolerate excess precision.
4163 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004164 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4165 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004166 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004167 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004168 break;
4169
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004170 case ISD::SIGN_EXTEND_INREG:
4171 Result = PromoteOp(Node->getOperand(0));
4172 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4173 Node->getOperand(1));
4174 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004175 case ISD::FP_TO_SINT:
4176 case ISD::FP_TO_UINT:
4177 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4178 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004179 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004180 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004181 break;
4182 case Promote:
4183 // The input result is prerounded, so we don't have to do anything
4184 // special.
4185 Tmp1 = PromoteOp(Node->getOperand(0));
4186 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004187 }
Nate Begemand2558e32005-08-14 01:20:53 +00004188 // If we're promoting a UINT to a larger size, check to see if the new node
4189 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4190 // we can use that instead. This allows us to generate better code for
4191 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4192 // legal, such as PowerPC.
4193 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004194 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004195 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4196 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00004197 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4198 } else {
4199 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4200 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004201 break;
4202
Chris Lattner2c8086f2005-04-02 05:00:07 +00004203 case ISD::FABS:
4204 case ISD::FNEG:
4205 Tmp1 = PromoteOp(Node->getOperand(0));
4206 assert(Tmp1.getValueType() == NVT);
4207 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4208 // NOTE: we do not have to do any extra rounding here for
4209 // NoExcessFPPrecision, because we know the input will have the appropriate
4210 // precision, and these operations don't modify precision at all.
4211 break;
4212
Chris Lattnerda6ba872005-04-28 21:44:33 +00004213 case ISD::FSQRT:
4214 case ISD::FSIN:
4215 case ISD::FCOS:
4216 Tmp1 = PromoteOp(Node->getOperand(0));
4217 assert(Tmp1.getValueType() == NVT);
4218 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004219 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004220 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4221 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004222 break;
4223
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004224 case ISD::FPOWI: {
4225 // Promote f32 powi to f64 powi. Note that this could insert a libcall
4226 // directly as well, which may be better.
4227 Tmp1 = PromoteOp(Node->getOperand(0));
4228 assert(Tmp1.getValueType() == NVT);
4229 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
4230 if (NoExcessFPPrecision)
4231 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4232 DAG.getValueType(VT));
4233 break;
4234 }
4235
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004236 case ISD::ATOMIC_LCS: {
4237 Tmp2 = PromoteOp(Node->getOperand(2));
4238 Tmp3 = PromoteOp(Node->getOperand(3));
4239 Result = DAG.getAtomic(Node->getOpcode(), Node->getOperand(0),
4240 Node->getOperand(1), Tmp2, Tmp3,
4241 cast<AtomicSDNode>(Node)->getVT());
4242 // Remember that we legalized the chain.
4243 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4244 break;
4245 }
4246 case ISD::ATOMIC_LAS:
4247 case ISD::ATOMIC_SWAP: {
4248 Tmp2 = PromoteOp(Node->getOperand(2));
4249 Result = DAG.getAtomic(Node->getOpcode(), Node->getOperand(0),
4250 Node->getOperand(1), Tmp2,
4251 cast<AtomicSDNode>(Node)->getVT());
4252 // Remember that we legalized the chain.
4253 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4254 break;
4255 }
4256
Chris Lattner03c85462005-01-15 05:21:40 +00004257 case ISD::AND:
4258 case ISD::OR:
4259 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004260 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004261 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004262 case ISD::MUL:
4263 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004264 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004265 // that too is okay if they are integer operations.
4266 Tmp1 = PromoteOp(Node->getOperand(0));
4267 Tmp2 = PromoteOp(Node->getOperand(1));
4268 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4269 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004270 break;
4271 case ISD::FADD:
4272 case ISD::FSUB:
4273 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004274 Tmp1 = PromoteOp(Node->getOperand(0));
4275 Tmp2 = PromoteOp(Node->getOperand(1));
4276 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4277 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4278
4279 // Floating point operations will give excess precision that we may not be
4280 // able to tolerate. If we DO allow excess precision, just leave it,
4281 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004282 // FIXME: Why would we need to round FP ops more than integer ones?
4283 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004284 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004285 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4286 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004287 break;
4288
Chris Lattner8b6fa222005-01-15 22:16:26 +00004289 case ISD::SDIV:
4290 case ISD::SREM:
4291 // These operators require that their input be sign extended.
4292 Tmp1 = PromoteOp(Node->getOperand(0));
4293 Tmp2 = PromoteOp(Node->getOperand(1));
4294 if (MVT::isInteger(NVT)) {
Chris Lattner15e4b012005-07-10 00:07:11 +00004295 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4296 DAG.getValueType(VT));
4297 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4298 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004299 }
4300 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4301
4302 // Perform FP_ROUND: this is probably overly pessimistic.
4303 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004304 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4305 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004306 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004307 case ISD::FDIV:
4308 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004309 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004310 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004311 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004312 case Expand: assert(0 && "not implemented");
4313 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4314 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004315 }
4316 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004317 case Expand: assert(0 && "not implemented");
4318 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4319 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004320 }
Chris Lattner01b3d732005-09-28 22:28:18 +00004321 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4322
4323 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004324 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00004325 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4326 DAG.getValueType(VT));
4327 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004328
4329 case ISD::UDIV:
4330 case ISD::UREM:
4331 // These operators require that their input be zero extended.
4332 Tmp1 = PromoteOp(Node->getOperand(0));
4333 Tmp2 = PromoteOp(Node->getOperand(1));
4334 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00004335 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4336 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004337 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4338 break;
4339
4340 case ISD::SHL:
4341 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00004342 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004343 break;
4344 case ISD::SRA:
4345 // The input value must be properly sign extended.
4346 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00004347 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4348 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00004349 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004350 break;
4351 case ISD::SRL:
4352 // The input value must be properly zero extended.
4353 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00004354 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004355 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004356 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004357
4358 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004359 Tmp1 = Node->getOperand(0); // Get the chain.
4360 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004361 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4362 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
4363 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
4364 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004365 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
4366 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004367 // Increment the pointer, VAList, to the next vaarg
4368 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
4369 DAG.getConstant(MVT::getSizeInBits(VT)/8,
4370 TLI.getPointerTy()));
4371 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00004372 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004373 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004374 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004375 }
4376 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004377 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004378 break;
4379
Evan Cheng466685d2006-10-09 20:57:25 +00004380 case ISD::LOAD: {
4381 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004382 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4383 ? ISD::EXTLOAD : LD->getExtensionType();
4384 Result = DAG.getExtLoad(ExtType, NVT,
4385 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004386 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004387 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004388 LD->isVolatile(),
4389 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004390 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004391 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004392 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004393 }
Chris Lattner03c85462005-01-15 05:21:40 +00004394 case ISD::SELECT:
Chris Lattner03c85462005-01-15 05:21:40 +00004395 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4396 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner456a93a2006-01-28 07:39:30 +00004397 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004398 break;
Nate Begeman9373a812005-08-10 20:51:12 +00004399 case ISD::SELECT_CC:
4400 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4401 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4402 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004403 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004404 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004405 case ISD::BSWAP:
4406 Tmp1 = Node->getOperand(0);
4407 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4408 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4409 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004410 DAG.getConstant(MVT::getSizeInBits(NVT) -
4411 MVT::getSizeInBits(VT),
Nate Begemand88fc032006-01-14 03:14:10 +00004412 TLI.getShiftAmountTy()));
4413 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004414 case ISD::CTPOP:
4415 case ISD::CTTZ:
4416 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004417 // Zero extend the argument
4418 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004419 // Perform the larger operation, then subtract if needed.
4420 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004421 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004422 case ISD::CTPOP:
4423 Result = Tmp1;
4424 break;
4425 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004426 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004427 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004428 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
4429 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004430 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004431 DAG.getConstant(MVT::getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004432 break;
4433 case ISD::CTLZ:
4434 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004435 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004436 DAG.getConstant(MVT::getSizeInBits(NVT) -
4437 MVT::getSizeInBits(VT), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004438 break;
4439 }
4440 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004441 case ISD::EXTRACT_SUBVECTOR:
4442 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004443 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004444 case ISD::EXTRACT_VECTOR_ELT:
4445 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4446 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004447 }
4448
4449 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004450
4451 // Make sure the result is itself legal.
4452 Result = LegalizeOp(Result);
4453
4454 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004455 AddPromotedOperand(Op, Result);
4456 return Result;
4457}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004458
Dan Gohman7f321562007-06-25 16:23:39 +00004459/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4460/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4461/// based on the vector type. The return type of this matches the element type
4462/// of the vector, which may not be legal for the target.
4463SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004464 // We know that operand #0 is the Vec vector. If the index is a constant
4465 // or if the invec is a supported hardware type, we can use it. Otherwise,
4466 // lower to a store then an indexed load.
4467 SDOperand Vec = Op.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004468 SDOperand Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00004469
Dan Gohmane40c7b02007-09-24 15:54:53 +00004470 MVT::ValueType TVT = Vec.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00004471 unsigned NumElems = MVT::getVectorNumElements(TVT);
Chris Lattner15972212006-03-31 17:55:51 +00004472
Dan Gohman7f321562007-06-25 16:23:39 +00004473 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4474 default: assert(0 && "This action is not supported yet!");
4475 case TargetLowering::Custom: {
4476 Vec = LegalizeOp(Vec);
4477 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4478 SDOperand Tmp3 = TLI.LowerOperation(Op, DAG);
4479 if (Tmp3.Val)
4480 return Tmp3;
4481 break;
4482 }
4483 case TargetLowering::Legal:
4484 if (isTypeLegal(TVT)) {
4485 Vec = LegalizeOp(Vec);
4486 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004487 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004488 }
4489 break;
4490 case TargetLowering::Expand:
4491 break;
4492 }
4493
4494 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004495 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004496 Op = ScalarizeVectorOp(Vec);
4497 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00004498 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00004499 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Chris Lattner15972212006-03-31 17:55:51 +00004500 SDOperand Lo, Hi;
4501 SplitVectorOp(Vec, Lo, Hi);
Nate Begeman55030dc2008-01-29 02:24:00 +00004502 if (CIdx->getValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00004503 Vec = Lo;
4504 } else {
4505 Vec = Hi;
Nate Begeman55030dc2008-01-29 02:24:00 +00004506 Idx = DAG.getConstant(CIdx->getValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00004507 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00004508 }
Dan Gohman7f321562007-06-25 16:23:39 +00004509
Chris Lattner15972212006-03-31 17:55:51 +00004510 // It's now an extract from the appropriate high or low part. Recurse.
4511 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004512 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00004513 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004514 // Store the value to a temporary stack slot, then LOAD the scalar
4515 // element back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004516 SDOperand StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dan Gohman7f321562007-06-25 16:23:39 +00004517 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
4518
4519 // Add the offset to the index.
4520 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
4521 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4522 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004523
4524 if (MVT::getSizeInBits(Idx.getValueType()) >
4525 MVT::getSizeInBits(TLI.getPointerTy()))
Chris Lattnerf185e672007-10-19 16:47:35 +00004526 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004527 else
Chris Lattnerf185e672007-10-19 16:47:35 +00004528 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004529
Dan Gohman7f321562007-06-25 16:23:39 +00004530 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4531
4532 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00004533 }
Dan Gohman7f321562007-06-25 16:23:39 +00004534 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00004535}
4536
Dan Gohman7f321562007-06-25 16:23:39 +00004537/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00004538/// we assume the operation can be split if it is not already legal.
Dan Gohman7f321562007-06-25 16:23:39 +00004539SDOperand SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDOperand Op) {
Dan Gohman65956352007-06-13 15:12:02 +00004540 // We know that operand #0 is the Vec vector. For now we assume the index
4541 // is a constant and that the extracted result is a supported hardware type.
4542 SDOperand Vec = Op.getOperand(0);
4543 SDOperand Idx = LegalizeOp(Op.getOperand(1));
4544
Dan Gohman7f321562007-06-25 16:23:39 +00004545 unsigned NumElems = MVT::getVectorNumElements(Vec.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00004546
4547 if (NumElems == MVT::getVectorNumElements(Op.getValueType())) {
4548 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004549 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00004550 }
4551
4552 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
4553 SDOperand Lo, Hi;
4554 SplitVectorOp(Vec, Lo, Hi);
4555 if (CIdx->getValue() < NumElems/2) {
4556 Vec = Lo;
4557 } else {
4558 Vec = Hi;
4559 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
4560 }
4561
4562 // It's now an extract from the appropriate high or low part. Recurse.
4563 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004564 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00004565}
4566
Nate Begeman750ac1b2006-02-01 07:19:44 +00004567/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4568/// with condition CC on the current target. This usually involves legalizing
4569/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4570/// there may be no choice but to create a new SetCC node to represent the
4571/// legalized value of setcc lhs, rhs. In this case, the value is returned in
4572/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
4573void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
4574 SDOperand &RHS,
4575 SDOperand &CC) {
Dale Johannesen638ccd52007-10-06 01:24:11 +00004576 SDOperand Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004577
4578 switch (getTypeAction(LHS.getValueType())) {
4579 case Legal:
4580 Tmp1 = LegalizeOp(LHS); // LHS
4581 Tmp2 = LegalizeOp(RHS); // RHS
4582 break;
4583 case Promote:
4584 Tmp1 = PromoteOp(LHS); // LHS
4585 Tmp2 = PromoteOp(RHS); // RHS
4586
4587 // If this is an FP compare, the operands have already been extended.
4588 if (MVT::isInteger(LHS.getValueType())) {
4589 MVT::ValueType VT = LHS.getValueType();
4590 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
4591
4592 // Otherwise, we have to insert explicit sign or zero extends. Note
4593 // that we could insert sign extends for ALL conditions, but zero extend
4594 // is cheaper on many machines (an AND instead of two shifts), so prefer
4595 // it.
4596 switch (cast<CondCodeSDNode>(CC)->get()) {
4597 default: assert(0 && "Unknown integer comparison!");
4598 case ISD::SETEQ:
4599 case ISD::SETNE:
4600 case ISD::SETUGE:
4601 case ISD::SETUGT:
4602 case ISD::SETULE:
4603 case ISD::SETULT:
4604 // ALL of these operations will work if we either sign or zero extend
4605 // the operands (including the unsigned comparisons!). Zero extend is
4606 // usually a simpler/cheaper operation, so prefer it.
4607 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4608 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4609 break;
4610 case ISD::SETGE:
4611 case ISD::SETGT:
4612 case ISD::SETLT:
4613 case ISD::SETLE:
4614 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4615 DAG.getValueType(VT));
4616 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4617 DAG.getValueType(VT));
4618 break;
4619 }
4620 }
4621 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004622 case Expand: {
4623 MVT::ValueType VT = LHS.getValueType();
4624 if (VT == MVT::f32 || VT == MVT::f64) {
4625 // Expand into one or more soft-fp libcall(s).
Evan Cheng56966222007-01-12 02:11:51 +00004626 RTLIB::Libcall LC1, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00004627 switch (cast<CondCodeSDNode>(CC)->get()) {
4628 case ISD::SETEQ:
4629 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00004630 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004631 break;
4632 case ISD::SETNE:
4633 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00004634 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004635 break;
4636 case ISD::SETGE:
4637 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00004638 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004639 break;
4640 case ISD::SETLT:
4641 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00004642 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004643 break;
4644 case ISD::SETLE:
4645 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00004646 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004647 break;
4648 case ISD::SETGT:
4649 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00004650 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004651 break;
4652 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00004653 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4654 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004655 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00004656 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004657 break;
4658 default:
Evan Cheng56966222007-01-12 02:11:51 +00004659 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004660 switch (cast<CondCodeSDNode>(CC)->get()) {
4661 case ISD::SETONE:
4662 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004663 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004664 // Fallthrough
4665 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004666 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004667 break;
4668 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004669 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004670 break;
4671 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004672 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004673 break;
4674 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004675 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004676 break;
Evan Cheng56966222007-01-12 02:11:51 +00004677 case ISD::SETUEQ:
4678 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004679 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004680 default: assert(0 && "Unsupported FP setcc!");
4681 }
4682 }
4683
4684 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00004685 Tmp1 = ExpandLibCall(LC1,
Reid Spencer47857812006-12-31 05:55:36 +00004686 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004687 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004688 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004689 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004690 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004691 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00004692 CC);
Duncan Sands460a14e2008-04-12 17:14:18 +00004693 LHS = ExpandLibCall(LC2,
4694 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004695 false /*sign irrelevant*/, Dummy);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004696 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004697 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004698 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4699 Tmp2 = SDOperand();
4700 }
4701 LHS = Tmp1;
4702 RHS = Tmp2;
4703 return;
4704 }
4705
Nate Begeman750ac1b2006-02-01 07:19:44 +00004706 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
4707 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004708 ExpandOp(RHS, RHSLo, RHSHi);
4709 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4710
4711 if (VT==MVT::ppcf128) {
4712 // FIXME: This generated code sucks. We want to generate
4713 // FCMP crN, hi1, hi2
4714 // BNE crN, L:
4715 // FCMP crN, lo1, lo2
4716 // The following can be improved, but not that much.
Scott Michel5b8f82e2008-03-10 15:42:14 +00004717 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETEQ);
4718 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004719 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004720 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETNE);
4721 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004722 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4723 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
4724 Tmp2 = SDOperand();
4725 break;
4726 }
4727
4728 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004729 case ISD::SETEQ:
4730 case ISD::SETNE:
4731 if (RHSLo == RHSHi)
4732 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4733 if (RHSCST->isAllOnesValue()) {
4734 // Comparison to -1.
4735 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4736 Tmp2 = RHSLo;
4737 break;
4738 }
4739
4740 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4741 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4742 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4743 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4744 break;
4745 default:
4746 // If this is a comparison of the sign bit, just look at the top part.
4747 // X > -1, x < 0
4748 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4749 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004750 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00004751 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4752 CST->isAllOnesValue())) { // X > -1
4753 Tmp1 = LHSHi;
4754 Tmp2 = RHSHi;
4755 break;
4756 }
4757
4758 // FIXME: This generated code sucks.
4759 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004760 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004761 default: assert(0 && "Unknown integer setcc!");
4762 case ISD::SETLT:
4763 case ISD::SETULT: LowCC = ISD::SETULT; break;
4764 case ISD::SETGT:
4765 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4766 case ISD::SETLE:
4767 case ISD::SETULE: LowCC = ISD::SETULE; break;
4768 case ISD::SETGE:
4769 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4770 }
4771
4772 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4773 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4774 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4775
4776 // NOTE: on targets without efficient SELECT of bools, we can always use
4777 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004778 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004779 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
Nate Begeman5922f562008-03-14 00:53:31 +00004780 LowCC, false, DagCombineInfo);
Evan Cheng2e677812007-02-08 22:16:19 +00004781 if (!Tmp1.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004782 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4783 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004784 CCCode, false, DagCombineInfo);
4785 if (!Tmp2.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004786 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004787 RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00004788
4789 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4790 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
Dan Gohman002e5d02008-03-13 22:13:53 +00004791 if ((Tmp1C && Tmp1C->isNullValue()) ||
4792 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00004793 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4794 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00004795 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00004796 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4797 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4798 // low part is known false, returns high part.
4799 // For LE / GE, if high part is known false, ignore the low part.
4800 // For LT / GT, if high part is known true, ignore the low part.
4801 Tmp1 = Tmp2;
4802 Tmp2 = SDOperand();
4803 } else {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004804 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004805 ISD::SETEQ, false, DagCombineInfo);
4806 if (!Result.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004807 Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004808 ISD::SETEQ);
Evan Cheng2e677812007-02-08 22:16:19 +00004809 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4810 Result, Tmp1, Tmp2));
4811 Tmp1 = Result;
4812 Tmp2 = SDOperand();
4813 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004814 }
4815 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004816 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004817 LHS = Tmp1;
4818 RHS = Tmp2;
4819}
4820
Chris Lattner1401d152008-01-16 07:45:30 +00004821/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4822/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4823/// a load from the stack slot to DestVT, extending it if needed.
4824/// The resultant code need not be legal.
4825SDOperand SelectionDAGLegalize::EmitStackConvert(SDOperand SrcOp,
4826 MVT::ValueType SlotVT,
4827 MVT::ValueType DestVT) {
Chris Lattner35481892005-12-23 00:16:34 +00004828 // Create the stack frame object.
Chris Lattner1401d152008-01-16 07:45:30 +00004829 SDOperand FIPtr = DAG.CreateStackTemporary(SlotVT);
4830
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004831 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004832 int SPFI = StackPtrFI->getIndex();
4833
Chris Lattner1401d152008-01-16 07:45:30 +00004834 unsigned SrcSize = MVT::getSizeInBits(SrcOp.getValueType());
4835 unsigned SlotSize = MVT::getSizeInBits(SlotVT);
4836 unsigned DestSize = MVT::getSizeInBits(DestVT);
Chris Lattner35481892005-12-23 00:16:34 +00004837
Chris Lattner1401d152008-01-16 07:45:30 +00004838 // Emit a store to the stack slot. Use a truncstore if the input value is
4839 // later than DestVT.
4840 SDOperand Store;
4841 if (SrcSize > SlotSize)
Dan Gohman69de1932008-02-06 22:27:42 +00004842 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004843 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00004844 SPFI, SlotVT);
Chris Lattner1401d152008-01-16 07:45:30 +00004845 else {
4846 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman69de1932008-02-06 22:27:42 +00004847 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004848 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00004849 SPFI, SlotVT);
Chris Lattner1401d152008-01-16 07:45:30 +00004850 }
4851
Chris Lattner35481892005-12-23 00:16:34 +00004852 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00004853 if (SlotSize == DestSize)
4854 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
4855
4856 assert(SlotSize < DestSize && "Unknown extension!");
4857 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT);
Chris Lattner35481892005-12-23 00:16:34 +00004858}
4859
Chris Lattner4352cc92006-04-04 17:23:26 +00004860SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
4861 // Create a vector sized/aligned stack slot, store the value to element #0,
4862 // then load the whole vector back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004863 SDOperand StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00004864
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004865 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004866 int SPFI = StackPtrFI->getIndex();
4867
Evan Cheng786225a2006-10-05 23:01:46 +00004868 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004869 PseudoSourceValue::getFixedStack(), SPFI);
Dan Gohman69de1932008-02-06 22:27:42 +00004870 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004871 PseudoSourceValue::getFixedStack(), SPFI);
Chris Lattner4352cc92006-04-04 17:23:26 +00004872}
4873
4874
Chris Lattnerce872152006-03-19 06:31:19 +00004875/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004876/// support the operation, but do support the resultant vector type.
Chris Lattnerce872152006-03-19 06:31:19 +00004877SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
4878
4879 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004880 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004881 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004882 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00004883 SDOperand SplatValue = Node->getOperand(0);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004884
4885 // FIXME: it would be far nicer to change this into map<SDOperand,uint64_t>
4886 // and use a bitmask instead of a list of elements.
Evan Cheng033e6812006-03-24 01:17:21 +00004887 std::map<SDOperand, std::vector<unsigned> > Values;
4888 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004889 bool isConstant = true;
4890 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4891 SplatValue.getOpcode() != ISD::UNDEF)
4892 isConstant = false;
4893
Evan Cheng033e6812006-03-24 01:17:21 +00004894 for (unsigned i = 1; i < NumElems; ++i) {
4895 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004896 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004897 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004898 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004899 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00004900 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004901
4902 // If this isn't a constant element or an undef, we can't use a constant
4903 // pool load.
4904 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4905 V.getOpcode() != ISD::UNDEF)
4906 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004907 }
4908
4909 if (isOnlyLowElement) {
4910 // If the low element is an undef too, then this whole things is an undef.
4911 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4912 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4913 // Otherwise, turn this into a scalar_to_vector node.
4914 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4915 Node->getOperand(0));
4916 }
4917
Chris Lattner2eb86532006-03-24 07:29:17 +00004918 // If all elements are constants, create a load from the constant pool.
4919 if (isConstant) {
4920 MVT::ValueType VT = Node->getValueType(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004921 std::vector<Constant*> CV;
4922 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4923 if (ConstantFPSDNode *V =
4924 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Chris Lattner02a260a2008-04-20 00:41:09 +00004925 CV.push_back(ConstantFP::get(V->getValueAPF()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004926 } else if (ConstantSDNode *V =
Chris Lattner02a260a2008-04-20 00:41:09 +00004927 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
4928 CV.push_back(ConstantInt::get(V->getAPIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004929 } else {
4930 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner02a260a2008-04-20 00:41:09 +00004931 const Type *OpNTy =
4932 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
Chris Lattner2eb86532006-03-24 07:29:17 +00004933 CV.push_back(UndefValue::get(OpNTy));
4934 }
4935 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00004936 Constant *CP = ConstantVector::get(CV);
Chris Lattner2eb86532006-03-24 07:29:17 +00004937 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman69de1932008-02-06 22:27:42 +00004938 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00004939 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004940 }
4941
Chris Lattner87100e02006-03-20 01:52:29 +00004942 if (SplatValue.Val) { // Splat of one value?
4943 // Build the shuffle constant vector: <0, 0, 0, 0>
4944 MVT::ValueType MaskVT =
Evan Cheng033e6812006-03-24 01:17:21 +00004945 MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman51eaa862007-06-14 22:58:02 +00004946 SDOperand Zero = DAG.getConstant(0, MVT::getVectorElementType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00004947 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004948 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4949 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00004950
4951 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004952 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00004953 // Get the splatted value into the low element of a vector register.
4954 SDOperand LowValVec =
4955 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
4956
4957 // Return shuffle(LowValVec, undef, <0,0,0,0>)
4958 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
4959 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
4960 SplatMask);
4961 }
4962 }
4963
Evan Cheng033e6812006-03-24 01:17:21 +00004964 // If there are only two unique elements, we may be able to turn this into a
4965 // vector shuffle.
4966 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004967 // Get the two values in deterministic order.
4968 SDOperand Val1 = Node->getOperand(1);
4969 SDOperand Val2;
4970 std::map<SDOperand, std::vector<unsigned> >::iterator MI = Values.begin();
4971 if (MI->first != Val1)
4972 Val2 = MI->first;
4973 else
4974 Val2 = (++MI)->first;
4975
4976 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
4977 // vector shuffle has the undef vector on the RHS.
4978 if (Val1.getOpcode() == ISD::UNDEF)
4979 std::swap(Val1, Val2);
4980
Evan Cheng033e6812006-03-24 01:17:21 +00004981 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004982 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems);
4983 MVT::ValueType MaskEltVT = MVT::getVectorElementType(MaskVT);
Evan Cheng033e6812006-03-24 01:17:21 +00004984 std::vector<SDOperand> MaskVec(NumElems);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004985
4986 // Set elements of the shuffle mask for Val1.
4987 std::vector<unsigned> &Val1Elts = Values[Val1];
4988 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
4989 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
4990
4991 // Set elements of the shuffle mask for Val2.
4992 std::vector<unsigned> &Val2Elts = Values[Val2];
4993 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
4994 if (Val2.getOpcode() != ISD::UNDEF)
4995 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
4996 else
4997 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
4998
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004999 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
5000 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00005001
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005002 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005003 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
5004 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005005 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
5006 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
5007 SDOperand Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng033e6812006-03-24 01:17:21 +00005008
5009 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005010 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Evan Cheng033e6812006-03-24 01:17:21 +00005011 }
5012 }
Chris Lattnerce872152006-03-19 06:31:19 +00005013
5014 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5015 // aligned object on the stack, store each element into it, then load
5016 // the result as a vector.
5017 MVT::ValueType VT = Node->getValueType(0);
5018 // Create the stack frame object.
Chris Lattner85dd3be2007-10-15 17:48:57 +00005019 SDOperand FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005020
5021 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005022 SmallVector<SDOperand, 8> Stores;
Chris Lattnerce872152006-03-19 06:31:19 +00005023 unsigned TypeByteSize =
5024 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
Chris Lattnerce872152006-03-19 06:31:19 +00005025 // Store (in the right endianness) the elements to memory.
5026 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5027 // Ignore undef elements.
5028 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5029
Chris Lattner841c8822006-03-22 01:46:54 +00005030 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00005031
5032 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
5033 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5034
Evan Cheng786225a2006-10-05 23:01:46 +00005035 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00005036 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00005037 }
5038
5039 SDOperand StoreChain;
5040 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005041 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5042 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005043 else
5044 StoreChain = DAG.getEntryNode();
5045
5046 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00005047 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005048}
5049
Chris Lattner5b359c62005-04-02 04:00:59 +00005050void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
5051 SDOperand Op, SDOperand Amt,
5052 SDOperand &Lo, SDOperand &Hi) {
5053 // Expand the subcomponents.
5054 SDOperand LHSL, LHSH;
5055 ExpandOp(Op, LHSL, LHSH);
5056
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005057 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00005058 MVT::ValueType VT = LHSL.getValueType();
5059 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005060 Hi = Lo.getValue(1);
5061}
5062
5063
Chris Lattnere34b3962005-01-19 04:19:40 +00005064/// ExpandShift - Try to find a clever way to expand this shift operation out to
5065/// smaller elements. If we can't find a way that is more efficient than a
5066/// libcall on this target, return false. Otherwise, return true with the
5067/// low-parts expanded into Lo and Hi.
5068bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
5069 SDOperand &Lo, SDOperand &Hi) {
5070 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5071 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005072
Chris Lattnere34b3962005-01-19 04:19:40 +00005073 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005074 SDOperand ShAmt = LegalizeOp(Amt);
5075 MVT::ValueType ShTy = ShAmt.getValueType();
Dan Gohman91dc17b2008-02-20 16:57:27 +00005076 unsigned ShBits = MVT::getSizeInBits(ShTy);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005077 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
5078 unsigned NVTBits = MVT::getSizeInBits(NVT);
5079
Chris Lattner7a3c8552007-10-14 20:35:12 +00005080 // Handle the case when Amt is an immediate.
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005081 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
5082 unsigned Cst = CN->getValue();
5083 // Expand the incoming operand to be shifted, so that we have its parts
5084 SDOperand InL, InH;
5085 ExpandOp(Op, InL, InH);
5086 switch(Opc) {
5087 case ISD::SHL:
5088 if (Cst > VTBits) {
5089 Lo = DAG.getConstant(0, NVT);
5090 Hi = DAG.getConstant(0, NVT);
5091 } else if (Cst > NVTBits) {
5092 Lo = DAG.getConstant(0, NVT);
5093 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005094 } else if (Cst == NVTBits) {
5095 Lo = DAG.getConstant(0, NVT);
5096 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005097 } else {
5098 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5099 Hi = DAG.getNode(ISD::OR, NVT,
5100 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5101 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5102 }
5103 return true;
5104 case ISD::SRL:
5105 if (Cst > VTBits) {
5106 Lo = DAG.getConstant(0, NVT);
5107 Hi = DAG.getConstant(0, NVT);
5108 } else if (Cst > NVTBits) {
5109 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5110 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005111 } else if (Cst == NVTBits) {
5112 Lo = InH;
5113 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005114 } else {
5115 Lo = DAG.getNode(ISD::OR, NVT,
5116 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5117 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5118 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5119 }
5120 return true;
5121 case ISD::SRA:
5122 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005123 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005124 DAG.getConstant(NVTBits-1, ShTy));
5125 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005126 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005127 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005128 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005129 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005130 } else if (Cst == NVTBits) {
5131 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00005132 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005133 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005134 } else {
5135 Lo = DAG.getNode(ISD::OR, NVT,
5136 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5137 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5138 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5139 }
5140 return true;
5141 }
5142 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005143
5144 // Okay, the shift amount isn't constant. However, if we can tell that it is
5145 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005146 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5147 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005148 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005149
Dan Gohman9e255b72008-02-22 01:12:31 +00005150 // If we know that if any of the high bits of the shift amount are one, then
5151 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005152 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005153 // Mask out the high bit, which we know is set.
5154 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005155 DAG.getConstant(~Mask, Amt.getValueType()));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005156
5157 // Expand the incoming operand to be shifted, so that we have its parts
5158 SDOperand InL, InH;
5159 ExpandOp(Op, InL, InH);
5160 switch(Opc) {
5161 case ISD::SHL:
5162 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5163 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5164 return true;
5165 case ISD::SRL:
5166 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5167 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5168 return true;
5169 case ISD::SRA:
5170 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5171 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5172 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5173 return true;
5174 }
5175 }
5176
Dan Gohman9e255b72008-02-22 01:12:31 +00005177 // If we know that the high bits of the shift amount are all zero, then we can
5178 // do this as a couple of simple shifts.
5179 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005180 // Compute 32-amt.
5181 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
5182 DAG.getConstant(NVTBits, Amt.getValueType()),
5183 Amt);
5184
5185 // Expand the incoming operand to be shifted, so that we have its parts
5186 SDOperand InL, InH;
5187 ExpandOp(Op, InL, InH);
5188 switch(Opc) {
5189 case ISD::SHL:
5190 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5191 Hi = DAG.getNode(ISD::OR, NVT,
5192 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5193 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5194 return true;
5195 case ISD::SRL:
5196 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5197 Lo = DAG.getNode(ISD::OR, NVT,
5198 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5199 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5200 return true;
5201 case ISD::SRA:
5202 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5203 Lo = DAG.getNode(ISD::OR, NVT,
5204 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5205 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5206 return true;
5207 }
5208 }
5209
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005210 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005211}
Chris Lattner77e77a62005-01-21 06:05:23 +00005212
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005213
Chris Lattner77e77a62005-01-21 06:05:23 +00005214// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5215// does not fit into a register, return the lo part and set the hi part to the
5216// by-reg argument. If it does fit into a single register, return the result
5217// and leave the Hi part unset.
Duncan Sands460a14e2008-04-12 17:14:18 +00005218SDOperand SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Reid Spencer47857812006-12-31 05:55:36 +00005219 bool isSigned, SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005220 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5221 // The input chain to this libcall is the entry node of the function.
5222 // Legalizing the call will automatically add the previous call to the
5223 // dependence.
5224 SDOperand InChain = DAG.getEntryNode();
5225
Chris Lattner77e77a62005-01-21 06:05:23 +00005226 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005227 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005228 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5229 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
5230 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
Reid Spencer47857812006-12-31 05:55:36 +00005231 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005232 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005233 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005234 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005235 }
Duncan Sands460a14e2008-04-12 17:14:18 +00005236 SDOperand Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
5237 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005238
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005239 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00005240 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005241 std::pair<SDOperand,SDOperand> CallInfo =
Duncan Sands00fee652008-02-14 17:28:50 +00005242 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, CallingConv::C,
5243 false, Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005244
Chris Lattner6831a812006-02-13 09:18:02 +00005245 // Legalize the call sequence, starting with the chain. This will advance
5246 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5247 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5248 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00005249 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005250 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005251 default: assert(0 && "Unknown thing");
5252 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005253 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005254 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005255 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005256 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005257 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005258 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005259 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005260}
5261
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005262
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005263/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5264///
Chris Lattner77e77a62005-01-21 06:05:23 +00005265SDOperand SelectionDAGLegalize::
5266ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Dan Gohmand91446d2008-03-05 01:08:17 +00005267 MVT::ValueType SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005268 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005269
Evan Cheng9845eb52008-04-01 02:18:22 +00005270 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5271 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005272 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005273 // incoming integer is set. To handle this, we dynamically test to see if
5274 // it is set, and, if so, add a fudge factor.
Dan Gohman034f60e2008-03-11 01:59:03 +00005275 SDOperand Hi;
5276 if (ExpandSource) {
5277 SDOperand Lo;
5278 ExpandOp(Source, Lo, Hi);
5279 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5280 } else {
5281 // The comparison for the sign bit will use the entire operand.
5282 Hi = Source;
5283 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005284
Chris Lattner66de05b2005-05-13 04:45:13 +00005285 // If this is unsigned, and not supported, first perform the conversion to
5286 // signed, then adjust the result if the sign bit is set.
Dan Gohman034f60e2008-03-11 01:59:03 +00005287 SDOperand SignedConv = ExpandIntToFP(true, DestTy, Source);
Chris Lattner66de05b2005-05-13 04:45:13 +00005288
Scott Michel5b8f82e2008-03-10 15:42:14 +00005289 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005290 DAG.getConstant(0, Hi.getValueType()),
5291 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005292 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005293 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5294 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005295 uint64_t FF = 0x5f800000ULL;
5296 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohman34bc1782008-03-05 02:07:31 +00005297 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005298
Chris Lattner5839bf22005-08-26 17:15:30 +00005299 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00005300 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5301 SDOperand FudgeInReg;
5302 if (DestTy == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005303 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005304 PseudoSourceValue::getConstantPool(), 0);
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005305 else if (MVT::getSizeInBits(DestTy) > MVT::getSizeInBits(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005306 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005307 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005308 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005309 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005310 MVT::f32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005311 else
5312 assert(0 && "Unexpected conversion");
5313
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005314 MVT::ValueType SCVT = SignedConv.getValueType();
5315 if (SCVT != DestTy) {
5316 // Destination type needs to be expanded as well. The FADD now we are
5317 // constructing will be expanded into a libcall.
5318 if (MVT::getSizeInBits(SCVT) != MVT::getSizeInBits(DestTy)) {
Dan Gohmand91446d2008-03-05 01:08:17 +00005319 assert(MVT::getSizeInBits(SCVT) * 2 == MVT::getSizeInBits(DestTy));
5320 SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005321 SignedConv, SignedConv.getValue(1));
5322 }
5323 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5324 }
Chris Lattner473a9902005-09-29 06:44:39 +00005325 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005326 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005327
Chris Lattnera88a2602005-05-14 05:33:54 +00005328 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00005329 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00005330 default: assert(0 && "This action not implemented for this operation!");
5331 case TargetLowering::Legal:
5332 case TargetLowering::Expand:
5333 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005334 case TargetLowering::Custom: {
5335 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
5336 Source), DAG);
5337 if (NV.Val)
5338 return LegalizeOp(NV);
5339 break; // The target decided this was legal after all
5340 }
Chris Lattnera88a2602005-05-14 05:33:54 +00005341 }
5342
Chris Lattner13689e22005-05-12 07:00:44 +00005343 // Expand the source, then glue it back together for the call. We must expand
5344 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00005345 if (ExpandSource) {
5346 SDOperand SrcLo, SrcHi;
5347 ExpandOp(Source, SrcLo, SrcHi);
5348 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5349 }
Chris Lattner13689e22005-05-12 07:00:44 +00005350
Evan Cheng56966222007-01-12 02:11:51 +00005351 RTLIB::Libcall LC;
Evan Cheng110cf482008-04-01 01:50:16 +00005352 if (SourceVT == MVT::i32) {
5353 if (DestTy == MVT::f32)
Evan Chengdb45d1c2008-04-01 02:00:09 +00005354 LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32;
Evan Cheng110cf482008-04-01 01:50:16 +00005355 else {
5356 assert(DestTy == MVT::f64 && "Unknown fp value type!");
5357 LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64;
5358 }
5359 } else if (SourceVT == MVT::i64) {
Dan Gohmand91446d2008-03-05 01:08:17 +00005360 if (DestTy == MVT::f32)
5361 LC = RTLIB::SINTTOFP_I64_F32;
Dan Gohman034f60e2008-03-11 01:59:03 +00005362 else if (DestTy == MVT::f64)
Dan Gohmand91446d2008-03-05 01:08:17 +00005363 LC = RTLIB::SINTTOFP_I64_F64;
Dan Gohman034f60e2008-03-11 01:59:03 +00005364 else if (DestTy == MVT::f80)
5365 LC = RTLIB::SINTTOFP_I64_F80;
5366 else {
5367 assert(DestTy == MVT::ppcf128 && "Unknown fp value type!");
5368 LC = RTLIB::SINTTOFP_I64_PPCF128;
Dan Gohmand91446d2008-03-05 01:08:17 +00005369 }
5370 } else if (SourceVT == MVT::i128) {
5371 if (DestTy == MVT::f32)
5372 LC = RTLIB::SINTTOFP_I128_F32;
5373 else if (DestTy == MVT::f64)
5374 LC = RTLIB::SINTTOFP_I128_F64;
5375 else if (DestTy == MVT::f80)
5376 LC = RTLIB::SINTTOFP_I128_F80;
5377 else {
5378 assert(DestTy == MVT::ppcf128 && "Unknown fp value type!");
5379 LC = RTLIB::SINTTOFP_I128_PPCF128;
5380 }
5381 } else {
5382 assert(0 && "Unknown int value type");
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005383 }
Chris Lattner6831a812006-02-13 09:18:02 +00005384
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005385 assert(TLI.getLibcallName(LC) && "Don't know how to expand this SINT_TO_FP!");
Chris Lattner6831a812006-02-13 09:18:02 +00005386 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
Dan Gohmana2e94852008-03-10 23:03:31 +00005387 SDOperand HiPart;
Duncan Sands460a14e2008-04-12 17:14:18 +00005388 SDOperand Result = ExpandLibCall(LC, Source.Val, isSigned, HiPart);
Evan Cheng110cf482008-04-01 01:50:16 +00005389 if (Result.getValueType() != DestTy && HiPart.Val)
Dan Gohmana2e94852008-03-10 23:03:31 +00005390 Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5391 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005392}
Misha Brukmanedf128a2005-04-21 22:36:52 +00005393
Chris Lattner22cde6a2006-01-28 08:25:58 +00005394/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5395/// INT_TO_FP operation of the specified operand when the target requests that
5396/// we expand it. At this point, we know that the result and operand types are
5397/// legal for the target.
5398SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5399 SDOperand Op0,
5400 MVT::ValueType DestVT) {
5401 if (Op0.getValueType() == MVT::i32) {
5402 // simple 32-bit [signed|unsigned] integer to float/double expansion
5403
Chris Lattner23594d42008-01-16 07:03:22 +00005404 // Get the stack frame index of a 8 byte buffer.
5405 SDOperand StackSlot = DAG.CreateStackTemporary(MVT::f64);
5406
Chris Lattner22cde6a2006-01-28 08:25:58 +00005407 // word offset constant for Hi/Lo address computation
5408 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
5409 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00005410 SDOperand Hi = StackSlot;
5411 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
5412 if (TLI.isLittleEndian())
5413 std::swap(Hi, Lo);
5414
Chris Lattner22cde6a2006-01-28 08:25:58 +00005415 // if signed map to unsigned space
5416 SDOperand Op0Mapped;
5417 if (isSigned) {
5418 // constant used to invert sign bit (signed to unsigned mapping)
5419 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
5420 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5421 } else {
5422 Op0Mapped = Op0;
5423 }
5424 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00005425 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005426 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005427 // initial hi portion of constructed double
5428 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
5429 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00005430 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005431 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00005432 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005433 // FP constant to bias correct the final result
5434 SDOperand Bias = DAG.getConstantFP(isSigned ?
5435 BitsToDouble(0x4330000080000000ULL)
5436 : BitsToDouble(0x4330000000000000ULL),
5437 MVT::f64);
5438 // subtract the bias
5439 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
5440 // final result
5441 SDOperand Result;
5442 // handle final rounding
5443 if (DestVT == MVT::f64) {
5444 // do nothing
5445 Result = Sub;
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005446 } else if (MVT::getSizeInBits(DestVT) < MVT::getSizeInBits(MVT::f64)) {
Chris Lattner0bd48932008-01-17 07:00:52 +00005447 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5448 DAG.getIntPtrConstant(0));
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005449 } else if (MVT::getSizeInBits(DestVT) > MVT::getSizeInBits(MVT::f64)) {
5450 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005451 }
5452 return Result;
5453 }
5454 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
5455 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
5456
Scott Michel5b8f82e2008-03-10 15:42:14 +00005457 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005458 DAG.getConstant(0, Op0.getValueType()),
5459 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005460 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005461 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5462 SignSet, Four, Zero);
5463
5464 // If the sign bit of the integer is set, the large number will be treated
5465 // as a negative number. To counteract this, the dynamic code adds an
5466 // offset depending on the data type.
5467 uint64_t FF;
5468 switch (Op0.getValueType()) {
5469 default: assert(0 && "Unsupported integer type!");
5470 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5471 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5472 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5473 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5474 }
5475 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005476 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005477
5478 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
5479 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5480 SDOperand FudgeInReg;
5481 if (DestVT == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005482 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005483 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005484 else {
Dan Gohman69de1932008-02-06 22:27:42 +00005485 FudgeInReg =
5486 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5487 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005488 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005489 MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00005490 }
5491
5492 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5493}
5494
5495/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5496/// *INT_TO_FP operation of the specified operand when the target requests that
5497/// we promote it. At this point, we know that the result and operand types are
5498/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5499/// operation that takes a larger input.
5500SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
5501 MVT::ValueType DestVT,
5502 bool isSigned) {
5503 // First step, figure out the appropriate *INT_TO_FP operation to use.
5504 MVT::ValueType NewInTy = LegalOp.getValueType();
5505
5506 unsigned OpToUse = 0;
5507
5508 // Scan for the appropriate larger type to use.
5509 while (1) {
5510 NewInTy = (MVT::ValueType)(NewInTy+1);
5511 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
5512
5513 // If the target supports SINT_TO_FP of this type, use it.
5514 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5515 default: break;
5516 case TargetLowering::Legal:
5517 if (!TLI.isTypeLegal(NewInTy))
5518 break; // Can't use this datatype.
5519 // FALL THROUGH.
5520 case TargetLowering::Custom:
5521 OpToUse = ISD::SINT_TO_FP;
5522 break;
5523 }
5524 if (OpToUse) break;
5525 if (isSigned) continue;
5526
5527 // If the target supports UINT_TO_FP of this type, use it.
5528 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5529 default: break;
5530 case TargetLowering::Legal:
5531 if (!TLI.isTypeLegal(NewInTy))
5532 break; // Can't use this datatype.
5533 // FALL THROUGH.
5534 case TargetLowering::Custom:
5535 OpToUse = ISD::UINT_TO_FP;
5536 break;
5537 }
5538 if (OpToUse) break;
5539
5540 // Otherwise, try a larger type.
5541 }
5542
5543 // Okay, we found the operation and type to use. Zero extend our input to the
5544 // desired type then run the operation on it.
5545 return DAG.getNode(OpToUse, DestVT,
5546 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5547 NewInTy, LegalOp));
5548}
5549
5550/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5551/// FP_TO_*INT operation of the specified operand when the target requests that
5552/// we promote it. At this point, we know that the result and operand types are
5553/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5554/// operation that returns a larger result.
5555SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
5556 MVT::ValueType DestVT,
5557 bool isSigned) {
5558 // First step, figure out the appropriate FP_TO*INT operation to use.
5559 MVT::ValueType NewOutTy = DestVT;
5560
5561 unsigned OpToUse = 0;
5562
5563 // Scan for the appropriate larger type to use.
5564 while (1) {
5565 NewOutTy = (MVT::ValueType)(NewOutTy+1);
5566 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
5567
5568 // If the target supports FP_TO_SINT returning this type, use it.
5569 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5570 default: break;
5571 case TargetLowering::Legal:
5572 if (!TLI.isTypeLegal(NewOutTy))
5573 break; // Can't use this datatype.
5574 // FALL THROUGH.
5575 case TargetLowering::Custom:
5576 OpToUse = ISD::FP_TO_SINT;
5577 break;
5578 }
5579 if (OpToUse) break;
5580
5581 // If the target supports FP_TO_UINT of this type, use it.
5582 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5583 default: break;
5584 case TargetLowering::Legal:
5585 if (!TLI.isTypeLegal(NewOutTy))
5586 break; // Can't use this datatype.
5587 // FALL THROUGH.
5588 case TargetLowering::Custom:
5589 OpToUse = ISD::FP_TO_UINT;
5590 break;
5591 }
5592 if (OpToUse) break;
5593
5594 // Otherwise, try a larger type.
5595 }
5596
Chris Lattner27a6c732007-11-24 07:07:01 +00005597
5598 // Okay, we found the operation and type to use.
5599 SDOperand Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
5600
5601 // If the operation produces an invalid type, it must be custom lowered. Use
5602 // the target lowering hooks to expand it. Just keep the low part of the
5603 // expanded operation, we know that we're truncating anyway.
5604 if (getTypeAction(NewOutTy) == Expand) {
5605 Operation = SDOperand(TLI.ExpandOperationResult(Operation.Val, DAG), 0);
5606 assert(Operation.Val && "Didn't return anything");
5607 }
5608
5609 // Truncate the result of the extended FP_TO_*INT operation to the desired
5610 // size.
5611 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005612}
5613
5614/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5615///
5616SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
5617 MVT::ValueType VT = Op.getValueType();
5618 MVT::ValueType SHVT = TLI.getShiftAmountTy();
5619 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
5620 switch (VT) {
5621 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5622 case MVT::i16:
5623 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5624 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5625 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5626 case MVT::i32:
5627 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5628 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5629 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5630 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5631 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5632 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5633 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5634 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5635 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5636 case MVT::i64:
5637 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5638 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5639 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5640 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5641 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5642 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5643 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5644 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5645 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5646 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5647 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5648 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5649 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5650 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5651 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5652 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5653 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5654 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5655 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5656 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5657 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5658 }
5659}
5660
5661/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5662///
5663SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
5664 switch (Opc) {
5665 default: assert(0 && "Cannot expand this yet!");
5666 case ISD::CTPOP: {
5667 static const uint64_t mask[6] = {
5668 0x5555555555555555ULL, 0x3333333333333333ULL,
5669 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5670 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5671 };
5672 MVT::ValueType VT = Op.getValueType();
5673 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00005674 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005675 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5676 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
5677 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
5678 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5679 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5680 DAG.getNode(ISD::AND, VT,
5681 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5682 }
5683 return Op;
5684 }
5685 case ISD::CTLZ: {
5686 // for now, we do this:
5687 // x = x | (x >> 1);
5688 // x = x | (x >> 2);
5689 // ...
5690 // x = x | (x >>16);
5691 // x = x | (x >>32); // for 64-bit input
5692 // return popcount(~x);
5693 //
5694 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
5695 MVT::ValueType VT = Op.getValueType();
5696 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00005697 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005698 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5699 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5700 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5701 }
5702 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5703 return DAG.getNode(ISD::CTPOP, VT, Op);
5704 }
5705 case ISD::CTTZ: {
5706 // for now, we use: { return popcount(~x & (x - 1)); }
5707 // unless the target has ctlz but not ctpop, in which case we use:
5708 // { return 32 - nlz(~x & (x-1)); }
5709 // see also http://www.hackersdelight.org/HDcode/ntz.cc
5710 MVT::ValueType VT = Op.getValueType();
5711 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
5712 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
5713 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5714 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5715 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5716 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5717 TLI.isOperationLegal(ISD::CTLZ, VT))
5718 return DAG.getNode(ISD::SUB, VT,
Dan Gohmanb55757e2007-05-18 17:52:13 +00005719 DAG.getConstant(MVT::getSizeInBits(VT), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005720 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5721 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5722 }
5723 }
5724}
Chris Lattnere34b3962005-01-19 04:19:40 +00005725
Chris Lattner3e928bb2005-01-07 07:47:09 +00005726/// ExpandOp - Expand the specified SDOperand into its two component pieces
5727/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5728/// LegalizeNodes map is filled in for any results that are not expanded, the
5729/// ExpandedNodes map is filled in for any results that are expanded, and the
5730/// Lo/Hi values are returned.
5731void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
5732 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00005733 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005734 SDNode *Node = Op.Val;
5735 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005736 assert(((MVT::isInteger(NVT) && NVT < VT) || MVT::isFloatingPoint(VT) ||
Dan Gohman7f321562007-06-25 16:23:39 +00005737 MVT::isVector(VT)) &&
Chris Lattner3e928bb2005-01-07 07:47:09 +00005738 "Cannot expand to FP value or to larger int value!");
5739
Chris Lattner6fdcb252005-09-02 20:32:45 +00005740 // See if we already expanded it.
Roman Levenstein9cac5252008-04-16 16:15:27 +00005741 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00005742 = ExpandedNodes.find(Op);
5743 if (I != ExpandedNodes.end()) {
5744 Lo = I->second.first;
5745 Hi = I->second.second;
5746 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005747 }
5748
Chris Lattner3e928bb2005-01-07 07:47:09 +00005749 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005750 case ISD::CopyFromReg:
5751 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005752 case ISD::FP_ROUND_INREG:
5753 if (VT == MVT::ppcf128 &&
5754 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5755 TargetLowering::Custom) {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005756 SDOperand SrcLo, SrcHi, Src;
5757 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5758 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
5759 SDOperand Result = TLI.LowerOperation(
5760 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005761 assert(Result.Val->getOpcode() == ISD::BUILD_PAIR);
5762 Lo = Result.Val->getOperand(0);
5763 Hi = Result.Val->getOperand(1);
5764 break;
5765 }
5766 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00005767 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005768#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005769 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005770#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00005771 assert(0 && "Do not know how to expand this operator!");
5772 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00005773 case ISD::EXTRACT_ELEMENT:
5774 ExpandOp(Node->getOperand(0), Lo, Hi);
5775 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
5776 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00005777 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00005778 case ISD::EXTRACT_VECTOR_ELT:
5779 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5780 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5781 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5782 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005783 case ISD::UNDEF:
Evan Chengaa975c12006-12-16 02:20:50 +00005784 NVT = TLI.getTypeToExpandTo(VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005785 Lo = DAG.getNode(ISD::UNDEF, NVT);
5786 Hi = DAG.getNode(ISD::UNDEF, NVT);
5787 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005788 case ISD::Constant: {
Dan Gohman050f5502008-03-03 22:20:46 +00005789 unsigned NVTBits = MVT::getSizeInBits(NVT);
5790 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5791 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5792 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005793 break;
5794 }
Evan Cheng00495212006-12-12 21:32:44 +00005795 case ISD::ConstantFP: {
5796 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00005797 if (CFP->getValueType(0) == MVT::ppcf128) {
5798 APInt api = CFP->getValueAPF().convertToAPInt();
5799 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5800 MVT::f64);
5801 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5802 MVT::f64);
5803 break;
5804 }
Evan Cheng279101e2006-12-12 22:19:28 +00005805 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005806 if (getTypeAction(Lo.getValueType()) == Expand)
5807 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005808 break;
5809 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005810 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005811 // Return the operands.
5812 Lo = Node->getOperand(0);
5813 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005814 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005815
5816 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00005817 if (Node->getNumValues() == 1) {
5818 ExpandOp(Op.getOperand(0), Lo, Hi);
5819 break;
5820 }
Chris Lattner27a6c732007-11-24 07:07:01 +00005821 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
5822 assert(Op.ResNo == 0 && Node->getNumValues() == 2 &&
5823 Op.getValue(1).getValueType() == MVT::Other &&
5824 "unhandled MERGE_VALUES");
5825 ExpandOp(Op.getOperand(0), Lo, Hi);
5826 // Remember that we legalized the chain.
5827 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5828 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005829
5830 case ISD::SIGN_EXTEND_INREG:
5831 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005832 // sext_inreg the low part if needed.
5833 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5834
5835 // The high part gets the sign extension from the lo-part. This handles
5836 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005837 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5838 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
5839 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005840 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005841
Nate Begemand88fc032006-01-14 03:14:10 +00005842 case ISD::BSWAP: {
5843 ExpandOp(Node->getOperand(0), Lo, Hi);
5844 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
5845 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5846 Lo = TempLo;
5847 break;
5848 }
5849
Chris Lattneredb1add2005-05-11 04:51:16 +00005850 case ISD::CTPOP:
5851 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005852 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5853 DAG.getNode(ISD::CTPOP, NVT, Lo),
5854 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005855 Hi = DAG.getConstant(0, NVT);
5856 break;
5857
Chris Lattner39a8f332005-05-12 19:05:01 +00005858 case ISD::CTLZ: {
5859 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005860 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005861 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5862 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Scott Michel5b8f82e2008-03-10 15:42:14 +00005863 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005864 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005865 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
5866 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5867
5868 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5869 Hi = DAG.getConstant(0, NVT);
5870 break;
5871 }
5872
5873 case ISD::CTTZ: {
5874 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005875 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005876 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5877 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Scott Michel5b8f82e2008-03-10 15:42:14 +00005878 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005879 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005880 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
5881 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5882
5883 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5884 Hi = DAG.getConstant(0, NVT);
5885 break;
5886 }
Chris Lattneredb1add2005-05-11 04:51:16 +00005887
Nate Begemanacc398c2006-01-25 18:21:52 +00005888 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005889 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5890 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00005891 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5892 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5893
5894 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005895 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00005896 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00005897 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00005898 std::swap(Lo, Hi);
5899 break;
5900 }
5901
Chris Lattner3e928bb2005-01-07 07:47:09 +00005902 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00005903 LoadSDNode *LD = cast<LoadSDNode>(Node);
5904 SDOperand Ch = LD->getChain(); // Legalize the chain.
5905 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
5906 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005907 int SVOffset = LD->getSrcValueOffset();
5908 unsigned Alignment = LD->getAlignment();
5909 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005910
Evan Cheng466685d2006-10-09 20:57:25 +00005911 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005912 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5913 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00005914 if (VT == MVT::f32 || VT == MVT::f64) {
5915 // f32->i32 or f64->i64 one to one expansion.
5916 // Remember that we legalized the chain.
5917 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00005918 // Recursively expand the new load.
5919 if (getTypeAction(NVT) == Expand)
5920 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005921 break;
5922 }
Chris Lattnerec39a452005-01-19 18:02:17 +00005923
Evan Cheng466685d2006-10-09 20:57:25 +00005924 // Increment the pointer to the other half.
5925 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
5926 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00005927 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00005928 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00005929 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005930 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5931 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00005932
Evan Cheng466685d2006-10-09 20:57:25 +00005933 // Build a factor node to remember that this load is independent of the
5934 // other one.
5935 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5936 Hi.getValue(1));
5937
5938 // Remember that we legalized the chain.
5939 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00005940 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00005941 std::swap(Lo, Hi);
5942 } else {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005943 MVT::ValueType EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00005944
Dale Johannesenb6210fc2007-10-19 20:29:00 +00005945 if ((VT == MVT::f64 && EVT == MVT::f32) ||
5946 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00005947 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
5948 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005949 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00005950 // Remember that we legalized the chain.
5951 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
5952 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
5953 break;
5954 }
Evan Cheng466685d2006-10-09 20:57:25 +00005955
5956 if (EVT == NVT)
5957 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005958 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005959 else
5960 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005961 SVOffset, EVT, isVolatile,
5962 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005963
5964 // Remember that we legalized the chain.
5965 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
5966
5967 if (ExtType == ISD::SEXTLOAD) {
5968 // The high part is obtained by SRA'ing all but one of the bits of the
5969 // lo part.
5970 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
5971 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5972 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
5973 } else if (ExtType == ISD::ZEXTLOAD) {
5974 // The high part is just a zero.
5975 Hi = DAG.getConstant(0, NVT);
5976 } else /* if (ExtType == ISD::EXTLOAD) */ {
5977 // The high part is undefined.
5978 Hi = DAG.getNode(ISD::UNDEF, NVT);
5979 }
5980 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005981 break;
5982 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005983 case ISD::AND:
5984 case ISD::OR:
5985 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
5986 SDOperand LL, LH, RL, RH;
5987 ExpandOp(Node->getOperand(0), LL, LH);
5988 ExpandOp(Node->getOperand(1), RL, RH);
5989 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
5990 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
5991 break;
5992 }
5993 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00005994 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005995 ExpandOp(Node->getOperand(1), LL, LH);
5996 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00005997 if (getTypeAction(NVT) == Expand)
5998 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00005999 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006000 if (VT != MVT::f32)
6001 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006002 break;
6003 }
Nate Begeman9373a812005-08-10 20:51:12 +00006004 case ISD::SELECT_CC: {
6005 SDOperand TL, TH, FL, FH;
6006 ExpandOp(Node->getOperand(2), TL, TH);
6007 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006008 if (getTypeAction(NVT) == Expand)
6009 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00006010 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6011 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006012 if (VT != MVT::f32)
6013 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6014 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006015 break;
6016 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006017 case ISD::ANY_EXTEND:
6018 // The low part is any extension of the input (which degenerates to a copy).
6019 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
6020 // The high part is undefined.
6021 Hi = DAG.getNode(ISD::UNDEF, NVT);
6022 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006023 case ISD::SIGN_EXTEND: {
6024 // The low part is just a sign extension of the input (which degenerates to
6025 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006026 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006027
Chris Lattner3e928bb2005-01-07 07:47:09 +00006028 // The high part is obtained by SRA'ing all but one of the bits of the lo
6029 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00006030 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner8137c9e2006-01-28 05:07:51 +00006031 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6032 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006033 break;
6034 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006035 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006036 // The low part is just a zero extension of the input (which degenerates to
6037 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006038 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006039
Chris Lattner3e928bb2005-01-07 07:47:09 +00006040 // The high part is just a zero.
6041 Hi = DAG.getConstant(0, NVT);
6042 break;
Chris Lattner35481892005-12-23 00:16:34 +00006043
Chris Lattner4c948eb2007-02-13 23:55:16 +00006044 case ISD::TRUNCATE: {
6045 // The input value must be larger than this value. Expand *it*.
6046 SDOperand NewLo;
6047 ExpandOp(Node->getOperand(0), NewLo, Hi);
6048
6049 // The low part is now either the right size, or it is closer. If not the
6050 // right size, make an illegal truncate so we recursively expand it.
6051 if (NewLo.getValueType() != Node->getValueType(0))
6052 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6053 ExpandOp(NewLo, Lo, Hi);
6054 break;
6055 }
6056
Chris Lattner35481892005-12-23 00:16:34 +00006057 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006058 SDOperand Tmp;
6059 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6060 // If the target wants to, allow it to lower this itself.
6061 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6062 case Expand: assert(0 && "cannot expand FP!");
6063 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6064 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6065 }
6066 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6067 }
6068
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006069 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006070 if (VT == MVT::f32 || VT == MVT::f64) {
6071 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006072 if (getTypeAction(NVT) == Expand)
6073 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006074 break;
6075 }
6076
6077 // If source operand will be expanded to the same type as VT, i.e.
6078 // i64 <- f64, i32 <- f32, expand the source operand instead.
6079 MVT::ValueType VT0 = Node->getOperand(0).getValueType();
6080 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6081 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006082 break;
6083 }
6084
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006085 // Turn this into a load/store pair by default.
6086 if (Tmp.Val == 0)
Chris Lattner1401d152008-01-16 07:45:30 +00006087 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006088
Chris Lattner35481892005-12-23 00:16:34 +00006089 ExpandOp(Tmp, Lo, Hi);
6090 break;
6091 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006092
Chris Lattner27a6c732007-11-24 07:07:01 +00006093 case ISD::READCYCLECOUNTER: {
Chris Lattner308575b2005-11-20 22:56:56 +00006094 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6095 TargetLowering::Custom &&
6096 "Must custom expand ReadCycleCounter");
Chris Lattner27a6c732007-11-24 07:07:01 +00006097 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6098 assert(Tmp.Val && "Node must be custom expanded!");
6099 ExpandOp(Tmp.getValue(0), Lo, Hi);
Chris Lattner308575b2005-11-20 22:56:56 +00006100 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006101 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006102 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006103 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006104
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006105 case ISD::ATOMIC_LCS: {
6106 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6107 assert(Tmp.Val && "Node must be custom expanded!");
6108 ExpandOp(Tmp.getValue(0), Lo, Hi);
6109 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
6110 LegalizeOp(Tmp.getValue(1)));
6111 break;
6112 }
6113
6114
6115
Chris Lattner4e6c7462005-01-08 19:27:05 +00006116 // These operators cannot be expanded directly, emit them as calls to
6117 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006118 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006119 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00006120 SDOperand Op;
6121 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6122 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006123 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6124 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006125 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006126
Chris Lattnerf20d1832005-07-30 01:40:57 +00006127 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6128
Chris Lattner80a3e942005-07-29 00:33:32 +00006129 // Now that the custom expander is done, expand the result, which is still
6130 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00006131 if (Op.Val) {
6132 ExpandOp(Op, Lo, Hi);
6133 break;
6134 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006135 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006136
Dale Johannesen161e8972007-10-05 20:04:43 +00006137 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmana2e94852008-03-10 23:03:31 +00006138 if (VT == MVT::i64) {
6139 if (Node->getOperand(0).getValueType() == MVT::f32)
6140 LC = RTLIB::FPTOSINT_F32_I64;
6141 else if (Node->getOperand(0).getValueType() == MVT::f64)
6142 LC = RTLIB::FPTOSINT_F64_I64;
6143 else if (Node->getOperand(0).getValueType() == MVT::f80)
6144 LC = RTLIB::FPTOSINT_F80_I64;
6145 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6146 LC = RTLIB::FPTOSINT_PPCF128_I64;
Duncan Sands460a14e2008-04-12 17:14:18 +00006147 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006148 } else if (VT == MVT::i128) {
6149 if (Node->getOperand(0).getValueType() == MVT::f32)
6150 LC = RTLIB::FPTOSINT_F32_I128;
6151 else if (Node->getOperand(0).getValueType() == MVT::f64)
6152 LC = RTLIB::FPTOSINT_F64_I128;
6153 else if (Node->getOperand(0).getValueType() == MVT::f80)
6154 LC = RTLIB::FPTOSINT_F80_I128;
6155 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6156 LC = RTLIB::FPTOSINT_PPCF128_I128;
Duncan Sands460a14e2008-04-12 17:14:18 +00006157 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006158 } else {
6159 assert(0 && "Unexpected uint-to-fp conversion!");
6160 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006161 break;
Evan Cheng56966222007-01-12 02:11:51 +00006162 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006163
Evan Cheng56966222007-01-12 02:11:51 +00006164 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006165 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006166 SDOperand Op;
6167 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6168 case Expand: assert(0 && "cannot expand FP!");
6169 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6170 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6171 }
6172
6173 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6174
6175 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00006176 if (Op.Val) {
6177 ExpandOp(Op, Lo, Hi);
6178 break;
6179 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006180 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006181
Evan Chengdaccea182007-10-05 01:09:32 +00006182 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmana2e94852008-03-10 23:03:31 +00006183 if (VT == MVT::i64) {
6184 if (Node->getOperand(0).getValueType() == MVT::f32)
6185 LC = RTLIB::FPTOUINT_F32_I64;
6186 else if (Node->getOperand(0).getValueType() == MVT::f64)
6187 LC = RTLIB::FPTOUINT_F64_I64;
6188 else if (Node->getOperand(0).getValueType() == MVT::f80)
6189 LC = RTLIB::FPTOUINT_F80_I64;
6190 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6191 LC = RTLIB::FPTOUINT_PPCF128_I64;
Duncan Sands460a14e2008-04-12 17:14:18 +00006192 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006193 } else if (VT == MVT::i128) {
6194 if (Node->getOperand(0).getValueType() == MVT::f32)
6195 LC = RTLIB::FPTOUINT_F32_I128;
6196 else if (Node->getOperand(0).getValueType() == MVT::f64)
6197 LC = RTLIB::FPTOUINT_F64_I128;
6198 else if (Node->getOperand(0).getValueType() == MVT::f80)
6199 LC = RTLIB::FPTOUINT_F80_I128;
6200 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6201 LC = RTLIB::FPTOUINT_PPCF128_I128;
Duncan Sands460a14e2008-04-12 17:14:18 +00006202 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006203 } else {
6204 assert(0 && "Unexpected uint-to-fp conversion!");
6205 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006206 break;
Evan Cheng56966222007-01-12 02:11:51 +00006207 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006208
Evan Cheng05a2d562006-01-09 18:31:59 +00006209 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006210 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006211 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006212 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006213 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006214 Op = TLI.LowerOperation(Op, DAG);
6215 if (Op.Val) {
6216 // Now that the custom expander is done, expand the result, which is
6217 // still VT.
6218 ExpandOp(Op, Lo, Hi);
6219 break;
6220 }
6221 }
6222
Chris Lattner79980b02006-09-13 03:50:39 +00006223 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6224 // this X << 1 as X+X.
6225 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman002e5d02008-03-13 22:13:53 +00006226 if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
Chris Lattner79980b02006-09-13 03:50:39 +00006227 TLI.isOperationLegal(ISD::ADDE, NVT)) {
6228 SDOperand LoOps[2], HiOps[3];
6229 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6230 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6231 LoOps[1] = LoOps[0];
6232 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6233
6234 HiOps[1] = HiOps[0];
6235 HiOps[2] = Lo.getValue(1);
6236 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6237 break;
6238 }
6239 }
6240
Chris Lattnere34b3962005-01-19 04:19:40 +00006241 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006242 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006243 break;
Chris Lattner47599822005-04-02 03:38:53 +00006244
6245 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006246 TargetLowering::LegalizeAction Action =
6247 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6248 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6249 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006250 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006251 break;
6252 }
6253
Chris Lattnere34b3962005-01-19 04:19:40 +00006254 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006255 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006256 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006257 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006258
Evan Cheng05a2d562006-01-09 18:31:59 +00006259 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006260 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006261 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006262 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006263 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006264 Op = TLI.LowerOperation(Op, DAG);
6265 if (Op.Val) {
6266 // Now that the custom expander is done, expand the result, which is
6267 // still VT.
6268 ExpandOp(Op, Lo, Hi);
6269 break;
6270 }
6271 }
6272
Chris Lattnere34b3962005-01-19 04:19:40 +00006273 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006274 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006275 break;
Chris Lattner47599822005-04-02 03:38:53 +00006276
6277 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006278 TargetLowering::LegalizeAction Action =
6279 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6280 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6281 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006282 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006283 break;
6284 }
6285
Chris Lattnere34b3962005-01-19 04:19:40 +00006286 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006287 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006288 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006289 }
6290
6291 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006292 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006293 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006294 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006295 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006296 Op = TLI.LowerOperation(Op, DAG);
6297 if (Op.Val) {
6298 // Now that the custom expander is done, expand the result, which is
6299 // still VT.
6300 ExpandOp(Op, Lo, Hi);
6301 break;
6302 }
6303 }
6304
Chris Lattnere34b3962005-01-19 04:19:40 +00006305 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006306 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006307 break;
Chris Lattner47599822005-04-02 03:38:53 +00006308
6309 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006310 TargetLowering::LegalizeAction Action =
6311 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6312 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6313 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006314 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006315 break;
6316 }
6317
Chris Lattnere34b3962005-01-19 04:19:40 +00006318 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006319 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006320 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006321 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006322
Misha Brukmanedf128a2005-04-21 22:36:52 +00006323 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006324 case ISD::SUB: {
6325 // If the target wants to custom expand this, let them.
6326 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6327 TargetLowering::Custom) {
6328 Op = TLI.LowerOperation(Op, DAG);
6329 if (Op.Val) {
6330 ExpandOp(Op, Lo, Hi);
6331 break;
6332 }
6333 }
6334
6335 // Expand the subcomponents.
6336 SDOperand LHSL, LHSH, RHSL, RHSH;
6337 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6338 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00006339 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6340 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006341 LoOps[0] = LHSL;
6342 LoOps[1] = RHSL;
6343 HiOps[0] = LHSH;
6344 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006345 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00006346 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006347 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006348 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006349 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00006350 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006351 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006352 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006353 }
Chris Lattner84f67882005-01-20 18:52:28 +00006354 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006355 }
Chris Lattnerb429f732007-05-17 18:15:41 +00006356
6357 case ISD::ADDC:
6358 case ISD::SUBC: {
6359 // Expand the subcomponents.
6360 SDOperand LHSL, LHSH, RHSL, RHSH;
6361 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6362 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6363 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6364 SDOperand LoOps[2] = { LHSL, RHSL };
6365 SDOperand HiOps[3] = { LHSH, RHSH };
6366
6367 if (Node->getOpcode() == ISD::ADDC) {
6368 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6369 HiOps[2] = Lo.getValue(1);
6370 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6371 } else {
6372 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6373 HiOps[2] = Lo.getValue(1);
6374 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6375 }
6376 // Remember that we legalized the flag.
6377 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6378 break;
6379 }
6380 case ISD::ADDE:
6381 case ISD::SUBE: {
6382 // Expand the subcomponents.
6383 SDOperand LHSL, LHSH, RHSL, RHSH;
6384 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6385 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6386 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6387 SDOperand LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6388 SDOperand HiOps[3] = { LHSH, RHSH };
6389
6390 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6391 HiOps[2] = Lo.getValue(1);
6392 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6393
6394 // Remember that we legalized the flag.
6395 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6396 break;
6397 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006398 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006399 // If the target wants to custom expand this, let them.
6400 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00006401 SDOperand New = TLI.LowerOperation(Op, DAG);
6402 if (New.Val) {
6403 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006404 break;
6405 }
6406 }
6407
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006408 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6409 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00006410 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6411 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6412 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Nate Begemanc7c16572005-04-11 03:01:51 +00006413 SDOperand LL, LH, RL, RH;
6414 ExpandOp(Node->getOperand(0), LL, LH);
6415 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006416 unsigned OuterBitSize = Op.getValueSizeInBits();
6417 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00006418 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6419 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00006420 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6421 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6422 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00006423 // The inputs are both zero-extended.
6424 if (HasUMUL_LOHI) {
6425 // We can emit a umul_lohi.
6426 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6427 Hi = SDOperand(Lo.Val, 1);
6428 break;
6429 }
6430 if (HasMULHU) {
6431 // We can emit a mulhu+mul.
6432 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6433 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6434 break;
6435 }
Dan Gohman525178c2007-10-08 18:33:35 +00006436 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006437 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00006438 // The input values are both sign-extended.
6439 if (HasSMUL_LOHI) {
6440 // We can emit a smul_lohi.
6441 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6442 Hi = SDOperand(Lo.Val, 1);
6443 break;
6444 }
6445 if (HasMULHS) {
6446 // We can emit a mulhs+mul.
6447 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6448 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6449 break;
6450 }
6451 }
6452 if (HasUMUL_LOHI) {
6453 // Lo,Hi = umul LHS, RHS.
6454 SDOperand UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
6455 DAG.getVTList(NVT, NVT), LL, RL);
6456 Lo = UMulLOHI;
6457 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00006458 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6459 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6460 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6461 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00006462 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00006463 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00006464 if (HasMULHU) {
6465 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6466 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6467 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6468 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6469 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6470 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6471 break;
6472 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006473 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006474
Dan Gohman525178c2007-10-08 18:33:35 +00006475 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006476 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00006477 break;
6478 }
Evan Cheng56966222007-01-12 02:11:51 +00006479 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006480 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006481 break;
6482 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006483 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006484 break;
6485 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006486 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006487 break;
6488 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006489 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006490 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00006491
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006492 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00006493 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6494 RTLIB::ADD_F64,
6495 RTLIB::ADD_F80,
6496 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006497 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006498 break;
6499 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00006500 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6501 RTLIB::SUB_F64,
6502 RTLIB::SUB_F80,
6503 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006504 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006505 break;
6506 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00006507 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6508 RTLIB::MUL_F64,
6509 RTLIB::MUL_F80,
6510 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006511 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006512 break;
6513 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006514 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6515 RTLIB::DIV_F64,
6516 RTLIB::DIV_F80,
6517 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006518 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006519 break;
6520 case ISD::FP_EXTEND:
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006521 if (VT == MVT::ppcf128) {
6522 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6523 Node->getOperand(0).getValueType()==MVT::f64);
6524 const uint64_t zero = 0;
6525 if (Node->getOperand(0).getValueType()==MVT::f32)
6526 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6527 else
6528 Hi = Node->getOperand(0);
6529 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6530 break;
6531 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006532 Lo = ExpandLibCall(RTLIB::FPEXT_F32_F64, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006533 break;
6534 case ISD::FP_ROUND:
Duncan Sands460a14e2008-04-12 17:14:18 +00006535 Lo = ExpandLibCall(RTLIB::FPROUND_F64_F32, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006536 break;
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006537 case ISD::FPOWI:
Duncan Sands460a14e2008-04-12 17:14:18 +00006538 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::POWI_F32,
6539 RTLIB::POWI_F64,
6540 RTLIB::POWI_F80,
6541 RTLIB::POWI_PPCF128),
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006542 Node, false, Hi);
6543 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006544 case ISD::FSQRT:
6545 case ISD::FSIN:
6546 case ISD::FCOS: {
Evan Cheng56966222007-01-12 02:11:51 +00006547 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006548 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00006549 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00006550 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6551 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006552 break;
6553 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00006554 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6555 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006556 break;
6557 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00006558 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6559 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006560 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006561 default: assert(0 && "Unreachable!");
6562 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006563 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00006564 break;
6565 }
Evan Cheng966bf242006-12-16 00:52:40 +00006566 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006567 if (VT == MVT::ppcf128) {
6568 SDOperand Tmp;
6569 ExpandOp(Node->getOperand(0), Lo, Tmp);
6570 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6571 // lo = hi==fabs(hi) ? lo : -lo;
6572 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6573 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6574 DAG.getCondCode(ISD::SETEQ));
6575 break;
6576 }
Evan Cheng966bf242006-12-16 00:52:40 +00006577 SDOperand Mask = (VT == MVT::f64)
6578 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6579 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6580 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6581 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6582 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6583 if (getTypeAction(NVT) == Expand)
6584 ExpandOp(Lo, Lo, Hi);
6585 break;
6586 }
6587 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006588 if (VT == MVT::ppcf128) {
6589 ExpandOp(Node->getOperand(0), Lo, Hi);
6590 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6591 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6592 break;
6593 }
Evan Cheng966bf242006-12-16 00:52:40 +00006594 SDOperand Mask = (VT == MVT::f64)
6595 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6596 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6597 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6598 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6599 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6600 if (getTypeAction(NVT) == Expand)
6601 ExpandOp(Lo, Lo, Hi);
6602 break;
6603 }
Evan Cheng912095b2007-01-04 21:56:39 +00006604 case ISD::FCOPYSIGN: {
6605 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6606 if (getTypeAction(NVT) == Expand)
6607 ExpandOp(Lo, Lo, Hi);
6608 break;
6609 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006610 case ISD::SINT_TO_FP:
6611 case ISD::UINT_TO_FP: {
6612 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
6613 MVT::ValueType SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00006614
6615 // Promote the operand if needed. Do this before checking for
6616 // ppcf128 so conversions of i16 and i8 work.
6617 if (getTypeAction(SrcVT) == Promote) {
6618 SDOperand Tmp = PromoteOp(Node->getOperand(0));
6619 Tmp = isSigned
6620 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6621 DAG.getValueType(SrcVT))
6622 : DAG.getZeroExtendInReg(Tmp, SrcVT);
6623 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
6624 SrcVT = Node->getOperand(0).getValueType();
6625 }
6626
Dan Gohmana2e94852008-03-10 23:03:31 +00006627 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006628 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006629 if (isSigned) {
6630 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6631 Node->getOperand(0)));
6632 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6633 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006634 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006635 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6636 Node->getOperand(0)));
6637 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6638 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00006639 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006640 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6641 DAG.getConstant(0, MVT::i32),
6642 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6643 DAG.getConstantFP(
6644 APFloat(APInt(128, 2, TwoE32)),
6645 MVT::ppcf128)),
6646 Hi,
6647 DAG.getCondCode(ISD::SETLT)),
6648 Lo, Hi);
6649 }
6650 break;
6651 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00006652 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6653 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006654 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen6e63e092007-10-12 17:52:03 +00006655 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6656 Lo, Hi);
6657 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6658 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6659 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6660 DAG.getConstant(0, MVT::i64),
6661 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6662 DAG.getConstantFP(
6663 APFloat(APInt(128, 2, TwoE64)),
6664 MVT::ppcf128)),
6665 Hi,
6666 DAG.getCondCode(ISD::SETLT)),
6667 Lo, Hi);
6668 break;
6669 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006670
Dan Gohmana2e94852008-03-10 23:03:31 +00006671 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6672 Node->getOperand(0));
Evan Cheng110cf482008-04-01 01:50:16 +00006673 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00006674 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00006675 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00006676 break;
6677 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00006678 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006679
Chris Lattner83397362005-12-21 18:02:52 +00006680 // Make sure the resultant values have been legalized themselves, unless this
6681 // is a type that requires multi-step expansion.
6682 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6683 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00006684 if (Hi.Val)
6685 // Don't legalize the high part if it is expanded to a single node.
6686 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00006687 }
Evan Cheng05a2d562006-01-09 18:31:59 +00006688
6689 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00006690 bool isNew = ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi)));
Evan Cheng05a2d562006-01-09 18:31:59 +00006691 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006692}
6693
Dan Gohman7f321562007-06-25 16:23:39 +00006694/// SplitVectorOp - Given an operand of vector type, break it down into
6695/// two smaller values, still of vector type.
Chris Lattnerc7029802006-03-18 01:44:44 +00006696void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
6697 SDOperand &Hi) {
Dan Gohman7f321562007-06-25 16:23:39 +00006698 assert(MVT::isVector(Op.getValueType()) && "Cannot split non-vector type!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006699 SDNode *Node = Op.Val;
Dan Gohmane40c7b02007-09-24 15:54:53 +00006700 unsigned NumElements = MVT::getVectorNumElements(Op.getValueType());
Chris Lattnerc7029802006-03-18 01:44:44 +00006701 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00006702
Dan Gohmane40c7b02007-09-24 15:54:53 +00006703 MVT::ValueType NewEltVT = MVT::getVectorElementType(Op.getValueType());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006704
6705 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6706 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6707
6708 MVT::ValueType NewVT_Lo = MVT::getVectorType(NewEltVT, NewNumElts_Lo);
6709 MVT::ValueType NewVT_Hi = MVT::getVectorType(NewEltVT, NewNumElts_Hi);
6710
Chris Lattnerc7029802006-03-18 01:44:44 +00006711 // See if we already split it.
6712 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
6713 = SplitNodes.find(Op);
6714 if (I != SplitNodes.end()) {
6715 Lo = I->second.first;
6716 Hi = I->second.second;
6717 return;
6718 }
6719
6720 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006721 default:
6722#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006723 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006724#endif
6725 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00006726 case ISD::UNDEF:
6727 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6728 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6729 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006730 case ISD::BUILD_PAIR:
6731 Lo = Node->getOperand(0);
6732 Hi = Node->getOperand(1);
6733 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00006734 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00006735 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
6736 SplitVectorOp(Node->getOperand(0), Lo, Hi);
6737 unsigned Index = Idx->getValue();
6738 SDOperand ScalarOp = Node->getOperand(1);
6739 if (Index < NewNumElts_Lo)
6740 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
6741 DAG.getIntPtrConstant(Index));
6742 else
6743 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6744 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
6745 break;
6746 }
6747 SDOperand Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
6748 Node->getOperand(1),
6749 Node->getOperand(2));
6750 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00006751 break;
6752 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00006753 case ISD::VECTOR_SHUFFLE: {
6754 // Build the low part.
6755 SDOperand Mask = Node->getOperand(2);
6756 SmallVector<SDOperand, 8> Ops;
6757 MVT::ValueType PtrVT = TLI.getPointerTy();
6758
6759 // Insert all of the elements from the input that are needed. We use
6760 // buildvector of extractelement here because the input vectors will have
6761 // to be legalized, so this makes the code simpler.
6762 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Nate Begeman5922f562008-03-14 00:53:31 +00006763 SDOperand IdxNode = Mask.getOperand(i);
6764 if (IdxNode.getOpcode() == ISD::UNDEF) {
6765 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6766 continue;
6767 }
6768 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006769 SDOperand InVec = Node->getOperand(0);
6770 if (Idx >= NumElements) {
6771 InVec = Node->getOperand(1);
6772 Idx -= NumElements;
6773 }
6774 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6775 DAG.getConstant(Idx, PtrVT)));
6776 }
6777 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6778 Ops.clear();
6779
6780 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Nate Begeman5922f562008-03-14 00:53:31 +00006781 SDOperand IdxNode = Mask.getOperand(i);
6782 if (IdxNode.getOpcode() == ISD::UNDEF) {
6783 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6784 continue;
6785 }
6786 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006787 SDOperand InVec = Node->getOperand(0);
6788 if (Idx >= NumElements) {
6789 InVec = Node->getOperand(1);
6790 Idx -= NumElements;
6791 }
6792 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6793 DAG.getConstant(Idx, PtrVT)));
6794 }
6795 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6796 break;
6797 }
Dan Gohman7f321562007-06-25 16:23:39 +00006798 case ISD::BUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006799 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00006800 Node->op_begin()+NewNumElts_Lo);
6801 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006802
Nate Begeman5db1afb2007-11-15 21:15:26 +00006803 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00006804 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006805 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006806 break;
6807 }
Dan Gohman7f321562007-06-25 16:23:39 +00006808 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00006809 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00006810 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6811 if (NewNumSubvectors == 1) {
6812 Lo = Node->getOperand(0);
6813 Hi = Node->getOperand(1);
6814 } else {
6815 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
6816 Node->op_begin()+NewNumSubvectors);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006817 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00006818
Dan Gohman7f321562007-06-25 16:23:39 +00006819 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumSubvectors,
6820 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006821 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00006822 }
Dan Gohman65956352007-06-13 15:12:02 +00006823 break;
6824 }
Dan Gohmanc6230962007-10-17 14:48:28 +00006825 case ISD::SELECT: {
6826 SDOperand Cond = Node->getOperand(0);
6827
6828 SDOperand LL, LH, RL, RH;
6829 SplitVectorOp(Node->getOperand(1), LL, LH);
6830 SplitVectorOp(Node->getOperand(2), RL, RH);
6831
6832 if (MVT::isVector(Cond.getValueType())) {
6833 // Handle a vector merge.
6834 SDOperand CL, CH;
6835 SplitVectorOp(Cond, CL, CH);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006836 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6837 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006838 } else {
6839 // Handle a simple select with vector operands.
Nate Begeman5db1afb2007-11-15 21:15:26 +00006840 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6841 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006842 }
6843 break;
6844 }
Dan Gohman7f321562007-06-25 16:23:39 +00006845 case ISD::ADD:
6846 case ISD::SUB:
6847 case ISD::MUL:
6848 case ISD::FADD:
6849 case ISD::FSUB:
6850 case ISD::FMUL:
6851 case ISD::SDIV:
6852 case ISD::UDIV:
6853 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00006854 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006855 case ISD::AND:
6856 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00006857 case ISD::XOR:
6858 case ISD::UREM:
6859 case ISD::SREM:
6860 case ISD::FREM: {
Chris Lattnerc7029802006-03-18 01:44:44 +00006861 SDOperand LL, LH, RL, RH;
6862 SplitVectorOp(Node->getOperand(0), LL, LH);
6863 SplitVectorOp(Node->getOperand(1), RL, RH);
6864
Nate Begeman5db1afb2007-11-15 21:15:26 +00006865 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
6866 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00006867 break;
6868 }
Dan Gohman82669522007-10-11 23:57:53 +00006869 case ISD::FPOWI: {
6870 SDOperand L, H;
6871 SplitVectorOp(Node->getOperand(0), L, H);
6872
Nate Begeman5db1afb2007-11-15 21:15:26 +00006873 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
6874 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00006875 break;
6876 }
6877 case ISD::CTTZ:
6878 case ISD::CTLZ:
6879 case ISD::CTPOP:
6880 case ISD::FNEG:
6881 case ISD::FABS:
6882 case ISD::FSQRT:
6883 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00006884 case ISD::FCOS:
6885 case ISD::FP_TO_SINT:
6886 case ISD::FP_TO_UINT:
6887 case ISD::SINT_TO_FP:
6888 case ISD::UINT_TO_FP: {
Dan Gohman82669522007-10-11 23:57:53 +00006889 SDOperand L, H;
6890 SplitVectorOp(Node->getOperand(0), L, H);
6891
Nate Begeman5db1afb2007-11-15 21:15:26 +00006892 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
6893 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00006894 break;
6895 }
Dan Gohman7f321562007-06-25 16:23:39 +00006896 case ISD::LOAD: {
6897 LoadSDNode *LD = cast<LoadSDNode>(Node);
6898 SDOperand Ch = LD->getChain();
6899 SDOperand Ptr = LD->getBasePtr();
6900 const Value *SV = LD->getSrcValue();
6901 int SVOffset = LD->getSrcValueOffset();
6902 unsigned Alignment = LD->getAlignment();
6903 bool isVolatile = LD->isVolatile();
6904
Nate Begeman5db1afb2007-11-15 21:15:26 +00006905 Lo = DAG.getLoad(NewVT_Lo, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
6906 unsigned IncrementSize = NewNumElts_Lo * MVT::getSizeInBits(NewEltVT)/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00006907 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006908 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006909 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006910 Alignment = MinAlign(Alignment, IncrementSize);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006911 Hi = DAG.getLoad(NewVT_Hi, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00006912
6913 // Build a factor node to remember that this load is independent of the
6914 // other one.
6915 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
6916 Hi.getValue(1));
6917
6918 // Remember that we legalized the chain.
6919 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00006920 break;
6921 }
Dan Gohman7f321562007-06-25 16:23:39 +00006922 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00006923 // We know the result is a vector. The input may be either a vector or a
6924 // scalar value.
Dan Gohman10a7aa62007-06-29 00:09:08 +00006925 SDOperand InOp = Node->getOperand(0);
6926 if (!MVT::isVector(InOp.getValueType()) ||
6927 MVT::getVectorNumElements(InOp.getValueType()) == 1) {
6928 // The input is a scalar or single-element vector.
6929 // Lower to a store/load so that it can be split.
6930 // FIXME: this could be improved probably.
Chris Lattner85dd3be2007-10-15 17:48:57 +00006931 SDOperand Ptr = DAG.CreateStackTemporary(InOp.getValueType());
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00006932 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(Ptr.Val);
Chris Lattner7692eb42006-03-23 21:16:34 +00006933
Evan Cheng786225a2006-10-05 23:01:46 +00006934 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00006935 InOp, Ptr,
Dan Gohman3069b872008-02-07 18:41:25 +00006936 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00006937 FI->getIndex());
6938 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohman3069b872008-02-07 18:41:25 +00006939 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00006940 FI->getIndex());
Chris Lattner7692eb42006-03-23 21:16:34 +00006941 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00006942 // Split the vector and convert each of the pieces now.
6943 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006944 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
6945 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00006946 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00006947 }
Chris Lattnerc7029802006-03-18 01:44:44 +00006948 }
6949
6950 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00006951 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00006952 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00006953 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00006954}
6955
6956
Dan Gohman89b20c02007-06-27 14:06:22 +00006957/// ScalarizeVectorOp - Given an operand of single-element vector type
6958/// (e.g. v1f32), convert it into the equivalent operation that returns a
6959/// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +00006960SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) {
6961 assert(MVT::isVector(Op.getValueType()) &&
6962 "Bad ScalarizeVectorOp invocation!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006963 SDNode *Node = Op.Val;
Dan Gohman7f321562007-06-25 16:23:39 +00006964 MVT::ValueType NewVT = MVT::getVectorElementType(Op.getValueType());
6965 assert(MVT::getVectorNumElements(Op.getValueType()) == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00006966
Dan Gohman7f321562007-06-25 16:23:39 +00006967 // See if we already scalarized it.
6968 std::map<SDOperand, SDOperand>::iterator I = ScalarizedNodes.find(Op);
6969 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00006970
6971 SDOperand Result;
6972 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00006973 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006974#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006975 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006976#endif
Dan Gohman7f321562007-06-25 16:23:39 +00006977 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
6978 case ISD::ADD:
6979 case ISD::FADD:
6980 case ISD::SUB:
6981 case ISD::FSUB:
6982 case ISD::MUL:
6983 case ISD::FMUL:
6984 case ISD::SDIV:
6985 case ISD::UDIV:
6986 case ISD::FDIV:
6987 case ISD::SREM:
6988 case ISD::UREM:
6989 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00006990 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006991 case ISD::AND:
6992 case ISD::OR:
6993 case ISD::XOR:
6994 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00006995 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00006996 ScalarizeVectorOp(Node->getOperand(0)),
6997 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00006998 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006999 case ISD::FNEG:
7000 case ISD::FABS:
7001 case ISD::FSQRT:
7002 case ISD::FSIN:
7003 case ISD::FCOS:
7004 Result = DAG.getNode(Node->getOpcode(),
7005 NewVT,
7006 ScalarizeVectorOp(Node->getOperand(0)));
7007 break;
Dan Gohman9e04c822007-10-12 14:13:46 +00007008 case ISD::FPOWI:
7009 Result = DAG.getNode(Node->getOpcode(),
7010 NewVT,
7011 ScalarizeVectorOp(Node->getOperand(0)),
7012 Node->getOperand(1));
7013 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007014 case ISD::LOAD: {
7015 LoadSDNode *LD = cast<LoadSDNode>(Node);
7016 SDOperand Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7017 SDOperand Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00007018
Dan Gohman7f321562007-06-25 16:23:39 +00007019 const Value *SV = LD->getSrcValue();
7020 int SVOffset = LD->getSrcValueOffset();
7021 Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset,
7022 LD->isVolatile(), LD->getAlignment());
7023
Chris Lattnerc7029802006-03-18 01:44:44 +00007024 // Remember that we legalized the chain.
7025 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7026 break;
7027 }
Dan Gohman7f321562007-06-25 16:23:39 +00007028 case ISD::BUILD_VECTOR:
7029 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007030 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007031 case ISD::INSERT_VECTOR_ELT:
7032 // Returning the inserted scalar element.
7033 Result = Node->getOperand(1);
7034 break;
7035 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007036 assert(Node->getOperand(0).getValueType() == NewVT &&
7037 "Concat of non-legal vectors not yet supported!");
7038 Result = Node->getOperand(0);
7039 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007040 case ISD::VECTOR_SHUFFLE: {
7041 // Figure out if the scalar is the LHS or RHS and return it.
7042 SDOperand EltNum = Node->getOperand(2).getOperand(0);
7043 if (cast<ConstantSDNode>(EltNum)->getValue())
7044 Result = ScalarizeVectorOp(Node->getOperand(1));
7045 else
7046 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007047 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007048 }
7049 case ISD::EXTRACT_SUBVECTOR:
7050 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00007051 assert(Result.getValueType() == NewVT);
7052 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007053 case ISD::BIT_CONVERT:
7054 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
Chris Lattner5b2316e2006-03-28 20:24:43 +00007055 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007056 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007057 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007058 ScalarizeVectorOp(Op.getOperand(1)),
7059 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007060 break;
Chris Lattnerc7029802006-03-18 01:44:44 +00007061 }
7062
7063 if (TLI.isTypeLegal(NewVT))
7064 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007065 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7066 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007067 return Result;
7068}
7069
Chris Lattner3e928bb2005-01-07 07:47:09 +00007070
7071// SelectionDAG::Legalize - This is the entry point for the file.
7072//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00007073void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00007074 if (ViewLegalizeDAGs) viewGraph();
7075
Chris Lattner3e928bb2005-01-07 07:47:09 +00007076 /// run - This is the main entry point to this class.
7077 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00007078 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00007079}
7080