blob: a6268e73400587c09b3c3033538dc99d76d14778 [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
Mon P Wang63307c32008-05-05 19:05:59 +00001238 case ISD::ATOMIC_LCS: {
1239 unsigned int num_operands = 4;
1240 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001241 SDOperand Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001242 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001243 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001244 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1245
1246 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1247 default: assert(0 && "This action is not supported yet!");
1248 case TargetLowering::Custom:
1249 Result = TLI.LowerOperation(Result, DAG);
1250 break;
1251 case TargetLowering::Legal:
1252 break;
1253 }
1254 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1255 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1256 return Result.getValue(Op.ResNo);
1257 }
1258 case ISD::ATOMIC_LAS:
1259 case ISD::ATOMIC_LSS:
1260 case ISD::ATOMIC_LOAD_AND:
1261 case ISD::ATOMIC_LOAD_OR:
1262 case ISD::ATOMIC_LOAD_XOR:
1263 case ISD::ATOMIC_LOAD_MIN:
1264 case ISD::ATOMIC_LOAD_MAX:
1265 case ISD::ATOMIC_LOAD_UMIN:
1266 case ISD::ATOMIC_LOAD_UMAX:
1267 case ISD::ATOMIC_SWAP: {
1268 unsigned int num_operands = 3;
1269 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
1270 SDOperand Ops[3];
1271 for (unsigned int x = 0; x < num_operands; ++x)
1272 Ops[x] = LegalizeOp(Node->getOperand(x));
1273 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001274
1275 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001276 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001277 case TargetLowering::Custom:
1278 Result = TLI.LowerOperation(Result, DAG);
1279 break;
Mon P Wang63307c32008-05-05 19:05:59 +00001280 case TargetLowering::Expand:
1281 Result = SDOperand(TLI.ExpandOperationResult(Op.Val, DAG),0);
1282 break;
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001283 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001284 break;
1285 }
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001286 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1287 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1288 return Result.getValue(Op.ResNo);
Mon P Wang63307c32008-05-05 19:05:59 +00001289 }
Scott Michelc1513d22007-08-08 23:23:31 +00001290 case ISD::Constant: {
1291 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1292 unsigned opAction =
1293 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1294
Chris Lattner3e928bb2005-01-07 07:47:09 +00001295 // We know we don't need to expand constants here, constants only have one
1296 // value and we check that it is fine above.
1297
Scott Michelc1513d22007-08-08 23:23:31 +00001298 if (opAction == TargetLowering::Custom) {
1299 Tmp1 = TLI.LowerOperation(Result, DAG);
1300 if (Tmp1.Val)
1301 Result = Tmp1;
1302 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001303 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001304 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001305 case ISD::ConstantFP: {
1306 // Spill FP immediates to the constant pool if the target cannot directly
1307 // codegen them. Targets often have some immediate values that can be
1308 // efficiently generated into an FP register without a load. We explicitly
1309 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001310 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1311
Chris Lattner3181a772006-01-29 06:26:56 +00001312 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1313 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001314 case TargetLowering::Legal:
1315 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001316 case TargetLowering::Custom:
1317 Tmp3 = TLI.LowerOperation(Result, DAG);
1318 if (Tmp3.Val) {
1319 Result = Tmp3;
1320 break;
1321 }
1322 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001323 case TargetLowering::Expand: {
1324 // Check to see if this FP immediate is already legal.
1325 bool isLegal = false;
1326 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1327 E = TLI.legal_fpimm_end(); I != E; ++I) {
1328 if (CFP->isExactlyValue(*I)) {
1329 isLegal = true;
1330 break;
1331 }
1332 }
1333 // If this is a legal constant, turn it into a TargetConstantFP node.
1334 if (isLegal)
1335 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001336 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001337 }
Nate Begemane1795842008-02-14 08:57:00 +00001338 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001339 break;
1340 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001341 case ISD::TokenFactor:
1342 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001343 Tmp1 = LegalizeOp(Node->getOperand(0));
1344 Tmp2 = LegalizeOp(Node->getOperand(1));
1345 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1346 } else if (Node->getNumOperands() == 3) {
1347 Tmp1 = LegalizeOp(Node->getOperand(0));
1348 Tmp2 = LegalizeOp(Node->getOperand(1));
1349 Tmp3 = LegalizeOp(Node->getOperand(2));
1350 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001351 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001352 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001353 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001354 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1355 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001356 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001357 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001358 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001359
1360 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001361 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001362 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001363 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1364 assert(Tmp3.Val && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001365 // A call within a calling sequence must be legalized to something
1366 // other than the normal CALLSEQ_END. Violating this gets Legalize
1367 // into an infinite loop.
1368 assert ((!IsLegalizingCall ||
1369 Node->getOpcode() != ISD::CALL ||
1370 Tmp3.Val->getOpcode() != ISD::CALLSEQ_END) &&
1371 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001372
1373 // The number of incoming and outgoing values should match; unless the final
1374 // outgoing value is a flag.
1375 assert((Tmp3.Val->getNumValues() == Result.Val->getNumValues() ||
1376 (Tmp3.Val->getNumValues() == Result.Val->getNumValues() + 1 &&
1377 Tmp3.Val->getValueType(Tmp3.Val->getNumValues() - 1) ==
1378 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001379 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001380
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001381 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001382 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +00001383 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001384 if (Tmp3.Val->getValueType(i) == MVT::Flag)
1385 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001386 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +00001387 if (Op.ResNo == i)
1388 Tmp2 = Tmp1;
1389 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
1390 }
1391 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001392 case ISD::EXTRACT_SUBREG: {
1393 Tmp1 = LegalizeOp(Node->getOperand(0));
1394 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1395 assert(idx && "Operand must be a constant");
1396 Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1397 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1398 }
1399 break;
1400 case ISD::INSERT_SUBREG: {
1401 Tmp1 = LegalizeOp(Node->getOperand(0));
1402 Tmp2 = LegalizeOp(Node->getOperand(1));
1403 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1404 assert(idx && "Operand must be a constant");
1405 Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1406 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1407 }
1408 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001409 case ISD::BUILD_VECTOR:
1410 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001411 default: assert(0 && "This action is not supported yet!");
1412 case TargetLowering::Custom:
1413 Tmp3 = TLI.LowerOperation(Result, DAG);
1414 if (Tmp3.Val) {
1415 Result = Tmp3;
1416 break;
1417 }
1418 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001419 case TargetLowering::Expand:
1420 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +00001421 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001422 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001423 break;
1424 case ISD::INSERT_VECTOR_ELT:
1425 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001426 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001427
1428 // The type of the value to insert may not be legal, even though the vector
1429 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1430 // here.
1431 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1432 default: assert(0 && "Cannot expand insert element operand");
1433 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1434 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1435 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001436 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1437
1438 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1439 Node->getValueType(0))) {
1440 default: assert(0 && "This action is not supported yet!");
1441 case TargetLowering::Legal:
1442 break;
1443 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001444 Tmp4 = TLI.LowerOperation(Result, DAG);
1445 if (Tmp4.Val) {
1446 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001447 break;
1448 }
1449 // FALLTHROUGH
1450 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001451 // If the insert index is a constant, codegen this as a scalar_to_vector,
1452 // then a shuffle that inserts it into the right position in the vector.
1453 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001454 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1455 // match the element type of the vector being created.
1456 if (Tmp2.getValueType() ==
1457 MVT::getVectorElementType(Op.getValueType())) {
1458 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
1459 Tmp1.getValueType(), Tmp2);
1460
1461 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
1462 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
1463 MVT::ValueType ShufMaskEltVT = MVT::getVectorElementType(ShufMaskVT);
1464
1465 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1466 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1467 // elt 0 of the RHS.
1468 SmallVector<SDOperand, 8> ShufOps;
1469 for (unsigned i = 0; i != NumElts; ++i) {
1470 if (i != InsertPos->getValue())
1471 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1472 else
1473 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1474 }
1475 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
1476 &ShufOps[0], ShufOps.size());
1477
1478 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1479 Tmp1, ScVec, ShufMask);
1480 Result = LegalizeOp(Result);
1481 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001482 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001483 }
Nate Begeman68679912008-04-25 18:07:40 +00001484 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001485 break;
1486 }
1487 }
1488 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001489 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001490 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1491 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1492 break;
1493 }
1494
Chris Lattnerce872152006-03-19 06:31:19 +00001495 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1496 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1497 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1498 Node->getValueType(0))) {
1499 default: assert(0 && "This action is not supported yet!");
1500 case TargetLowering::Legal:
1501 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001502 case TargetLowering::Custom:
1503 Tmp3 = TLI.LowerOperation(Result, DAG);
1504 if (Tmp3.Val) {
1505 Result = Tmp3;
1506 break;
1507 }
1508 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001509 case TargetLowering::Expand:
1510 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001511 break;
1512 }
Chris Lattnerce872152006-03-19 06:31:19 +00001513 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001514 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001515 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1516 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1517 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1518
1519 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001520 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1521 default: assert(0 && "Unknown operation action!");
1522 case TargetLowering::Legal:
1523 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1524 "vector shuffle should not be created if not legal!");
1525 break;
1526 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001527 Tmp3 = TLI.LowerOperation(Result, DAG);
1528 if (Tmp3.Val) {
1529 Result = Tmp3;
1530 break;
1531 }
1532 // FALLTHROUGH
1533 case TargetLowering::Expand: {
1534 MVT::ValueType VT = Node->getValueType(0);
Dan Gohman51eaa862007-06-14 22:58:02 +00001535 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001536 MVT::ValueType PtrVT = TLI.getPointerTy();
1537 SDOperand Mask = Node->getOperand(2);
1538 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001539 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001540 for (unsigned i = 0; i != NumElems; ++i) {
1541 SDOperand Arg = Mask.getOperand(i);
1542 if (Arg.getOpcode() == ISD::UNDEF) {
1543 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1544 } else {
1545 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1546 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1547 if (Idx < NumElems)
1548 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1549 DAG.getConstant(Idx, PtrVT)));
1550 else
1551 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1552 DAG.getConstant(Idx - NumElems, PtrVT)));
1553 }
1554 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001555 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001556 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001557 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001558 case TargetLowering::Promote: {
1559 // Change base type to a different vector type.
1560 MVT::ValueType OVT = Node->getValueType(0);
1561 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1562
1563 // Cast the two input vectors.
1564 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1565 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1566
1567 // Convert the shuffle mask to the right # elements.
1568 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1569 assert(Tmp3.Val && "Shuffle not legal?");
1570 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1571 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1572 break;
1573 }
Chris Lattner87100e02006-03-20 01:52:29 +00001574 }
1575 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001576
1577 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001578 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001579 Tmp2 = LegalizeOp(Node->getOperand(1));
1580 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001581 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001582 break;
1583
Dan Gohman7f321562007-06-25 16:23:39 +00001584 case ISD::EXTRACT_SUBVECTOR:
1585 Tmp1 = Node->getOperand(0);
1586 Tmp2 = LegalizeOp(Node->getOperand(1));
1587 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1588 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001589 break;
1590
Chris Lattner6831a812006-02-13 09:18:02 +00001591 case ISD::CALLSEQ_START: {
1592 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1593
1594 // Recursively Legalize all of the inputs of the call end that do not lead
1595 // to this call start. This ensures that any libcalls that need be inserted
1596 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001597 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001598 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001599 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1600 NodesLeadingTo);
1601 }
Chris Lattner6831a812006-02-13 09:18:02 +00001602
1603 // Now that we legalized all of the inputs (which may have inserted
1604 // libcalls) create the new CALLSEQ_START node.
1605 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1606
1607 // Merge in the last call, to ensure that this call start after the last
1608 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001609 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001610 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1611 Tmp1 = LegalizeOp(Tmp1);
1612 }
Chris Lattner6831a812006-02-13 09:18:02 +00001613
1614 // Do not try to legalize the target-specific arguments (#1+).
1615 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001616 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001617 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001618 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001619 }
1620
1621 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001622 AddLegalizedOperand(Op.getValue(0), Result);
1623 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1624 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1625
Chris Lattner6831a812006-02-13 09:18:02 +00001626 // Now that the callseq_start and all of the non-call nodes above this call
1627 // sequence have been legalized, legalize the call itself. During this
1628 // process, no libcalls can/will be inserted, guaranteeing that no calls
1629 // can overlap.
1630 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001631 // Note that we are selecting this call!
1632 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1633 IsLegalizingCall = true;
1634
1635 // Legalize the call, starting from the CALLSEQ_END.
1636 LegalizeOp(LastCALLSEQ_END);
1637 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1638 return Result;
1639 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001640 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001641 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1642 // will cause this node to be legalized as well as handling libcalls right.
1643 if (LastCALLSEQ_END.Val != Node) {
1644 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
Roman Levenstein9cac5252008-04-16 16:15:27 +00001645 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001646 assert(I != LegalizedNodes.end() &&
1647 "Legalizing the call start should have legalized this node!");
1648 return I->second;
1649 }
1650
1651 // Otherwise, the call start has been legalized and everything is going
1652 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001653 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001654 // Do not try to legalize the target-specific arguments (#1+), except for
1655 // an optional flag input.
1656 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1657 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001658 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001659 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001660 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001661 }
1662 } else {
1663 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1664 if (Tmp1 != Node->getOperand(0) ||
1665 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001666 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001667 Ops[0] = Tmp1;
1668 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001669 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001670 }
Chris Lattner6a542892006-01-24 05:48:21 +00001671 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001672 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001673 // This finishes up call legalization.
1674 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001675
1676 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1677 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1678 if (Node->getNumValues() == 2)
1679 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1680 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001681 case ISD::DYNAMIC_STACKALLOC: {
Evan Cheng61bbbab2007-08-16 23:50:06 +00001682 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001683 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1684 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1685 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001686 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001687
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001688 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001689 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001690 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001691 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001692 case TargetLowering::Expand: {
1693 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1694 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1695 " not tell us which reg is the stack pointer!");
1696 SDOperand Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001697
1698 // Chain the dynamic stack allocation so that it doesn't modify the stack
1699 // pointer when other instructions are using the stack.
1700 Chain = DAG.getCALLSEQ_START(Chain,
1701 DAG.getConstant(0, TLI.getPointerTy()));
1702
Chris Lattner903d2782006-01-15 08:54:32 +00001703 SDOperand Size = Tmp2.getOperand(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001704 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, VT);
1705 Chain = SP.getValue(1);
1706 unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1707 unsigned StackAlign =
1708 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1709 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001710 SP = DAG.getNode(ISD::AND, VT, SP,
1711 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001712 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001713 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1714
1715 Tmp2 =
1716 DAG.getCALLSEQ_END(Chain,
1717 DAG.getConstant(0, TLI.getPointerTy()),
1718 DAG.getConstant(0, TLI.getPointerTy()),
1719 SDOperand());
1720
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001721 Tmp1 = LegalizeOp(Tmp1);
1722 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001723 break;
1724 }
1725 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001726 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1727 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001728 Tmp1 = LegalizeOp(Tmp3);
1729 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001730 }
Chris Lattner903d2782006-01-15 08:54:32 +00001731 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001732 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001733 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001734 }
Chris Lattner903d2782006-01-15 08:54:32 +00001735 // Since this op produce two values, make sure to remember that we
1736 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001737 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1738 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001739 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001740 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001741 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001742 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001743 bool Changed = false;
1744 // Legalize all of the operands of the inline asm, in case they are nodes
1745 // that need to be expanded or something. Note we skip the asm string and
1746 // all of the TargetConstant flags.
1747 SDOperand Op = LegalizeOp(Ops[0]);
1748 Changed = Op != Ops[0];
1749 Ops[0] = Op;
1750
1751 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1752 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1753 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1754 for (++i; NumVals; ++i, --NumVals) {
1755 SDOperand Op = LegalizeOp(Ops[i]);
1756 if (Op != Ops[i]) {
1757 Changed = true;
1758 Ops[i] = Op;
1759 }
1760 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001761 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001762
1763 if (HasInFlag) {
1764 Op = LegalizeOp(Ops.back());
1765 Changed |= Op != Ops.back();
1766 Ops.back() = Op;
1767 }
1768
1769 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001770 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001771
1772 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001773 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001774 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1775 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001776 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001777 case ISD::BR:
1778 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001779 // Ensure that libcalls are emitted before a branch.
1780 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1781 Tmp1 = LegalizeOp(Tmp1);
1782 LastCALLSEQ_END = DAG.getEntryNode();
1783
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001784 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001785 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001786 case ISD::BRIND:
1787 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1788 // Ensure that libcalls are emitted before a branch.
1789 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1790 Tmp1 = LegalizeOp(Tmp1);
1791 LastCALLSEQ_END = DAG.getEntryNode();
1792
1793 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1794 default: assert(0 && "Indirect target must be legal type (pointer)!");
1795 case Legal:
1796 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1797 break;
1798 }
1799 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1800 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001801 case ISD::BR_JT:
1802 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1803 // Ensure that libcalls are emitted before a branch.
1804 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1805 Tmp1 = LegalizeOp(Tmp1);
1806 LastCALLSEQ_END = DAG.getEntryNode();
1807
1808 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1809 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1810
1811 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1812 default: assert(0 && "This action is not supported yet!");
1813 case TargetLowering::Legal: break;
1814 case TargetLowering::Custom:
1815 Tmp1 = TLI.LowerOperation(Result, DAG);
1816 if (Tmp1.Val) Result = Tmp1;
1817 break;
1818 case TargetLowering::Expand: {
1819 SDOperand Chain = Result.getOperand(0);
1820 SDOperand Table = Result.getOperand(1);
1821 SDOperand Index = Result.getOperand(2);
1822
1823 MVT::ValueType PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001824 MachineFunction &MF = DAG.getMachineFunction();
1825 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001826 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1827 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001828
1829 SDOperand LD;
1830 switch (EntrySize) {
1831 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001832 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001833 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001834 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001835 PseudoSourceValue::getJumpTable(), 0); break;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001836 }
1837
Evan Chengcc415862007-11-09 01:32:10 +00001838 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001839 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001840 // For PIC, the sequence is:
1841 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00001842 // RelocBase can be JumpTable, GOT or some sort of global base.
1843 if (PTy != MVT::i32)
1844 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1845 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1846 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00001847 }
Evan Chengcc415862007-11-09 01:32:10 +00001848 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001849 }
1850 }
1851 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001852 case ISD::BRCOND:
1853 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001854 // Ensure that libcalls are emitted before a return.
1855 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1856 Tmp1 = LegalizeOp(Tmp1);
1857 LastCALLSEQ_END = DAG.getEntryNode();
1858
Chris Lattner47e92232005-01-18 19:27:06 +00001859 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1860 case Expand: assert(0 && "It's impossible to expand bools");
1861 case Legal:
1862 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1863 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001864 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00001865 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001866
1867 // The top bits of the promoted condition are not necessarily zero, ensure
1868 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001869 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001870 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001871 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerf9908172006-11-27 04:39:56 +00001872 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001873 break;
1874 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001875 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001876
1877 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001878 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001879
1880 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1881 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001882 case TargetLowering::Legal: break;
1883 case TargetLowering::Custom:
1884 Tmp1 = TLI.LowerOperation(Result, DAG);
1885 if (Tmp1.Val) Result = Tmp1;
1886 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001887 case TargetLowering::Expand:
1888 // Expand brcond's setcc into its constituent parts and create a BR_CC
1889 // Node.
1890 if (Tmp2.getOpcode() == ISD::SETCC) {
1891 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1892 Tmp2.getOperand(0), Tmp2.getOperand(1),
1893 Node->getOperand(2));
1894 } else {
1895 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1896 DAG.getCondCode(ISD::SETNE), Tmp2,
1897 DAG.getConstant(0, Tmp2.getValueType()),
1898 Node->getOperand(2));
1899 }
1900 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001901 }
1902 break;
1903 case ISD::BR_CC:
1904 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001905 // Ensure that libcalls are emitted before a branch.
1906 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1907 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001908 Tmp2 = Node->getOperand(2); // LHS
1909 Tmp3 = Node->getOperand(3); // RHS
1910 Tmp4 = Node->getOperand(1); // CC
1911
1912 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001913 LastCALLSEQ_END = DAG.getEntryNode();
1914
Nate Begeman750ac1b2006-02-01 07:19:44 +00001915 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1916 // the LHS is a legal SETCC itself. In this case, we need to compare
1917 // the result against zero to select between true and false values.
1918 if (Tmp3.Val == 0) {
1919 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1920 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001921 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001922
1923 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1924 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001925
Chris Lattner181b7a32005-12-17 23:46:46 +00001926 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1927 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001928 case TargetLowering::Legal: break;
1929 case TargetLowering::Custom:
1930 Tmp4 = TLI.LowerOperation(Result, DAG);
1931 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001932 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001933 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001934 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001935 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001936 LoadSDNode *LD = cast<LoadSDNode>(Node);
1937 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1938 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001939
Evan Cheng466685d2006-10-09 20:57:25 +00001940 ISD::LoadExtType ExtType = LD->getExtensionType();
1941 if (ExtType == ISD::NON_EXTLOAD) {
1942 MVT::ValueType VT = Node->getValueType(0);
1943 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1944 Tmp3 = Result.getValue(0);
1945 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001946
Evan Cheng466685d2006-10-09 20:57:25 +00001947 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1948 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001949 case TargetLowering::Legal:
1950 // If this is an unaligned load and the target doesn't support it,
1951 // expand it.
1952 if (!TLI.allowsUnalignedMemoryAccesses()) {
1953 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001954 getABITypeAlignment(MVT::getTypeForValueType(LD->getMemoryVT()));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001955 if (LD->getAlignment() < ABIAlignment){
1956 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1957 TLI);
1958 Tmp3 = Result.getOperand(0);
1959 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001960 Tmp3 = LegalizeOp(Tmp3);
1961 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001962 }
1963 }
1964 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001965 case TargetLowering::Custom:
1966 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1967 if (Tmp1.Val) {
1968 Tmp3 = LegalizeOp(Tmp1);
1969 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001970 }
Evan Cheng466685d2006-10-09 20:57:25 +00001971 break;
1972 case TargetLowering::Promote: {
1973 // Only promote a load of vector type to another.
1974 assert(MVT::isVector(VT) && "Cannot promote this load!");
1975 // Change base type to a different vector type.
1976 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1977
1978 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001979 LD->getSrcValueOffset(),
1980 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001981 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1982 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001983 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001984 }
Evan Cheng466685d2006-10-09 20:57:25 +00001985 }
1986 // Since loads produce two values, make sure to remember that we
1987 // legalized both of them.
1988 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1989 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1990 return Op.ResNo ? Tmp4 : Tmp3;
1991 } else {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001992 MVT::ValueType SrcVT = LD->getMemoryVT();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001993 unsigned SrcWidth = MVT::getSizeInBits(SrcVT);
1994 int SVOffset = LD->getSrcValueOffset();
1995 unsigned Alignment = LD->getAlignment();
1996 bool isVolatile = LD->isVolatile();
1997
1998 if (SrcWidth != MVT::getStoreSizeInBits(SrcVT) &&
1999 // Some targets pretend to have an i1 loading operation, and actually
2000 // load an i8. This trick is correct for ZEXTLOAD because the top 7
2001 // bits are guaranteed to be zero; it helps the optimizers understand
2002 // that these bits are zero. It is also useful for EXTLOAD, since it
2003 // tells the optimizers that those bits are undefined. It would be
2004 // nice to have an effective generic way of getting these benefits...
2005 // Until such a way is found, don't insist on promoting i1 here.
2006 (SrcVT != MVT::i1 ||
2007 TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
2008 // Promote to a byte-sized load if not loading an integral number of
2009 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
2010 unsigned NewWidth = MVT::getStoreSizeInBits(SrcVT);
2011 MVT::ValueType NVT = MVT::getIntegerType(NewWidth);
2012 SDOperand Ch;
2013
2014 // The extra bits are guaranteed to be zero, since we stored them that
2015 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2016
2017 ISD::LoadExtType NewExtType =
2018 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2019
2020 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
2021 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2022 NVT, isVolatile, Alignment);
2023
2024 Ch = Result.getValue(1); // The chain.
2025
2026 if (ExtType == ISD::SEXTLOAD)
2027 // Having the top bits zero doesn't help when sign extending.
2028 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2029 Result, DAG.getValueType(SrcVT));
2030 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2031 // All the top bits are guaranteed to be zero - inform the optimizers.
2032 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2033 DAG.getValueType(SrcVT));
2034
2035 Tmp1 = LegalizeOp(Result);
2036 Tmp2 = LegalizeOp(Ch);
2037 } else if (SrcWidth & (SrcWidth - 1)) {
2038 // If not loading a power-of-2 number of bits, expand as two loads.
2039 assert(MVT::isExtendedVT(SrcVT) && !MVT::isVector(SrcVT) &&
2040 "Unsupported extload!");
2041 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2042 assert(RoundWidth < SrcWidth);
2043 unsigned ExtraWidth = SrcWidth - RoundWidth;
2044 assert(ExtraWidth < RoundWidth);
2045 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2046 "Load size not an integral number of bytes!");
2047 MVT::ValueType RoundVT = MVT::getIntegerType(RoundWidth);
2048 MVT::ValueType ExtraVT = MVT::getIntegerType(ExtraWidth);
2049 SDOperand Lo, Hi, Ch;
2050 unsigned IncrementSize;
2051
2052 if (TLI.isLittleEndian()) {
2053 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2054 // Load the bottom RoundWidth bits.
2055 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2056 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2057 Alignment);
2058
2059 // Load the remaining ExtraWidth bits.
2060 IncrementSize = RoundWidth / 8;
2061 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2062 DAG.getIntPtrConstant(IncrementSize));
2063 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2064 LD->getSrcValue(), SVOffset + IncrementSize,
2065 ExtraVT, isVolatile,
2066 MinAlign(Alignment, IncrementSize));
2067
2068 // Build a factor node to remember that this load is independent of the
2069 // other one.
2070 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2071 Hi.getValue(1));
2072
2073 // Move the top bits to the right place.
2074 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2075 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2076
2077 // Join the hi and lo parts.
2078 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002079 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002080 // Big endian - avoid unaligned loads.
2081 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2082 // Load the top RoundWidth bits.
2083 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2084 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2085 Alignment);
2086
2087 // Load the remaining ExtraWidth bits.
2088 IncrementSize = RoundWidth / 8;
2089 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2090 DAG.getIntPtrConstant(IncrementSize));
2091 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2092 LD->getSrcValue(), SVOffset + IncrementSize,
2093 ExtraVT, isVolatile,
2094 MinAlign(Alignment, IncrementSize));
2095
2096 // Build a factor node to remember that this load is independent of the
2097 // other one.
2098 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2099 Hi.getValue(1));
2100
2101 // Move the top bits to the right place.
2102 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2103 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2104
2105 // Join the hi and lo parts.
2106 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2107 }
2108
2109 Tmp1 = LegalizeOp(Result);
2110 Tmp2 = LegalizeOp(Ch);
2111 } else {
2112 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
2113 default: assert(0 && "This action is not supported yet!");
2114 case TargetLowering::Custom:
2115 isCustom = true;
2116 // FALLTHROUGH
2117 case TargetLowering::Legal:
2118 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2119 Tmp1 = Result.getValue(0);
2120 Tmp2 = Result.getValue(1);
2121
2122 if (isCustom) {
2123 Tmp3 = TLI.LowerOperation(Result, DAG);
2124 if (Tmp3.Val) {
2125 Tmp1 = LegalizeOp(Tmp3);
2126 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2127 }
2128 } else {
2129 // If this is an unaligned load and the target doesn't support it,
2130 // expand it.
2131 if (!TLI.allowsUnalignedMemoryAccesses()) {
2132 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002133 getABITypeAlignment(MVT::getTypeForValueType(LD->getMemoryVT()));
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002134 if (LD->getAlignment() < ABIAlignment){
2135 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
2136 TLI);
2137 Tmp1 = Result.getOperand(0);
2138 Tmp2 = Result.getOperand(1);
2139 Tmp1 = LegalizeOp(Tmp1);
2140 Tmp2 = LegalizeOp(Tmp2);
2141 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002142 }
2143 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002144 break;
2145 case TargetLowering::Expand:
2146 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2147 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
2148 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
2149 LD->getSrcValueOffset(),
2150 LD->isVolatile(), LD->getAlignment());
2151 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2152 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2153 Tmp2 = LegalizeOp(Load.getValue(1));
2154 break;
2155 }
2156 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2157 // Turn the unsupported load into an EXTLOAD followed by an explicit
2158 // zero/sign extend inreg.
2159 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2160 Tmp1, Tmp2, LD->getSrcValue(),
2161 LD->getSrcValueOffset(), SrcVT,
2162 LD->isVolatile(), LD->getAlignment());
2163 SDOperand ValRes;
2164 if (ExtType == ISD::SEXTLOAD)
2165 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2166 Result, DAG.getValueType(SrcVT));
2167 else
2168 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2169 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2170 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002171 break;
2172 }
Evan Cheng466685d2006-10-09 20:57:25 +00002173 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002174
Evan Cheng466685d2006-10-09 20:57:25 +00002175 // Since loads produce two values, make sure to remember that we legalized
2176 // both of them.
2177 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2178 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2179 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002180 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002181 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002182 case ISD::EXTRACT_ELEMENT: {
2183 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
2184 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002185 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002186 case Legal:
2187 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
2188 // 1 -> Hi
2189 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
2190 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
2191 TLI.getShiftAmountTy()));
2192 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2193 } else {
2194 // 0 -> Lo
2195 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2196 Node->getOperand(0));
2197 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002198 break;
2199 case Expand:
2200 // Get both the low and high parts.
2201 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2202 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
2203 Result = Tmp2; // 1 -> Hi
2204 else
2205 Result = Tmp1; // 0 -> Lo
2206 break;
2207 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002208 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002209 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002210
2211 case ISD::CopyToReg:
2212 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002213
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002214 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002215 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002216 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002217 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002218 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002219 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002220 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002221 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002222 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002223 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002224 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2225 Tmp3);
2226 } else {
2227 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002228 }
2229
2230 // Since this produces two values, make sure to remember that we legalized
2231 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002232 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00002233 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002234 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002235 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002236 break;
2237
2238 case ISD::RET:
2239 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002240
2241 // Ensure that libcalls are emitted before a return.
2242 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2243 Tmp1 = LegalizeOp(Tmp1);
2244 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002245
Chris Lattner3e928bb2005-01-07 07:47:09 +00002246 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002247 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002248 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002249 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002250 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002251 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002252 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002253 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002254 case Expand:
Dan Gohman7f321562007-06-25 16:23:39 +00002255 if (!MVT::isVector(Tmp2.getValueType())) {
Chris Lattnerf87324e2006-04-11 01:31:51 +00002256 SDOperand Lo, Hi;
2257 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002258
2259 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002260 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002261 std::swap(Lo, Hi);
2262
Evan Cheng13acce32006-12-11 19:27:14 +00002263 if (Hi.Val)
2264 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2265 else
2266 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002267 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002268 } else {
2269 SDNode *InVal = Tmp2.Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002270 int InIx = Tmp2.ResNo;
2271 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(InIx));
2272 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(InIx));
Chris Lattnerf87324e2006-04-11 01:31:51 +00002273
Dan Gohman7f321562007-06-25 16:23:39 +00002274 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002275 // type. If so, convert to the vector type.
Chris Lattnerf87324e2006-04-11 01:31:51 +00002276 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002277 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002278 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002279 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002280 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002281 } else if (NumElems == 1) {
2282 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002283 Tmp2 = ScalarizeVectorOp(Tmp2);
2284 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002285 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002286
2287 // FIXME: Returns of gcc generic vectors smaller than a legal type
2288 // should be returned in integer registers!
2289
Chris Lattnerf87324e2006-04-11 01:31:51 +00002290 // The scalarized value type may not be legal, e.g. it might require
2291 // promotion or expansion. Relegalize the return.
2292 Result = LegalizeOp(Result);
2293 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002294 // FIXME: Returns of gcc generic vectors larger than a legal vector
2295 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00002296 SDOperand Lo, Hi;
2297 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00002298 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002299 Result = LegalizeOp(Result);
2300 }
2301 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002302 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002303 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002304 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002305 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002306 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002307 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002308 }
2309 break;
2310 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002311 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002312 break;
2313 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002314 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002315 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002316 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002317 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2318 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002319 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002320 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002321 break;
2322 case Expand: {
2323 SDOperand Lo, Hi;
Dan Gohman6595cb32007-06-27 16:08:04 +00002324 assert(!MVT::isExtendedVT(Node->getOperand(i).getValueType()) &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002325 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002326 ExpandOp(Node->getOperand(i), Lo, Hi);
2327 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002328 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00002329 if (Hi.Val) {
2330 NewValues.push_back(Hi);
2331 NewValues.push_back(Node->getOperand(i+1));
2332 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002333 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002334 }
2335 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002336 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002337 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002338
2339 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002340 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002341 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002342 Result = DAG.getNode(ISD::RET, MVT::Other,
2343 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002344 break;
2345 }
2346 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002347
Chris Lattner6862dbc2006-01-29 21:02:23 +00002348 if (Result.getOpcode() == ISD::RET) {
2349 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2350 default: assert(0 && "This action is not supported yet!");
2351 case TargetLowering::Legal: break;
2352 case TargetLowering::Custom:
2353 Tmp1 = TLI.LowerOperation(Result, DAG);
2354 if (Tmp1.Val) Result = Tmp1;
2355 break;
2356 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002357 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002358 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002359 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002360 StoreSDNode *ST = cast<StoreSDNode>(Node);
2361 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2362 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002363 int SVOffset = ST->getSrcValueOffset();
2364 unsigned Alignment = ST->getAlignment();
2365 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002366
Evan Cheng8b2794a2006-10-13 21:14:26 +00002367 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002368 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2369 // FIXME: We shouldn't do this for TargetConstantFP's.
2370 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2371 // to phase ordering between legalized code and the dag combiner. This
2372 // probably means that we need to integrate dag combiner and legalizer
2373 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002374 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002375 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002376 if (CFP->getValueType(0) == MVT::f32 &&
2377 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002378 Tmp3 = DAG.getConstant(CFP->getValueAPF().
2379 convertToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002380 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002381 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2382 SVOffset, isVolatile, Alignment);
2383 break;
2384 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002385 // If this target supports 64-bit registers, do a single 64-bit store.
2386 if (getTypeAction(MVT::i64) == Legal) {
2387 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002388 zextOrTrunc(64), MVT::i64);
Chris Lattner3cb93512007-10-15 05:46:06 +00002389 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2390 SVOffset, isVolatile, Alignment);
2391 break;
2392 } else if (getTypeAction(MVT::i32) == Legal) {
2393 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2394 // stores. If the target supports neither 32- nor 64-bits, this
2395 // xform is certainly not worth it.
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002396 const APInt &IntVal =CFP->getValueAPF().convertToAPInt();
2397 SDOperand Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2398 SDOperand Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002399 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002400
2401 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2402 SVOffset, isVolatile, Alignment);
2403 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002404 DAG.getIntPtrConstant(4));
Chris Lattner3cb93512007-10-15 05:46:06 +00002405 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002406 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002407
2408 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2409 break;
2410 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002411 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002412 }
2413
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002414 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002415 case Legal: {
2416 Tmp3 = LegalizeOp(ST->getValue());
2417 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2418 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002419
Evan Cheng8b2794a2006-10-13 21:14:26 +00002420 MVT::ValueType VT = Tmp3.getValueType();
2421 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2422 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002423 case TargetLowering::Legal:
2424 // If this is an unaligned store and the target doesn't support it,
2425 // expand it.
2426 if (!TLI.allowsUnalignedMemoryAccesses()) {
2427 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002428 getABITypeAlignment(MVT::getTypeForValueType(ST->getMemoryVT()));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002429 if (ST->getAlignment() < ABIAlignment)
2430 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2431 TLI);
2432 }
2433 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002434 case TargetLowering::Custom:
2435 Tmp1 = TLI.LowerOperation(Result, DAG);
2436 if (Tmp1.Val) Result = Tmp1;
2437 break;
2438 case TargetLowering::Promote:
2439 assert(MVT::isVector(VT) && "Unknown legal promote case!");
2440 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2441 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2442 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002443 ST->getSrcValue(), SVOffset, isVolatile,
2444 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002445 break;
2446 }
2447 break;
2448 }
2449 case Promote:
2450 // Truncate the value and store the result.
2451 Tmp3 = PromoteOp(ST->getValue());
2452 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002453 SVOffset, ST->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002454 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002455 break;
2456
2457 case Expand:
2458 unsigned IncrementSize = 0;
2459 SDOperand Lo, Hi;
2460
2461 // If this is a vector type, then we have to calculate the increment as
2462 // the product of the element size in bytes, and the number of elements
2463 // in the high half of the vector.
Dan Gohman7f321562007-06-25 16:23:39 +00002464 if (MVT::isVector(ST->getValue().getValueType())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002465 SDNode *InVal = ST->getValue().Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002466 int InIx = ST->getValue().ResNo;
Chris Lattner0bd48932008-01-17 07:00:52 +00002467 MVT::ValueType InVT = InVal->getValueType(InIx);
2468 unsigned NumElems = MVT::getVectorNumElements(InVT);
2469 MVT::ValueType EVT = MVT::getVectorElementType(InVT);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002470
Dan Gohman7f321562007-06-25 16:23:39 +00002471 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002472 // type. If so, convert to the vector type.
Evan Cheng8b2794a2006-10-13 21:14:26 +00002473 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002474 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002475 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002476 Tmp3 = LegalizeOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002477 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002478 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002479 Result = LegalizeOp(Result);
2480 break;
2481 } else if (NumElems == 1) {
2482 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002483 Tmp3 = ScalarizeVectorOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002484 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002485 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002486 // The scalarized value type may not be legal, e.g. it might require
2487 // promotion or expansion. Relegalize the scalar store.
2488 Result = LegalizeOp(Result);
2489 break;
2490 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002491 SplitVectorOp(ST->getValue(), Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00002492 IncrementSize = MVT::getVectorNumElements(Lo.Val->getValueType(0)) *
2493 MVT::getSizeInBits(EVT)/8;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002494 }
2495 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002496 ExpandOp(ST->getValue(), Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002497 IncrementSize = Hi.Val ? MVT::getSizeInBits(Hi.getValueType())/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002498
Duncan Sands0753fc12008-02-11 10:37:04 +00002499 if (TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002500 std::swap(Lo, Hi);
2501 }
2502
2503 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002504 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002505
2506 if (Hi.Val == NULL) {
2507 // Must be int <-> float one-to-one expansion.
2508 Result = Lo;
2509 break;
2510 }
2511
Evan Cheng8b2794a2006-10-13 21:14:26 +00002512 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002513 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002514 assert(isTypeLegal(Tmp2.getValueType()) &&
2515 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002516 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002517 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002518 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002519 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002520 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2521 break;
2522 }
2523 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002524 switch (getTypeAction(ST->getValue().getValueType())) {
2525 case Legal:
2526 Tmp3 = LegalizeOp(ST->getValue());
2527 break;
2528 case Promote:
2529 // We can promote the value, the truncstore will still take care of it.
2530 Tmp3 = PromoteOp(ST->getValue());
2531 break;
2532 case Expand:
2533 // Just store the low part. This may become a non-trunc store, so make
2534 // sure to use getTruncStore, not UpdateNodeOperands below.
2535 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2536 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2537 SVOffset, MVT::i8, isVolatile, Alignment);
2538 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002539
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002540 MVT::ValueType StVT = ST->getMemoryVT();
Duncan Sands7e857202008-01-22 07:17:34 +00002541 unsigned StWidth = MVT::getSizeInBits(StVT);
2542
2543 if (StWidth != MVT::getStoreSizeInBits(StVT)) {
2544 // Promote to a byte-sized store with upper bits zero if not
2545 // storing an integral number of bytes. For example, promote
2546 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
2547 MVT::ValueType NVT = MVT::getIntegerType(MVT::getStoreSizeInBits(StVT));
2548 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2549 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2550 SVOffset, NVT, isVolatile, Alignment);
2551 } else if (StWidth & (StWidth - 1)) {
2552 // If not storing a power-of-2 number of bits, expand as two stores.
2553 assert(MVT::isExtendedVT(StVT) && !MVT::isVector(StVT) &&
2554 "Unsupported truncstore!");
2555 unsigned RoundWidth = 1 << Log2_32(StWidth);
2556 assert(RoundWidth < StWidth);
2557 unsigned ExtraWidth = StWidth - RoundWidth;
2558 assert(ExtraWidth < RoundWidth);
2559 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2560 "Store size not an integral number of bytes!");
2561 MVT::ValueType RoundVT = MVT::getIntegerType(RoundWidth);
2562 MVT::ValueType ExtraVT = MVT::getIntegerType(ExtraWidth);
2563 SDOperand Lo, Hi;
2564 unsigned IncrementSize;
2565
2566 if (TLI.isLittleEndian()) {
2567 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2568 // Store the bottom RoundWidth bits.
2569 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2570 SVOffset, RoundVT,
2571 isVolatile, Alignment);
2572
2573 // Store the remaining ExtraWidth bits.
2574 IncrementSize = RoundWidth / 8;
2575 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2576 DAG.getIntPtrConstant(IncrementSize));
2577 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2578 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2579 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2580 SVOffset + IncrementSize, ExtraVT, isVolatile,
2581 MinAlign(Alignment, IncrementSize));
2582 } else {
2583 // Big endian - avoid unaligned stores.
2584 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2585 // Store the top RoundWidth bits.
2586 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2587 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2588 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2589 RoundVT, isVolatile, Alignment);
2590
2591 // Store the remaining ExtraWidth bits.
2592 IncrementSize = RoundWidth / 8;
2593 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2594 DAG.getIntPtrConstant(IncrementSize));
2595 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2596 SVOffset + IncrementSize, ExtraVT, isVolatile,
2597 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002598 }
Duncan Sands7e857202008-01-22 07:17:34 +00002599
2600 // The order of the stores doesn't matter.
2601 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2602 } else {
2603 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2604 Tmp2 != ST->getBasePtr())
2605 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2606 ST->getOffset());
2607
2608 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2609 default: assert(0 && "This action is not supported yet!");
2610 case TargetLowering::Legal:
2611 // If this is an unaligned store and the target doesn't support it,
2612 // expand it.
2613 if (!TLI.allowsUnalignedMemoryAccesses()) {
2614 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002615 getABITypeAlignment(MVT::getTypeForValueType(ST->getMemoryVT()));
Duncan Sands7e857202008-01-22 07:17:34 +00002616 if (ST->getAlignment() < ABIAlignment)
2617 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2618 TLI);
2619 }
2620 break;
2621 case TargetLowering::Custom:
2622 Result = TLI.LowerOperation(Result, DAG);
2623 break;
2624 case Expand:
2625 // TRUNCSTORE:i16 i32 -> STORE i16
2626 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2627 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2628 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2629 isVolatile, Alignment);
2630 break;
2631 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002632 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002633 }
2634 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002635 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002636 case ISD::PCMARKER:
2637 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002638 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002639 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002640 case ISD::STACKSAVE:
2641 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002642 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2643 Tmp1 = Result.getValue(0);
2644 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002645
Chris Lattner140d53c2006-01-13 02:50:02 +00002646 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2647 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002648 case TargetLowering::Legal: break;
2649 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002650 Tmp3 = TLI.LowerOperation(Result, DAG);
2651 if (Tmp3.Val) {
2652 Tmp1 = LegalizeOp(Tmp3);
2653 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002654 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002655 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002656 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002657 // Expand to CopyFromReg if the target set
2658 // StackPointerRegisterToSaveRestore.
2659 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002660 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002661 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002662 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002663 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002664 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2665 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002666 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002667 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002668 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002669
2670 // Since stacksave produce two values, make sure to remember that we
2671 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002672 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2673 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2674 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002675
Chris Lattner140d53c2006-01-13 02:50:02 +00002676 case ISD::STACKRESTORE:
2677 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2678 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002679 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002680
2681 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2682 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002683 case TargetLowering::Legal: break;
2684 case TargetLowering::Custom:
2685 Tmp1 = TLI.LowerOperation(Result, DAG);
2686 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002687 break;
2688 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002689 // Expand to CopyToReg if the target set
2690 // StackPointerRegisterToSaveRestore.
2691 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2692 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2693 } else {
2694 Result = Tmp1;
2695 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002696 break;
2697 }
2698 break;
2699
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002700 case ISD::READCYCLECOUNTER:
2701 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002702 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002703 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2704 Node->getValueType(0))) {
2705 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002706 case TargetLowering::Legal:
2707 Tmp1 = Result.getValue(0);
2708 Tmp2 = Result.getValue(1);
2709 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002710 case TargetLowering::Custom:
2711 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002712 Tmp1 = LegalizeOp(Result.getValue(0));
2713 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002714 break;
2715 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002716
2717 // Since rdcc produce two values, make sure to remember that we legalized
2718 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002719 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2720 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002721 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002722
Chris Lattner2ee743f2005-01-14 22:08:15 +00002723 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002724 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2725 case Expand: assert(0 && "It's impossible to expand bools");
2726 case Legal:
2727 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2728 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002729 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002730 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002731 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002732 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002733 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002734 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerb6c80602006-11-28 01:03:30 +00002735 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002736 break;
2737 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002738 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002739 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002740 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002741
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002742 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002743
Nate Begemanb942a3d2005-08-23 04:29:48 +00002744 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002745 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002746 case TargetLowering::Legal: break;
2747 case TargetLowering::Custom: {
2748 Tmp1 = TLI.LowerOperation(Result, DAG);
2749 if (Tmp1.Val) Result = Tmp1;
2750 break;
2751 }
Nate Begeman9373a812005-08-10 20:51:12 +00002752 case TargetLowering::Expand:
2753 if (Tmp1.getOpcode() == ISD::SETCC) {
2754 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2755 Tmp2, Tmp3,
2756 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2757 } else {
2758 Result = DAG.getSelectCC(Tmp1,
2759 DAG.getConstant(0, Tmp1.getValueType()),
2760 Tmp2, Tmp3, ISD::SETNE);
2761 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002762 break;
2763 case TargetLowering::Promote: {
2764 MVT::ValueType NVT =
2765 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2766 unsigned ExtOp, TruncOp;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002767 if (MVT::isVector(Tmp2.getValueType())) {
2768 ExtOp = ISD::BIT_CONVERT;
2769 TruncOp = ISD::BIT_CONVERT;
2770 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002771 ExtOp = ISD::ANY_EXTEND;
2772 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002773 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002774 ExtOp = ISD::FP_EXTEND;
2775 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002776 }
2777 // Promote each of the values to the new type.
2778 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2779 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2780 // Perform the larger operation, then round down.
2781 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002782 if (TruncOp != ISD::FP_ROUND)
2783 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2784 else
2785 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2786 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002787 break;
2788 }
2789 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002790 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002791 case ISD::SELECT_CC: {
2792 Tmp1 = Node->getOperand(0); // LHS
2793 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002794 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2795 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00002796 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002797
Nate Begeman750ac1b2006-02-01 07:19:44 +00002798 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2799
2800 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2801 // the LHS is a legal SETCC itself. In this case, we need to compare
2802 // the result against zero to select between true and false values.
2803 if (Tmp2.Val == 0) {
2804 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2805 CC = DAG.getCondCode(ISD::SETNE);
2806 }
2807 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2808
2809 // Everything is legal, see if we should expand this op or something.
2810 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2811 default: assert(0 && "This action is not supported yet!");
2812 case TargetLowering::Legal: break;
2813 case TargetLowering::Custom:
2814 Tmp1 = TLI.LowerOperation(Result, DAG);
2815 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002816 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002817 }
2818 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002819 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002820 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002821 Tmp1 = Node->getOperand(0);
2822 Tmp2 = Node->getOperand(1);
2823 Tmp3 = Node->getOperand(2);
2824 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2825
2826 // If we had to Expand the SetCC operands into a SELECT node, then it may
2827 // not always be possible to return a true LHS & RHS. In this case, just
2828 // return the value we legalized, returned in the LHS
2829 if (Tmp2.Val == 0) {
2830 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002831 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002832 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002833
Chris Lattner73e142f2006-01-30 22:43:50 +00002834 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002835 default: assert(0 && "Cannot handle this action for SETCC yet!");
2836 case TargetLowering::Custom:
2837 isCustom = true;
2838 // FALLTHROUGH.
2839 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002840 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002841 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002842 Tmp4 = TLI.LowerOperation(Result, DAG);
2843 if (Tmp4.Val) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002844 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002845 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002846 case TargetLowering::Promote: {
2847 // First step, figure out the appropriate operation to use.
2848 // Allow SETCC to not be supported for all legal data types
2849 // Mostly this targets FP
2850 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
Chris Lattner00755df2007-02-04 00:27:56 +00002851 MVT::ValueType OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002852
2853 // Scan for the appropriate larger type to use.
2854 while (1) {
2855 NewInTy = (MVT::ValueType)(NewInTy+1);
2856
2857 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
2858 "Fell off of the edge of the integer world");
2859 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
2860 "Fell off of the edge of the floating point world");
2861
2862 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002863 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002864 break;
2865 }
2866 if (MVT::isInteger(NewInTy))
2867 assert(0 && "Cannot promote Legal Integer SETCC yet");
2868 else {
2869 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2870 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2871 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002872 Tmp1 = LegalizeOp(Tmp1);
2873 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002874 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002875 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002876 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002877 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002878 case TargetLowering::Expand:
2879 // Expand a setcc node into a select_cc of the same condition, lhs, and
2880 // rhs that selects between const 1 (true) and const 0 (false).
2881 MVT::ValueType VT = Node->getValueType(0);
2882 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2883 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002884 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002885 break;
2886 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002887 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00002888 case ISD::VSETCC: {
2889 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2890 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
2891 SDOperand CC = Node->getOperand(2);
2892
2893 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
2894
2895 // Everything is legal, see if we should expand this op or something.
2896 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
2897 default: assert(0 && "This action is not supported yet!");
2898 case TargetLowering::Legal: break;
2899 case TargetLowering::Custom:
2900 Tmp1 = TLI.LowerOperation(Result, DAG);
2901 if (Tmp1.Val) Result = Tmp1;
2902 break;
2903 }
2904 break;
2905 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002906
Chris Lattner5b359c62005-04-02 04:00:59 +00002907 case ISD::SHL_PARTS:
2908 case ISD::SRA_PARTS:
2909 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002910 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002911 bool Changed = false;
2912 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2913 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2914 Changed |= Ops.back() != Node->getOperand(i);
2915 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002916 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002917 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002918
Evan Cheng05a2d562006-01-09 18:31:59 +00002919 switch (TLI.getOperationAction(Node->getOpcode(),
2920 Node->getValueType(0))) {
2921 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002922 case TargetLowering::Legal: break;
2923 case TargetLowering::Custom:
2924 Tmp1 = TLI.LowerOperation(Result, DAG);
2925 if (Tmp1.Val) {
2926 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002927 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002928 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002929 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2930 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002931 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002932 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002933 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002934 return RetVal;
2935 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002936 break;
2937 }
2938
Chris Lattner2c8086f2005-04-02 05:00:07 +00002939 // Since these produce multiple values, make sure to remember that we
2940 // legalized all of them.
2941 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2942 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2943 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002944 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002945
2946 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002947 case ISD::ADD:
2948 case ISD::SUB:
2949 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002950 case ISD::MULHS:
2951 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002952 case ISD::UDIV:
2953 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002954 case ISD::AND:
2955 case ISD::OR:
2956 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002957 case ISD::SHL:
2958 case ISD::SRL:
2959 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002960 case ISD::FADD:
2961 case ISD::FSUB:
2962 case ISD::FMUL:
2963 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00002964 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002965 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002966 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2967 case Expand: assert(0 && "Not possible");
2968 case Legal:
2969 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2970 break;
2971 case Promote:
2972 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2973 break;
2974 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002975
2976 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002977
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002978 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002979 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002980 case TargetLowering::Legal: break;
2981 case TargetLowering::Custom:
2982 Tmp1 = TLI.LowerOperation(Result, DAG);
2983 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002984 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002985 case TargetLowering::Expand: {
Dan Gohman525178c2007-10-08 18:33:35 +00002986 MVT::ValueType VT = Op.getValueType();
2987
2988 // See if multiply or divide can be lowered using two-result operations.
2989 SDVTList VTs = DAG.getVTList(VT, VT);
2990 if (Node->getOpcode() == ISD::MUL) {
2991 // We just need the low half of the multiply; try both the signed
2992 // and unsigned forms. If the target supports both SMUL_LOHI and
2993 // UMUL_LOHI, form a preference by checking which forms of plain
2994 // MULH it supports.
2995 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2996 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2997 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2998 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2999 unsigned OpToUse = 0;
3000 if (HasSMUL_LOHI && !HasMULHS) {
3001 OpToUse = ISD::SMUL_LOHI;
3002 } else if (HasUMUL_LOHI && !HasMULHU) {
3003 OpToUse = ISD::UMUL_LOHI;
3004 } else if (HasSMUL_LOHI) {
3005 OpToUse = ISD::SMUL_LOHI;
3006 } else if (HasUMUL_LOHI) {
3007 OpToUse = ISD::UMUL_LOHI;
3008 }
3009 if (OpToUse) {
3010 Result = SDOperand(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0);
3011 break;
3012 }
3013 }
3014 if (Node->getOpcode() == ISD::MULHS &&
3015 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
3016 Result = SDOperand(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
3017 break;
3018 }
3019 if (Node->getOpcode() == ISD::MULHU &&
3020 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
3021 Result = SDOperand(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
3022 break;
3023 }
3024 if (Node->getOpcode() == ISD::SDIV &&
3025 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3026 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0);
3027 break;
3028 }
3029 if (Node->getOpcode() == ISD::UDIV &&
3030 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3031 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0);
3032 break;
3033 }
3034
Dan Gohman82669522007-10-11 23:57:53 +00003035 // Check to see if we have a libcall for this operator.
3036 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3037 bool isSigned = false;
3038 switch (Node->getOpcode()) {
3039 case ISD::UDIV:
3040 case ISD::SDIV:
3041 if (VT == MVT::i32) {
3042 LC = Node->getOpcode() == ISD::UDIV
Evan Cheng56966222007-01-12 02:11:51 +00003043 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003044 isSigned = Node->getOpcode() == ISD::SDIV;
3045 }
3046 break;
3047 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003048 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3049 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003050 break;
3051 default: break;
3052 }
3053 if (LC != RTLIB::UNKNOWN_LIBCALL) {
3054 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003055 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003056 break;
3057 }
3058
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003059 assert(MVT::isVector(Node->getValueType(0)) &&
3060 "Cannot expand this binary operator!");
3061 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003062 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003063 break;
3064 }
Evan Chengcc987612006-04-12 21:20:24 +00003065 case TargetLowering::Promote: {
3066 switch (Node->getOpcode()) {
3067 default: assert(0 && "Do not know how to promote this BinOp!");
3068 case ISD::AND:
3069 case ISD::OR:
3070 case ISD::XOR: {
3071 MVT::ValueType OVT = Node->getValueType(0);
3072 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3073 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
3074 // Bit convert each of the values to the new type.
3075 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3076 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3077 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3078 // Bit convert the result back the original type.
3079 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3080 break;
3081 }
3082 }
3083 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003084 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003085 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003086
Dan Gohmane14ea862007-10-05 14:17:22 +00003087 case ISD::SMUL_LOHI:
3088 case ISD::UMUL_LOHI:
3089 case ISD::SDIVREM:
3090 case ISD::UDIVREM:
3091 // These nodes will only be produced by target-specific lowering, so
3092 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003093 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003094 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003095
3096 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3097 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3098 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003099 break;
3100
Chris Lattnera09f8482006-03-05 05:09:38 +00003101 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3102 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3103 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3104 case Expand: assert(0 && "Not possible");
3105 case Legal:
3106 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3107 break;
3108 case Promote:
3109 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3110 break;
3111 }
3112
3113 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3114
3115 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3116 default: assert(0 && "Operation not supported");
3117 case TargetLowering::Custom:
3118 Tmp1 = TLI.LowerOperation(Result, DAG);
3119 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003120 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003121 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003122 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003123 // If this target supports fabs/fneg natively and select is cheap,
3124 // do this efficiently.
3125 if (!TLI.isSelectExpensive() &&
3126 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3127 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003128 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003129 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003130 // Get the sign bit of the RHS.
3131 MVT::ValueType IVT =
3132 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
3133 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003134 SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003135 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3136 // Get the absolute value of the result.
3137 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
3138 // Select between the nabs and abs value based on the sign bit of
3139 // the input.
3140 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3141 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3142 AbsVal),
3143 AbsVal);
3144 Result = LegalizeOp(Result);
3145 break;
3146 }
3147
3148 // Otherwise, do bitwise ops!
Evan Cheng912095b2007-01-04 21:56:39 +00003149 MVT::ValueType NVT =
3150 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3151 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3152 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3153 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003154 break;
3155 }
Evan Cheng912095b2007-01-04 21:56:39 +00003156 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003157 break;
3158
Nate Begeman551bf3f2006-02-17 05:43:56 +00003159 case ISD::ADDC:
3160 case ISD::SUBC:
3161 Tmp1 = LegalizeOp(Node->getOperand(0));
3162 Tmp2 = LegalizeOp(Node->getOperand(1));
3163 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3164 // Since this produces two values, make sure to remember that we legalized
3165 // both of them.
3166 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3167 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3168 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003169
Nate Begeman551bf3f2006-02-17 05:43:56 +00003170 case ISD::ADDE:
3171 case ISD::SUBE:
3172 Tmp1 = LegalizeOp(Node->getOperand(0));
3173 Tmp2 = LegalizeOp(Node->getOperand(1));
3174 Tmp3 = LegalizeOp(Node->getOperand(2));
3175 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3176 // Since this produces two values, make sure to remember that we legalized
3177 // both of them.
3178 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3179 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3180 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00003181
Nate Begeman419f8b62005-10-18 00:27:41 +00003182 case ISD::BUILD_PAIR: {
3183 MVT::ValueType PairTy = Node->getValueType(0);
3184 // TODO: handle the case where the Lo and Hi operands are not of legal type
3185 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3186 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3187 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003188 case TargetLowering::Promote:
3189 case TargetLowering::Custom:
3190 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003191 case TargetLowering::Legal:
3192 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3193 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3194 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003195 case TargetLowering::Expand:
3196 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3197 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3198 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
3199 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
3200 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00003201 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003202 break;
3203 }
3204 break;
3205 }
3206
Nate Begemanc105e192005-04-06 00:23:54 +00003207 case ISD::UREM:
3208 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003209 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003210 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3211 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003212
Nate Begemanc105e192005-04-06 00:23:54 +00003213 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003214 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3215 case TargetLowering::Custom:
3216 isCustom = true;
3217 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003218 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003219 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003220 if (isCustom) {
3221 Tmp1 = TLI.LowerOperation(Result, DAG);
3222 if (Tmp1.Val) Result = Tmp1;
3223 }
Nate Begemanc105e192005-04-06 00:23:54 +00003224 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003225 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003226 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003227 bool isSigned = DivOpc == ISD::SDIV;
Dan Gohman525178c2007-10-08 18:33:35 +00003228 MVT::ValueType VT = Node->getValueType(0);
3229
3230 // See if remainder can be lowered using two-result operations.
3231 SDVTList VTs = DAG.getVTList(VT, VT);
3232 if (Node->getOpcode() == ISD::SREM &&
3233 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3234 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3235 break;
3236 }
3237 if (Node->getOpcode() == ISD::UREM &&
3238 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3239 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3240 break;
3241 }
3242
3243 if (MVT::isInteger(VT)) {
3244 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003245 TargetLowering::Legal) {
3246 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00003247 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003248 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3249 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Dan Gohman80176312007-11-05 23:35:22 +00003250 } else if (MVT::isVector(VT)) {
3251 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003252 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003253 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003254 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003255 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3256 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003257 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003258 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003259 }
Dan Gohman0d974262007-11-06 22:11:54 +00003260 } else {
3261 assert(MVT::isFloatingPoint(VT) &&
3262 "remainder op must have integer or floating-point type");
Dan Gohman80176312007-11-05 23:35:22 +00003263 if (MVT::isVector(VT)) {
3264 Result = LegalizeOp(UnrollVectorOp(Op));
3265 } else {
3266 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003267 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3268 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman80176312007-11-05 23:35:22 +00003269 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003270 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003271 }
Nate Begemanc105e192005-04-06 00:23:54 +00003272 }
3273 break;
3274 }
Dan Gohman525178c2007-10-08 18:33:35 +00003275 }
Nate Begemanc105e192005-04-06 00:23:54 +00003276 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003277 case ISD::VAARG: {
3278 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3279 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3280
Chris Lattner5c62f332006-01-28 07:42:08 +00003281 MVT::ValueType VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003282 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3283 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003284 case TargetLowering::Custom:
3285 isCustom = true;
3286 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003287 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003288 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3289 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003290 Tmp1 = Result.getValue(1);
3291
3292 if (isCustom) {
3293 Tmp2 = TLI.LowerOperation(Result, DAG);
3294 if (Tmp2.Val) {
3295 Result = LegalizeOp(Tmp2);
3296 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3297 }
3298 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003299 break;
3300 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003301 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
3302 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003303 // Increment the pointer, VAList, to the next vaarg
3304 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3305 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3306 TLI.getPointerTy()));
3307 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00003308 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003309 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003310 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003311 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003312 Result = LegalizeOp(Result);
3313 break;
3314 }
3315 }
3316 // Since VAARG produces two values, make sure to remember that we
3317 // legalized both of them.
3318 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00003319 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3320 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003321 }
3322
3323 case ISD::VACOPY:
3324 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3325 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3326 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3327
3328 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3329 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003330 case TargetLowering::Custom:
3331 isCustom = true;
3332 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003333 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003334 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3335 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003336 if (isCustom) {
3337 Tmp1 = TLI.LowerOperation(Result, DAG);
3338 if (Tmp1.Val) Result = Tmp1;
3339 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003340 break;
3341 case TargetLowering::Expand:
3342 // This defaults to loading a pointer from the input and storing it to the
3343 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003344 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3345 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dan Gohman499c1bd2008-04-17 02:09:26 +00003346 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3347 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003348 break;
3349 }
3350 break;
3351
3352 case ISD::VAEND:
3353 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3354 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3355
3356 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3357 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003358 case TargetLowering::Custom:
3359 isCustom = true;
3360 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003361 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003362 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003363 if (isCustom) {
3364 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
3365 if (Tmp1.Val) Result = Tmp1;
3366 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003367 break;
3368 case TargetLowering::Expand:
3369 Result = Tmp1; // Default to a no-op, return the chain
3370 break;
3371 }
3372 break;
3373
3374 case ISD::VASTART:
3375 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3376 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3377
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003378 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3379
Nate Begemanacc398c2006-01-25 18:21:52 +00003380 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3381 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003382 case TargetLowering::Legal: break;
3383 case TargetLowering::Custom:
3384 Tmp1 = TLI.LowerOperation(Result, DAG);
3385 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003386 break;
3387 }
3388 break;
3389
Nate Begeman35ef9132006-01-11 21:21:00 +00003390 case ISD::ROTL:
3391 case ISD::ROTR:
3392 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3393 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003394 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003395 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3396 default:
3397 assert(0 && "ROTL/ROTR legalize operation not supported");
3398 break;
3399 case TargetLowering::Legal:
3400 break;
3401 case TargetLowering::Custom:
3402 Tmp1 = TLI.LowerOperation(Result, DAG);
3403 if (Tmp1.Val) Result = Tmp1;
3404 break;
3405 case TargetLowering::Promote:
3406 assert(0 && "Do not know how to promote ROTL/ROTR");
3407 break;
3408 case TargetLowering::Expand:
3409 assert(0 && "Do not know how to expand ROTL/ROTR");
3410 break;
3411 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003412 break;
3413
Nate Begemand88fc032006-01-14 03:14:10 +00003414 case ISD::BSWAP:
3415 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3416 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003417 case TargetLowering::Custom:
3418 assert(0 && "Cannot custom legalize this yet!");
3419 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003420 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003421 break;
3422 case TargetLowering::Promote: {
3423 MVT::ValueType OVT = Tmp1.getValueType();
3424 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanb55757e2007-05-18 17:52:13 +00003425 unsigned DiffBits = MVT::getSizeInBits(NVT) - MVT::getSizeInBits(OVT);
Nate Begemand88fc032006-01-14 03:14:10 +00003426
Chris Lattner456a93a2006-01-28 07:39:30 +00003427 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3428 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3429 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3430 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3431 break;
3432 }
3433 case TargetLowering::Expand:
3434 Result = ExpandBSWAP(Tmp1);
3435 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003436 }
3437 break;
3438
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003439 case ISD::CTPOP:
3440 case ISD::CTTZ:
3441 case ISD::CTLZ:
3442 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3443 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003444 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003445 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003446 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003447 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003448 TargetLowering::Custom) {
3449 Tmp1 = TLI.LowerOperation(Result, DAG);
3450 if (Tmp1.Val) {
3451 Result = Tmp1;
3452 }
Scott Michel910b66d2007-07-30 21:00:31 +00003453 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003454 break;
3455 case TargetLowering::Promote: {
3456 MVT::ValueType OVT = Tmp1.getValueType();
3457 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003458
3459 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003460 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3461 // Perform the larger operation, then subtract if needed.
3462 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003463 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003464 case ISD::CTPOP:
3465 Result = Tmp1;
3466 break;
3467 case ISD::CTTZ:
3468 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00003469 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003470 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003471 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003472 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Scott Michel910b66d2007-07-30 21:00:31 +00003473 DAG.getConstant(MVT::getSizeInBits(OVT),NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003474 break;
3475 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003476 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003477 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003478 DAG.getConstant(MVT::getSizeInBits(NVT) -
3479 MVT::getSizeInBits(OVT), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003480 break;
3481 }
3482 break;
3483 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003484 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003485 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003486 break;
3487 }
3488 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003489
Chris Lattner2c8086f2005-04-02 05:00:07 +00003490 // Unary operators
3491 case ISD::FABS:
3492 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003493 case ISD::FSQRT:
3494 case ISD::FSIN:
3495 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003496 Tmp1 = LegalizeOp(Node->getOperand(0));
3497 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003498 case TargetLowering::Promote:
3499 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003500 isCustom = true;
3501 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003502 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003503 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003504 if (isCustom) {
3505 Tmp1 = TLI.LowerOperation(Result, DAG);
3506 if (Tmp1.Val) Result = Tmp1;
3507 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003508 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003509 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003510 switch (Node->getOpcode()) {
3511 default: assert(0 && "Unreachable!");
3512 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003513 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3514 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003515 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003516 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003517 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003518 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
3519 MVT::ValueType VT = Node->getValueType(0);
3520 Tmp2 = DAG.getConstantFP(0.0, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003521 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00003522 ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003523 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3524 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003525 break;
3526 }
3527 case ISD::FSQRT:
3528 case ISD::FSIN:
3529 case ISD::FCOS: {
3530 MVT::ValueType VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003531
3532 // Expand unsupported unary vector operators by unrolling them.
3533 if (MVT::isVector(VT)) {
3534 Result = LegalizeOp(UnrollVectorOp(Op));
3535 break;
3536 }
3537
Evan Cheng56966222007-01-12 02:11:51 +00003538 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003539 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003540 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003541 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3542 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003543 break;
3544 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003545 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3546 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003547 break;
3548 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003549 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3550 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003551 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003552 default: assert(0 && "Unreachable!");
3553 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00003554 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003555 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003556 break;
3557 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003558 }
3559 break;
3560 }
3561 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003562 case ISD::FPOWI: {
Dan Gohman82669522007-10-11 23:57:53 +00003563 MVT::ValueType VT = Node->getValueType(0);
3564
3565 // Expand unsupported unary vector operators by unrolling them.
3566 if (MVT::isVector(VT)) {
3567 Result = LegalizeOp(UnrollVectorOp(Op));
3568 break;
3569 }
3570
3571 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003572 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3573 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003574 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003575 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003576 break;
3577 }
Chris Lattner35481892005-12-23 00:16:34 +00003578 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003579 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003580 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3581 Node->getValueType(0));
Dan Gohman7f321562007-06-25 16:23:39 +00003582 } else if (MVT::isVector(Op.getOperand(0).getValueType())) {
3583 // The input has to be a vector type, we have to either scalarize it, pack
3584 // it, or convert it based on whether the input vector type is legal.
3585 SDNode *InVal = Node->getOperand(0).Val;
Dale Johannesene5269622007-10-20 00:07:52 +00003586 int InIx = Node->getOperand(0).ResNo;
3587 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(InIx));
3588 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(InIx));
Dan Gohman7f321562007-06-25 16:23:39 +00003589
3590 // Figure out if there is a simple type corresponding to this Vector
3591 // type. If so, convert to the vector type.
3592 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3593 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003594 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003595 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3596 LegalizeOp(Node->getOperand(0)));
3597 break;
3598 } else if (NumElems == 1) {
3599 // Turn this into a bit convert of the scalar input.
3600 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3601 ScalarizeVectorOp(Node->getOperand(0)));
3602 break;
3603 } else {
3604 // FIXME: UNIMP! Store then reload
3605 assert(0 && "Cast from unsupported vector type not implemented yet!");
3606 }
Chris Lattner67993f72006-01-23 07:30:46 +00003607 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003608 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3609 Node->getOperand(0).getValueType())) {
3610 default: assert(0 && "Unknown operation action!");
3611 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003612 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3613 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003614 break;
3615 case TargetLowering::Legal:
3616 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003617 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003618 break;
3619 }
3620 }
3621 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003622
Chris Lattner2c8086f2005-04-02 05:00:07 +00003623 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003624 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003625 case ISD::UINT_TO_FP: {
3626 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003627 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3628 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003629 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003630 Node->getOperand(0).getValueType())) {
3631 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003632 case TargetLowering::Custom:
3633 isCustom = true;
3634 // FALLTHROUGH
3635 case TargetLowering::Legal:
3636 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003637 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003638 if (isCustom) {
3639 Tmp1 = TLI.LowerOperation(Result, DAG);
3640 if (Tmp1.Val) Result = Tmp1;
3641 }
3642 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003643 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00003644 Result = ExpandLegalINT_TO_FP(isSigned,
3645 LegalizeOp(Node->getOperand(0)),
3646 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003647 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003648 case TargetLowering::Promote:
3649 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
3650 Node->getValueType(0),
3651 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003652 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00003653 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003654 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00003655 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003656 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
3657 Node->getValueType(0), Node->getOperand(0));
3658 break;
3659 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003660 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003661 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003662 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
3663 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003664 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003665 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
3666 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003667 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003668 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3669 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003670 break;
3671 }
3672 break;
3673 }
3674 case ISD::TRUNCATE:
3675 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3676 case Legal:
3677 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003678 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003679 break;
3680 case Expand:
3681 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3682
3683 // Since the result is legal, we should just be able to truncate the low
3684 // part of the source.
3685 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3686 break;
3687 case Promote:
3688 Result = PromoteOp(Node->getOperand(0));
3689 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3690 break;
3691 }
3692 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003693
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003694 case ISD::FP_TO_SINT:
3695 case ISD::FP_TO_UINT:
3696 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3697 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003698 Tmp1 = LegalizeOp(Node->getOperand(0));
3699
Chris Lattner1618beb2005-07-29 00:11:56 +00003700 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3701 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003702 case TargetLowering::Custom:
3703 isCustom = true;
3704 // FALLTHROUGH
3705 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003706 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003707 if (isCustom) {
3708 Tmp1 = TLI.LowerOperation(Result, DAG);
3709 if (Tmp1.Val) Result = Tmp1;
3710 }
3711 break;
3712 case TargetLowering::Promote:
3713 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3714 Node->getOpcode() == ISD::FP_TO_SINT);
3715 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003716 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003717 if (Node->getOpcode() == ISD::FP_TO_UINT) {
3718 SDOperand True, False;
3719 MVT::ValueType VT = Node->getOperand(0).getValueType();
3720 MVT::ValueType NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00003721 const uint64_t zero[] = {0, 0};
3722 APFloat apf = APFloat(APInt(MVT::getSizeInBits(VT), 2, zero));
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003723 APInt x = APInt::getSignBit(MVT::getSizeInBits(NVT));
3724 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00003725 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003726 Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
Nate Begemand2558e32005-08-14 01:20:53 +00003727 Node->getOperand(0), Tmp2, ISD::SETLT);
3728 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3729 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003730 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003731 Tmp2));
3732 False = DAG.getNode(ISD::XOR, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003733 DAG.getConstant(x, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003734 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3735 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003736 } else {
3737 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3738 }
3739 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003740 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003741 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003742 case Expand: {
Evan Cheng6af00d52006-12-13 01:57:55 +00003743 MVT::ValueType VT = Op.getValueType();
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003744 MVT::ValueType OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003745 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003746 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003747 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3748 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3749 Node->getOperand(0), DAG.getValueType(MVT::f64));
3750 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3751 DAG.getIntPtrConstant(1));
3752 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3753 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003754 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3755 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3756 Tmp2 = DAG.getConstantFP(apf, OVT);
3757 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3758 // FIXME: generated code sucks.
3759 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3760 DAG.getNode(ISD::ADD, MVT::i32,
3761 DAG.getNode(ISD::FP_TO_SINT, VT,
3762 DAG.getNode(ISD::FSUB, OVT,
3763 Node->getOperand(0), Tmp2)),
3764 DAG.getConstant(0x80000000, MVT::i32)),
3765 DAG.getNode(ISD::FP_TO_SINT, VT,
3766 Node->getOperand(0)),
3767 DAG.getCondCode(ISD::SETGE));
3768 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003769 break;
3770 }
Dan Gohmana2e94852008-03-10 23:03:31 +00003771 // Convert f32 / f64 to i32 / i64 / i128.
Evan Cheng56966222007-01-12 02:11:51 +00003772 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng6af00d52006-12-13 01:57:55 +00003773 switch (Node->getOpcode()) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003774 case ISD::FP_TO_SINT: {
Dan Gohmana2e94852008-03-10 23:03:31 +00003775 if (VT == MVT::i32) {
3776 if (OVT == MVT::f32)
3777 LC = RTLIB::FPTOSINT_F32_I32;
3778 else if (OVT == MVT::f64)
3779 LC = RTLIB::FPTOSINT_F64_I32;
3780 else
3781 assert(0 && "Unexpected i32-to-fp conversion!");
3782 } else if (VT == MVT::i64) {
3783 if (OVT == MVT::f32)
3784 LC = RTLIB::FPTOSINT_F32_I64;
3785 else if (OVT == MVT::f64)
3786 LC = RTLIB::FPTOSINT_F64_I64;
3787 else if (OVT == MVT::f80)
3788 LC = RTLIB::FPTOSINT_F80_I64;
3789 else if (OVT == MVT::ppcf128)
3790 LC = RTLIB::FPTOSINT_PPCF128_I64;
3791 else
3792 assert(0 && "Unexpected i64-to-fp conversion!");
3793 } else if (VT == MVT::i128) {
3794 if (OVT == MVT::f32)
3795 LC = RTLIB::FPTOSINT_F32_I128;
3796 else if (OVT == MVT::f64)
3797 LC = RTLIB::FPTOSINT_F64_I128;
3798 else if (OVT == MVT::f80)
3799 LC = RTLIB::FPTOSINT_F80_I128;
3800 else if (OVT == MVT::ppcf128)
3801 LC = RTLIB::FPTOSINT_PPCF128_I128;
3802 else
3803 assert(0 && "Unexpected i128-to-fp conversion!");
3804 } else {
3805 assert(0 && "Unexpectd int-to-fp conversion!");
Dale Johannesen73328d12007-09-19 23:55:34 +00003806 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003807 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003808 }
3809 case ISD::FP_TO_UINT: {
Dan Gohmana2e94852008-03-10 23:03:31 +00003810 if (VT == MVT::i32) {
3811 if (OVT == MVT::f32)
3812 LC = RTLIB::FPTOUINT_F32_I32;
3813 else if (OVT == MVT::f64)
3814 LC = RTLIB::FPTOUINT_F64_I32;
3815 else if (OVT == MVT::f80)
3816 LC = RTLIB::FPTOUINT_F80_I32;
3817 else
3818 assert(0 && "Unexpected i32-to-fp conversion!");
3819 } else if (VT == MVT::i64) {
3820 if (OVT == MVT::f32)
3821 LC = RTLIB::FPTOUINT_F32_I64;
3822 else if (OVT == MVT::f64)
3823 LC = RTLIB::FPTOUINT_F64_I64;
3824 else if (OVT == MVT::f80)
3825 LC = RTLIB::FPTOUINT_F80_I64;
3826 else if (OVT == MVT::ppcf128)
3827 LC = RTLIB::FPTOUINT_PPCF128_I64;
3828 else
3829 assert(0 && "Unexpected i64-to-fp conversion!");
3830 } else if (VT == MVT::i128) {
3831 if (OVT == MVT::f32)
3832 LC = RTLIB::FPTOUINT_F32_I128;
3833 else if (OVT == MVT::f64)
3834 LC = RTLIB::FPTOUINT_F64_I128;
3835 else if (OVT == MVT::f80)
3836 LC = RTLIB::FPTOUINT_F80_I128;
3837 else if (OVT == MVT::ppcf128)
3838 LC = RTLIB::FPTOUINT_PPCF128_I128;
3839 else
3840 assert(0 && "Unexpected i128-to-fp conversion!");
3841 } else {
3842 assert(0 && "Unexpectd int-to-fp conversion!");
Dale Johannesen73328d12007-09-19 23:55:34 +00003843 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003844 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003845 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003846 default: assert(0 && "Unreachable!");
3847 }
3848 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003849 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003850 break;
3851 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003852 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003853 Tmp1 = PromoteOp(Node->getOperand(0));
3854 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3855 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003856 break;
3857 }
3858 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003859
Chris Lattnerf2670a82008-01-16 06:57:07 +00003860 case ISD::FP_EXTEND: {
Chris Lattner0bd48932008-01-17 07:00:52 +00003861 MVT::ValueType DstVT = Op.getValueType();
3862 MVT::ValueType SrcVT = Op.getOperand(0).getValueType();
3863 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3864 // The only other way we can lower this is to turn it into a STORE,
3865 // LOAD pair, targetting a temporary location (a stack slot).
3866 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3867 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00003868 }
3869 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3870 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3871 case Legal:
3872 Tmp1 = LegalizeOp(Node->getOperand(0));
3873 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3874 break;
3875 case Promote:
3876 Tmp1 = PromoteOp(Node->getOperand(0));
3877 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3878 break;
3879 }
3880 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003881 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003882 case ISD::FP_ROUND: {
Chris Lattner0bd48932008-01-17 07:00:52 +00003883 MVT::ValueType DstVT = Op.getValueType();
3884 MVT::ValueType SrcVT = Op.getOperand(0).getValueType();
3885 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3886 if (SrcVT == MVT::ppcf128) {
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003887 SDOperand Lo;
3888 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003889 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003890 if (DstVT!=MVT::f64)
3891 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00003892 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00003893 }
Chris Lattner0bd48932008-01-17 07:00:52 +00003894 // The only other way we can lower this is to turn it into a STORE,
3895 // LOAD pair, targetting a temporary location (a stack slot).
3896 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3897 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00003898 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00003899 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3900 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3901 case Legal:
3902 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003903 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003904 break;
3905 case Promote:
3906 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003907 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3908 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003909 break;
3910 }
3911 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003912 }
Chris Lattner13c78e22005-09-02 00:18:10 +00003913 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003914 case ISD::ZERO_EXTEND:
3915 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003916 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003917 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003918 case Legal:
3919 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00003920 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00003921 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3922 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00003923 Tmp1 = TLI.LowerOperation(Result, DAG);
3924 if (Tmp1.Val) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00003925 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003926 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003927 case Promote:
3928 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003929 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003930 Tmp1 = PromoteOp(Node->getOperand(0));
3931 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003932 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003933 case ISD::ZERO_EXTEND:
3934 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003935 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003936 Result = DAG.getZeroExtendInReg(Result,
3937 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003938 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003939 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003940 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003941 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003942 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003943 Result,
3944 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003945 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003946 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003947 }
3948 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003949 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003950 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003951 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003952 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003953
3954 // If this operation is not supported, convert it to a shl/shr or load/store
3955 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003956 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3957 default: assert(0 && "This action not supported for this op yet!");
3958 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003959 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003960 break;
3961 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003962 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003963 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003964 // NOTE: we could fall back on load/store here too for targets without
3965 // SAR. However, it is doubtful that any exist.
3966 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
3967 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00003968 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003969 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3970 Node->getOperand(0), ShiftCst);
3971 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3972 Result, ShiftCst);
3973 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003974 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003975 // EXTLOAD pair, targetting a temporary location (a stack slot).
3976
3977 // NOTE: there is a choice here between constantly creating new stack
3978 // slots and always reusing the same one. We currently always create
3979 // new ones, as reuse may inhibit scheduling.
Chris Lattnera66bb392008-01-16 07:51:34 +00003980 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3981 Node->getValueType(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00003982 } else {
3983 assert(0 && "Unknown op");
3984 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003985 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003986 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003987 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003988 }
Duncan Sands36397f52007-07-27 12:58:54 +00003989 case ISD::TRAMPOLINE: {
3990 SDOperand Ops[6];
3991 for (unsigned i = 0; i != 6; ++i)
3992 Ops[i] = LegalizeOp(Node->getOperand(i));
3993 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3994 // The only option for this node is to custom lower it.
3995 Result = TLI.LowerOperation(Result, DAG);
3996 assert(Result.Val && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00003997
3998 // Since trampoline produces two values, make sure to remember that we
3999 // legalized both of them.
4000 Tmp1 = LegalizeOp(Result.getValue(1));
4001 Result = LegalizeOp(Result);
4002 AddLegalizedOperand(SDOperand(Node, 0), Result);
4003 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
4004 return Op.ResNo ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00004005 }
Dan Gohman9c78a392008-05-14 00:43:10 +00004006 case ISD::FLT_ROUNDS_: {
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004007 MVT::ValueType VT = Node->getValueType(0);
4008 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4009 default: assert(0 && "This action not supported for this op yet!");
4010 case TargetLowering::Custom:
4011 Result = TLI.LowerOperation(Op, DAG);
4012 if (Result.Val) break;
4013 // Fall Thru
4014 case TargetLowering::Legal:
4015 // If this operation is not supported, lower it to constant 1
4016 Result = DAG.getConstant(1, VT);
4017 break;
4018 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00004019 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004020 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004021 case ISD::TRAP: {
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004022 MVT::ValueType VT = Node->getValueType(0);
4023 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4024 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00004025 case TargetLowering::Legal:
4026 Tmp1 = LegalizeOp(Node->getOperand(0));
4027 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4028 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004029 case TargetLowering::Custom:
4030 Result = TLI.LowerOperation(Op, DAG);
4031 if (Result.Val) break;
4032 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00004033 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004034 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00004035 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004036 TargetLowering::ArgListTy Args;
4037 std::pair<SDOperand,SDOperand> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00004038 TLI.LowerCallTo(Tmp1, Type::VoidTy,
4039 false, false, false, CallingConv::C, false,
Chris Lattner034f12e2008-01-15 22:09:33 +00004040 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
4041 Args, DAG);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004042 Result = CallResult.second;
4043 break;
4044 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004045 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004046 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00004047 }
Chris Lattner456a93a2006-01-28 07:39:30 +00004048
Chris Lattner4ddd2832006-04-08 04:13:17 +00004049 assert(Result.getValueType() == Op.getValueType() &&
4050 "Bad legalization!");
4051
Chris Lattner456a93a2006-01-28 07:39:30 +00004052 // Make sure that the generated code is itself legal.
4053 if (Result != Op)
4054 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004055
Chris Lattner45982da2005-05-12 16:53:42 +00004056 // Note that LegalizeOp may be reentered even from single-use nodes, which
4057 // means that we always must cache transformed nodes.
4058 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004059 return Result;
4060}
4061
Chris Lattner8b6fa222005-01-15 22:16:26 +00004062/// PromoteOp - Given an operation that produces a value in an invalid type,
4063/// promote it to compute the value into a larger type. The produced value will
4064/// have the correct bits for the low portion of the register, but no guarantee
4065/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00004066SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
4067 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00004068 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004069 assert(getTypeAction(VT) == Promote &&
4070 "Caller should expand or legalize operands that are not promotable!");
4071 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
4072 "Cannot promote to smaller type!");
4073
Chris Lattner03c85462005-01-15 05:21:40 +00004074 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00004075 SDOperand Result;
4076 SDNode *Node = Op.Val;
4077
Roman Levenstein9cac5252008-04-16 16:15:27 +00004078 DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004079 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004080
Chris Lattner03c85462005-01-15 05:21:40 +00004081 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004082 case ISD::CopyFromReg:
4083 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004084 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004085#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004086 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004087#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004088 assert(0 && "Do not know how to promote this operator!");
4089 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004090 case ISD::UNDEF:
4091 Result = DAG.getNode(ISD::UNDEF, NVT);
4092 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004093 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004094 if (VT != MVT::i1)
4095 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4096 else
4097 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004098 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4099 break;
4100 case ISD::ConstantFP:
4101 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4102 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4103 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004104
Chris Lattner82fbfb62005-01-18 02:59:52 +00004105 case ISD::SETCC:
Scott Michel5b8f82e2008-03-10 15:42:14 +00004106 assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
Nate Begeman5922f562008-03-14 00:53:31 +00004107 && "SetCC type is not legal??");
Scott Michel5b8f82e2008-03-10 15:42:14 +00004108 Result = DAG.getNode(ISD::SETCC,
Nate Begeman5922f562008-03-14 00:53:31 +00004109 TLI.getSetCCResultType(Node->getOperand(0)),
4110 Node->getOperand(0), Node->getOperand(1),
4111 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004112 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00004113
Chris Lattner03c85462005-01-15 05:21:40 +00004114 case ISD::TRUNCATE:
4115 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4116 case Legal:
4117 Result = LegalizeOp(Node->getOperand(0));
4118 assert(Result.getValueType() >= NVT &&
4119 "This truncation doesn't make sense!");
4120 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
4121 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4122 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004123 case Promote:
4124 // The truncation is not required, because we don't guarantee anything
4125 // about high bits anyway.
4126 Result = PromoteOp(Node->getOperand(0));
4127 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004128 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004129 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4130 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00004131 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004132 }
4133 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004134 case ISD::SIGN_EXTEND:
4135 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004136 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004137 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4138 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4139 case Legal:
4140 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00004141 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004142 break;
4143 case Promote:
4144 // Promote the reg if it's smaller.
4145 Result = PromoteOp(Node->getOperand(0));
4146 // The high bits are not guaranteed to be anything. Insert an extend.
4147 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00004148 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004149 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004150 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00004151 Result = DAG.getZeroExtendInReg(Result,
4152 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004153 break;
4154 }
4155 break;
Chris Lattner35481892005-12-23 00:16:34 +00004156 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004157 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4158 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00004159 Result = PromoteOp(Result);
4160 break;
4161
Chris Lattner8b6fa222005-01-15 22:16:26 +00004162 case ISD::FP_EXTEND:
4163 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4164 case ISD::FP_ROUND:
4165 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4166 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4167 case Promote: assert(0 && "Unreachable with 2 FP types!");
4168 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004169 if (Node->getConstantOperandVal(1) == 0) {
4170 // Input is legal? Do an FP_ROUND_INREG.
4171 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4172 DAG.getValueType(VT));
4173 } else {
4174 // Just remove the truncate, it isn't affecting the value.
4175 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4176 Node->getOperand(1));
4177 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004178 break;
4179 }
4180 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004181 case ISD::SINT_TO_FP:
4182 case ISD::UINT_TO_FP:
4183 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4184 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004185 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00004186 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004187 break;
4188
4189 case Promote:
4190 Result = PromoteOp(Node->getOperand(0));
4191 if (Node->getOpcode() == ISD::SINT_TO_FP)
4192 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004193 Result,
4194 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004195 else
Chris Lattner23993562005-04-13 02:38:47 +00004196 Result = DAG.getZeroExtendInReg(Result,
4197 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004198 // No extra round required here.
4199 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004200 break;
4201 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004202 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4203 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00004204 // Round if we cannot tolerate excess precision.
4205 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004206 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4207 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004208 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004209 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004210 break;
4211
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004212 case ISD::SIGN_EXTEND_INREG:
4213 Result = PromoteOp(Node->getOperand(0));
4214 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4215 Node->getOperand(1));
4216 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004217 case ISD::FP_TO_SINT:
4218 case ISD::FP_TO_UINT:
4219 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4220 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004221 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004222 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004223 break;
4224 case Promote:
4225 // The input result is prerounded, so we don't have to do anything
4226 // special.
4227 Tmp1 = PromoteOp(Node->getOperand(0));
4228 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004229 }
Nate Begemand2558e32005-08-14 01:20:53 +00004230 // If we're promoting a UINT to a larger size, check to see if the new node
4231 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4232 // we can use that instead. This allows us to generate better code for
4233 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4234 // legal, such as PowerPC.
4235 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004236 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004237 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4238 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00004239 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4240 } else {
4241 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4242 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004243 break;
4244
Chris Lattner2c8086f2005-04-02 05:00:07 +00004245 case ISD::FABS:
4246 case ISD::FNEG:
4247 Tmp1 = PromoteOp(Node->getOperand(0));
4248 assert(Tmp1.getValueType() == NVT);
4249 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4250 // NOTE: we do not have to do any extra rounding here for
4251 // NoExcessFPPrecision, because we know the input will have the appropriate
4252 // precision, and these operations don't modify precision at all.
4253 break;
4254
Chris Lattnerda6ba872005-04-28 21:44:33 +00004255 case ISD::FSQRT:
4256 case ISD::FSIN:
4257 case ISD::FCOS:
4258 Tmp1 = PromoteOp(Node->getOperand(0));
4259 assert(Tmp1.getValueType() == NVT);
4260 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004261 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004262 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4263 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004264 break;
4265
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004266 case ISD::FPOWI: {
4267 // Promote f32 powi to f64 powi. Note that this could insert a libcall
4268 // directly as well, which may be better.
4269 Tmp1 = PromoteOp(Node->getOperand(0));
4270 assert(Tmp1.getValueType() == NVT);
4271 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
4272 if (NoExcessFPPrecision)
4273 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4274 DAG.getValueType(VT));
4275 break;
4276 }
4277
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004278 case ISD::ATOMIC_LCS: {
4279 Tmp2 = PromoteOp(Node->getOperand(2));
4280 Tmp3 = PromoteOp(Node->getOperand(3));
4281 Result = DAG.getAtomic(Node->getOpcode(), Node->getOperand(0),
4282 Node->getOperand(1), Tmp2, Tmp3,
4283 cast<AtomicSDNode>(Node)->getVT());
4284 // Remember that we legalized the chain.
4285 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4286 break;
4287 }
4288 case ISD::ATOMIC_LAS:
Mon P Wang63307c32008-05-05 19:05:59 +00004289 case ISD::ATOMIC_LSS:
4290 case ISD::ATOMIC_LOAD_AND:
4291 case ISD::ATOMIC_LOAD_OR:
4292 case ISD::ATOMIC_LOAD_XOR:
4293 case ISD::ATOMIC_LOAD_MIN:
4294 case ISD::ATOMIC_LOAD_MAX:
4295 case ISD::ATOMIC_LOAD_UMIN:
4296 case ISD::ATOMIC_LOAD_UMAX:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004297 case ISD::ATOMIC_SWAP: {
4298 Tmp2 = PromoteOp(Node->getOperand(2));
4299 Result = DAG.getAtomic(Node->getOpcode(), Node->getOperand(0),
4300 Node->getOperand(1), Tmp2,
4301 cast<AtomicSDNode>(Node)->getVT());
4302 // Remember that we legalized the chain.
4303 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4304 break;
4305 }
4306
Chris Lattner03c85462005-01-15 05:21:40 +00004307 case ISD::AND:
4308 case ISD::OR:
4309 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004310 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004311 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004312 case ISD::MUL:
4313 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004314 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004315 // that too is okay if they are integer operations.
4316 Tmp1 = PromoteOp(Node->getOperand(0));
4317 Tmp2 = PromoteOp(Node->getOperand(1));
4318 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4319 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004320 break;
4321 case ISD::FADD:
4322 case ISD::FSUB:
4323 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004324 Tmp1 = PromoteOp(Node->getOperand(0));
4325 Tmp2 = PromoteOp(Node->getOperand(1));
4326 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4327 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4328
4329 // Floating point operations will give excess precision that we may not be
4330 // able to tolerate. If we DO allow excess precision, just leave it,
4331 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004332 // FIXME: Why would we need to round FP ops more than integer ones?
4333 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004334 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004335 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4336 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004337 break;
4338
Chris Lattner8b6fa222005-01-15 22:16:26 +00004339 case ISD::SDIV:
4340 case ISD::SREM:
4341 // These operators require that their input be sign extended.
4342 Tmp1 = PromoteOp(Node->getOperand(0));
4343 Tmp2 = PromoteOp(Node->getOperand(1));
4344 if (MVT::isInteger(NVT)) {
Chris Lattner15e4b012005-07-10 00:07:11 +00004345 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4346 DAG.getValueType(VT));
4347 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4348 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004349 }
4350 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4351
4352 // Perform FP_ROUND: this is probably overly pessimistic.
4353 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004354 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4355 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004356 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004357 case ISD::FDIV:
4358 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004359 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004360 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004361 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004362 case Expand: assert(0 && "not implemented");
4363 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4364 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004365 }
4366 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004367 case Expand: assert(0 && "not implemented");
4368 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4369 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004370 }
Chris Lattner01b3d732005-09-28 22:28:18 +00004371 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4372
4373 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004374 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00004375 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4376 DAG.getValueType(VT));
4377 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004378
4379 case ISD::UDIV:
4380 case ISD::UREM:
4381 // These operators require that their input be zero extended.
4382 Tmp1 = PromoteOp(Node->getOperand(0));
4383 Tmp2 = PromoteOp(Node->getOperand(1));
4384 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00004385 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4386 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004387 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4388 break;
4389
4390 case ISD::SHL:
4391 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00004392 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004393 break;
4394 case ISD::SRA:
4395 // The input value must be properly sign extended.
4396 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00004397 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4398 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00004399 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004400 break;
4401 case ISD::SRL:
4402 // The input value must be properly zero extended.
4403 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00004404 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004405 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004406 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004407
4408 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004409 Tmp1 = Node->getOperand(0); // Get the chain.
4410 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004411 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4412 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
4413 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
4414 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004415 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
4416 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004417 // Increment the pointer, VAList, to the next vaarg
4418 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
4419 DAG.getConstant(MVT::getSizeInBits(VT)/8,
4420 TLI.getPointerTy()));
4421 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00004422 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004423 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004424 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004425 }
4426 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004427 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004428 break;
4429
Evan Cheng466685d2006-10-09 20:57:25 +00004430 case ISD::LOAD: {
4431 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004432 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4433 ? ISD::EXTLOAD : LD->getExtensionType();
4434 Result = DAG.getExtLoad(ExtType, NVT,
4435 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004436 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004437 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004438 LD->isVolatile(),
4439 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004440 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004441 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004442 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004443 }
Chris Lattner03c85462005-01-15 05:21:40 +00004444 case ISD::SELECT:
Chris Lattner03c85462005-01-15 05:21:40 +00004445 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4446 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner456a93a2006-01-28 07:39:30 +00004447 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004448 break;
Nate Begeman9373a812005-08-10 20:51:12 +00004449 case ISD::SELECT_CC:
4450 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4451 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4452 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004453 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004454 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004455 case ISD::BSWAP:
4456 Tmp1 = Node->getOperand(0);
4457 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4458 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4459 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004460 DAG.getConstant(MVT::getSizeInBits(NVT) -
4461 MVT::getSizeInBits(VT),
Nate Begemand88fc032006-01-14 03:14:10 +00004462 TLI.getShiftAmountTy()));
4463 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004464 case ISD::CTPOP:
4465 case ISD::CTTZ:
4466 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004467 // Zero extend the argument
4468 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004469 // Perform the larger operation, then subtract if needed.
4470 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004471 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004472 case ISD::CTPOP:
4473 Result = Tmp1;
4474 break;
4475 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004476 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004477 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004478 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
4479 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004480 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004481 DAG.getConstant(MVT::getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004482 break;
4483 case ISD::CTLZ:
4484 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004485 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004486 DAG.getConstant(MVT::getSizeInBits(NVT) -
4487 MVT::getSizeInBits(VT), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004488 break;
4489 }
4490 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004491 case ISD::EXTRACT_SUBVECTOR:
4492 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004493 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004494 case ISD::EXTRACT_VECTOR_ELT:
4495 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4496 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004497 }
4498
4499 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004500
4501 // Make sure the result is itself legal.
4502 Result = LegalizeOp(Result);
4503
4504 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004505 AddPromotedOperand(Op, Result);
4506 return Result;
4507}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004508
Dan Gohman7f321562007-06-25 16:23:39 +00004509/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4510/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4511/// based on the vector type. The return type of this matches the element type
4512/// of the vector, which may not be legal for the target.
4513SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004514 // We know that operand #0 is the Vec vector. If the index is a constant
4515 // or if the invec is a supported hardware type, we can use it. Otherwise,
4516 // lower to a store then an indexed load.
4517 SDOperand Vec = Op.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004518 SDOperand Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00004519
Dan Gohmane40c7b02007-09-24 15:54:53 +00004520 MVT::ValueType TVT = Vec.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00004521 unsigned NumElems = MVT::getVectorNumElements(TVT);
Chris Lattner15972212006-03-31 17:55:51 +00004522
Dan Gohman7f321562007-06-25 16:23:39 +00004523 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4524 default: assert(0 && "This action is not supported yet!");
4525 case TargetLowering::Custom: {
4526 Vec = LegalizeOp(Vec);
4527 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4528 SDOperand Tmp3 = TLI.LowerOperation(Op, DAG);
4529 if (Tmp3.Val)
4530 return Tmp3;
4531 break;
4532 }
4533 case TargetLowering::Legal:
4534 if (isTypeLegal(TVT)) {
4535 Vec = LegalizeOp(Vec);
4536 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004537 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004538 }
4539 break;
4540 case TargetLowering::Expand:
4541 break;
4542 }
4543
4544 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004545 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004546 Op = ScalarizeVectorOp(Vec);
4547 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00004548 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00004549 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Chris Lattner15972212006-03-31 17:55:51 +00004550 SDOperand Lo, Hi;
4551 SplitVectorOp(Vec, Lo, Hi);
Nate Begeman55030dc2008-01-29 02:24:00 +00004552 if (CIdx->getValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00004553 Vec = Lo;
4554 } else {
4555 Vec = Hi;
Nate Begeman55030dc2008-01-29 02:24:00 +00004556 Idx = DAG.getConstant(CIdx->getValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00004557 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00004558 }
Dan Gohman7f321562007-06-25 16:23:39 +00004559
Chris Lattner15972212006-03-31 17:55:51 +00004560 // It's now an extract from the appropriate high or low part. Recurse.
4561 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004562 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00004563 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004564 // Store the value to a temporary stack slot, then LOAD the scalar
4565 // element back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004566 SDOperand StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dan Gohman7f321562007-06-25 16:23:39 +00004567 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
4568
4569 // Add the offset to the index.
4570 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
4571 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4572 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004573
4574 if (MVT::getSizeInBits(Idx.getValueType()) >
4575 MVT::getSizeInBits(TLI.getPointerTy()))
Chris Lattnerf185e672007-10-19 16:47:35 +00004576 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004577 else
Chris Lattnerf185e672007-10-19 16:47:35 +00004578 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004579
Dan Gohman7f321562007-06-25 16:23:39 +00004580 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4581
4582 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00004583 }
Dan Gohman7f321562007-06-25 16:23:39 +00004584 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00004585}
4586
Dan Gohman7f321562007-06-25 16:23:39 +00004587/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00004588/// we assume the operation can be split if it is not already legal.
Dan Gohman7f321562007-06-25 16:23:39 +00004589SDOperand SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDOperand Op) {
Dan Gohman65956352007-06-13 15:12:02 +00004590 // We know that operand #0 is the Vec vector. For now we assume the index
4591 // is a constant and that the extracted result is a supported hardware type.
4592 SDOperand Vec = Op.getOperand(0);
4593 SDOperand Idx = LegalizeOp(Op.getOperand(1));
4594
Dan Gohman7f321562007-06-25 16:23:39 +00004595 unsigned NumElems = MVT::getVectorNumElements(Vec.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00004596
4597 if (NumElems == MVT::getVectorNumElements(Op.getValueType())) {
4598 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004599 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00004600 }
4601
4602 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
4603 SDOperand Lo, Hi;
4604 SplitVectorOp(Vec, Lo, Hi);
4605 if (CIdx->getValue() < NumElems/2) {
4606 Vec = Lo;
4607 } else {
4608 Vec = Hi;
4609 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
4610 }
4611
4612 // It's now an extract from the appropriate high or low part. Recurse.
4613 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004614 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00004615}
4616
Nate Begeman750ac1b2006-02-01 07:19:44 +00004617/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4618/// with condition CC on the current target. This usually involves legalizing
4619/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4620/// there may be no choice but to create a new SetCC node to represent the
4621/// legalized value of setcc lhs, rhs. In this case, the value is returned in
4622/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
4623void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
4624 SDOperand &RHS,
4625 SDOperand &CC) {
Dale Johannesen638ccd52007-10-06 01:24:11 +00004626 SDOperand Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004627
4628 switch (getTypeAction(LHS.getValueType())) {
4629 case Legal:
4630 Tmp1 = LegalizeOp(LHS); // LHS
4631 Tmp2 = LegalizeOp(RHS); // RHS
4632 break;
4633 case Promote:
4634 Tmp1 = PromoteOp(LHS); // LHS
4635 Tmp2 = PromoteOp(RHS); // RHS
4636
4637 // If this is an FP compare, the operands have already been extended.
4638 if (MVT::isInteger(LHS.getValueType())) {
4639 MVT::ValueType VT = LHS.getValueType();
4640 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
4641
4642 // Otherwise, we have to insert explicit sign or zero extends. Note
4643 // that we could insert sign extends for ALL conditions, but zero extend
4644 // is cheaper on many machines (an AND instead of two shifts), so prefer
4645 // it.
4646 switch (cast<CondCodeSDNode>(CC)->get()) {
4647 default: assert(0 && "Unknown integer comparison!");
4648 case ISD::SETEQ:
4649 case ISD::SETNE:
4650 case ISD::SETUGE:
4651 case ISD::SETUGT:
4652 case ISD::SETULE:
4653 case ISD::SETULT:
4654 // ALL of these operations will work if we either sign or zero extend
4655 // the operands (including the unsigned comparisons!). Zero extend is
4656 // usually a simpler/cheaper operation, so prefer it.
4657 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4658 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4659 break;
4660 case ISD::SETGE:
4661 case ISD::SETGT:
4662 case ISD::SETLT:
4663 case ISD::SETLE:
4664 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4665 DAG.getValueType(VT));
4666 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4667 DAG.getValueType(VT));
4668 break;
4669 }
4670 }
4671 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004672 case Expand: {
4673 MVT::ValueType VT = LHS.getValueType();
4674 if (VT == MVT::f32 || VT == MVT::f64) {
4675 // Expand into one or more soft-fp libcall(s).
Evan Cheng56966222007-01-12 02:11:51 +00004676 RTLIB::Libcall LC1, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00004677 switch (cast<CondCodeSDNode>(CC)->get()) {
4678 case ISD::SETEQ:
4679 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00004680 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004681 break;
4682 case ISD::SETNE:
4683 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00004684 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004685 break;
4686 case ISD::SETGE:
4687 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00004688 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004689 break;
4690 case ISD::SETLT:
4691 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00004692 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004693 break;
4694 case ISD::SETLE:
4695 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00004696 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004697 break;
4698 case ISD::SETGT:
4699 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00004700 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004701 break;
4702 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00004703 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4704 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004705 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00004706 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004707 break;
4708 default:
Evan Cheng56966222007-01-12 02:11:51 +00004709 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004710 switch (cast<CondCodeSDNode>(CC)->get()) {
4711 case ISD::SETONE:
4712 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004713 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004714 // Fallthrough
4715 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004716 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004717 break;
4718 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004719 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004720 break;
4721 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004722 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004723 break;
4724 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004725 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004726 break;
Evan Cheng56966222007-01-12 02:11:51 +00004727 case ISD::SETUEQ:
4728 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004729 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004730 default: assert(0 && "Unsupported FP setcc!");
4731 }
4732 }
4733
4734 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00004735 Tmp1 = ExpandLibCall(LC1,
Reid Spencer47857812006-12-31 05:55:36 +00004736 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004737 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004738 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004739 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004740 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004741 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00004742 CC);
Duncan Sands460a14e2008-04-12 17:14:18 +00004743 LHS = ExpandLibCall(LC2,
4744 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004745 false /*sign irrelevant*/, Dummy);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004746 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004747 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004748 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4749 Tmp2 = SDOperand();
4750 }
4751 LHS = Tmp1;
4752 RHS = Tmp2;
4753 return;
4754 }
4755
Nate Begeman750ac1b2006-02-01 07:19:44 +00004756 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
4757 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004758 ExpandOp(RHS, RHSLo, RHSHi);
4759 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4760
4761 if (VT==MVT::ppcf128) {
4762 // FIXME: This generated code sucks. We want to generate
4763 // FCMP crN, hi1, hi2
4764 // BNE crN, L:
4765 // FCMP crN, lo1, lo2
4766 // The following can be improved, but not that much.
Scott Michel5b8f82e2008-03-10 15:42:14 +00004767 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETEQ);
4768 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004769 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004770 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETNE);
4771 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004772 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4773 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
4774 Tmp2 = SDOperand();
4775 break;
4776 }
4777
4778 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004779 case ISD::SETEQ:
4780 case ISD::SETNE:
4781 if (RHSLo == RHSHi)
4782 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4783 if (RHSCST->isAllOnesValue()) {
4784 // Comparison to -1.
4785 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4786 Tmp2 = RHSLo;
4787 break;
4788 }
4789
4790 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4791 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4792 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4793 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4794 break;
4795 default:
4796 // If this is a comparison of the sign bit, just look at the top part.
4797 // X > -1, x < 0
4798 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4799 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004800 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00004801 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4802 CST->isAllOnesValue())) { // X > -1
4803 Tmp1 = LHSHi;
4804 Tmp2 = RHSHi;
4805 break;
4806 }
4807
4808 // FIXME: This generated code sucks.
4809 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004810 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004811 default: assert(0 && "Unknown integer setcc!");
4812 case ISD::SETLT:
4813 case ISD::SETULT: LowCC = ISD::SETULT; break;
4814 case ISD::SETGT:
4815 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4816 case ISD::SETLE:
4817 case ISD::SETULE: LowCC = ISD::SETULE; break;
4818 case ISD::SETGE:
4819 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4820 }
4821
4822 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4823 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4824 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4825
4826 // NOTE: on targets without efficient SELECT of bools, we can always use
4827 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004828 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004829 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
Nate Begeman5922f562008-03-14 00:53:31 +00004830 LowCC, false, DagCombineInfo);
Evan Cheng2e677812007-02-08 22:16:19 +00004831 if (!Tmp1.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004832 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4833 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004834 CCCode, false, DagCombineInfo);
4835 if (!Tmp2.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004836 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004837 RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00004838
4839 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4840 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
Dan Gohman002e5d02008-03-13 22:13:53 +00004841 if ((Tmp1C && Tmp1C->isNullValue()) ||
4842 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00004843 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4844 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00004845 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00004846 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4847 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4848 // low part is known false, returns high part.
4849 // For LE / GE, if high part is known false, ignore the low part.
4850 // For LT / GT, if high part is known true, ignore the low part.
4851 Tmp1 = Tmp2;
4852 Tmp2 = SDOperand();
4853 } else {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004854 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004855 ISD::SETEQ, false, DagCombineInfo);
4856 if (!Result.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004857 Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004858 ISD::SETEQ);
Evan Cheng2e677812007-02-08 22:16:19 +00004859 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4860 Result, Tmp1, Tmp2));
4861 Tmp1 = Result;
4862 Tmp2 = SDOperand();
4863 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004864 }
4865 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004866 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004867 LHS = Tmp1;
4868 RHS = Tmp2;
4869}
4870
Chris Lattner1401d152008-01-16 07:45:30 +00004871/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4872/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4873/// a load from the stack slot to DestVT, extending it if needed.
4874/// The resultant code need not be legal.
4875SDOperand SelectionDAGLegalize::EmitStackConvert(SDOperand SrcOp,
4876 MVT::ValueType SlotVT,
4877 MVT::ValueType DestVT) {
Chris Lattner35481892005-12-23 00:16:34 +00004878 // Create the stack frame object.
Chris Lattner1401d152008-01-16 07:45:30 +00004879 SDOperand FIPtr = DAG.CreateStackTemporary(SlotVT);
4880
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004881 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004882 int SPFI = StackPtrFI->getIndex();
4883
Chris Lattner1401d152008-01-16 07:45:30 +00004884 unsigned SrcSize = MVT::getSizeInBits(SrcOp.getValueType());
4885 unsigned SlotSize = MVT::getSizeInBits(SlotVT);
4886 unsigned DestSize = MVT::getSizeInBits(DestVT);
Chris Lattner35481892005-12-23 00:16:34 +00004887
Chris Lattner1401d152008-01-16 07:45:30 +00004888 // Emit a store to the stack slot. Use a truncstore if the input value is
4889 // later than DestVT.
4890 SDOperand Store;
4891 if (SrcSize > SlotSize)
Dan Gohman69de1932008-02-06 22:27:42 +00004892 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004893 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00004894 SPFI, SlotVT);
Chris Lattner1401d152008-01-16 07:45:30 +00004895 else {
4896 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman69de1932008-02-06 22:27:42 +00004897 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004898 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00004899 SPFI, SlotVT);
Chris Lattner1401d152008-01-16 07:45:30 +00004900 }
4901
Chris Lattner35481892005-12-23 00:16:34 +00004902 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00004903 if (SlotSize == DestSize)
4904 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
4905
4906 assert(SlotSize < DestSize && "Unknown extension!");
4907 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT);
Chris Lattner35481892005-12-23 00:16:34 +00004908}
4909
Chris Lattner4352cc92006-04-04 17:23:26 +00004910SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
4911 // Create a vector sized/aligned stack slot, store the value to element #0,
4912 // then load the whole vector back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004913 SDOperand StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00004914
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004915 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004916 int SPFI = StackPtrFI->getIndex();
4917
Evan Cheng786225a2006-10-05 23:01:46 +00004918 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004919 PseudoSourceValue::getFixedStack(), SPFI);
Dan Gohman69de1932008-02-06 22:27:42 +00004920 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004921 PseudoSourceValue::getFixedStack(), SPFI);
Chris Lattner4352cc92006-04-04 17:23:26 +00004922}
4923
4924
Chris Lattnerce872152006-03-19 06:31:19 +00004925/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004926/// support the operation, but do support the resultant vector type.
Chris Lattnerce872152006-03-19 06:31:19 +00004927SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
4928
4929 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004930 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004931 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004932 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00004933 SDOperand SplatValue = Node->getOperand(0);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004934
4935 // FIXME: it would be far nicer to change this into map<SDOperand,uint64_t>
4936 // and use a bitmask instead of a list of elements.
Evan Cheng033e6812006-03-24 01:17:21 +00004937 std::map<SDOperand, std::vector<unsigned> > Values;
4938 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004939 bool isConstant = true;
4940 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4941 SplatValue.getOpcode() != ISD::UNDEF)
4942 isConstant = false;
4943
Evan Cheng033e6812006-03-24 01:17:21 +00004944 for (unsigned i = 1; i < NumElems; ++i) {
4945 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004946 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004947 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004948 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004949 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00004950 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004951
4952 // If this isn't a constant element or an undef, we can't use a constant
4953 // pool load.
4954 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4955 V.getOpcode() != ISD::UNDEF)
4956 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004957 }
4958
4959 if (isOnlyLowElement) {
4960 // If the low element is an undef too, then this whole things is an undef.
4961 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4962 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4963 // Otherwise, turn this into a scalar_to_vector node.
4964 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4965 Node->getOperand(0));
4966 }
4967
Chris Lattner2eb86532006-03-24 07:29:17 +00004968 // If all elements are constants, create a load from the constant pool.
4969 if (isConstant) {
4970 MVT::ValueType VT = Node->getValueType(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004971 std::vector<Constant*> CV;
4972 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4973 if (ConstantFPSDNode *V =
4974 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Chris Lattner02a260a2008-04-20 00:41:09 +00004975 CV.push_back(ConstantFP::get(V->getValueAPF()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004976 } else if (ConstantSDNode *V =
Chris Lattner02a260a2008-04-20 00:41:09 +00004977 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
4978 CV.push_back(ConstantInt::get(V->getAPIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004979 } else {
4980 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner02a260a2008-04-20 00:41:09 +00004981 const Type *OpNTy =
4982 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
Chris Lattner2eb86532006-03-24 07:29:17 +00004983 CV.push_back(UndefValue::get(OpNTy));
4984 }
4985 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00004986 Constant *CP = ConstantVector::get(CV);
Chris Lattner2eb86532006-03-24 07:29:17 +00004987 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman69de1932008-02-06 22:27:42 +00004988 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00004989 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004990 }
4991
Chris Lattner87100e02006-03-20 01:52:29 +00004992 if (SplatValue.Val) { // Splat of one value?
4993 // Build the shuffle constant vector: <0, 0, 0, 0>
4994 MVT::ValueType MaskVT =
Evan Cheng033e6812006-03-24 01:17:21 +00004995 MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman51eaa862007-06-14 22:58:02 +00004996 SDOperand Zero = DAG.getConstant(0, MVT::getVectorElementType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00004997 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004998 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4999 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00005000
5001 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005002 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00005003 // Get the splatted value into the low element of a vector register.
5004 SDOperand LowValVec =
5005 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
5006
5007 // Return shuffle(LowValVec, undef, <0,0,0,0>)
5008 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
5009 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
5010 SplatMask);
5011 }
5012 }
5013
Evan Cheng033e6812006-03-24 01:17:21 +00005014 // If there are only two unique elements, we may be able to turn this into a
5015 // vector shuffle.
5016 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005017 // Get the two values in deterministic order.
5018 SDOperand Val1 = Node->getOperand(1);
5019 SDOperand Val2;
5020 std::map<SDOperand, std::vector<unsigned> >::iterator MI = Values.begin();
5021 if (MI->first != Val1)
5022 Val2 = MI->first;
5023 else
5024 Val2 = (++MI)->first;
5025
5026 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
5027 // vector shuffle has the undef vector on the RHS.
5028 if (Val1.getOpcode() == ISD::UNDEF)
5029 std::swap(Val1, Val2);
5030
Evan Cheng033e6812006-03-24 01:17:21 +00005031 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005032 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5033 MVT::ValueType MaskEltVT = MVT::getVectorElementType(MaskVT);
Evan Cheng033e6812006-03-24 01:17:21 +00005034 std::vector<SDOperand> MaskVec(NumElems);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005035
5036 // Set elements of the shuffle mask for Val1.
5037 std::vector<unsigned> &Val1Elts = Values[Val1];
5038 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5039 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5040
5041 // Set elements of the shuffle mask for Val2.
5042 std::vector<unsigned> &Val2Elts = Values[Val2];
5043 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5044 if (Val2.getOpcode() != ISD::UNDEF)
5045 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5046 else
5047 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
5048
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005049 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
5050 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00005051
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005052 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005053 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
5054 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005055 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
5056 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
5057 SDOperand Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng033e6812006-03-24 01:17:21 +00005058
5059 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005060 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Evan Cheng033e6812006-03-24 01:17:21 +00005061 }
5062 }
Chris Lattnerce872152006-03-19 06:31:19 +00005063
5064 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5065 // aligned object on the stack, store each element into it, then load
5066 // the result as a vector.
5067 MVT::ValueType VT = Node->getValueType(0);
5068 // Create the stack frame object.
Chris Lattner85dd3be2007-10-15 17:48:57 +00005069 SDOperand FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005070
5071 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005072 SmallVector<SDOperand, 8> Stores;
Chris Lattnerce872152006-03-19 06:31:19 +00005073 unsigned TypeByteSize =
5074 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
Chris Lattnerce872152006-03-19 06:31:19 +00005075 // Store (in the right endianness) the elements to memory.
5076 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5077 // Ignore undef elements.
5078 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5079
Chris Lattner841c8822006-03-22 01:46:54 +00005080 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00005081
5082 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
5083 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5084
Evan Cheng786225a2006-10-05 23:01:46 +00005085 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00005086 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00005087 }
5088
5089 SDOperand StoreChain;
5090 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005091 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5092 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005093 else
5094 StoreChain = DAG.getEntryNode();
5095
5096 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00005097 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005098}
5099
Chris Lattner5b359c62005-04-02 04:00:59 +00005100void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
5101 SDOperand Op, SDOperand Amt,
5102 SDOperand &Lo, SDOperand &Hi) {
5103 // Expand the subcomponents.
5104 SDOperand LHSL, LHSH;
5105 ExpandOp(Op, LHSL, LHSH);
5106
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005107 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00005108 MVT::ValueType VT = LHSL.getValueType();
5109 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005110 Hi = Lo.getValue(1);
5111}
5112
5113
Chris Lattnere34b3962005-01-19 04:19:40 +00005114/// ExpandShift - Try to find a clever way to expand this shift operation out to
5115/// smaller elements. If we can't find a way that is more efficient than a
5116/// libcall on this target, return false. Otherwise, return true with the
5117/// low-parts expanded into Lo and Hi.
5118bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
5119 SDOperand &Lo, SDOperand &Hi) {
5120 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5121 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005122
Chris Lattnere34b3962005-01-19 04:19:40 +00005123 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005124 SDOperand ShAmt = LegalizeOp(Amt);
5125 MVT::ValueType ShTy = ShAmt.getValueType();
Dan Gohman91dc17b2008-02-20 16:57:27 +00005126 unsigned ShBits = MVT::getSizeInBits(ShTy);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005127 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
5128 unsigned NVTBits = MVT::getSizeInBits(NVT);
5129
Chris Lattner7a3c8552007-10-14 20:35:12 +00005130 // Handle the case when Amt is an immediate.
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005131 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
5132 unsigned Cst = CN->getValue();
5133 // Expand the incoming operand to be shifted, so that we have its parts
5134 SDOperand InL, InH;
5135 ExpandOp(Op, InL, InH);
5136 switch(Opc) {
5137 case ISD::SHL:
5138 if (Cst > VTBits) {
5139 Lo = DAG.getConstant(0, NVT);
5140 Hi = DAG.getConstant(0, NVT);
5141 } else if (Cst > NVTBits) {
5142 Lo = DAG.getConstant(0, NVT);
5143 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005144 } else if (Cst == NVTBits) {
5145 Lo = DAG.getConstant(0, NVT);
5146 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005147 } else {
5148 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5149 Hi = DAG.getNode(ISD::OR, NVT,
5150 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5151 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5152 }
5153 return true;
5154 case ISD::SRL:
5155 if (Cst > VTBits) {
5156 Lo = DAG.getConstant(0, NVT);
5157 Hi = DAG.getConstant(0, NVT);
5158 } else if (Cst > NVTBits) {
5159 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5160 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005161 } else if (Cst == NVTBits) {
5162 Lo = InH;
5163 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005164 } else {
5165 Lo = DAG.getNode(ISD::OR, NVT,
5166 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5167 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5168 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5169 }
5170 return true;
5171 case ISD::SRA:
5172 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005173 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005174 DAG.getConstant(NVTBits-1, ShTy));
5175 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005176 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005177 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005178 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005179 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005180 } else if (Cst == NVTBits) {
5181 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00005182 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005183 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005184 } else {
5185 Lo = DAG.getNode(ISD::OR, NVT,
5186 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5187 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5188 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5189 }
5190 return true;
5191 }
5192 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005193
5194 // Okay, the shift amount isn't constant. However, if we can tell that it is
5195 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005196 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5197 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005198 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005199
Dan Gohman9e255b72008-02-22 01:12:31 +00005200 // If we know that if any of the high bits of the shift amount are one, then
5201 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005202 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005203 // Mask out the high bit, which we know is set.
5204 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005205 DAG.getConstant(~Mask, Amt.getValueType()));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005206
5207 // Expand the incoming operand to be shifted, so that we have its parts
5208 SDOperand InL, InH;
5209 ExpandOp(Op, InL, InH);
5210 switch(Opc) {
5211 case ISD::SHL:
5212 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5213 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5214 return true;
5215 case ISD::SRL:
5216 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5217 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5218 return true;
5219 case ISD::SRA:
5220 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5221 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5222 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5223 return true;
5224 }
5225 }
5226
Dan Gohman9e255b72008-02-22 01:12:31 +00005227 // If we know that the high bits of the shift amount are all zero, then we can
5228 // do this as a couple of simple shifts.
5229 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005230 // Compute 32-amt.
5231 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
5232 DAG.getConstant(NVTBits, Amt.getValueType()),
5233 Amt);
5234
5235 // Expand the incoming operand to be shifted, so that we have its parts
5236 SDOperand InL, InH;
5237 ExpandOp(Op, InL, InH);
5238 switch(Opc) {
5239 case ISD::SHL:
5240 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5241 Hi = DAG.getNode(ISD::OR, NVT,
5242 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5243 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5244 return true;
5245 case ISD::SRL:
5246 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5247 Lo = DAG.getNode(ISD::OR, NVT,
5248 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5249 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5250 return true;
5251 case ISD::SRA:
5252 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5253 Lo = DAG.getNode(ISD::OR, NVT,
5254 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5255 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5256 return true;
5257 }
5258 }
5259
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005260 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005261}
Chris Lattner77e77a62005-01-21 06:05:23 +00005262
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005263
Chris Lattner77e77a62005-01-21 06:05:23 +00005264// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5265// does not fit into a register, return the lo part and set the hi part to the
5266// by-reg argument. If it does fit into a single register, return the result
5267// and leave the Hi part unset.
Duncan Sands460a14e2008-04-12 17:14:18 +00005268SDOperand SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Reid Spencer47857812006-12-31 05:55:36 +00005269 bool isSigned, SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005270 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5271 // The input chain to this libcall is the entry node of the function.
5272 // Legalizing the call will automatically add the previous call to the
5273 // dependence.
5274 SDOperand InChain = DAG.getEntryNode();
5275
Chris Lattner77e77a62005-01-21 06:05:23 +00005276 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005277 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005278 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5279 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
5280 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
Reid Spencer47857812006-12-31 05:55:36 +00005281 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005282 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005283 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005284 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005285 }
Duncan Sands460a14e2008-04-12 17:14:18 +00005286 SDOperand Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
5287 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005288
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005289 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00005290 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005291 std::pair<SDOperand,SDOperand> CallInfo =
Duncan Sands00fee652008-02-14 17:28:50 +00005292 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, CallingConv::C,
5293 false, Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005294
Chris Lattner6831a812006-02-13 09:18:02 +00005295 // Legalize the call sequence, starting with the chain. This will advance
5296 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5297 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5298 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00005299 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005300 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005301 default: assert(0 && "Unknown thing");
5302 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005303 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005304 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005305 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005306 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005307 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005308 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005309 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005310}
5311
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005312
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005313/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5314///
Chris Lattner77e77a62005-01-21 06:05:23 +00005315SDOperand SelectionDAGLegalize::
5316ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Dan Gohmand91446d2008-03-05 01:08:17 +00005317 MVT::ValueType SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005318 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005319
Evan Cheng9845eb52008-04-01 02:18:22 +00005320 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5321 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005322 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005323 // incoming integer is set. To handle this, we dynamically test to see if
5324 // it is set, and, if so, add a fudge factor.
Dan Gohman034f60e2008-03-11 01:59:03 +00005325 SDOperand Hi;
5326 if (ExpandSource) {
5327 SDOperand Lo;
5328 ExpandOp(Source, Lo, Hi);
5329 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5330 } else {
5331 // The comparison for the sign bit will use the entire operand.
5332 Hi = Source;
5333 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005334
Chris Lattner66de05b2005-05-13 04:45:13 +00005335 // If this is unsigned, and not supported, first perform the conversion to
5336 // signed, then adjust the result if the sign bit is set.
Dan Gohman034f60e2008-03-11 01:59:03 +00005337 SDOperand SignedConv = ExpandIntToFP(true, DestTy, Source);
Chris Lattner66de05b2005-05-13 04:45:13 +00005338
Scott Michel5b8f82e2008-03-10 15:42:14 +00005339 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005340 DAG.getConstant(0, Hi.getValueType()),
5341 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005342 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005343 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5344 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005345 uint64_t FF = 0x5f800000ULL;
5346 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohman34bc1782008-03-05 02:07:31 +00005347 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005348
Chris Lattner5839bf22005-08-26 17:15:30 +00005349 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00005350 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5351 SDOperand FudgeInReg;
5352 if (DestTy == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005353 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005354 PseudoSourceValue::getConstantPool(), 0);
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005355 else if (MVT::getSizeInBits(DestTy) > MVT::getSizeInBits(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005356 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005357 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005358 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005359 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005360 MVT::f32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005361 else
5362 assert(0 && "Unexpected conversion");
5363
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005364 MVT::ValueType SCVT = SignedConv.getValueType();
5365 if (SCVT != DestTy) {
5366 // Destination type needs to be expanded as well. The FADD now we are
5367 // constructing will be expanded into a libcall.
5368 if (MVT::getSizeInBits(SCVT) != MVT::getSizeInBits(DestTy)) {
Dan Gohmand91446d2008-03-05 01:08:17 +00005369 assert(MVT::getSizeInBits(SCVT) * 2 == MVT::getSizeInBits(DestTy));
5370 SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005371 SignedConv, SignedConv.getValue(1));
5372 }
5373 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5374 }
Chris Lattner473a9902005-09-29 06:44:39 +00005375 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005376 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005377
Chris Lattnera88a2602005-05-14 05:33:54 +00005378 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00005379 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00005380 default: assert(0 && "This action not implemented for this operation!");
5381 case TargetLowering::Legal:
5382 case TargetLowering::Expand:
5383 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005384 case TargetLowering::Custom: {
5385 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
5386 Source), DAG);
5387 if (NV.Val)
5388 return LegalizeOp(NV);
5389 break; // The target decided this was legal after all
5390 }
Chris Lattnera88a2602005-05-14 05:33:54 +00005391 }
5392
Chris Lattner13689e22005-05-12 07:00:44 +00005393 // Expand the source, then glue it back together for the call. We must expand
5394 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00005395 if (ExpandSource) {
5396 SDOperand SrcLo, SrcHi;
5397 ExpandOp(Source, SrcLo, SrcHi);
5398 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5399 }
Chris Lattner13689e22005-05-12 07:00:44 +00005400
Evan Cheng56966222007-01-12 02:11:51 +00005401 RTLIB::Libcall LC;
Evan Cheng110cf482008-04-01 01:50:16 +00005402 if (SourceVT == MVT::i32) {
5403 if (DestTy == MVT::f32)
Evan Chengdb45d1c2008-04-01 02:00:09 +00005404 LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32;
Evan Cheng110cf482008-04-01 01:50:16 +00005405 else {
5406 assert(DestTy == MVT::f64 && "Unknown fp value type!");
5407 LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64;
5408 }
5409 } else if (SourceVT == MVT::i64) {
Dan Gohmand91446d2008-03-05 01:08:17 +00005410 if (DestTy == MVT::f32)
5411 LC = RTLIB::SINTTOFP_I64_F32;
Dan Gohman034f60e2008-03-11 01:59:03 +00005412 else if (DestTy == MVT::f64)
Dan Gohmand91446d2008-03-05 01:08:17 +00005413 LC = RTLIB::SINTTOFP_I64_F64;
Dan Gohman034f60e2008-03-11 01:59:03 +00005414 else if (DestTy == MVT::f80)
5415 LC = RTLIB::SINTTOFP_I64_F80;
5416 else {
5417 assert(DestTy == MVT::ppcf128 && "Unknown fp value type!");
5418 LC = RTLIB::SINTTOFP_I64_PPCF128;
Dan Gohmand91446d2008-03-05 01:08:17 +00005419 }
5420 } else if (SourceVT == MVT::i128) {
5421 if (DestTy == MVT::f32)
5422 LC = RTLIB::SINTTOFP_I128_F32;
5423 else if (DestTy == MVT::f64)
5424 LC = RTLIB::SINTTOFP_I128_F64;
5425 else if (DestTy == MVT::f80)
5426 LC = RTLIB::SINTTOFP_I128_F80;
5427 else {
5428 assert(DestTy == MVT::ppcf128 && "Unknown fp value type!");
5429 LC = RTLIB::SINTTOFP_I128_PPCF128;
5430 }
5431 } else {
5432 assert(0 && "Unknown int value type");
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005433 }
Chris Lattner6831a812006-02-13 09:18:02 +00005434
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005435 assert(TLI.getLibcallName(LC) && "Don't know how to expand this SINT_TO_FP!");
Chris Lattner6831a812006-02-13 09:18:02 +00005436 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
Dan Gohmana2e94852008-03-10 23:03:31 +00005437 SDOperand HiPart;
Duncan Sands460a14e2008-04-12 17:14:18 +00005438 SDOperand Result = ExpandLibCall(LC, Source.Val, isSigned, HiPart);
Evan Cheng110cf482008-04-01 01:50:16 +00005439 if (Result.getValueType() != DestTy && HiPart.Val)
Dan Gohmana2e94852008-03-10 23:03:31 +00005440 Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5441 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005442}
Misha Brukmanedf128a2005-04-21 22:36:52 +00005443
Chris Lattner22cde6a2006-01-28 08:25:58 +00005444/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5445/// INT_TO_FP operation of the specified operand when the target requests that
5446/// we expand it. At this point, we know that the result and operand types are
5447/// legal for the target.
5448SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5449 SDOperand Op0,
5450 MVT::ValueType DestVT) {
5451 if (Op0.getValueType() == MVT::i32) {
5452 // simple 32-bit [signed|unsigned] integer to float/double expansion
5453
Chris Lattner23594d42008-01-16 07:03:22 +00005454 // Get the stack frame index of a 8 byte buffer.
5455 SDOperand StackSlot = DAG.CreateStackTemporary(MVT::f64);
5456
Chris Lattner22cde6a2006-01-28 08:25:58 +00005457 // word offset constant for Hi/Lo address computation
5458 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
5459 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00005460 SDOperand Hi = StackSlot;
5461 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
5462 if (TLI.isLittleEndian())
5463 std::swap(Hi, Lo);
5464
Chris Lattner22cde6a2006-01-28 08:25:58 +00005465 // if signed map to unsigned space
5466 SDOperand Op0Mapped;
5467 if (isSigned) {
5468 // constant used to invert sign bit (signed to unsigned mapping)
5469 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
5470 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5471 } else {
5472 Op0Mapped = Op0;
5473 }
5474 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00005475 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005476 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005477 // initial hi portion of constructed double
5478 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
5479 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00005480 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005481 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00005482 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005483 // FP constant to bias correct the final result
5484 SDOperand Bias = DAG.getConstantFP(isSigned ?
5485 BitsToDouble(0x4330000080000000ULL)
5486 : BitsToDouble(0x4330000000000000ULL),
5487 MVT::f64);
5488 // subtract the bias
5489 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
5490 // final result
5491 SDOperand Result;
5492 // handle final rounding
5493 if (DestVT == MVT::f64) {
5494 // do nothing
5495 Result = Sub;
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005496 } else if (MVT::getSizeInBits(DestVT) < MVT::getSizeInBits(MVT::f64)) {
Chris Lattner0bd48932008-01-17 07:00:52 +00005497 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5498 DAG.getIntPtrConstant(0));
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005499 } else if (MVT::getSizeInBits(DestVT) > MVT::getSizeInBits(MVT::f64)) {
5500 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005501 }
5502 return Result;
5503 }
5504 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
5505 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
5506
Scott Michel5b8f82e2008-03-10 15:42:14 +00005507 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005508 DAG.getConstant(0, Op0.getValueType()),
5509 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005510 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005511 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5512 SignSet, Four, Zero);
5513
5514 // If the sign bit of the integer is set, the large number will be treated
5515 // as a negative number. To counteract this, the dynamic code adds an
5516 // offset depending on the data type.
5517 uint64_t FF;
5518 switch (Op0.getValueType()) {
5519 default: assert(0 && "Unsupported integer type!");
5520 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5521 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5522 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5523 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5524 }
5525 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005526 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005527
5528 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
5529 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5530 SDOperand FudgeInReg;
5531 if (DestVT == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005532 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005533 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005534 else {
Dan Gohman69de1932008-02-06 22:27:42 +00005535 FudgeInReg =
5536 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5537 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005538 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005539 MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00005540 }
5541
5542 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5543}
5544
5545/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5546/// *INT_TO_FP operation of the specified operand when the target requests that
5547/// we promote it. At this point, we know that the result and operand types are
5548/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5549/// operation that takes a larger input.
5550SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
5551 MVT::ValueType DestVT,
5552 bool isSigned) {
5553 // First step, figure out the appropriate *INT_TO_FP operation to use.
5554 MVT::ValueType NewInTy = LegalOp.getValueType();
5555
5556 unsigned OpToUse = 0;
5557
5558 // Scan for the appropriate larger type to use.
5559 while (1) {
5560 NewInTy = (MVT::ValueType)(NewInTy+1);
5561 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
5562
5563 // If the target supports SINT_TO_FP of this type, use it.
5564 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5565 default: break;
5566 case TargetLowering::Legal:
5567 if (!TLI.isTypeLegal(NewInTy))
5568 break; // Can't use this datatype.
5569 // FALL THROUGH.
5570 case TargetLowering::Custom:
5571 OpToUse = ISD::SINT_TO_FP;
5572 break;
5573 }
5574 if (OpToUse) break;
5575 if (isSigned) continue;
5576
5577 // If the target supports UINT_TO_FP of this type, use it.
5578 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5579 default: break;
5580 case TargetLowering::Legal:
5581 if (!TLI.isTypeLegal(NewInTy))
5582 break; // Can't use this datatype.
5583 // FALL THROUGH.
5584 case TargetLowering::Custom:
5585 OpToUse = ISD::UINT_TO_FP;
5586 break;
5587 }
5588 if (OpToUse) break;
5589
5590 // Otherwise, try a larger type.
5591 }
5592
5593 // Okay, we found the operation and type to use. Zero extend our input to the
5594 // desired type then run the operation on it.
5595 return DAG.getNode(OpToUse, DestVT,
5596 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5597 NewInTy, LegalOp));
5598}
5599
5600/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5601/// FP_TO_*INT operation of the specified operand when the target requests that
5602/// we promote it. At this point, we know that the result and operand types are
5603/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5604/// operation that returns a larger result.
5605SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
5606 MVT::ValueType DestVT,
5607 bool isSigned) {
5608 // First step, figure out the appropriate FP_TO*INT operation to use.
5609 MVT::ValueType NewOutTy = DestVT;
5610
5611 unsigned OpToUse = 0;
5612
5613 // Scan for the appropriate larger type to use.
5614 while (1) {
5615 NewOutTy = (MVT::ValueType)(NewOutTy+1);
5616 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
5617
5618 // If the target supports FP_TO_SINT returning this type, use it.
5619 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5620 default: break;
5621 case TargetLowering::Legal:
5622 if (!TLI.isTypeLegal(NewOutTy))
5623 break; // Can't use this datatype.
5624 // FALL THROUGH.
5625 case TargetLowering::Custom:
5626 OpToUse = ISD::FP_TO_SINT;
5627 break;
5628 }
5629 if (OpToUse) break;
5630
5631 // If the target supports FP_TO_UINT of this type, use it.
5632 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5633 default: break;
5634 case TargetLowering::Legal:
5635 if (!TLI.isTypeLegal(NewOutTy))
5636 break; // Can't use this datatype.
5637 // FALL THROUGH.
5638 case TargetLowering::Custom:
5639 OpToUse = ISD::FP_TO_UINT;
5640 break;
5641 }
5642 if (OpToUse) break;
5643
5644 // Otherwise, try a larger type.
5645 }
5646
Chris Lattner27a6c732007-11-24 07:07:01 +00005647
5648 // Okay, we found the operation and type to use.
5649 SDOperand Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
5650
5651 // If the operation produces an invalid type, it must be custom lowered. Use
5652 // the target lowering hooks to expand it. Just keep the low part of the
5653 // expanded operation, we know that we're truncating anyway.
5654 if (getTypeAction(NewOutTy) == Expand) {
5655 Operation = SDOperand(TLI.ExpandOperationResult(Operation.Val, DAG), 0);
5656 assert(Operation.Val && "Didn't return anything");
5657 }
5658
5659 // Truncate the result of the extended FP_TO_*INT operation to the desired
5660 // size.
5661 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005662}
5663
5664/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5665///
5666SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
5667 MVT::ValueType VT = Op.getValueType();
5668 MVT::ValueType SHVT = TLI.getShiftAmountTy();
5669 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
5670 switch (VT) {
5671 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5672 case MVT::i16:
5673 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5674 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5675 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5676 case MVT::i32:
5677 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5678 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5679 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5680 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5681 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5682 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5683 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5684 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5685 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5686 case MVT::i64:
5687 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5688 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5689 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5690 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5691 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5692 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5693 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5694 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5695 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5696 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5697 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5698 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5699 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5700 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5701 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5702 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5703 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5704 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5705 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5706 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5707 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5708 }
5709}
5710
5711/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5712///
5713SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
5714 switch (Opc) {
5715 default: assert(0 && "Cannot expand this yet!");
5716 case ISD::CTPOP: {
5717 static const uint64_t mask[6] = {
5718 0x5555555555555555ULL, 0x3333333333333333ULL,
5719 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5720 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5721 };
5722 MVT::ValueType VT = Op.getValueType();
5723 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00005724 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005725 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5726 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
5727 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
5728 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5729 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5730 DAG.getNode(ISD::AND, VT,
5731 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5732 }
5733 return Op;
5734 }
5735 case ISD::CTLZ: {
5736 // for now, we do this:
5737 // x = x | (x >> 1);
5738 // x = x | (x >> 2);
5739 // ...
5740 // x = x | (x >>16);
5741 // x = x | (x >>32); // for 64-bit input
5742 // return popcount(~x);
5743 //
5744 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
5745 MVT::ValueType VT = Op.getValueType();
5746 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00005747 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005748 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5749 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5750 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5751 }
5752 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5753 return DAG.getNode(ISD::CTPOP, VT, Op);
5754 }
5755 case ISD::CTTZ: {
5756 // for now, we use: { return popcount(~x & (x - 1)); }
5757 // unless the target has ctlz but not ctpop, in which case we use:
5758 // { return 32 - nlz(~x & (x-1)); }
5759 // see also http://www.hackersdelight.org/HDcode/ntz.cc
5760 MVT::ValueType VT = Op.getValueType();
5761 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
5762 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
5763 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5764 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5765 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5766 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5767 TLI.isOperationLegal(ISD::CTLZ, VT))
5768 return DAG.getNode(ISD::SUB, VT,
Dan Gohmanb55757e2007-05-18 17:52:13 +00005769 DAG.getConstant(MVT::getSizeInBits(VT), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005770 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5771 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5772 }
5773 }
5774}
Chris Lattnere34b3962005-01-19 04:19:40 +00005775
Chris Lattner3e928bb2005-01-07 07:47:09 +00005776/// ExpandOp - Expand the specified SDOperand into its two component pieces
5777/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5778/// LegalizeNodes map is filled in for any results that are not expanded, the
5779/// ExpandedNodes map is filled in for any results that are expanded, and the
5780/// Lo/Hi values are returned.
5781void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
5782 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00005783 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005784 SDNode *Node = Op.Val;
5785 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005786 assert(((MVT::isInteger(NVT) && NVT < VT) || MVT::isFloatingPoint(VT) ||
Dan Gohman7f321562007-06-25 16:23:39 +00005787 MVT::isVector(VT)) &&
Chris Lattner3e928bb2005-01-07 07:47:09 +00005788 "Cannot expand to FP value or to larger int value!");
5789
Chris Lattner6fdcb252005-09-02 20:32:45 +00005790 // See if we already expanded it.
Roman Levenstein9cac5252008-04-16 16:15:27 +00005791 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00005792 = ExpandedNodes.find(Op);
5793 if (I != ExpandedNodes.end()) {
5794 Lo = I->second.first;
5795 Hi = I->second.second;
5796 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005797 }
5798
Chris Lattner3e928bb2005-01-07 07:47:09 +00005799 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005800 case ISD::CopyFromReg:
5801 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005802 case ISD::FP_ROUND_INREG:
5803 if (VT == MVT::ppcf128 &&
5804 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5805 TargetLowering::Custom) {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005806 SDOperand SrcLo, SrcHi, Src;
5807 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5808 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
5809 SDOperand Result = TLI.LowerOperation(
5810 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005811 assert(Result.Val->getOpcode() == ISD::BUILD_PAIR);
5812 Lo = Result.Val->getOperand(0);
5813 Hi = Result.Val->getOperand(1);
5814 break;
5815 }
5816 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00005817 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005818#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005819 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005820#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00005821 assert(0 && "Do not know how to expand this operator!");
5822 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00005823 case ISD::EXTRACT_ELEMENT:
5824 ExpandOp(Node->getOperand(0), Lo, Hi);
5825 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
5826 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00005827 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00005828 case ISD::EXTRACT_VECTOR_ELT:
5829 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5830 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5831 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5832 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005833 case ISD::UNDEF:
Evan Chengaa975c12006-12-16 02:20:50 +00005834 NVT = TLI.getTypeToExpandTo(VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005835 Lo = DAG.getNode(ISD::UNDEF, NVT);
5836 Hi = DAG.getNode(ISD::UNDEF, NVT);
5837 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005838 case ISD::Constant: {
Dan Gohman050f5502008-03-03 22:20:46 +00005839 unsigned NVTBits = MVT::getSizeInBits(NVT);
5840 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5841 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5842 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005843 break;
5844 }
Evan Cheng00495212006-12-12 21:32:44 +00005845 case ISD::ConstantFP: {
5846 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00005847 if (CFP->getValueType(0) == MVT::ppcf128) {
5848 APInt api = CFP->getValueAPF().convertToAPInt();
5849 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5850 MVT::f64);
5851 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5852 MVT::f64);
5853 break;
5854 }
Evan Cheng279101e2006-12-12 22:19:28 +00005855 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005856 if (getTypeAction(Lo.getValueType()) == Expand)
5857 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005858 break;
5859 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005860 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005861 // Return the operands.
5862 Lo = Node->getOperand(0);
5863 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005864 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005865
5866 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00005867 if (Node->getNumValues() == 1) {
5868 ExpandOp(Op.getOperand(0), Lo, Hi);
5869 break;
5870 }
Chris Lattner27a6c732007-11-24 07:07:01 +00005871 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
5872 assert(Op.ResNo == 0 && Node->getNumValues() == 2 &&
5873 Op.getValue(1).getValueType() == MVT::Other &&
5874 "unhandled MERGE_VALUES");
5875 ExpandOp(Op.getOperand(0), Lo, Hi);
5876 // Remember that we legalized the chain.
5877 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5878 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005879
5880 case ISD::SIGN_EXTEND_INREG:
5881 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005882 // sext_inreg the low part if needed.
5883 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5884
5885 // The high part gets the sign extension from the lo-part. This handles
5886 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005887 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5888 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
5889 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005890 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005891
Nate Begemand88fc032006-01-14 03:14:10 +00005892 case ISD::BSWAP: {
5893 ExpandOp(Node->getOperand(0), Lo, Hi);
5894 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
5895 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5896 Lo = TempLo;
5897 break;
5898 }
5899
Chris Lattneredb1add2005-05-11 04:51:16 +00005900 case ISD::CTPOP:
5901 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005902 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5903 DAG.getNode(ISD::CTPOP, NVT, Lo),
5904 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005905 Hi = DAG.getConstant(0, NVT);
5906 break;
5907
Chris Lattner39a8f332005-05-12 19:05:01 +00005908 case ISD::CTLZ: {
5909 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005910 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005911 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5912 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Scott Michel5b8f82e2008-03-10 15:42:14 +00005913 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005914 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005915 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
5916 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5917
5918 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5919 Hi = DAG.getConstant(0, NVT);
5920 break;
5921 }
5922
5923 case ISD::CTTZ: {
5924 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005925 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005926 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5927 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Scott Michel5b8f82e2008-03-10 15:42:14 +00005928 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005929 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005930 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
5931 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5932
5933 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5934 Hi = DAG.getConstant(0, NVT);
5935 break;
5936 }
Chris Lattneredb1add2005-05-11 04:51:16 +00005937
Nate Begemanacc398c2006-01-25 18:21:52 +00005938 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005939 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5940 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00005941 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5942 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5943
5944 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005945 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00005946 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00005947 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00005948 std::swap(Lo, Hi);
5949 break;
5950 }
5951
Chris Lattner3e928bb2005-01-07 07:47:09 +00005952 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00005953 LoadSDNode *LD = cast<LoadSDNode>(Node);
5954 SDOperand Ch = LD->getChain(); // Legalize the chain.
5955 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
5956 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005957 int SVOffset = LD->getSrcValueOffset();
5958 unsigned Alignment = LD->getAlignment();
5959 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005960
Evan Cheng466685d2006-10-09 20:57:25 +00005961 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005962 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5963 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00005964 if (VT == MVT::f32 || VT == MVT::f64) {
5965 // f32->i32 or f64->i64 one to one expansion.
5966 // Remember that we legalized the chain.
5967 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00005968 // Recursively expand the new load.
5969 if (getTypeAction(NVT) == Expand)
5970 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005971 break;
5972 }
Chris Lattnerec39a452005-01-19 18:02:17 +00005973
Evan Cheng466685d2006-10-09 20:57:25 +00005974 // Increment the pointer to the other half.
5975 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
5976 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00005977 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00005978 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00005979 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005980 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5981 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00005982
Evan Cheng466685d2006-10-09 20:57:25 +00005983 // Build a factor node to remember that this load is independent of the
5984 // other one.
5985 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5986 Hi.getValue(1));
5987
5988 // Remember that we legalized the chain.
5989 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00005990 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00005991 std::swap(Lo, Hi);
5992 } else {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005993 MVT::ValueType EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00005994
Dale Johannesenb6210fc2007-10-19 20:29:00 +00005995 if ((VT == MVT::f64 && EVT == MVT::f32) ||
5996 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00005997 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
5998 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005999 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00006000 // Remember that we legalized the chain.
6001 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
6002 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
6003 break;
6004 }
Evan Cheng466685d2006-10-09 20:57:25 +00006005
6006 if (EVT == NVT)
6007 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006008 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006009 else
6010 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006011 SVOffset, EVT, isVolatile,
6012 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006013
6014 // Remember that we legalized the chain.
6015 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
6016
6017 if (ExtType == ISD::SEXTLOAD) {
6018 // The high part is obtained by SRA'ing all but one of the bits of the
6019 // lo part.
6020 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
6021 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6022 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6023 } else if (ExtType == ISD::ZEXTLOAD) {
6024 // The high part is just a zero.
6025 Hi = DAG.getConstant(0, NVT);
6026 } else /* if (ExtType == ISD::EXTLOAD) */ {
6027 // The high part is undefined.
6028 Hi = DAG.getNode(ISD::UNDEF, NVT);
6029 }
6030 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006031 break;
6032 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006033 case ISD::AND:
6034 case ISD::OR:
6035 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
6036 SDOperand LL, LH, RL, RH;
6037 ExpandOp(Node->getOperand(0), LL, LH);
6038 ExpandOp(Node->getOperand(1), RL, RH);
6039 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
6040 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
6041 break;
6042 }
6043 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00006044 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006045 ExpandOp(Node->getOperand(1), LL, LH);
6046 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006047 if (getTypeAction(NVT) == Expand)
6048 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00006049 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006050 if (VT != MVT::f32)
6051 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006052 break;
6053 }
Nate Begeman9373a812005-08-10 20:51:12 +00006054 case ISD::SELECT_CC: {
6055 SDOperand TL, TH, FL, FH;
6056 ExpandOp(Node->getOperand(2), TL, TH);
6057 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006058 if (getTypeAction(NVT) == Expand)
6059 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00006060 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6061 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006062 if (VT != MVT::f32)
6063 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6064 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006065 break;
6066 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006067 case ISD::ANY_EXTEND:
6068 // The low part is any extension of the input (which degenerates to a copy).
6069 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
6070 // The high part is undefined.
6071 Hi = DAG.getNode(ISD::UNDEF, NVT);
6072 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006073 case ISD::SIGN_EXTEND: {
6074 // The low part is just a sign extension of the input (which degenerates to
6075 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006076 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006077
Chris Lattner3e928bb2005-01-07 07:47:09 +00006078 // The high part is obtained by SRA'ing all but one of the bits of the lo
6079 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00006080 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner8137c9e2006-01-28 05:07:51 +00006081 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6082 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006083 break;
6084 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006085 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006086 // The low part is just a zero extension of the input (which degenerates to
6087 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006088 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006089
Chris Lattner3e928bb2005-01-07 07:47:09 +00006090 // The high part is just a zero.
6091 Hi = DAG.getConstant(0, NVT);
6092 break;
Chris Lattner35481892005-12-23 00:16:34 +00006093
Chris Lattner4c948eb2007-02-13 23:55:16 +00006094 case ISD::TRUNCATE: {
6095 // The input value must be larger than this value. Expand *it*.
6096 SDOperand NewLo;
6097 ExpandOp(Node->getOperand(0), NewLo, Hi);
6098
6099 // The low part is now either the right size, or it is closer. If not the
6100 // right size, make an illegal truncate so we recursively expand it.
6101 if (NewLo.getValueType() != Node->getValueType(0))
6102 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6103 ExpandOp(NewLo, Lo, Hi);
6104 break;
6105 }
6106
Chris Lattner35481892005-12-23 00:16:34 +00006107 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006108 SDOperand Tmp;
6109 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6110 // If the target wants to, allow it to lower this itself.
6111 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6112 case Expand: assert(0 && "cannot expand FP!");
6113 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6114 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6115 }
6116 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6117 }
6118
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006119 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006120 if (VT == MVT::f32 || VT == MVT::f64) {
6121 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006122 if (getTypeAction(NVT) == Expand)
6123 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006124 break;
6125 }
6126
6127 // If source operand will be expanded to the same type as VT, i.e.
6128 // i64 <- f64, i32 <- f32, expand the source operand instead.
6129 MVT::ValueType VT0 = Node->getOperand(0).getValueType();
6130 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6131 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006132 break;
6133 }
6134
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006135 // Turn this into a load/store pair by default.
6136 if (Tmp.Val == 0)
Chris Lattner1401d152008-01-16 07:45:30 +00006137 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006138
Chris Lattner35481892005-12-23 00:16:34 +00006139 ExpandOp(Tmp, Lo, Hi);
6140 break;
6141 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006142
Chris Lattner27a6c732007-11-24 07:07:01 +00006143 case ISD::READCYCLECOUNTER: {
Chris Lattner308575b2005-11-20 22:56:56 +00006144 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6145 TargetLowering::Custom &&
6146 "Must custom expand ReadCycleCounter");
Chris Lattner27a6c732007-11-24 07:07:01 +00006147 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6148 assert(Tmp.Val && "Node must be custom expanded!");
6149 ExpandOp(Tmp.getValue(0), Lo, Hi);
Chris Lattner308575b2005-11-20 22:56:56 +00006150 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006151 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006152 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006153 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006154
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006155 case ISD::ATOMIC_LCS: {
6156 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6157 assert(Tmp.Val && "Node must be custom expanded!");
6158 ExpandOp(Tmp.getValue(0), Lo, Hi);
6159 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
6160 LegalizeOp(Tmp.getValue(1)));
6161 break;
6162 }
6163
6164
6165
Chris Lattner4e6c7462005-01-08 19:27:05 +00006166 // These operators cannot be expanded directly, emit them as calls to
6167 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006168 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006169 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00006170 SDOperand Op;
6171 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6172 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006173 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6174 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006175 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006176
Chris Lattnerf20d1832005-07-30 01:40:57 +00006177 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6178
Chris Lattner80a3e942005-07-29 00:33:32 +00006179 // Now that the custom expander is done, expand the result, which is still
6180 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00006181 if (Op.Val) {
6182 ExpandOp(Op, Lo, Hi);
6183 break;
6184 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006185 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006186
Dale Johannesen161e8972007-10-05 20:04:43 +00006187 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmana2e94852008-03-10 23:03:31 +00006188 if (VT == MVT::i64) {
6189 if (Node->getOperand(0).getValueType() == MVT::f32)
6190 LC = RTLIB::FPTOSINT_F32_I64;
6191 else if (Node->getOperand(0).getValueType() == MVT::f64)
6192 LC = RTLIB::FPTOSINT_F64_I64;
6193 else if (Node->getOperand(0).getValueType() == MVT::f80)
6194 LC = RTLIB::FPTOSINT_F80_I64;
6195 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6196 LC = RTLIB::FPTOSINT_PPCF128_I64;
Duncan Sands460a14e2008-04-12 17:14:18 +00006197 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006198 } else if (VT == MVT::i128) {
6199 if (Node->getOperand(0).getValueType() == MVT::f32)
6200 LC = RTLIB::FPTOSINT_F32_I128;
6201 else if (Node->getOperand(0).getValueType() == MVT::f64)
6202 LC = RTLIB::FPTOSINT_F64_I128;
6203 else if (Node->getOperand(0).getValueType() == MVT::f80)
6204 LC = RTLIB::FPTOSINT_F80_I128;
6205 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6206 LC = RTLIB::FPTOSINT_PPCF128_I128;
Duncan Sands460a14e2008-04-12 17:14:18 +00006207 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006208 } else {
6209 assert(0 && "Unexpected uint-to-fp conversion!");
6210 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006211 break;
Evan Cheng56966222007-01-12 02:11:51 +00006212 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006213
Evan Cheng56966222007-01-12 02:11:51 +00006214 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006215 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006216 SDOperand Op;
6217 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6218 case Expand: assert(0 && "cannot expand FP!");
6219 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6220 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6221 }
6222
6223 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6224
6225 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00006226 if (Op.Val) {
6227 ExpandOp(Op, Lo, Hi);
6228 break;
6229 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006230 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006231
Evan Chengdaccea182007-10-05 01:09:32 +00006232 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmana2e94852008-03-10 23:03:31 +00006233 if (VT == MVT::i64) {
6234 if (Node->getOperand(0).getValueType() == MVT::f32)
6235 LC = RTLIB::FPTOUINT_F32_I64;
6236 else if (Node->getOperand(0).getValueType() == MVT::f64)
6237 LC = RTLIB::FPTOUINT_F64_I64;
6238 else if (Node->getOperand(0).getValueType() == MVT::f80)
6239 LC = RTLIB::FPTOUINT_F80_I64;
6240 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6241 LC = RTLIB::FPTOUINT_PPCF128_I64;
Duncan Sands460a14e2008-04-12 17:14:18 +00006242 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006243 } else if (VT == MVT::i128) {
6244 if (Node->getOperand(0).getValueType() == MVT::f32)
6245 LC = RTLIB::FPTOUINT_F32_I128;
6246 else if (Node->getOperand(0).getValueType() == MVT::f64)
6247 LC = RTLIB::FPTOUINT_F64_I128;
6248 else if (Node->getOperand(0).getValueType() == MVT::f80)
6249 LC = RTLIB::FPTOUINT_F80_I128;
6250 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6251 LC = RTLIB::FPTOUINT_PPCF128_I128;
Duncan Sands460a14e2008-04-12 17:14:18 +00006252 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006253 } else {
6254 assert(0 && "Unexpected uint-to-fp conversion!");
6255 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006256 break;
Evan Cheng56966222007-01-12 02:11:51 +00006257 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006258
Evan Cheng05a2d562006-01-09 18:31:59 +00006259 case ISD::SHL: {
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::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006263 SDOperand Op = DAG.getNode(ISD::SHL, 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 Lattner79980b02006-09-13 03:50:39 +00006273 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6274 // this X << 1 as X+X.
6275 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman002e5d02008-03-13 22:13:53 +00006276 if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
Chris Lattner79980b02006-09-13 03:50:39 +00006277 TLI.isOperationLegal(ISD::ADDE, NVT)) {
6278 SDOperand LoOps[2], HiOps[3];
6279 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6280 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6281 LoOps[1] = LoOps[0];
6282 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6283
6284 HiOps[1] = HiOps[0];
6285 HiOps[2] = Lo.getValue(1);
6286 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6287 break;
6288 }
6289 }
6290
Chris Lattnere34b3962005-01-19 04:19:40 +00006291 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006292 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006293 break;
Chris Lattner47599822005-04-02 03:38:53 +00006294
6295 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006296 TargetLowering::LegalizeAction Action =
6297 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6298 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6299 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006300 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006301 break;
6302 }
6303
Chris Lattnere34b3962005-01-19 04:19:40 +00006304 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006305 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006306 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006307 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006308
Evan Cheng05a2d562006-01-09 18:31:59 +00006309 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006310 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006311 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006312 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006313 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006314 Op = TLI.LowerOperation(Op, DAG);
6315 if (Op.Val) {
6316 // Now that the custom expander is done, expand the result, which is
6317 // still VT.
6318 ExpandOp(Op, Lo, Hi);
6319 break;
6320 }
6321 }
6322
Chris Lattnere34b3962005-01-19 04:19:40 +00006323 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006324 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006325 break;
Chris Lattner47599822005-04-02 03:38:53 +00006326
6327 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006328 TargetLowering::LegalizeAction Action =
6329 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6330 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6331 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006332 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006333 break;
6334 }
6335
Chris Lattnere34b3962005-01-19 04:19:40 +00006336 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006337 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006338 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006339 }
6340
6341 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006342 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006343 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006344 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006345 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006346 Op = TLI.LowerOperation(Op, DAG);
6347 if (Op.Val) {
6348 // Now that the custom expander is done, expand the result, which is
6349 // still VT.
6350 ExpandOp(Op, Lo, Hi);
6351 break;
6352 }
6353 }
6354
Chris Lattnere34b3962005-01-19 04:19:40 +00006355 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006356 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006357 break;
Chris Lattner47599822005-04-02 03:38:53 +00006358
6359 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006360 TargetLowering::LegalizeAction Action =
6361 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6362 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6363 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006364 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006365 break;
6366 }
6367
Chris Lattnere34b3962005-01-19 04:19:40 +00006368 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006369 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006370 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006371 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006372
Misha Brukmanedf128a2005-04-21 22:36:52 +00006373 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006374 case ISD::SUB: {
6375 // If the target wants to custom expand this, let them.
6376 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6377 TargetLowering::Custom) {
6378 Op = TLI.LowerOperation(Op, DAG);
6379 if (Op.Val) {
6380 ExpandOp(Op, Lo, Hi);
6381 break;
6382 }
6383 }
6384
6385 // Expand the subcomponents.
6386 SDOperand LHSL, LHSH, RHSL, RHSH;
6387 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6388 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00006389 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6390 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006391 LoOps[0] = LHSL;
6392 LoOps[1] = RHSL;
6393 HiOps[0] = LHSH;
6394 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006395 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00006396 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006397 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006398 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006399 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00006400 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006401 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006402 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006403 }
Chris Lattner84f67882005-01-20 18:52:28 +00006404 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006405 }
Chris Lattnerb429f732007-05-17 18:15:41 +00006406
6407 case ISD::ADDC:
6408 case ISD::SUBC: {
6409 // Expand the subcomponents.
6410 SDOperand LHSL, LHSH, RHSL, RHSH;
6411 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6412 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6413 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6414 SDOperand LoOps[2] = { LHSL, RHSL };
6415 SDOperand HiOps[3] = { LHSH, RHSH };
6416
6417 if (Node->getOpcode() == ISD::ADDC) {
6418 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6419 HiOps[2] = Lo.getValue(1);
6420 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6421 } else {
6422 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6423 HiOps[2] = Lo.getValue(1);
6424 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6425 }
6426 // Remember that we legalized the flag.
6427 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6428 break;
6429 }
6430 case ISD::ADDE:
6431 case ISD::SUBE: {
6432 // Expand the subcomponents.
6433 SDOperand LHSL, LHSH, RHSL, RHSH;
6434 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6435 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6436 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6437 SDOperand LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6438 SDOperand HiOps[3] = { LHSH, RHSH };
6439
6440 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6441 HiOps[2] = Lo.getValue(1);
6442 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6443
6444 // Remember that we legalized the flag.
6445 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6446 break;
6447 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006448 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006449 // If the target wants to custom expand this, let them.
6450 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00006451 SDOperand New = TLI.LowerOperation(Op, DAG);
6452 if (New.Val) {
6453 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006454 break;
6455 }
6456 }
6457
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006458 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6459 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00006460 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6461 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6462 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Nate Begemanc7c16572005-04-11 03:01:51 +00006463 SDOperand LL, LH, RL, RH;
6464 ExpandOp(Node->getOperand(0), LL, LH);
6465 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006466 unsigned OuterBitSize = Op.getValueSizeInBits();
6467 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00006468 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6469 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00006470 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6471 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6472 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00006473 // The inputs are both zero-extended.
6474 if (HasUMUL_LOHI) {
6475 // We can emit a umul_lohi.
6476 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6477 Hi = SDOperand(Lo.Val, 1);
6478 break;
6479 }
6480 if (HasMULHU) {
6481 // We can emit a mulhu+mul.
6482 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6483 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6484 break;
6485 }
Dan Gohman525178c2007-10-08 18:33:35 +00006486 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006487 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00006488 // The input values are both sign-extended.
6489 if (HasSMUL_LOHI) {
6490 // We can emit a smul_lohi.
6491 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6492 Hi = SDOperand(Lo.Val, 1);
6493 break;
6494 }
6495 if (HasMULHS) {
6496 // We can emit a mulhs+mul.
6497 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6498 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6499 break;
6500 }
6501 }
6502 if (HasUMUL_LOHI) {
6503 // Lo,Hi = umul LHS, RHS.
6504 SDOperand UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
6505 DAG.getVTList(NVT, NVT), LL, RL);
6506 Lo = UMulLOHI;
6507 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00006508 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6509 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6510 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6511 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00006512 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00006513 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00006514 if (HasMULHU) {
6515 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6516 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6517 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6518 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6519 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6520 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6521 break;
6522 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006523 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006524
Dan Gohman525178c2007-10-08 18:33:35 +00006525 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006526 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00006527 break;
6528 }
Evan Cheng56966222007-01-12 02:11:51 +00006529 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006530 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006531 break;
6532 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006533 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006534 break;
6535 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006536 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006537 break;
6538 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006539 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006540 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00006541
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006542 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00006543 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6544 RTLIB::ADD_F64,
6545 RTLIB::ADD_F80,
6546 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006547 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006548 break;
6549 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00006550 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6551 RTLIB::SUB_F64,
6552 RTLIB::SUB_F80,
6553 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006554 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006555 break;
6556 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00006557 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6558 RTLIB::MUL_F64,
6559 RTLIB::MUL_F80,
6560 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006561 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006562 break;
6563 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006564 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6565 RTLIB::DIV_F64,
6566 RTLIB::DIV_F80,
6567 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006568 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006569 break;
6570 case ISD::FP_EXTEND:
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006571 if (VT == MVT::ppcf128) {
6572 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6573 Node->getOperand(0).getValueType()==MVT::f64);
6574 const uint64_t zero = 0;
6575 if (Node->getOperand(0).getValueType()==MVT::f32)
6576 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6577 else
6578 Hi = Node->getOperand(0);
6579 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6580 break;
6581 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006582 Lo = ExpandLibCall(RTLIB::FPEXT_F32_F64, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006583 break;
6584 case ISD::FP_ROUND:
Duncan Sands460a14e2008-04-12 17:14:18 +00006585 Lo = ExpandLibCall(RTLIB::FPROUND_F64_F32, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006586 break;
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006587 case ISD::FPOWI:
Duncan Sands460a14e2008-04-12 17:14:18 +00006588 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::POWI_F32,
6589 RTLIB::POWI_F64,
6590 RTLIB::POWI_F80,
6591 RTLIB::POWI_PPCF128),
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006592 Node, false, Hi);
6593 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006594 case ISD::FSQRT:
6595 case ISD::FSIN:
6596 case ISD::FCOS: {
Evan Cheng56966222007-01-12 02:11:51 +00006597 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006598 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00006599 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00006600 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6601 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006602 break;
6603 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00006604 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6605 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006606 break;
6607 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00006608 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6609 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006610 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006611 default: assert(0 && "Unreachable!");
6612 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006613 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00006614 break;
6615 }
Evan Cheng966bf242006-12-16 00:52:40 +00006616 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006617 if (VT == MVT::ppcf128) {
6618 SDOperand Tmp;
6619 ExpandOp(Node->getOperand(0), Lo, Tmp);
6620 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6621 // lo = hi==fabs(hi) ? lo : -lo;
6622 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6623 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6624 DAG.getCondCode(ISD::SETEQ));
6625 break;
6626 }
Evan Cheng966bf242006-12-16 00:52:40 +00006627 SDOperand Mask = (VT == MVT::f64)
6628 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6629 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6630 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6631 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6632 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6633 if (getTypeAction(NVT) == Expand)
6634 ExpandOp(Lo, Lo, Hi);
6635 break;
6636 }
6637 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006638 if (VT == MVT::ppcf128) {
6639 ExpandOp(Node->getOperand(0), Lo, Hi);
6640 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6641 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6642 break;
6643 }
Evan Cheng966bf242006-12-16 00:52:40 +00006644 SDOperand Mask = (VT == MVT::f64)
6645 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6646 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6647 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6648 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6649 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6650 if (getTypeAction(NVT) == Expand)
6651 ExpandOp(Lo, Lo, Hi);
6652 break;
6653 }
Evan Cheng912095b2007-01-04 21:56:39 +00006654 case ISD::FCOPYSIGN: {
6655 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6656 if (getTypeAction(NVT) == Expand)
6657 ExpandOp(Lo, Lo, Hi);
6658 break;
6659 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006660 case ISD::SINT_TO_FP:
6661 case ISD::UINT_TO_FP: {
6662 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
6663 MVT::ValueType SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00006664
6665 // Promote the operand if needed. Do this before checking for
6666 // ppcf128 so conversions of i16 and i8 work.
6667 if (getTypeAction(SrcVT) == Promote) {
6668 SDOperand Tmp = PromoteOp(Node->getOperand(0));
6669 Tmp = isSigned
6670 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6671 DAG.getValueType(SrcVT))
6672 : DAG.getZeroExtendInReg(Tmp, SrcVT);
6673 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
6674 SrcVT = Node->getOperand(0).getValueType();
6675 }
6676
Dan Gohmana2e94852008-03-10 23:03:31 +00006677 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006678 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006679 if (isSigned) {
6680 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6681 Node->getOperand(0)));
6682 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6683 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006684 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006685 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6686 Node->getOperand(0)));
6687 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6688 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00006689 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006690 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6691 DAG.getConstant(0, MVT::i32),
6692 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6693 DAG.getConstantFP(
6694 APFloat(APInt(128, 2, TwoE32)),
6695 MVT::ppcf128)),
6696 Hi,
6697 DAG.getCondCode(ISD::SETLT)),
6698 Lo, Hi);
6699 }
6700 break;
6701 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00006702 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6703 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006704 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen6e63e092007-10-12 17:52:03 +00006705 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6706 Lo, Hi);
6707 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6708 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6709 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6710 DAG.getConstant(0, MVT::i64),
6711 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6712 DAG.getConstantFP(
6713 APFloat(APInt(128, 2, TwoE64)),
6714 MVT::ppcf128)),
6715 Hi,
6716 DAG.getCondCode(ISD::SETLT)),
6717 Lo, Hi);
6718 break;
6719 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006720
Dan Gohmana2e94852008-03-10 23:03:31 +00006721 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6722 Node->getOperand(0));
Evan Cheng110cf482008-04-01 01:50:16 +00006723 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00006724 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00006725 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00006726 break;
6727 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00006728 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006729
Chris Lattner83397362005-12-21 18:02:52 +00006730 // Make sure the resultant values have been legalized themselves, unless this
6731 // is a type that requires multi-step expansion.
6732 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6733 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00006734 if (Hi.Val)
6735 // Don't legalize the high part if it is expanded to a single node.
6736 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00006737 }
Evan Cheng05a2d562006-01-09 18:31:59 +00006738
6739 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00006740 bool isNew = ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi)));
Evan Cheng05a2d562006-01-09 18:31:59 +00006741 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006742}
6743
Dan Gohman7f321562007-06-25 16:23:39 +00006744/// SplitVectorOp - Given an operand of vector type, break it down into
6745/// two smaller values, still of vector type.
Chris Lattnerc7029802006-03-18 01:44:44 +00006746void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
6747 SDOperand &Hi) {
Dan Gohman7f321562007-06-25 16:23:39 +00006748 assert(MVT::isVector(Op.getValueType()) && "Cannot split non-vector type!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006749 SDNode *Node = Op.Val;
Dan Gohmane40c7b02007-09-24 15:54:53 +00006750 unsigned NumElements = MVT::getVectorNumElements(Op.getValueType());
Chris Lattnerc7029802006-03-18 01:44:44 +00006751 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00006752
Dan Gohmane40c7b02007-09-24 15:54:53 +00006753 MVT::ValueType NewEltVT = MVT::getVectorElementType(Op.getValueType());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006754
6755 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6756 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6757
6758 MVT::ValueType NewVT_Lo = MVT::getVectorType(NewEltVT, NewNumElts_Lo);
6759 MVT::ValueType NewVT_Hi = MVT::getVectorType(NewEltVT, NewNumElts_Hi);
6760
Chris Lattnerc7029802006-03-18 01:44:44 +00006761 // See if we already split it.
6762 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
6763 = SplitNodes.find(Op);
6764 if (I != SplitNodes.end()) {
6765 Lo = I->second.first;
6766 Hi = I->second.second;
6767 return;
6768 }
6769
6770 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006771 default:
6772#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006773 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006774#endif
6775 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00006776 case ISD::UNDEF:
6777 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6778 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6779 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006780 case ISD::BUILD_PAIR:
6781 Lo = Node->getOperand(0);
6782 Hi = Node->getOperand(1);
6783 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00006784 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00006785 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
6786 SplitVectorOp(Node->getOperand(0), Lo, Hi);
6787 unsigned Index = Idx->getValue();
6788 SDOperand ScalarOp = Node->getOperand(1);
6789 if (Index < NewNumElts_Lo)
6790 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
6791 DAG.getIntPtrConstant(Index));
6792 else
6793 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6794 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
6795 break;
6796 }
6797 SDOperand Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
6798 Node->getOperand(1),
6799 Node->getOperand(2));
6800 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00006801 break;
6802 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00006803 case ISD::VECTOR_SHUFFLE: {
6804 // Build the low part.
6805 SDOperand Mask = Node->getOperand(2);
6806 SmallVector<SDOperand, 8> Ops;
6807 MVT::ValueType PtrVT = TLI.getPointerTy();
6808
6809 // Insert all of the elements from the input that are needed. We use
6810 // buildvector of extractelement here because the input vectors will have
6811 // to be legalized, so this makes the code simpler.
6812 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Nate Begeman5922f562008-03-14 00:53:31 +00006813 SDOperand IdxNode = Mask.getOperand(i);
6814 if (IdxNode.getOpcode() == ISD::UNDEF) {
6815 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6816 continue;
6817 }
6818 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006819 SDOperand InVec = Node->getOperand(0);
6820 if (Idx >= NumElements) {
6821 InVec = Node->getOperand(1);
6822 Idx -= NumElements;
6823 }
6824 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6825 DAG.getConstant(Idx, PtrVT)));
6826 }
6827 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6828 Ops.clear();
6829
6830 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Nate Begeman5922f562008-03-14 00:53:31 +00006831 SDOperand IdxNode = Mask.getOperand(i);
6832 if (IdxNode.getOpcode() == ISD::UNDEF) {
6833 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6834 continue;
6835 }
6836 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006837 SDOperand InVec = Node->getOperand(0);
6838 if (Idx >= NumElements) {
6839 InVec = Node->getOperand(1);
6840 Idx -= NumElements;
6841 }
6842 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6843 DAG.getConstant(Idx, PtrVT)));
6844 }
6845 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6846 break;
6847 }
Dan Gohman7f321562007-06-25 16:23:39 +00006848 case ISD::BUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006849 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00006850 Node->op_begin()+NewNumElts_Lo);
6851 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006852
Nate Begeman5db1afb2007-11-15 21:15:26 +00006853 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00006854 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006855 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006856 break;
6857 }
Dan Gohman7f321562007-06-25 16:23:39 +00006858 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00006859 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00006860 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6861 if (NewNumSubvectors == 1) {
6862 Lo = Node->getOperand(0);
6863 Hi = Node->getOperand(1);
6864 } else {
6865 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
6866 Node->op_begin()+NewNumSubvectors);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006867 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00006868
Dan Gohman7f321562007-06-25 16:23:39 +00006869 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumSubvectors,
6870 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006871 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00006872 }
Dan Gohman65956352007-06-13 15:12:02 +00006873 break;
6874 }
Dan Gohmanc6230962007-10-17 14:48:28 +00006875 case ISD::SELECT: {
6876 SDOperand Cond = Node->getOperand(0);
6877
6878 SDOperand LL, LH, RL, RH;
6879 SplitVectorOp(Node->getOperand(1), LL, LH);
6880 SplitVectorOp(Node->getOperand(2), RL, RH);
6881
6882 if (MVT::isVector(Cond.getValueType())) {
6883 // Handle a vector merge.
6884 SDOperand CL, CH;
6885 SplitVectorOp(Cond, CL, CH);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006886 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6887 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006888 } else {
6889 // Handle a simple select with vector operands.
Nate Begeman5db1afb2007-11-15 21:15:26 +00006890 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6891 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006892 }
6893 break;
6894 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00006895 case ISD::VSETCC: {
6896 SDOperand LL, LH, RL, RH;
6897 SplitVectorOp(Node->getOperand(0), LL, LH);
6898 SplitVectorOp(Node->getOperand(1), RL, RH);
6899 Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2));
6900 Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2));
6901 break;
6902 }
Dan Gohman7f321562007-06-25 16:23:39 +00006903 case ISD::ADD:
6904 case ISD::SUB:
6905 case ISD::MUL:
6906 case ISD::FADD:
6907 case ISD::FSUB:
6908 case ISD::FMUL:
6909 case ISD::SDIV:
6910 case ISD::UDIV:
6911 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00006912 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006913 case ISD::AND:
6914 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00006915 case ISD::XOR:
6916 case ISD::UREM:
6917 case ISD::SREM:
6918 case ISD::FREM: {
Chris Lattnerc7029802006-03-18 01:44:44 +00006919 SDOperand LL, LH, RL, RH;
6920 SplitVectorOp(Node->getOperand(0), LL, LH);
6921 SplitVectorOp(Node->getOperand(1), RL, RH);
6922
Nate Begeman5db1afb2007-11-15 21:15:26 +00006923 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
6924 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00006925 break;
6926 }
Dan Gohman82669522007-10-11 23:57:53 +00006927 case ISD::FPOWI: {
6928 SDOperand L, H;
6929 SplitVectorOp(Node->getOperand(0), L, H);
6930
Nate Begeman5db1afb2007-11-15 21:15:26 +00006931 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
6932 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00006933 break;
6934 }
6935 case ISD::CTTZ:
6936 case ISD::CTLZ:
6937 case ISD::CTPOP:
6938 case ISD::FNEG:
6939 case ISD::FABS:
6940 case ISD::FSQRT:
6941 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00006942 case ISD::FCOS:
6943 case ISD::FP_TO_SINT:
6944 case ISD::FP_TO_UINT:
6945 case ISD::SINT_TO_FP:
6946 case ISD::UINT_TO_FP: {
Dan Gohman82669522007-10-11 23:57:53 +00006947 SDOperand L, H;
6948 SplitVectorOp(Node->getOperand(0), L, H);
6949
Nate Begeman5db1afb2007-11-15 21:15:26 +00006950 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
6951 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00006952 break;
6953 }
Dan Gohman7f321562007-06-25 16:23:39 +00006954 case ISD::LOAD: {
6955 LoadSDNode *LD = cast<LoadSDNode>(Node);
6956 SDOperand Ch = LD->getChain();
6957 SDOperand Ptr = LD->getBasePtr();
6958 const Value *SV = LD->getSrcValue();
6959 int SVOffset = LD->getSrcValueOffset();
6960 unsigned Alignment = LD->getAlignment();
6961 bool isVolatile = LD->isVolatile();
6962
Nate Begeman5db1afb2007-11-15 21:15:26 +00006963 Lo = DAG.getLoad(NewVT_Lo, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
6964 unsigned IncrementSize = NewNumElts_Lo * MVT::getSizeInBits(NewEltVT)/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00006965 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006966 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006967 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006968 Alignment = MinAlign(Alignment, IncrementSize);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006969 Hi = DAG.getLoad(NewVT_Hi, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00006970
6971 // Build a factor node to remember that this load is independent of the
6972 // other one.
6973 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
6974 Hi.getValue(1));
6975
6976 // Remember that we legalized the chain.
6977 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00006978 break;
6979 }
Dan Gohman7f321562007-06-25 16:23:39 +00006980 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00006981 // We know the result is a vector. The input may be either a vector or a
6982 // scalar value.
Dan Gohman10a7aa62007-06-29 00:09:08 +00006983 SDOperand InOp = Node->getOperand(0);
6984 if (!MVT::isVector(InOp.getValueType()) ||
6985 MVT::getVectorNumElements(InOp.getValueType()) == 1) {
6986 // The input is a scalar or single-element vector.
6987 // Lower to a store/load so that it can be split.
6988 // FIXME: this could be improved probably.
Chris Lattner85dd3be2007-10-15 17:48:57 +00006989 SDOperand Ptr = DAG.CreateStackTemporary(InOp.getValueType());
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00006990 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(Ptr.Val);
Chris Lattner7692eb42006-03-23 21:16:34 +00006991
Evan Cheng786225a2006-10-05 23:01:46 +00006992 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00006993 InOp, Ptr,
Dan Gohman3069b872008-02-07 18:41:25 +00006994 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00006995 FI->getIndex());
6996 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohman3069b872008-02-07 18:41:25 +00006997 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00006998 FI->getIndex());
Chris Lattner7692eb42006-03-23 21:16:34 +00006999 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007000 // Split the vector and convert each of the pieces now.
7001 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007002 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
7003 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007004 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007005 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007006 }
7007
7008 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00007009 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007010 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007011 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007012}
7013
7014
Dan Gohman89b20c02007-06-27 14:06:22 +00007015/// ScalarizeVectorOp - Given an operand of single-element vector type
7016/// (e.g. v1f32), convert it into the equivalent operation that returns a
7017/// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +00007018SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) {
7019 assert(MVT::isVector(Op.getValueType()) &&
7020 "Bad ScalarizeVectorOp invocation!");
Chris Lattnerc7029802006-03-18 01:44:44 +00007021 SDNode *Node = Op.Val;
Dan Gohman7f321562007-06-25 16:23:39 +00007022 MVT::ValueType NewVT = MVT::getVectorElementType(Op.getValueType());
7023 assert(MVT::getVectorNumElements(Op.getValueType()) == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00007024
Dan Gohman7f321562007-06-25 16:23:39 +00007025 // See if we already scalarized it.
7026 std::map<SDOperand, SDOperand>::iterator I = ScalarizedNodes.find(Op);
7027 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00007028
7029 SDOperand Result;
7030 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00007031 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007032#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007033 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007034#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007035 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7036 case ISD::ADD:
7037 case ISD::FADD:
7038 case ISD::SUB:
7039 case ISD::FSUB:
7040 case ISD::MUL:
7041 case ISD::FMUL:
7042 case ISD::SDIV:
7043 case ISD::UDIV:
7044 case ISD::FDIV:
7045 case ISD::SREM:
7046 case ISD::UREM:
7047 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007048 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007049 case ISD::AND:
7050 case ISD::OR:
7051 case ISD::XOR:
7052 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00007053 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007054 ScalarizeVectorOp(Node->getOperand(0)),
7055 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007056 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007057 case ISD::FNEG:
7058 case ISD::FABS:
7059 case ISD::FSQRT:
7060 case ISD::FSIN:
7061 case ISD::FCOS:
7062 Result = DAG.getNode(Node->getOpcode(),
7063 NewVT,
7064 ScalarizeVectorOp(Node->getOperand(0)));
7065 break;
Dan Gohman9e04c822007-10-12 14:13:46 +00007066 case ISD::FPOWI:
7067 Result = DAG.getNode(Node->getOpcode(),
7068 NewVT,
7069 ScalarizeVectorOp(Node->getOperand(0)),
7070 Node->getOperand(1));
7071 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007072 case ISD::LOAD: {
7073 LoadSDNode *LD = cast<LoadSDNode>(Node);
7074 SDOperand Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7075 SDOperand Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00007076
Dan Gohman7f321562007-06-25 16:23:39 +00007077 const Value *SV = LD->getSrcValue();
7078 int SVOffset = LD->getSrcValueOffset();
7079 Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset,
7080 LD->isVolatile(), LD->getAlignment());
7081
Chris Lattnerc7029802006-03-18 01:44:44 +00007082 // Remember that we legalized the chain.
7083 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7084 break;
7085 }
Dan Gohman7f321562007-06-25 16:23:39 +00007086 case ISD::BUILD_VECTOR:
7087 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007088 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007089 case ISD::INSERT_VECTOR_ELT:
7090 // Returning the inserted scalar element.
7091 Result = Node->getOperand(1);
7092 break;
7093 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007094 assert(Node->getOperand(0).getValueType() == NewVT &&
7095 "Concat of non-legal vectors not yet supported!");
7096 Result = Node->getOperand(0);
7097 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007098 case ISD::VECTOR_SHUFFLE: {
7099 // Figure out if the scalar is the LHS or RHS and return it.
7100 SDOperand EltNum = Node->getOperand(2).getOperand(0);
7101 if (cast<ConstantSDNode>(EltNum)->getValue())
7102 Result = ScalarizeVectorOp(Node->getOperand(1));
7103 else
7104 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007105 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007106 }
7107 case ISD::EXTRACT_SUBVECTOR:
7108 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00007109 assert(Result.getValueType() == NewVT);
7110 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007111 case ISD::BIT_CONVERT: {
7112 SDOperand Op0 = Op.getOperand(0);
7113 if (MVT::getVectorNumElements(Op0.getValueType()) == 1)
7114 Op0 = ScalarizeVectorOp(Op0);
7115 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007116 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007117 }
Dan Gohman7f321562007-06-25 16:23:39 +00007118 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007119 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007120 ScalarizeVectorOp(Op.getOperand(1)),
7121 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007122 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007123 case ISD::VSETCC: {
7124 SDOperand Op0 = ScalarizeVectorOp(Op.getOperand(0));
7125 SDOperand Op1 = ScalarizeVectorOp(Op.getOperand(1));
7126 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0), Op0, Op1,
7127 Op.getOperand(2));
7128 Result = DAG.getNode(ISD::SELECT, NewVT, Result,
7129 DAG.getConstant(-1ULL, NewVT),
7130 DAG.getConstant(0ULL, NewVT));
7131 break;
7132 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007133 }
7134
7135 if (TLI.isTypeLegal(NewVT))
7136 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007137 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7138 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007139 return Result;
7140}
7141
Chris Lattner3e928bb2005-01-07 07:47:09 +00007142
7143// SelectionDAG::Legalize - This is the entry point for the file.
7144//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00007145void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00007146 if (ViewLegalizeDAGs) viewGraph();
7147
Chris Lattner3e928bb2005-01-07 07:47:09 +00007148 /// run - This is the main entry point to this class.
7149 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00007150 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00007151}
7152