blob: 5ec74cdc311fd31e581136287ccdf32173e61f75 [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//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
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"
Evan Cheng61bbbab2007-08-16 23:50:06 +000018#include "llvm/Target/TargetFrameInfo.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000019#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000020#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000021#include "llvm/Target/TargetMachine.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000022#include "llvm/Target/TargetOptions.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000023#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000024#include "llvm/Constants.h"
Reid Spencerc1030572007-01-19 21:13:56 +000025#include "llvm/DerivedTypes.h"
Duncan Sandsdc846502007-10-28 12:59:45 +000026#include "llvm/Support/Alignment.h"
Chris Lattner5e46a192006-04-02 03:07:27 +000027#include "llvm/Support/CommandLine.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000028#include "llvm/Support/Compiler.h"
Duncan Sandsdc846502007-10-28 12:59:45 +000029#include "llvm/Support/MathExtras.h"
Chris Lattner79715142007-02-03 01:12:36 +000030#include "llvm/ADT/DenseMap.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000031#include "llvm/ADT/SmallVector.h"
Chris Lattner00755df2007-02-04 00:27:56 +000032#include "llvm/ADT/SmallPtrSet.h"
Evan Cheng033e6812006-03-24 01:17:21 +000033#include <map>
Chris Lattner3e928bb2005-01-07 07:47:09 +000034using namespace llvm;
35
Chris Lattner5e46a192006-04-02 03:07:27 +000036#ifndef NDEBUG
37static cl::opt<bool>
38ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
39 cl::desc("Pop up a window to show dags before legalize"));
40#else
41static const bool ViewLegalizeDAGs = 0;
42#endif
43
Chris Lattner3e928bb2005-01-07 07:47:09 +000044//===----------------------------------------------------------------------===//
45/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
46/// hacks on it until the target machine can handle it. This involves
47/// eliminating value sizes the machine cannot handle (promoting small sizes to
48/// large sizes or splitting up large values into small values) as well as
49/// eliminating operations the machine cannot handle.
50///
51/// This code also does a small amount of optimization and recognition of idioms
52/// as part of its processing. For example, if a target does not support a
53/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
54/// will attempt merge setcc and brc instructions into brcc's.
55///
56namespace {
Chris Lattner360e8202006-06-28 21:58:30 +000057class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattner3e928bb2005-01-07 07:47:09 +000058 TargetLowering &TLI;
59 SelectionDAG &DAG;
60
Chris Lattner6831a812006-02-13 09:18:02 +000061 // Libcall insertion helpers.
62
63 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
64 /// legalized. We use this to ensure that calls are properly serialized
65 /// against each other, including inserted libcalls.
66 SDOperand LastCALLSEQ_END;
67
68 /// IsLegalizingCall - This member is used *only* for purposes of providing
69 /// helpful assertions that a libcall isn't created while another call is
70 /// being legalized (which could lead to non-serialized call sequences).
71 bool IsLegalizingCall;
72
Chris Lattner3e928bb2005-01-07 07:47:09 +000073 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000074 Legal, // The target natively supports this operation.
75 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000076 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000077 };
Chris Lattner6831a812006-02-13 09:18:02 +000078
Chris Lattner3e928bb2005-01-07 07:47:09 +000079 /// ValueTypeActions - This is a bitvector that contains two bits for each
80 /// value type, where the two bits correspond to the LegalizeAction enum.
81 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000082 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000083
Chris Lattner3e928bb2005-01-07 07:47:09 +000084 /// LegalizedNodes - For nodes that are of legal width, and that have more
85 /// than one use, this map indicates what regularized operand to use. This
86 /// allows us to avoid legalizing the same thing more than once.
Chris Lattner718071c2007-02-04 00:50:02 +000087 DenseMap<SDOperand, SDOperand> LegalizedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000088
Chris Lattner03c85462005-01-15 05:21:40 +000089 /// PromotedNodes - For nodes that are below legal width, and that have more
90 /// than one use, this map indicates what promoted value to use. This allows
91 /// us to avoid promoting the same thing more than once.
Chris Lattner40030bf2007-02-04 01:17:38 +000092 DenseMap<SDOperand, SDOperand> PromotedNodes;
Chris Lattner03c85462005-01-15 05:21:40 +000093
Chris Lattnerc7029802006-03-18 01:44:44 +000094 /// ExpandedNodes - For nodes that need to be expanded this map indicates
95 /// which which operands are the expanded version of the input. This allows
96 /// us to avoid expanding the same node more than once.
Chris Lattner40030bf2007-02-04 01:17:38 +000097 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000098
Chris Lattnerc7029802006-03-18 01:44:44 +000099 /// SplitNodes - For vector nodes that need to be split, this map indicates
100 /// which which operands are the split version of the input. This allows us
101 /// to avoid splitting the same node more than once.
102 std::map<SDOperand, std::pair<SDOperand, SDOperand> > SplitNodes;
103
Dan Gohman7f321562007-06-25 16:23:39 +0000104 /// ScalarizedNodes - For nodes that need to be converted from vector types to
105 /// scalar types, this contains the mapping of ones we have already
Chris Lattnerc7029802006-03-18 01:44:44 +0000106 /// processed to the result.
Dan Gohman7f321562007-06-25 16:23:39 +0000107 std::map<SDOperand, SDOperand> ScalarizedNodes;
Chris Lattnerc7029802006-03-18 01:44:44 +0000108
Chris Lattner8afc48e2005-01-07 22:28:47 +0000109 void AddLegalizedOperand(SDOperand From, SDOperand To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000110 LegalizedNodes.insert(std::make_pair(From, To));
111 // If someone requests legalization of the new node, return itself.
112 if (From != To)
113 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000114 }
Chris Lattner03c85462005-01-15 05:21:40 +0000115 void AddPromotedOperand(SDOperand From, SDOperand To) {
Chris Lattner40030bf2007-02-04 01:17:38 +0000116 bool isNew = PromotedNodes.insert(std::make_pair(From, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000117 assert(isNew && "Got into the map somehow?");
Chris Lattner69a889e2005-12-20 00:53:54 +0000118 // If someone requests legalization of the new node, return itself.
119 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000120 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000121
Chris Lattner3e928bb2005-01-07 07:47:09 +0000122public:
123
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000124 SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000125
Chris Lattner3e928bb2005-01-07 07:47:09 +0000126 /// getTypeAction - Return how we should legalize values of this type, either
127 /// it is already legal or we need to expand it into multiple registers of
128 /// smaller integer type, or we need to promote it to a larger type.
129 LegalizeAction getTypeAction(MVT::ValueType VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000130 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000131 }
132
133 /// isTypeLegal - Return true if this type is legal on this target.
134 ///
135 bool isTypeLegal(MVT::ValueType VT) const {
136 return getTypeAction(VT) == Legal;
137 }
138
Chris Lattner3e928bb2005-01-07 07:47:09 +0000139 void LegalizeDAG();
140
Chris Lattner456a93a2006-01-28 07:39:30 +0000141private:
Dan Gohman7f321562007-06-25 16:23:39 +0000142 /// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000143 /// appropriate for its type.
144 void HandleOp(SDOperand Op);
145
146 /// LegalizeOp - We know that the specified value has a legal type.
147 /// Recursively ensure that the operands have legal types, then return the
148 /// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000149 SDOperand LegalizeOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000150
Dan Gohman82669522007-10-11 23:57:53 +0000151 /// UnrollVectorOp - We know that the given vector has a legal type, however
152 /// the operation it performs is not legal and is an operation that we have
153 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
154 /// operating on each element individually.
155 SDOperand UnrollVectorOp(SDOperand O);
156
Chris Lattnerc7029802006-03-18 01:44:44 +0000157 /// PromoteOp - Given an operation that produces a value in an invalid type,
158 /// promote it to compute the value into a larger type. The produced value
159 /// will have the correct bits for the low portion of the register, but no
160 /// guarantee is made about the top bits: it may be zero, sign-extended, or
161 /// garbage.
Chris Lattner03c85462005-01-15 05:21:40 +0000162 SDOperand PromoteOp(SDOperand O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000163
Chris Lattnerc7029802006-03-18 01:44:44 +0000164 /// ExpandOp - Expand the specified SDOperand into its two component pieces
165 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
166 /// the LegalizeNodes map is filled in for any results that are not expanded,
167 /// the ExpandedNodes map is filled in for any results that are expanded, and
168 /// the Lo/Hi values are returned. This applies to integer types and Vector
169 /// types.
170 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
171
Dan Gohman7f321562007-06-25 16:23:39 +0000172 /// SplitVectorOp - Given an operand of vector type, break it down into
173 /// two smaller values.
Chris Lattnerc7029802006-03-18 01:44:44 +0000174 void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
175
Dan Gohman89b20c02007-06-27 14:06:22 +0000176 /// ScalarizeVectorOp - Given an operand of single-element vector type
177 /// (e.g. v1f32), convert it into the equivalent operation that returns a
178 /// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +0000179 SDOperand ScalarizeVectorOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000180
Chris Lattner4352cc92006-04-04 17:23:26 +0000181 /// isShuffleLegal - Return true if a vector shuffle is legal with the
182 /// specified mask and type. Targets can specify exactly which masks they
183 /// support and the code generator is tasked with not creating illegal masks.
184 ///
185 /// Note that this will also return true for shuffles that are promoted to a
186 /// different type.
187 ///
188 /// If this is a legal shuffle, this method returns the (possibly promoted)
189 /// build_vector Mask. If it's not a legal shuffle, it returns null.
190 SDNode *isShuffleLegal(MVT::ValueType VT, SDOperand Mask) const;
191
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000192 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000193 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000194
Nate Begeman750ac1b2006-02-01 07:19:44 +0000195 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
196
Reid Spencer47857812006-12-31 05:55:36 +0000197 SDOperand ExpandLibCall(const char *Name, SDNode *Node, bool isSigned,
Chris Lattner77e77a62005-01-21 06:05:23 +0000198 SDOperand &Hi);
199 SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy,
200 SDOperand Source);
Chris Lattnercad063f2005-07-16 00:19:57 +0000201
Chris Lattner35481892005-12-23 00:16:34 +0000202 SDOperand ExpandBIT_CONVERT(MVT::ValueType DestVT, SDOperand SrcOp);
Chris Lattnerce872152006-03-19 06:31:19 +0000203 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner4352cc92006-04-04 17:23:26 +0000204 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Jim Laskey6269ed12005-08-17 00:39:29 +0000205 SDOperand ExpandLegalINT_TO_FP(bool isSigned,
206 SDOperand LegalOp,
207 MVT::ValueType DestVT);
Nate Begeman5a8441e2005-07-16 02:02:34 +0000208 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
209 bool isSigned);
Chris Lattner1618beb2005-07-29 00:11:56 +0000210 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
211 bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000212
Chris Lattner456a93a2006-01-28 07:39:30 +0000213 SDOperand ExpandBSWAP(SDOperand Op);
214 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattnere34b3962005-01-19 04:19:40 +0000215 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
216 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000217 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
218 SDOperand &Lo, SDOperand &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000219
Dan Gohman7f321562007-06-25 16:23:39 +0000220 SDOperand ExpandEXTRACT_SUBVECTOR(SDOperand Op);
Chris Lattner4aab2f42006-04-02 05:06:04 +0000221 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner15972212006-03-31 17:55:51 +0000222
Chris Lattner3e928bb2005-01-07 07:47:09 +0000223 SDOperand getIntPtrConstant(uint64_t Val) {
224 return DAG.getConstant(Val, TLI.getPointerTy());
225 }
226};
227}
228
Chris Lattner4352cc92006-04-04 17:23:26 +0000229/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
230/// specified mask and type. Targets can specify exactly which masks they
231/// support and the code generator is tasked with not creating illegal masks.
232///
233/// Note that this will also return true for shuffles that are promoted to a
234/// different type.
235SDNode *SelectionDAGLegalize::isShuffleLegal(MVT::ValueType VT,
236 SDOperand Mask) const {
237 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
238 default: return 0;
239 case TargetLowering::Legal:
240 case TargetLowering::Custom:
241 break;
242 case TargetLowering::Promote: {
243 // If this is promoted to a different type, convert the shuffle mask and
244 // ask if it is legal in the promoted type!
245 MVT::ValueType NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
246
247 // If we changed # elements, change the shuffle mask.
248 unsigned NumEltsGrowth =
249 MVT::getVectorNumElements(NVT) / MVT::getVectorNumElements(VT);
250 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
251 if (NumEltsGrowth > 1) {
252 // Renumber the elements.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000253 SmallVector<SDOperand, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000254 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
255 SDOperand InOp = Mask.getOperand(i);
256 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
257 if (InOp.getOpcode() == ISD::UNDEF)
258 Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
259 else {
260 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
261 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32));
262 }
263 }
264 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000265 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000266 }
267 VT = NVT;
268 break;
269 }
270 }
271 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
272}
273
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000274SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
275 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
276 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000277 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000278 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000279}
280
Chris Lattnere10e6f72007-06-18 21:28:10 +0000281/// ComputeTopDownOrdering - Compute a top-down ordering of the dag, where Order
282/// contains all of a nodes operands before it contains the node.
283static void ComputeTopDownOrdering(SelectionDAG &DAG,
284 SmallVector<SDNode*, 64> &Order) {
285
286 DenseMap<SDNode*, unsigned> Visited;
287 std::vector<SDNode*> Worklist;
288 Worklist.reserve(128);
Chris Lattner32fca002005-10-06 01:20:27 +0000289
Chris Lattnere10e6f72007-06-18 21:28:10 +0000290 // Compute ordering from all of the leaves in the graphs, those (like the
291 // entry node) that have no operands.
292 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
293 E = DAG.allnodes_end(); I != E; ++I) {
294 if (I->getNumOperands() == 0) {
295 Visited[I] = 0 - 1U;
296 Worklist.push_back(I);
297 }
Chris Lattner32fca002005-10-06 01:20:27 +0000298 }
299
Chris Lattnere10e6f72007-06-18 21:28:10 +0000300 while (!Worklist.empty()) {
301 SDNode *N = Worklist.back();
302 Worklist.pop_back();
303
304 if (++Visited[N] != N->getNumOperands())
305 continue; // Haven't visited all operands yet
306
307 Order.push_back(N);
308
309 // Now that we have N in, add anything that uses it if all of their operands
310 // are now done.
311 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
312 UI != E; ++UI)
313 Worklist.push_back(*UI);
314 }
315
316 assert(Order.size() == Visited.size() &&
317 Order.size() ==
318 (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) &&
319 "Error: DAG is cyclic!");
Chris Lattner32fca002005-10-06 01:20:27 +0000320}
321
Chris Lattner1618beb2005-07-29 00:11:56 +0000322
Chris Lattner3e928bb2005-01-07 07:47:09 +0000323void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000324 LastCALLSEQ_END = DAG.getEntryNode();
325 IsLegalizingCall = false;
326
Chris Lattnerab510a72005-10-02 17:49:46 +0000327 // The legalize process is inherently a bottom-up recursive process (users
328 // legalize their uses before themselves). Given infinite stack space, we
329 // could just start legalizing on the root and traverse the whole graph. In
330 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000331 // blocks. To avoid this problem, compute an ordering of the nodes where each
332 // node is only legalized after all of its operands are legalized.
Chris Lattner0ed44172007-02-04 01:20:02 +0000333 SmallVector<SDNode*, 64> Order;
Chris Lattnere10e6f72007-06-18 21:28:10 +0000334 ComputeTopDownOrdering(DAG, Order);
Chris Lattnerab510a72005-10-02 17:49:46 +0000335
Chris Lattnerc7029802006-03-18 01:44:44 +0000336 for (unsigned i = 0, e = Order.size(); i != e; ++i)
337 HandleOp(SDOperand(Order[i], 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000338
339 // Finally, it's possible the root changed. Get the new root.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000340 SDOperand OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000341 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
342 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000343
344 ExpandedNodes.clear();
345 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000346 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000347 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000348 ScalarizedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000349
350 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000351 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000352}
353
Chris Lattner6831a812006-02-13 09:18:02 +0000354
355/// FindCallEndFromCallStart - Given a chained node that is part of a call
356/// sequence, find the CALLSEQ_END node that terminates the call sequence.
357static SDNode *FindCallEndFromCallStart(SDNode *Node) {
358 if (Node->getOpcode() == ISD::CALLSEQ_END)
359 return Node;
360 if (Node->use_empty())
361 return 0; // No CallSeqEnd
362
363 // The chain is usually at the end.
364 SDOperand TheChain(Node, Node->getNumValues()-1);
365 if (TheChain.getValueType() != MVT::Other) {
366 // Sometimes it's at the beginning.
367 TheChain = SDOperand(Node, 0);
368 if (TheChain.getValueType() != MVT::Other) {
369 // Otherwise, hunt for it.
370 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
371 if (Node->getValueType(i) == MVT::Other) {
372 TheChain = SDOperand(Node, i);
373 break;
374 }
375
376 // Otherwise, we walked into a node without a chain.
377 if (TheChain.getValueType() != MVT::Other)
378 return 0;
379 }
380 }
381
382 for (SDNode::use_iterator UI = Node->use_begin(),
383 E = Node->use_end(); UI != E; ++UI) {
384
385 // Make sure to only follow users of our token chain.
386 SDNode *User = *UI;
387 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
388 if (User->getOperand(i) == TheChain)
389 if (SDNode *Result = FindCallEndFromCallStart(User))
390 return Result;
391 }
392 return 0;
393}
394
395/// FindCallStartFromCallEnd - Given a chained node that is part of a call
396/// sequence, find the CALLSEQ_START node that initiates the call sequence.
397static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
398 assert(Node && "Didn't find callseq_start for a call??");
399 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
400
401 assert(Node->getOperand(0).getValueType() == MVT::Other &&
402 "Node doesn't have a token chain argument!");
403 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
404}
405
406/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
407/// see if any uses can reach Dest. If no dest operands can get to dest,
408/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000409///
410/// Keep track of the nodes we fine that actually do lead to Dest in
411/// NodesLeadingTo. This avoids retraversing them exponential number of times.
412///
413bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000414 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000415 if (N == Dest) return true; // N certainly leads to Dest :)
416
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000417 // If we've already processed this node and it does lead to Dest, there is no
418 // need to reprocess it.
419 if (NodesLeadingTo.count(N)) return true;
420
Chris Lattner6831a812006-02-13 09:18:02 +0000421 // If the first result of this node has been already legalized, then it cannot
422 // reach N.
423 switch (getTypeAction(N->getValueType(0))) {
424 case Legal:
425 if (LegalizedNodes.count(SDOperand(N, 0))) return false;
426 break;
427 case Promote:
428 if (PromotedNodes.count(SDOperand(N, 0))) return false;
429 break;
430 case Expand:
431 if (ExpandedNodes.count(SDOperand(N, 0))) return false;
432 break;
433 }
434
435 // Okay, this node has not already been legalized. Check and legalize all
436 // operands. If none lead to Dest, then we can legalize this node.
437 bool OperandsLeadToDest = false;
438 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
439 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000440 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000441
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000442 if (OperandsLeadToDest) {
443 NodesLeadingTo.insert(N);
444 return true;
445 }
Chris Lattner6831a812006-02-13 09:18:02 +0000446
447 // Okay, this node looks safe, legalize it and return false.
Chris Lattner80edfb32006-04-17 22:10:08 +0000448 HandleOp(SDOperand(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000449 return false;
450}
451
Dan Gohman7f321562007-06-25 16:23:39 +0000452/// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000453/// appropriate for its type.
454void SelectionDAGLegalize::HandleOp(SDOperand Op) {
Dan Gohman7f321562007-06-25 16:23:39 +0000455 MVT::ValueType VT = Op.getValueType();
456 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000457 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000458 case Legal: (void)LegalizeOp(Op); break;
459 case Promote: (void)PromoteOp(Op); break;
Chris Lattnerc7029802006-03-18 01:44:44 +0000460 case Expand:
Dan Gohman7f321562007-06-25 16:23:39 +0000461 if (!MVT::isVector(VT)) {
462 // If this is an illegal scalar, expand it into its two component
463 // pieces.
Chris Lattnerc7029802006-03-18 01:44:44 +0000464 SDOperand X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000465 if (Op.getOpcode() == ISD::TargetConstant)
466 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000467 ExpandOp(Op, X, Y);
Dan Gohman7f321562007-06-25 16:23:39 +0000468 } else if (MVT::getVectorNumElements(VT) == 1) {
469 // If this is an illegal single element vector, convert it to a
470 // scalar operation.
471 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000472 } else {
Dan Gohman7f321562007-06-25 16:23:39 +0000473 // Otherwise, this is an illegal multiple element vector.
474 // Split it in half and legalize both parts.
475 SDOperand X, Y;
476 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000477 }
478 break;
479 }
480}
Chris Lattner6831a812006-02-13 09:18:02 +0000481
Evan Cheng9f877882006-12-13 20:57:08 +0000482/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
483/// a load from the constant pool.
484static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng279101e2006-12-12 22:19:28 +0000485 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000486 bool Extend = false;
487
488 // If a FP immediate is precise when represented as a float and if the
489 // target can do an extending load from float to double, we put it into
490 // the constant pool as a float, even if it's is statically typed as a
491 // double.
492 MVT::ValueType VT = CFP->getValueType(0);
493 bool isDouble = VT == MVT::f64;
Dale Johannesen118cd9d2007-09-16 16:51:49 +0000494 ConstantFP *LLVMC = ConstantFP::get(MVT::getTypeForValueType(VT),
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000495 CFP->getValueAPF());
Evan Cheng9f877882006-12-13 20:57:08 +0000496 if (!UseCP) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000497 if (VT!=MVT::f64 && VT!=MVT::f32)
498 assert(0 && "Invalid type expansion");
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000499 return DAG.getConstant(LLVMC->getValueAPF().convertToAPInt().getZExtValue(),
500 isDouble ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000501 }
502
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000503 if (isDouble && CFP->isValueValidForType(MVT::f32, CFP->getValueAPF()) &&
Evan Cheng00495212006-12-12 21:32:44 +0000504 // Only do this if the target has a native EXTLOAD instruction from f32.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000505 // Do not try to be clever about long doubles (so far)
Evan Cheng00495212006-12-12 21:32:44 +0000506 TLI.isLoadXLegal(ISD::EXTLOAD, MVT::f32)) {
507 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC,Type::FloatTy));
508 VT = MVT::f32;
509 Extend = true;
510 }
511
512 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
513 if (Extend) {
514 return DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
515 CPIdx, NULL, 0, MVT::f32);
516 } else {
517 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
518 }
519}
520
Chris Lattner6831a812006-02-13 09:18:02 +0000521
Evan Cheng912095b2007-01-04 21:56:39 +0000522/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
523/// operations.
524static
525SDOperand ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT::ValueType NVT,
526 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng068c5f42007-01-05 21:31:51 +0000527 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng912095b2007-01-04 21:56:39 +0000528 MVT::ValueType SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000529 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
530 "fcopysign expansion only supported for f32 and f64");
Evan Cheng912095b2007-01-04 21:56:39 +0000531 MVT::ValueType SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000532
Evan Cheng912095b2007-01-04 21:56:39 +0000533 // First get the sign bit of second operand.
Evan Cheng068c5f42007-01-05 21:31:51 +0000534 SDOperand Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000535 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
536 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000537 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000538 SDOperand SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000539 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000540 // Shift right or sign-extend it if the two operands have different types.
541 int SizeDiff = MVT::getSizeInBits(SrcNVT) - MVT::getSizeInBits(NVT);
542 if (SizeDiff > 0) {
543 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
544 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
545 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
546 } else if (SizeDiff < 0)
547 SignBit = DAG.getNode(ISD::SIGN_EXTEND, NVT, SignBit);
Evan Cheng068c5f42007-01-05 21:31:51 +0000548
549 // Clear the sign bit of first operand.
550 SDOperand Mask2 = (VT == MVT::f64)
551 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
552 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
553 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Evan Cheng912095b2007-01-04 21:56:39 +0000554 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000555 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
556
557 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000558 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
559 return Result;
560}
561
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000562/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
563static
564SDOperand ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
565 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000566 SDOperand Chain = ST->getChain();
567 SDOperand Ptr = ST->getBasePtr();
568 SDOperand Val = ST->getValue();
569 MVT::ValueType VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000570 int Alignment = ST->getAlignment();
571 int SVOffset = ST->getSrcValueOffset();
572 if (MVT::isFloatingPoint(ST->getStoredVT())) {
573 // Expand to a bitconvert of the value to the integer type of the
574 // same size, then a (misaligned) int store.
575 MVT::ValueType intVT;
576 if (VT==MVT::f64)
577 intVT = MVT::i64;
578 else if (VT==MVT::f32)
579 intVT = MVT::i32;
580 else
581 assert(0 && "Unaligned load of unsupported floating point type");
582
583 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
584 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
585 SVOffset, ST->isVolatile(), Alignment);
586 }
587 assert(MVT::isInteger(ST->getStoredVT()) &&
588 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000589 // Get the half-size VT
590 MVT::ValueType NewStoredVT = ST->getStoredVT() - 1;
591 int NumBits = MVT::getSizeInBits(NewStoredVT);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000592 int IncrementSize = NumBits / 8;
593
594 // Divide the stored value in two parts.
595 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
596 SDOperand Lo = Val;
597 SDOperand Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
598
599 // Store the two parts
600 SDOperand Store1, Store2;
601 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
602 ST->getSrcValue(), SVOffset, NewStoredVT,
603 ST->isVolatile(), Alignment);
604 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
605 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000606 Alignment = MinAlign(Alignment, IncrementSize);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000607 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
608 ST->getSrcValue(), SVOffset + IncrementSize,
609 NewStoredVT, ST->isVolatile(), Alignment);
610
611 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
612}
613
614/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
615static
616SDOperand ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
617 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000618 int SVOffset = LD->getSrcValueOffset();
619 SDOperand Chain = LD->getChain();
620 SDOperand Ptr = LD->getBasePtr();
621 MVT::ValueType VT = LD->getValueType(0);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000622 MVT::ValueType LoadedVT = LD->getLoadedVT();
623 if (MVT::isFloatingPoint(VT)) {
624 // Expand to a (misaligned) integer load of the same size,
625 // then bitconvert to floating point.
626 MVT::ValueType intVT;
627 if (LoadedVT==MVT::f64)
628 intVT = MVT::i64;
629 else if (LoadedVT==MVT::f32)
630 intVT = MVT::i32;
631 else
632 assert(0 && "Unaligned load of unsupported floating point type");
633
634 SDOperand newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
635 SVOffset, LD->isVolatile(),
636 LD->getAlignment());
637 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
638 if (LoadedVT != VT)
639 Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
640
641 SDOperand Ops[] = { Result, Chain };
642 return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
643 Ops, 2);
644 }
645 assert(MVT::isInteger(LoadedVT) && "Unaligned load of unsupported type.");
646 MVT::ValueType NewLoadedVT = LoadedVT - 1;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000647 int NumBits = MVT::getSizeInBits(NewLoadedVT);
648 int Alignment = LD->getAlignment();
649 int IncrementSize = NumBits / 8;
650 ISD::LoadExtType HiExtType = LD->getExtensionType();
651
652 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
653 if (HiExtType == ISD::NON_EXTLOAD)
654 HiExtType = ISD::ZEXTLOAD;
655
656 // Load the value in two parts
657 SDOperand Lo, Hi;
658 if (TLI.isLittleEndian()) {
659 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
660 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
661 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
662 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
663 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
664 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000665 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000666 } else {
667 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
668 NewLoadedVT,LD->isVolatile(), Alignment);
669 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
670 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
671 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
672 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000673 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000674 }
675
676 // aggregate the two parts
677 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
678 SDOperand Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
679 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
680
681 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
682 Hi.getValue(1));
683
684 SDOperand Ops[] = { Result, TF };
685 return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other), Ops, 2);
686}
Evan Cheng912095b2007-01-04 21:56:39 +0000687
Dan Gohman82669522007-10-11 23:57:53 +0000688/// UnrollVectorOp - We know that the given vector has a legal type, however
689/// the operation it performs is not legal and is an operation that we have
690/// no way of lowering. "Unroll" the vector, splitting out the scalars and
691/// operating on each element individually.
692SDOperand SelectionDAGLegalize::UnrollVectorOp(SDOperand Op) {
693 MVT::ValueType VT = Op.getValueType();
694 assert(isTypeLegal(VT) &&
695 "Caller should expand or promote operands that are not legal!");
696 assert(Op.Val->getNumValues() == 1 &&
697 "Can't unroll a vector with multiple results!");
698 unsigned NE = MVT::getVectorNumElements(VT);
699 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
700
701 SmallVector<SDOperand, 8> Scalars;
702 SmallVector<SDOperand, 4> Operands(Op.getNumOperands());
703 for (unsigned i = 0; i != NE; ++i) {
704 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
705 SDOperand Operand = Op.getOperand(j);
706 MVT::ValueType OperandVT = Operand.getValueType();
707 if (MVT::isVector(OperandVT)) {
708 // A vector operand; extract a single element.
709 MVT::ValueType OperandEltVT = MVT::getVectorElementType(OperandVT);
710 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
711 OperandEltVT,
712 Operand,
713 DAG.getConstant(i, MVT::i32));
714 } else {
715 // A scalar operand; just use it as is.
716 Operands[j] = Operand;
717 }
718 }
719 Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
720 &Operands[0], Operands.size()));
721 }
722
723 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
724}
725
Dan Gohmana3466152007-07-13 20:14:11 +0000726/// LegalizeOp - We know that the specified value has a legal type, and
727/// that its operands are legal. Now ensure that the operation itself
728/// is legal, recursively ensuring that the operands' operations remain
729/// legal.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000730SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000731 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
732 return Op;
733
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000734 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000735 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000736 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000737
Chris Lattner3e928bb2005-01-07 07:47:09 +0000738 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000739 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000740 if (Node->getNumValues() > 1) {
741 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000742 if (getTypeAction(Node->getValueType(i)) != Legal) {
743 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000744 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000745 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000746 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000747 }
748 }
749
Chris Lattner45982da2005-05-12 16:53:42 +0000750 // Note that LegalizeOp may be reentered even from single-use nodes, which
751 // means that we always must cache transformed nodes.
Chris Lattner718071c2007-02-04 00:50:02 +0000752 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000753 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000754
Nate Begeman9373a812005-08-10 20:51:12 +0000755 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000756 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000757 bool isCustom = false;
758
Chris Lattner3e928bb2005-01-07 07:47:09 +0000759 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000760 case ISD::FrameIndex:
761 case ISD::EntryToken:
762 case ISD::Register:
763 case ISD::BasicBlock:
764 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000765 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000766 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000767 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000768 case ISD::TargetConstantPool:
769 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000770 case ISD::TargetGlobalTLSAddress:
Chris Lattner948c1b12006-01-28 08:31:04 +0000771 case ISD::TargetExternalSymbol:
772 case ISD::VALUETYPE:
773 case ISD::SRCVALUE:
774 case ISD::STRING:
775 case ISD::CONDCODE:
776 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +0000777 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +0000778 "This must be legal!");
779 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000780 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000781 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
782 // If this is a target node, legalize it by legalizing the operands then
783 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000784 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000785 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000786 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000787
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000788 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000789
790 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
791 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
792 return Result.getValue(Op.ResNo);
793 }
794 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000795#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +0000796 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000797#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000798 assert(0 && "Do not know how to legalize this operator!");
799 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +0000800 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000801 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000802 case ISD::GlobalTLSAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000803 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000804 case ISD::ConstantPool:
805 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000806 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
807 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000808 case TargetLowering::Custom:
809 Tmp1 = TLI.LowerOperation(Op, DAG);
810 if (Tmp1.Val) Result = Tmp1;
811 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000812 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000813 break;
814 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000815 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000816 case ISD::FRAMEADDR:
817 case ISD::RETURNADDR:
818 // The only option for these nodes is to custom lower them. If the target
819 // does not custom lower them, then return zero.
820 Tmp1 = TLI.LowerOperation(Op, DAG);
821 if (Tmp1.Val)
822 Result = Tmp1;
823 else
824 Result = DAG.getConstant(0, TLI.getPointerTy());
825 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000826 case ISD::FRAME_TO_ARGS_OFFSET: {
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000827 MVT::ValueType VT = Node->getValueType(0);
828 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
829 default: assert(0 && "This action is not supported yet!");
830 case TargetLowering::Custom:
831 Result = TLI.LowerOperation(Op, DAG);
832 if (Result.Val) break;
833 // Fall Thru
834 case TargetLowering::Legal:
835 Result = DAG.getConstant(0, VT);
836 break;
837 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000838 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000839 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000840 case ISD::EXCEPTIONADDR: {
841 Tmp1 = LegalizeOp(Node->getOperand(0));
842 MVT::ValueType VT = Node->getValueType(0);
843 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
844 default: assert(0 && "This action is not supported yet!");
845 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000846 unsigned Reg = TLI.getExceptionAddressRegister();
Jim Laskey2bc210d2007-02-22 15:37:19 +0000847 Result = DAG.getCopyFromReg(Tmp1, Reg, VT).getValue(Op.ResNo);
848 }
849 break;
850 case TargetLowering::Custom:
851 Result = TLI.LowerOperation(Op, DAG);
852 if (Result.Val) break;
853 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000854 case TargetLowering::Legal: {
855 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp1 };
856 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
857 Ops, 2).getValue(Op.ResNo);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000858 break;
859 }
860 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000861 }
Jim Laskey2bc210d2007-02-22 15:37:19 +0000862 break;
Jim Laskey8782d482007-02-28 20:43:58 +0000863 case ISD::EHSELECTION: {
864 Tmp1 = LegalizeOp(Node->getOperand(0));
865 Tmp2 = LegalizeOp(Node->getOperand(1));
866 MVT::ValueType VT = Node->getValueType(0);
867 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
868 default: assert(0 && "This action is not supported yet!");
869 case TargetLowering::Expand: {
870 unsigned Reg = TLI.getExceptionSelectorRegister();
871 Result = DAG.getCopyFromReg(Tmp2, Reg, VT).getValue(Op.ResNo);
872 }
873 break;
874 case TargetLowering::Custom:
875 Result = TLI.LowerOperation(Op, DAG);
876 if (Result.Val) break;
877 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000878 case TargetLowering::Legal: {
879 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp2 };
880 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
881 Ops, 2).getValue(Op.ResNo);
Jim Laskey8782d482007-02-28 20:43:58 +0000882 break;
883 }
884 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000885 }
Jim Laskey8782d482007-02-28 20:43:58 +0000886 break;
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000887 case ISD::EH_RETURN: {
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000888 MVT::ValueType VT = Node->getValueType(0);
889 // The only "good" option for this node is to custom lower it.
890 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
891 default: assert(0 && "This action is not supported at all!");
892 case TargetLowering::Custom:
893 Result = TLI.LowerOperation(Op, DAG);
894 if (Result.Val) break;
895 // Fall Thru
896 case TargetLowering::Legal:
897 // Target does not know, how to lower this, lower to noop
898 Result = LegalizeOp(Node->getOperand(0));
899 break;
900 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000901 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000902 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000903 case ISD::AssertSext:
904 case ISD::AssertZext:
905 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000906 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000907 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000908 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000909 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +0000910 Result = Node->getOperand(Op.ResNo);
911 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000912 case ISD::CopyFromReg:
913 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000914 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000915 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000916 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000917 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000918 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000919 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000920 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000921 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
922 } else {
923 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
924 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000925 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
926 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000927 // Since CopyFromReg produces two values, make sure to remember that we
928 // legalized both of them.
929 AddLegalizedOperand(Op.getValue(0), Result);
930 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
931 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000932 case ISD::UNDEF: {
933 MVT::ValueType VT = Op.getValueType();
934 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000935 default: assert(0 && "This action is not supported yet!");
936 case TargetLowering::Expand:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000937 if (MVT::isInteger(VT))
938 Result = DAG.getConstant(0, VT);
939 else if (MVT::isFloatingPoint(VT))
Dale Johannesenf41db212007-09-26 17:26:49 +0000940 Result = DAG.getConstantFP(APFloat(APInt(MVT::getSizeInBits(VT), 0)),
941 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000942 else
943 assert(0 && "Unknown value type!");
944 break;
Nate Begemanea19cd52005-04-02 00:41:14 +0000945 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000946 break;
947 }
948 break;
949 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000950
Chris Lattner48b61a72006-03-28 00:40:33 +0000951 case ISD::INTRINSIC_W_CHAIN:
952 case ISD::INTRINSIC_WO_CHAIN:
953 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000954 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000955 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
956 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000957 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +0000958
959 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +0000960 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +0000961 TargetLowering::Custom) {
962 Tmp3 = TLI.LowerOperation(Result, DAG);
963 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +0000964 }
965
966 if (Result.Val->getNumValues() == 1) break;
967
968 // Must have return value and chain result.
969 assert(Result.Val->getNumValues() == 2 &&
970 "Cannot return more than two values!");
971
972 // Since loads produce two values, make sure to remember that we
973 // legalized both of them.
974 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
975 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
976 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000977 }
Chris Lattner36ce6912005-11-29 06:21:05 +0000978
979 case ISD::LOCATION:
980 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
981 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
982
983 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
984 case TargetLowering::Promote:
985 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000986 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000987 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +0000988 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Jim Laskey1ee29252007-01-26 14:34:52 +0000989 bool useLABEL = TLI.isOperationLegal(ISD::LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000990
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000991 if (MMI && (useDEBUG_LOC || useLABEL)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +0000992 const std::string &FName =
993 cast<StringSDNode>(Node->getOperand(3))->getValue();
994 const std::string &DirName =
995 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskey44c3b9f2007-01-26 21:22:28 +0000996 unsigned SrcFile = MMI->RecordSource(DirName, FName);
Jim Laskeyabf6d172006-01-05 01:25:28 +0000997
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000998 SmallVector<SDOperand, 8> Ops;
Jim Laskeye81aecb2005-12-21 20:51:37 +0000999 Ops.push_back(Tmp1); // chain
Jim Laskeyabf6d172006-01-05 01:25:28 +00001000 SDOperand LineOp = Node->getOperand(1);
1001 SDOperand ColOp = Node->getOperand(2);
1002
1003 if (useDEBUG_LOC) {
1004 Ops.push_back(LineOp); // line #
1005 Ops.push_back(ColOp); // col #
1006 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001007 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001008 } else {
Jim Laskeyd0e58e32006-02-15 19:34:44 +00001009 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
1010 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001011 unsigned ID = MMI->RecordLabel(Line, Col, SrcFile);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001012 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Jim Laskey1ee29252007-01-26 14:34:52 +00001013 Result = DAG.getNode(ISD::LABEL, MVT::Other,&Ops[0],Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001014 }
Jim Laskeye81aecb2005-12-21 20:51:37 +00001015 } else {
1016 Result = Tmp1; // chain
1017 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001018 break;
Chris Lattnere7736732005-12-18 23:54:29 +00001019 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001020 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +00001021 if (Tmp1 != Node->getOperand(0) ||
1022 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001023 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +00001024 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +00001025 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
1026 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1027 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1028 } else {
1029 // Otherwise promote them.
1030 Ops.push_back(PromoteOp(Node->getOperand(1)));
1031 Ops.push_back(PromoteOp(Node->getOperand(2)));
1032 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001033 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1034 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001035 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001036 }
1037 break;
1038 }
1039 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001040
1041 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001042 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001043 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001044 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +00001045 case TargetLowering::Legal:
1046 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1047 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1048 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1049 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001050 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001051 break;
1052 }
1053 break;
1054
Jim Laskey1ee29252007-01-26 14:34:52 +00001055 case ISD::LABEL:
1056 assert(Node->getNumOperands() == 2 && "Invalid LABEL node!");
1057 switch (TLI.getOperationAction(ISD::LABEL, MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001058 default: assert(0 && "This action is not supported yet!");
1059 case TargetLowering::Legal:
1060 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1061 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001062 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001063 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001064 case TargetLowering::Expand:
1065 Result = LegalizeOp(Node->getOperand(0));
1066 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001067 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001068 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001069
Scott Michelc1513d22007-08-08 23:23:31 +00001070 case ISD::Constant: {
1071 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1072 unsigned opAction =
1073 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1074
Chris Lattner3e928bb2005-01-07 07:47:09 +00001075 // We know we don't need to expand constants here, constants only have one
1076 // value and we check that it is fine above.
1077
Scott Michelc1513d22007-08-08 23:23:31 +00001078 if (opAction == TargetLowering::Custom) {
1079 Tmp1 = TLI.LowerOperation(Result, DAG);
1080 if (Tmp1.Val)
1081 Result = Tmp1;
1082 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001083 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001084 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001085 case ISD::ConstantFP: {
1086 // Spill FP immediates to the constant pool if the target cannot directly
1087 // codegen them. Targets often have some immediate values that can be
1088 // efficiently generated into an FP register without a load. We explicitly
1089 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001090 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1091
1092 // Check to see if this FP immediate is already legal.
1093 bool isLegal = false;
1094 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1095 E = TLI.legal_fpimm_end(); I != E; ++I)
1096 if (CFP->isExactlyValue(*I)) {
1097 isLegal = true;
1098 break;
1099 }
1100
Chris Lattner3181a772006-01-29 06:26:56 +00001101 // If this is a legal constant, turn it into a TargetConstantFP node.
1102 if (isLegal) {
Dale Johannesenf04afdb2007-08-30 00:23:21 +00001103 Result = DAG.getTargetConstantFP(CFP->getValueAPF(),
1104 CFP->getValueType(0));
Chris Lattner3181a772006-01-29 06:26:56 +00001105 break;
1106 }
1107
1108 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1109 default: assert(0 && "This action is not supported yet!");
1110 case TargetLowering::Custom:
1111 Tmp3 = TLI.LowerOperation(Result, DAG);
1112 if (Tmp3.Val) {
1113 Result = Tmp3;
1114 break;
1115 }
1116 // FALLTHROUGH
1117 case TargetLowering::Expand:
Evan Cheng279101e2006-12-12 22:19:28 +00001118 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001119 }
1120 break;
1121 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001122 case ISD::TokenFactor:
1123 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001124 Tmp1 = LegalizeOp(Node->getOperand(0));
1125 Tmp2 = LegalizeOp(Node->getOperand(1));
1126 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1127 } else if (Node->getNumOperands() == 3) {
1128 Tmp1 = LegalizeOp(Node->getOperand(0));
1129 Tmp2 = LegalizeOp(Node->getOperand(1));
1130 Tmp3 = LegalizeOp(Node->getOperand(2));
1131 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001132 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001133 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001134 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001135 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1136 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001137 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001138 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001139 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001140
1141 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001142 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001143 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001144 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1145 assert(Tmp3.Val && "Target didn't custom lower this node!");
1146 assert(Tmp3.Val->getNumValues() == Result.Val->getNumValues() &&
1147 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001148
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001149 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001150 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +00001151 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
1152 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +00001153 if (Op.ResNo == i)
1154 Tmp2 = Tmp1;
1155 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
1156 }
1157 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001158 case ISD::EXTRACT_SUBREG: {
1159 Tmp1 = LegalizeOp(Node->getOperand(0));
1160 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1161 assert(idx && "Operand must be a constant");
1162 Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1163 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1164 }
1165 break;
1166 case ISD::INSERT_SUBREG: {
1167 Tmp1 = LegalizeOp(Node->getOperand(0));
1168 Tmp2 = LegalizeOp(Node->getOperand(1));
1169 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1170 assert(idx && "Operand must be a constant");
1171 Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1172 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1173 }
1174 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001175 case ISD::BUILD_VECTOR:
1176 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001177 default: assert(0 && "This action is not supported yet!");
1178 case TargetLowering::Custom:
1179 Tmp3 = TLI.LowerOperation(Result, DAG);
1180 if (Tmp3.Val) {
1181 Result = Tmp3;
1182 break;
1183 }
1184 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001185 case TargetLowering::Expand:
1186 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +00001187 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001188 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001189 break;
1190 case ISD::INSERT_VECTOR_ELT:
1191 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
1192 Tmp2 = LegalizeOp(Node->getOperand(1)); // InVal
1193 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
1194 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1195
1196 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1197 Node->getValueType(0))) {
1198 default: assert(0 && "This action is not supported yet!");
1199 case TargetLowering::Legal:
1200 break;
1201 case TargetLowering::Custom:
1202 Tmp3 = TLI.LowerOperation(Result, DAG);
1203 if (Tmp3.Val) {
1204 Result = Tmp3;
1205 break;
1206 }
1207 // FALLTHROUGH
1208 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001209 // If the insert index is a constant, codegen this as a scalar_to_vector,
1210 // then a shuffle that inserts it into the right position in the vector.
1211 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
1212 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
1213 Tmp1.getValueType(), Tmp2);
1214
1215 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
1216 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
Dan Gohman51eaa862007-06-14 22:58:02 +00001217 MVT::ValueType ShufMaskEltVT = MVT::getVectorElementType(ShufMaskVT);
Chris Lattner8d5a8942006-04-17 19:21:01 +00001218
1219 // We generate a shuffle of InVec and ScVec, so the shuffle mask should
1220 // be 0,1,2,3,4,5... with the appropriate element replaced with elt 0 of
1221 // the RHS.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001222 SmallVector<SDOperand, 8> ShufOps;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001223 for (unsigned i = 0; i != NumElts; ++i) {
1224 if (i != InsertPos->getValue())
1225 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1226 else
1227 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1228 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001229 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
1230 &ShufOps[0], ShufOps.size());
Chris Lattner8d5a8942006-04-17 19:21:01 +00001231
1232 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1233 Tmp1, ScVec, ShufMask);
1234 Result = LegalizeOp(Result);
1235 break;
1236 }
1237
Chris Lattner2332b9f2006-03-19 01:17:20 +00001238 // If the target doesn't support this, we have to spill the input vector
1239 // to a temporary stack slot, update the element, then reload it. This is
1240 // badness. We could also load the value into a vector register (either
1241 // with a "move to register" or "extload into register" instruction, then
1242 // permute it into place, if the idx is a constant and if the idx is
1243 // supported by the target.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001244 MVT::ValueType VT = Tmp1.getValueType();
1245 MVT::ValueType EltVT = Tmp2.getValueType();
1246 MVT::ValueType IdxVT = Tmp3.getValueType();
1247 MVT::ValueType PtrVT = TLI.getPointerTy();
Chris Lattner85dd3be2007-10-15 17:48:57 +00001248 SDOperand StackPtr = DAG.CreateStackTemporary(VT);
Evan Chengeb0b4612006-03-31 01:27:51 +00001249 // Store the vector.
Evan Cheng8b2794a2006-10-13 21:14:26 +00001250 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +00001251
1252 // Truncate or zero extend offset to target pointer type.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001253 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
1254 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Chengeb0b4612006-03-31 01:27:51 +00001255 // Add the offset to the index.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001256 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
1257 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
1258 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Evan Chengeb0b4612006-03-31 01:27:51 +00001259 // Store the scalar value.
Evan Cheng8b2794a2006-10-13 21:14:26 +00001260 Ch = DAG.getStore(Ch, Tmp2, StackPtr2, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +00001261 // Load the updated vector.
Evan Cheng466685d2006-10-09 20:57:25 +00001262 Result = DAG.getLoad(VT, Ch, StackPtr, NULL, 0);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001263 break;
1264 }
1265 }
1266 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001267 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001268 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1269 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1270 break;
1271 }
1272
Chris Lattnerce872152006-03-19 06:31:19 +00001273 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1274 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1275 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1276 Node->getValueType(0))) {
1277 default: assert(0 && "This action is not supported yet!");
1278 case TargetLowering::Legal:
1279 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001280 case TargetLowering::Custom:
1281 Tmp3 = TLI.LowerOperation(Result, DAG);
1282 if (Tmp3.Val) {
1283 Result = Tmp3;
1284 break;
1285 }
1286 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001287 case TargetLowering::Expand:
1288 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001289 break;
1290 }
Chris Lattnerce872152006-03-19 06:31:19 +00001291 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001292 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001293 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1294 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1295 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1296
1297 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001298 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1299 default: assert(0 && "Unknown operation action!");
1300 case TargetLowering::Legal:
1301 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1302 "vector shuffle should not be created if not legal!");
1303 break;
1304 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001305 Tmp3 = TLI.LowerOperation(Result, DAG);
1306 if (Tmp3.Val) {
1307 Result = Tmp3;
1308 break;
1309 }
1310 // FALLTHROUGH
1311 case TargetLowering::Expand: {
1312 MVT::ValueType VT = Node->getValueType(0);
Dan Gohman51eaa862007-06-14 22:58:02 +00001313 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001314 MVT::ValueType PtrVT = TLI.getPointerTy();
1315 SDOperand Mask = Node->getOperand(2);
1316 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001317 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001318 for (unsigned i = 0; i != NumElems; ++i) {
1319 SDOperand Arg = Mask.getOperand(i);
1320 if (Arg.getOpcode() == ISD::UNDEF) {
1321 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1322 } else {
1323 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1324 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1325 if (Idx < NumElems)
1326 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1327 DAG.getConstant(Idx, PtrVT)));
1328 else
1329 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1330 DAG.getConstant(Idx - NumElems, PtrVT)));
1331 }
1332 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001333 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001334 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001335 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001336 case TargetLowering::Promote: {
1337 // Change base type to a different vector type.
1338 MVT::ValueType OVT = Node->getValueType(0);
1339 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1340
1341 // Cast the two input vectors.
1342 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1343 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1344
1345 // Convert the shuffle mask to the right # elements.
1346 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1347 assert(Tmp3.Val && "Shuffle not legal?");
1348 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1349 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1350 break;
1351 }
Chris Lattner87100e02006-03-20 01:52:29 +00001352 }
1353 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001354
1355 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001356 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001357 Tmp2 = LegalizeOp(Node->getOperand(1));
1358 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001359 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001360 break;
1361
Dan Gohman7f321562007-06-25 16:23:39 +00001362 case ISD::EXTRACT_SUBVECTOR:
1363 Tmp1 = Node->getOperand(0);
1364 Tmp2 = LegalizeOp(Node->getOperand(1));
1365 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1366 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001367 break;
1368
Chris Lattner6831a812006-02-13 09:18:02 +00001369 case ISD::CALLSEQ_START: {
1370 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1371
1372 // Recursively Legalize all of the inputs of the call end that do not lead
1373 // to this call start. This ensures that any libcalls that need be inserted
1374 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001375 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001376 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001377 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1378 NodesLeadingTo);
1379 }
Chris Lattner6831a812006-02-13 09:18:02 +00001380
1381 // Now that we legalized all of the inputs (which may have inserted
1382 // libcalls) create the new CALLSEQ_START node.
1383 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1384
1385 // Merge in the last call, to ensure that this call start after the last
1386 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001387 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001388 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1389 Tmp1 = LegalizeOp(Tmp1);
1390 }
Chris Lattner6831a812006-02-13 09:18:02 +00001391
1392 // Do not try to legalize the target-specific arguments (#1+).
1393 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001394 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001395 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001396 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001397 }
1398
1399 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001400 AddLegalizedOperand(Op.getValue(0), Result);
1401 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1402 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1403
Chris Lattner6831a812006-02-13 09:18:02 +00001404 // Now that the callseq_start and all of the non-call nodes above this call
1405 // sequence have been legalized, legalize the call itself. During this
1406 // process, no libcalls can/will be inserted, guaranteeing that no calls
1407 // can overlap.
1408 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1409 SDOperand InCallSEQ = LastCALLSEQ_END;
1410 // Note that we are selecting this call!
1411 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1412 IsLegalizingCall = true;
1413
1414 // Legalize the call, starting from the CALLSEQ_END.
1415 LegalizeOp(LastCALLSEQ_END);
1416 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1417 return Result;
1418 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001419 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001420 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1421 // will cause this node to be legalized as well as handling libcalls right.
1422 if (LastCALLSEQ_END.Val != Node) {
1423 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
Chris Lattner718071c2007-02-04 00:50:02 +00001424 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001425 assert(I != LegalizedNodes.end() &&
1426 "Legalizing the call start should have legalized this node!");
1427 return I->second;
1428 }
1429
1430 // Otherwise, the call start has been legalized and everything is going
1431 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001432 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001433 // Do not try to legalize the target-specific arguments (#1+), except for
1434 // an optional flag input.
1435 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1436 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001437 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001438 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001439 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001440 }
1441 } else {
1442 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1443 if (Tmp1 != Node->getOperand(0) ||
1444 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001445 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001446 Ops[0] = Tmp1;
1447 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001448 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001449 }
Chris Lattner6a542892006-01-24 05:48:21 +00001450 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001451 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001452 // This finishes up call legalization.
1453 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001454
1455 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1456 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1457 if (Node->getNumValues() == 2)
1458 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1459 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001460 case ISD::DYNAMIC_STACKALLOC: {
Evan Cheng61bbbab2007-08-16 23:50:06 +00001461 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001462 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1463 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1464 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001465 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001466
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001467 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001468 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001469 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001470 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001471 case TargetLowering::Expand: {
1472 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1473 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1474 " not tell us which reg is the stack pointer!");
1475 SDOperand Chain = Tmp1.getOperand(0);
1476 SDOperand Size = Tmp2.getOperand(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001477 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, VT);
1478 Chain = SP.getValue(1);
1479 unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1480 unsigned StackAlign =
1481 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1482 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001483 SP = DAG.getNode(ISD::AND, VT, SP,
1484 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001485 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
1486 Tmp2 = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001487 Tmp1 = LegalizeOp(Tmp1);
1488 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001489 break;
1490 }
1491 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001492 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1493 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001494 Tmp1 = LegalizeOp(Tmp3);
1495 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001496 }
Chris Lattner903d2782006-01-15 08:54:32 +00001497 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001498 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001499 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001500 }
Chris Lattner903d2782006-01-15 08:54:32 +00001501 // Since this op produce two values, make sure to remember that we
1502 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001503 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1504 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001505 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001506 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001507 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001508 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001509 bool Changed = false;
1510 // Legalize all of the operands of the inline asm, in case they are nodes
1511 // that need to be expanded or something. Note we skip the asm string and
1512 // all of the TargetConstant flags.
1513 SDOperand Op = LegalizeOp(Ops[0]);
1514 Changed = Op != Ops[0];
1515 Ops[0] = Op;
1516
1517 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1518 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1519 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1520 for (++i; NumVals; ++i, --NumVals) {
1521 SDOperand Op = LegalizeOp(Ops[i]);
1522 if (Op != Ops[i]) {
1523 Changed = true;
1524 Ops[i] = Op;
1525 }
1526 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001527 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001528
1529 if (HasInFlag) {
1530 Op = LegalizeOp(Ops.back());
1531 Changed |= Op != Ops.back();
1532 Ops.back() = Op;
1533 }
1534
1535 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001536 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001537
1538 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001539 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001540 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1541 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001542 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001543 case ISD::BR:
1544 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001545 // Ensure that libcalls are emitted before a branch.
1546 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1547 Tmp1 = LegalizeOp(Tmp1);
1548 LastCALLSEQ_END = DAG.getEntryNode();
1549
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001550 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001551 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001552 case ISD::BRIND:
1553 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1554 // Ensure that libcalls are emitted before a branch.
1555 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1556 Tmp1 = LegalizeOp(Tmp1);
1557 LastCALLSEQ_END = DAG.getEntryNode();
1558
1559 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1560 default: assert(0 && "Indirect target must be legal type (pointer)!");
1561 case Legal:
1562 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1563 break;
1564 }
1565 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1566 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001567 case ISD::BR_JT:
1568 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1569 // Ensure that libcalls are emitted before a branch.
1570 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1571 Tmp1 = LegalizeOp(Tmp1);
1572 LastCALLSEQ_END = DAG.getEntryNode();
1573
1574 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1575 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1576
1577 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1578 default: assert(0 && "This action is not supported yet!");
1579 case TargetLowering::Legal: break;
1580 case TargetLowering::Custom:
1581 Tmp1 = TLI.LowerOperation(Result, DAG);
1582 if (Tmp1.Val) Result = Tmp1;
1583 break;
1584 case TargetLowering::Expand: {
1585 SDOperand Chain = Result.getOperand(0);
1586 SDOperand Table = Result.getOperand(1);
1587 SDOperand Index = Result.getOperand(2);
1588
1589 MVT::ValueType PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001590 MachineFunction &MF = DAG.getMachineFunction();
1591 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001592 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1593 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001594
1595 SDOperand LD;
1596 switch (EntrySize) {
1597 default: assert(0 && "Size of jump table not supported yet."); break;
1598 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr, NULL, 0); break;
1599 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr, NULL, 0); break;
1600 }
1601
1602 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001603 // For PIC, the sequence is:
1604 // BRIND(load(Jumptable + index) + RelocBase)
1605 // RelocBase is the JumpTable on PPC and X86, GOT on Alpha
1606 SDOperand Reloc;
1607 if (TLI.usesGlobalOffsetTable())
1608 Reloc = DAG.getNode(ISD::GLOBAL_OFFSET_TABLE, PTy);
1609 else
1610 Reloc = Table;
Evan Chengd0631892006-10-31 02:31:00 +00001611 Addr = (PTy != MVT::i32) ? DAG.getNode(ISD::SIGN_EXTEND, PTy, LD) : LD;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001612 Addr = DAG.getNode(ISD::ADD, PTy, Addr, Reloc);
1613 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
1614 } else {
1615 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), LD);
1616 }
1617 }
1618 }
1619 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001620 case ISD::BRCOND:
1621 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001622 // Ensure that libcalls are emitted before a return.
1623 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1624 Tmp1 = LegalizeOp(Tmp1);
1625 LastCALLSEQ_END = DAG.getEntryNode();
1626
Chris Lattner47e92232005-01-18 19:27:06 +00001627 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1628 case Expand: assert(0 && "It's impossible to expand bools");
1629 case Legal:
1630 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1631 break;
1632 case Promote:
1633 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001634
1635 // The top bits of the promoted condition are not necessarily zero, ensure
1636 // that the value is properly zero extended.
Dan Gohmanea859be2007-06-22 14:59:07 +00001637 if (!DAG.MaskedValueIsZero(Tmp2,
Chris Lattnerf9908172006-11-27 04:39:56 +00001638 MVT::getIntVTBitMask(Tmp2.getValueType())^1))
1639 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001640 break;
1641 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001642
1643 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001644 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001645
1646 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1647 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001648 case TargetLowering::Legal: break;
1649 case TargetLowering::Custom:
1650 Tmp1 = TLI.LowerOperation(Result, DAG);
1651 if (Tmp1.Val) Result = Tmp1;
1652 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001653 case TargetLowering::Expand:
1654 // Expand brcond's setcc into its constituent parts and create a BR_CC
1655 // Node.
1656 if (Tmp2.getOpcode() == ISD::SETCC) {
1657 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1658 Tmp2.getOperand(0), Tmp2.getOperand(1),
1659 Node->getOperand(2));
1660 } else {
1661 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1662 DAG.getCondCode(ISD::SETNE), Tmp2,
1663 DAG.getConstant(0, Tmp2.getValueType()),
1664 Node->getOperand(2));
1665 }
1666 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001667 }
1668 break;
1669 case ISD::BR_CC:
1670 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001671 // Ensure that libcalls are emitted before a branch.
1672 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1673 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001674 Tmp2 = Node->getOperand(2); // LHS
1675 Tmp3 = Node->getOperand(3); // RHS
1676 Tmp4 = Node->getOperand(1); // CC
1677
1678 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001679 LastCALLSEQ_END = DAG.getEntryNode();
1680
Nate Begeman750ac1b2006-02-01 07:19:44 +00001681 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1682 // the LHS is a legal SETCC itself. In this case, we need to compare
1683 // the result against zero to select between true and false values.
1684 if (Tmp3.Val == 0) {
1685 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1686 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001687 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001688
1689 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1690 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001691
Chris Lattner181b7a32005-12-17 23:46:46 +00001692 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1693 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001694 case TargetLowering::Legal: break;
1695 case TargetLowering::Custom:
1696 Tmp4 = TLI.LowerOperation(Result, DAG);
1697 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001698 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001699 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001700 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001701 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001702 LoadSDNode *LD = cast<LoadSDNode>(Node);
1703 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1704 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001705
Evan Cheng466685d2006-10-09 20:57:25 +00001706 ISD::LoadExtType ExtType = LD->getExtensionType();
1707 if (ExtType == ISD::NON_EXTLOAD) {
1708 MVT::ValueType VT = Node->getValueType(0);
1709 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1710 Tmp3 = Result.getValue(0);
1711 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001712
Evan Cheng466685d2006-10-09 20:57:25 +00001713 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1714 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001715 case TargetLowering::Legal:
1716 // If this is an unaligned load and the target doesn't support it,
1717 // expand it.
1718 if (!TLI.allowsUnalignedMemoryAccesses()) {
1719 unsigned ABIAlignment = TLI.getTargetData()->
1720 getABITypeAlignment(MVT::getTypeForValueType(LD->getLoadedVT()));
1721 if (LD->getAlignment() < ABIAlignment){
1722 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1723 TLI);
1724 Tmp3 = Result.getOperand(0);
1725 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001726 Tmp3 = LegalizeOp(Tmp3);
1727 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001728 }
1729 }
1730 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001731 case TargetLowering::Custom:
1732 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1733 if (Tmp1.Val) {
1734 Tmp3 = LegalizeOp(Tmp1);
1735 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001736 }
Evan Cheng466685d2006-10-09 20:57:25 +00001737 break;
1738 case TargetLowering::Promote: {
1739 // Only promote a load of vector type to another.
1740 assert(MVT::isVector(VT) && "Cannot promote this load!");
1741 // Change base type to a different vector type.
1742 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1743
1744 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001745 LD->getSrcValueOffset(),
1746 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001747 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1748 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001749 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001750 }
Evan Cheng466685d2006-10-09 20:57:25 +00001751 }
1752 // Since loads produce two values, make sure to remember that we
1753 // legalized both of them.
1754 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1755 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1756 return Op.ResNo ? Tmp4 : Tmp3;
1757 } else {
Evan Cheng2e49f092006-10-11 07:10:22 +00001758 MVT::ValueType SrcVT = LD->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00001759 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
1760 default: assert(0 && "This action is not supported yet!");
1761 case TargetLowering::Promote:
1762 assert(SrcVT == MVT::i1 &&
1763 "Can only promote extending LOAD from i1 -> i8!");
1764 Result = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
1765 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001766 MVT::i8, LD->isVolatile(), LD->getAlignment());
Duncan Sandsf411b832007-10-17 13:49:58 +00001767 Tmp1 = Result.getValue(0);
1768 Tmp2 = Result.getValue(1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001769 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001770 case TargetLowering::Custom:
1771 isCustom = true;
1772 // FALLTHROUGH
1773 case TargetLowering::Legal:
1774 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1775 Tmp1 = Result.getValue(0);
1776 Tmp2 = Result.getValue(1);
1777
1778 if (isCustom) {
1779 Tmp3 = TLI.LowerOperation(Result, DAG);
1780 if (Tmp3.Val) {
1781 Tmp1 = LegalizeOp(Tmp3);
1782 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1783 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001784 } else {
1785 // If this is an unaligned load and the target doesn't support it,
1786 // expand it.
1787 if (!TLI.allowsUnalignedMemoryAccesses()) {
1788 unsigned ABIAlignment = TLI.getTargetData()->
1789 getABITypeAlignment(MVT::getTypeForValueType(LD->getLoadedVT()));
1790 if (LD->getAlignment() < ABIAlignment){
1791 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1792 TLI);
1793 Tmp1 = Result.getOperand(0);
1794 Tmp2 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001795 Tmp1 = LegalizeOp(Tmp1);
1796 Tmp2 = LegalizeOp(Tmp2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001797 }
1798 }
Evan Cheng466685d2006-10-09 20:57:25 +00001799 }
1800 break;
1801 case TargetLowering::Expand:
1802 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
1803 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
1804 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001805 LD->getSrcValueOffset(),
1806 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001807 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
1808 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
1809 Tmp2 = LegalizeOp(Load.getValue(1));
1810 break;
1811 }
Chris Lattnerfea997a2007-02-01 04:55:59 +00001812 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
Evan Cheng466685d2006-10-09 20:57:25 +00001813 // Turn the unsupported load into an EXTLOAD followed by an explicit
1814 // zero/sign extend inreg.
1815 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
1816 Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001817 LD->getSrcValueOffset(), SrcVT,
1818 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001819 SDOperand ValRes;
1820 if (ExtType == ISD::SEXTLOAD)
1821 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1822 Result, DAG.getValueType(SrcVT));
1823 else
1824 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
1825 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
1826 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
1827 break;
1828 }
1829 // Since loads produce two values, make sure to remember that we legalized
1830 // both of them.
1831 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1832 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1833 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00001834 }
Chris Lattner01ff7212005-04-10 22:54:25 +00001835 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001836 case ISD::EXTRACT_ELEMENT: {
1837 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1838 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001839 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00001840 case Legal:
1841 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
1842 // 1 -> Hi
1843 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
1844 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
1845 TLI.getShiftAmountTy()));
1846 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
1847 } else {
1848 // 0 -> Lo
1849 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
1850 Node->getOperand(0));
1851 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001852 break;
1853 case Expand:
1854 // Get both the low and high parts.
1855 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1856 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
1857 Result = Tmp2; // 1 -> Hi
1858 else
1859 Result = Tmp1; // 0 -> Lo
1860 break;
1861 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001862 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00001863 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001864
1865 case ISD::CopyToReg:
1866 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00001867
Chris Lattnerc9c60f62005-08-24 16:35:28 +00001868 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001869 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00001870 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001871 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001872 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001873 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001874 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001875 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001876 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001877 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001878 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
1879 Tmp3);
1880 } else {
1881 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001882 }
1883
1884 // Since this produces two values, make sure to remember that we legalized
1885 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001886 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001887 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001888 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00001889 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001890 break;
1891
1892 case ISD::RET:
1893 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001894
1895 // Ensure that libcalls are emitted before a return.
1896 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1897 Tmp1 = LegalizeOp(Tmp1);
1898 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00001899
Chris Lattner3e928bb2005-01-07 07:47:09 +00001900 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00001901 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00001902 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001903 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00001904 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00001905 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00001906 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001907 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00001908 case Expand:
Dan Gohman7f321562007-06-25 16:23:39 +00001909 if (!MVT::isVector(Tmp2.getValueType())) {
Chris Lattnerf87324e2006-04-11 01:31:51 +00001910 SDOperand Lo, Hi;
1911 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00001912
1913 // Big endian systems want the hi reg first.
1914 if (!TLI.isLittleEndian())
1915 std::swap(Lo, Hi);
1916
Evan Cheng13acce32006-12-11 19:27:14 +00001917 if (Hi.Val)
1918 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
1919 else
1920 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00001921 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001922 } else {
1923 SDNode *InVal = Tmp2.Val;
Dale Johannesene5269622007-10-20 00:07:52 +00001924 int InIx = Tmp2.ResNo;
1925 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(InIx));
1926 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(InIx));
Chris Lattnerf87324e2006-04-11 01:31:51 +00001927
Dan Gohman7f321562007-06-25 16:23:39 +00001928 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00001929 // type. If so, convert to the vector type.
Chris Lattnerf87324e2006-04-11 01:31:51 +00001930 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00001931 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00001932 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00001933 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001934 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001935 } else if (NumElems == 1) {
1936 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00001937 Tmp2 = ScalarizeVectorOp(Tmp2);
1938 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001939 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001940
1941 // FIXME: Returns of gcc generic vectors smaller than a legal type
1942 // should be returned in integer registers!
1943
Chris Lattnerf87324e2006-04-11 01:31:51 +00001944 // The scalarized value type may not be legal, e.g. it might require
1945 // promotion or expansion. Relegalize the return.
1946 Result = LegalizeOp(Result);
1947 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001948 // FIXME: Returns of gcc generic vectors larger than a legal vector
1949 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00001950 SDOperand Lo, Hi;
1951 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00001952 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001953 Result = LegalizeOp(Result);
1954 }
1955 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001956 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001957 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001958 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001959 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001960 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00001961 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001962 }
1963 break;
1964 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001965 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001966 break;
1967 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001968 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001969 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001970 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00001971 switch (getTypeAction(Node->getOperand(i).getValueType())) {
1972 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00001973 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00001974 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00001975 break;
1976 case Expand: {
1977 SDOperand Lo, Hi;
Dan Gohman6595cb32007-06-27 16:08:04 +00001978 assert(!MVT::isExtendedVT(Node->getOperand(i).getValueType()) &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00001979 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001980 ExpandOp(Node->getOperand(i), Lo, Hi);
1981 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001982 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00001983 if (Hi.Val) {
1984 NewValues.push_back(Hi);
1985 NewValues.push_back(Node->getOperand(i+1));
1986 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00001987 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001988 }
1989 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00001990 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00001991 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001992
1993 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001994 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001995 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001996 Result = DAG.getNode(ISD::RET, MVT::Other,
1997 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00001998 break;
1999 }
2000 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002001
Chris Lattner6862dbc2006-01-29 21:02:23 +00002002 if (Result.getOpcode() == ISD::RET) {
2003 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2004 default: assert(0 && "This action is not supported yet!");
2005 case TargetLowering::Legal: break;
2006 case TargetLowering::Custom:
2007 Tmp1 = TLI.LowerOperation(Result, DAG);
2008 if (Tmp1.Val) Result = Tmp1;
2009 break;
2010 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002011 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002012 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002013 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002014 StoreSDNode *ST = cast<StoreSDNode>(Node);
2015 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2016 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002017 int SVOffset = ST->getSrcValueOffset();
2018 unsigned Alignment = ST->getAlignment();
2019 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002020
Evan Cheng8b2794a2006-10-13 21:14:26 +00002021 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002022 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2023 // FIXME: We shouldn't do this for TargetConstantFP's.
2024 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2025 // to phase ordering between legalized code and the dag combiner. This
2026 // probably means that we need to integrate dag combiner and legalizer
2027 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002028 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002029 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002030 if (CFP->getValueType(0) == MVT::f32 &&
2031 getTypeAction(MVT::i32) == Legal) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00002032 Tmp3 = DAG.getConstant((uint32_t)CFP->getValueAPF().
2033 convertToAPInt().getZExtValue(),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002034 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002035 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2036 SVOffset, isVolatile, Alignment);
2037 break;
2038 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002039 // If this target supports 64-bit registers, do a single 64-bit store.
2040 if (getTypeAction(MVT::i64) == Legal) {
2041 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
2042 getZExtValue(), MVT::i64);
2043 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2044 SVOffset, isVolatile, Alignment);
2045 break;
2046 } else if (getTypeAction(MVT::i32) == Legal) {
2047 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2048 // stores. If the target supports neither 32- nor 64-bits, this
2049 // xform is certainly not worth it.
2050 uint64_t IntVal =CFP->getValueAPF().convertToAPInt().getZExtValue();
2051 SDOperand Lo = DAG.getConstant(uint32_t(IntVal), MVT::i32);
2052 SDOperand Hi = DAG.getConstant(uint32_t(IntVal >>32), MVT::i32);
2053 if (!TLI.isLittleEndian()) std::swap(Lo, Hi);
2054
2055 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2056 SVOffset, isVolatile, Alignment);
2057 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2058 getIntPtrConstant(4));
2059 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002060 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002061
2062 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2063 break;
2064 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002065 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002066 }
2067
Evan Cheng8b2794a2006-10-13 21:14:26 +00002068 switch (getTypeAction(ST->getStoredVT())) {
2069 case Legal: {
2070 Tmp3 = LegalizeOp(ST->getValue());
2071 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2072 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002073
Evan Cheng8b2794a2006-10-13 21:14:26 +00002074 MVT::ValueType VT = Tmp3.getValueType();
2075 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2076 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002077 case TargetLowering::Legal:
2078 // If this is an unaligned store and the target doesn't support it,
2079 // expand it.
2080 if (!TLI.allowsUnalignedMemoryAccesses()) {
2081 unsigned ABIAlignment = TLI.getTargetData()->
2082 getABITypeAlignment(MVT::getTypeForValueType(ST->getStoredVT()));
2083 if (ST->getAlignment() < ABIAlignment)
2084 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2085 TLI);
2086 }
2087 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002088 case TargetLowering::Custom:
2089 Tmp1 = TLI.LowerOperation(Result, DAG);
2090 if (Tmp1.Val) Result = Tmp1;
2091 break;
2092 case TargetLowering::Promote:
2093 assert(MVT::isVector(VT) && "Unknown legal promote case!");
2094 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2095 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2096 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002097 ST->getSrcValue(), SVOffset, isVolatile,
2098 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002099 break;
2100 }
2101 break;
2102 }
2103 case Promote:
2104 // Truncate the value and store the result.
2105 Tmp3 = PromoteOp(ST->getValue());
2106 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002107 SVOffset, ST->getStoredVT(),
2108 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002109 break;
2110
2111 case Expand:
2112 unsigned IncrementSize = 0;
2113 SDOperand Lo, Hi;
2114
2115 // If this is a vector type, then we have to calculate the increment as
2116 // the product of the element size in bytes, and the number of elements
2117 // in the high half of the vector.
Dan Gohman7f321562007-06-25 16:23:39 +00002118 if (MVT::isVector(ST->getValue().getValueType())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002119 SDNode *InVal = ST->getValue().Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002120 int InIx = ST->getValue().ResNo;
2121 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(InIx));
2122 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(InIx));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002123
Dan Gohman7f321562007-06-25 16:23:39 +00002124 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002125 // type. If so, convert to the vector type.
Evan Cheng8b2794a2006-10-13 21:14:26 +00002126 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002127 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002128 // Turn this into a normal store of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002129 Tmp3 = LegalizeOp(Node->getOperand(1));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002130 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002131 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002132 Result = LegalizeOp(Result);
2133 break;
2134 } else if (NumElems == 1) {
2135 // Turn this into a normal store of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002136 Tmp3 = ScalarizeVectorOp(Node->getOperand(1));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002137 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002138 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002139 // The scalarized value type may not be legal, e.g. it might require
2140 // promotion or expansion. Relegalize the scalar store.
2141 Result = LegalizeOp(Result);
2142 break;
2143 } else {
2144 SplitVectorOp(Node->getOperand(1), Lo, Hi);
2145 IncrementSize = NumElems/2 * MVT::getSizeInBits(EVT)/8;
2146 }
2147 } else {
2148 ExpandOp(Node->getOperand(1), Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002149 IncrementSize = Hi.Val ? MVT::getSizeInBits(Hi.getValueType())/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002150
2151 if (!TLI.isLittleEndian())
2152 std::swap(Lo, Hi);
2153 }
2154
2155 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002156 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002157
2158 if (Hi.Val == NULL) {
2159 // Must be int <-> float one-to-one expansion.
2160 Result = Lo;
2161 break;
2162 }
2163
Evan Cheng8b2794a2006-10-13 21:14:26 +00002164 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2165 getIntPtrConstant(IncrementSize));
2166 assert(isTypeLegal(Tmp2.getValueType()) &&
2167 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002168 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002169 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002170 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002171 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002172 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2173 break;
2174 }
2175 } else {
2176 // Truncating store
2177 assert(isTypeLegal(ST->getValue().getValueType()) &&
2178 "Cannot handle illegal TRUNCSTORE yet!");
2179 Tmp3 = LegalizeOp(ST->getValue());
2180
2181 // The only promote case we handle is TRUNCSTORE:i1 X into
2182 // -> TRUNCSTORE:i8 (and X, 1)
2183 if (ST->getStoredVT() == MVT::i1 &&
2184 TLI.getStoreXAction(MVT::i1) == TargetLowering::Promote) {
2185 // Promote the bool to a mask then store.
2186 Tmp3 = DAG.getNode(ISD::AND, Tmp3.getValueType(), Tmp3,
2187 DAG.getConstant(1, Tmp3.getValueType()));
2188 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002189 SVOffset, MVT::i8,
2190 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002191 } else if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2192 Tmp2 != ST->getBasePtr()) {
2193 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2194 ST->getOffset());
2195 }
2196
2197 MVT::ValueType StVT = cast<StoreSDNode>(Result.Val)->getStoredVT();
2198 switch (TLI.getStoreXAction(StVT)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002199 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002200 case TargetLowering::Legal:
2201 // If this is an unaligned store and the target doesn't support it,
2202 // expand it.
2203 if (!TLI.allowsUnalignedMemoryAccesses()) {
2204 unsigned ABIAlignment = TLI.getTargetData()->
2205 getABITypeAlignment(MVT::getTypeForValueType(ST->getStoredVT()));
2206 if (ST->getAlignment() < ABIAlignment)
2207 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2208 TLI);
2209 }
2210 break;
Chris Lattner456a93a2006-01-28 07:39:30 +00002211 case TargetLowering::Custom:
2212 Tmp1 = TLI.LowerOperation(Result, DAG);
2213 if (Tmp1.Val) Result = Tmp1;
2214 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002215 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002216 }
2217 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002218 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002219 case ISD::PCMARKER:
2220 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002221 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002222 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002223 case ISD::STACKSAVE:
2224 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002225 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2226 Tmp1 = Result.getValue(0);
2227 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002228
Chris Lattner140d53c2006-01-13 02:50:02 +00002229 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2230 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002231 case TargetLowering::Legal: break;
2232 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002233 Tmp3 = TLI.LowerOperation(Result, DAG);
2234 if (Tmp3.Val) {
2235 Tmp1 = LegalizeOp(Tmp3);
2236 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002237 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002238 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002239 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002240 // Expand to CopyFromReg if the target set
2241 // StackPointerRegisterToSaveRestore.
2242 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002243 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002244 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002245 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002246 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002247 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2248 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002249 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002250 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002251 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002252
2253 // Since stacksave produce two values, make sure to remember that we
2254 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002255 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2256 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2257 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002258
Chris Lattner140d53c2006-01-13 02:50:02 +00002259 case ISD::STACKRESTORE:
2260 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2261 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002262 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002263
2264 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2265 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002266 case TargetLowering::Legal: break;
2267 case TargetLowering::Custom:
2268 Tmp1 = TLI.LowerOperation(Result, DAG);
2269 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002270 break;
2271 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002272 // Expand to CopyToReg if the target set
2273 // StackPointerRegisterToSaveRestore.
2274 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2275 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2276 } else {
2277 Result = Tmp1;
2278 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002279 break;
2280 }
2281 break;
2282
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002283 case ISD::READCYCLECOUNTER:
2284 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002285 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002286 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2287 Node->getValueType(0))) {
2288 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002289 case TargetLowering::Legal:
2290 Tmp1 = Result.getValue(0);
2291 Tmp2 = Result.getValue(1);
2292 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002293 case TargetLowering::Custom:
2294 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002295 Tmp1 = LegalizeOp(Result.getValue(0));
2296 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002297 break;
2298 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002299
2300 // Since rdcc produce two values, make sure to remember that we legalized
2301 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002302 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2303 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002304 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002305
Chris Lattner2ee743f2005-01-14 22:08:15 +00002306 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002307 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2308 case Expand: assert(0 && "It's impossible to expand bools");
2309 case Legal:
2310 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2311 break;
2312 case Promote:
2313 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002314 // Make sure the condition is either zero or one.
Dan Gohmanea859be2007-06-22 14:59:07 +00002315 if (!DAG.MaskedValueIsZero(Tmp1,
Chris Lattnerb6c80602006-11-28 01:03:30 +00002316 MVT::getIntVTBitMask(Tmp1.getValueType())^1))
2317 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002318 break;
2319 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002320 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002321 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002322
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002323 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002324
Nate Begemanb942a3d2005-08-23 04:29:48 +00002325 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002326 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002327 case TargetLowering::Legal: break;
2328 case TargetLowering::Custom: {
2329 Tmp1 = TLI.LowerOperation(Result, DAG);
2330 if (Tmp1.Val) Result = Tmp1;
2331 break;
2332 }
Nate Begeman9373a812005-08-10 20:51:12 +00002333 case TargetLowering::Expand:
2334 if (Tmp1.getOpcode() == ISD::SETCC) {
2335 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2336 Tmp2, Tmp3,
2337 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2338 } else {
2339 Result = DAG.getSelectCC(Tmp1,
2340 DAG.getConstant(0, Tmp1.getValueType()),
2341 Tmp2, Tmp3, ISD::SETNE);
2342 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002343 break;
2344 case TargetLowering::Promote: {
2345 MVT::ValueType NVT =
2346 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2347 unsigned ExtOp, TruncOp;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002348 if (MVT::isVector(Tmp2.getValueType())) {
2349 ExtOp = ISD::BIT_CONVERT;
2350 TruncOp = ISD::BIT_CONVERT;
2351 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002352 ExtOp = ISD::ANY_EXTEND;
2353 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002354 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002355 ExtOp = ISD::FP_EXTEND;
2356 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002357 }
2358 // Promote each of the values to the new type.
2359 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2360 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2361 // Perform the larger operation, then round down.
2362 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
2363 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2364 break;
2365 }
2366 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002367 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002368 case ISD::SELECT_CC: {
2369 Tmp1 = Node->getOperand(0); // LHS
2370 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002371 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2372 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00002373 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002374
Nate Begeman750ac1b2006-02-01 07:19:44 +00002375 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2376
2377 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2378 // the LHS is a legal SETCC itself. In this case, we need to compare
2379 // the result against zero to select between true and false values.
2380 if (Tmp2.Val == 0) {
2381 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2382 CC = DAG.getCondCode(ISD::SETNE);
2383 }
2384 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2385
2386 // Everything is legal, see if we should expand this op or something.
2387 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2388 default: assert(0 && "This action is not supported yet!");
2389 case TargetLowering::Legal: break;
2390 case TargetLowering::Custom:
2391 Tmp1 = TLI.LowerOperation(Result, DAG);
2392 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002393 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002394 }
2395 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002396 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002397 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002398 Tmp1 = Node->getOperand(0);
2399 Tmp2 = Node->getOperand(1);
2400 Tmp3 = Node->getOperand(2);
2401 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2402
2403 // If we had to Expand the SetCC operands into a SELECT node, then it may
2404 // not always be possible to return a true LHS & RHS. In this case, just
2405 // return the value we legalized, returned in the LHS
2406 if (Tmp2.Val == 0) {
2407 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002408 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002409 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002410
Chris Lattner73e142f2006-01-30 22:43:50 +00002411 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002412 default: assert(0 && "Cannot handle this action for SETCC yet!");
2413 case TargetLowering::Custom:
2414 isCustom = true;
2415 // FALLTHROUGH.
2416 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002417 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002418 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002419 Tmp4 = TLI.LowerOperation(Result, DAG);
2420 if (Tmp4.Val) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002421 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002422 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002423 case TargetLowering::Promote: {
2424 // First step, figure out the appropriate operation to use.
2425 // Allow SETCC to not be supported for all legal data types
2426 // Mostly this targets FP
2427 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
Chris Lattner00755df2007-02-04 00:27:56 +00002428 MVT::ValueType OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002429
2430 // Scan for the appropriate larger type to use.
2431 while (1) {
2432 NewInTy = (MVT::ValueType)(NewInTy+1);
2433
2434 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
2435 "Fell off of the edge of the integer world");
2436 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
2437 "Fell off of the edge of the floating point world");
2438
2439 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002440 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002441 break;
2442 }
2443 if (MVT::isInteger(NewInTy))
2444 assert(0 && "Cannot promote Legal Integer SETCC yet");
2445 else {
2446 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2447 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2448 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002449 Tmp1 = LegalizeOp(Tmp1);
2450 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002451 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002452 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002453 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002454 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002455 case TargetLowering::Expand:
2456 // Expand a setcc node into a select_cc of the same condition, lhs, and
2457 // rhs that selects between const 1 (true) and const 0 (false).
2458 MVT::ValueType VT = Node->getValueType(0);
2459 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2460 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002461 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002462 break;
2463 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002464 break;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002465 case ISD::MEMSET:
2466 case ISD::MEMCPY:
2467 case ISD::MEMMOVE: {
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002468 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnere5605212005-01-28 22:29:18 +00002469 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
2470
2471 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
2472 switch (getTypeAction(Node->getOperand(2).getValueType())) {
2473 case Expand: assert(0 && "Cannot expand a byte!");
2474 case Legal:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002475 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002476 break;
2477 case Promote:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002478 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002479 break;
2480 }
2481 } else {
Misha Brukmanedf128a2005-04-21 22:36:52 +00002482 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnere5605212005-01-28 22:29:18 +00002483 }
Chris Lattner272455b2005-02-02 03:44:41 +00002484
2485 SDOperand Tmp4;
2486 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattner6814f152005-07-13 01:42:45 +00002487 case Expand: {
2488 // Length is too big, just take the lo-part of the length.
2489 SDOperand HiPart;
Chris Lattnerfa9aa2b2006-11-07 04:11:44 +00002490 ExpandOp(Node->getOperand(3), Tmp4, HiPart);
Chris Lattner6814f152005-07-13 01:42:45 +00002491 break;
2492 }
Chris Lattnere5605212005-01-28 22:29:18 +00002493 case Legal:
2494 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnere5605212005-01-28 22:29:18 +00002495 break;
2496 case Promote:
2497 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner272455b2005-02-02 03:44:41 +00002498 break;
2499 }
2500
2501 SDOperand Tmp5;
2502 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
2503 case Expand: assert(0 && "Cannot expand this yet!");
2504 case Legal:
2505 Tmp5 = LegalizeOp(Node->getOperand(4));
2506 break;
2507 case Promote:
Chris Lattnere5605212005-01-28 22:29:18 +00002508 Tmp5 = PromoteOp(Node->getOperand(4));
2509 break;
2510 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002511
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002512 SDOperand Tmp6;
2513 switch (getTypeAction(Node->getOperand(5).getValueType())) { // bool
2514 case Expand: assert(0 && "Cannot expand this yet!");
2515 case Legal:
2516 Tmp6 = LegalizeOp(Node->getOperand(5));
2517 break;
2518 case Promote:
2519 Tmp6 = PromoteOp(Node->getOperand(5));
2520 break;
2521 }
2522
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002523 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2524 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002525 case TargetLowering::Custom:
2526 isCustom = true;
2527 // FALLTHROUGH
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002528 case TargetLowering::Legal: {
2529 SDOperand Ops[] = { Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6 };
2530 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
Chris Lattner456a93a2006-01-28 07:39:30 +00002531 if (isCustom) {
2532 Tmp1 = TLI.LowerOperation(Result, DAG);
2533 if (Tmp1.Val) Result = Tmp1;
2534 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002535 break;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002536 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002537 case TargetLowering::Expand: {
Chris Lattnere1bd8222005-01-11 05:57:22 +00002538 // Otherwise, the target does not support this operation. Lower the
2539 // operation to an explicit libcall as appropriate.
2540 MVT::ValueType IntPtr = TLI.getPointerTy();
Owen Andersona69571c2006-05-03 01:29:57 +00002541 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00002542 TargetLowering::ArgListTy Args;
2543 TargetLowering::ArgListEntry Entry;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002544
Reid Spencer3bfbf4e2005-01-12 14:53:45 +00002545 const char *FnName = 0;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002546 if (Node->getOpcode() == ISD::MEMSET) {
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002547 Entry.Node = Tmp2; Entry.Ty = IntPtrTy;
Reid Spencer47857812006-12-31 05:55:36 +00002548 Args.push_back(Entry);
Chris Lattnerdca7abe2006-02-20 06:38:35 +00002549 // Extend the (previously legalized) ubyte argument to be an int value
2550 // for the call.
2551 if (Tmp3.getValueType() > MVT::i32)
2552 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2553 else
2554 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002555 Entry.Node = Tmp3; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
Reid Spencer47857812006-12-31 05:55:36 +00002556 Args.push_back(Entry);
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002557 Entry.Node = Tmp4; Entry.Ty = IntPtrTy; Entry.isSExt = false;
Reid Spencer47857812006-12-31 05:55:36 +00002558 Args.push_back(Entry);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002559
2560 FnName = "memset";
2561 } else if (Node->getOpcode() == ISD::MEMCPY ||
2562 Node->getOpcode() == ISD::MEMMOVE) {
Anton Korobeynikovb25fe822007-02-01 08:39:52 +00002563 Entry.Ty = IntPtrTy;
Reid Spencerb47b25c2007-01-03 04:22:32 +00002564 Entry.Node = Tmp2; Args.push_back(Entry);
2565 Entry.Node = Tmp3; Args.push_back(Entry);
2566 Entry.Node = Tmp4; Args.push_back(Entry);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002567 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2568 } else {
2569 assert(0 && "Unknown op!");
2570 }
Chris Lattner45982da2005-05-12 16:53:42 +00002571
Chris Lattnere1bd8222005-01-11 05:57:22 +00002572 std::pair<SDOperand,SDOperand> CallResult =
Reid Spencer47857812006-12-31 05:55:36 +00002573 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, false, CallingConv::C, false,
Chris Lattnere1bd8222005-01-11 05:57:22 +00002574 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner456a93a2006-01-28 07:39:30 +00002575 Result = CallResult.second;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002576 break;
2577 }
Chris Lattnere1bd8222005-01-11 05:57:22 +00002578 }
2579 break;
2580 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002581
Chris Lattner5b359c62005-04-02 04:00:59 +00002582 case ISD::SHL_PARTS:
2583 case ISD::SRA_PARTS:
2584 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002585 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002586 bool Changed = false;
2587 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2588 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2589 Changed |= Ops.back() != Node->getOperand(i);
2590 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002591 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002592 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002593
Evan Cheng05a2d562006-01-09 18:31:59 +00002594 switch (TLI.getOperationAction(Node->getOpcode(),
2595 Node->getValueType(0))) {
2596 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002597 case TargetLowering::Legal: break;
2598 case TargetLowering::Custom:
2599 Tmp1 = TLI.LowerOperation(Result, DAG);
2600 if (Tmp1.Val) {
2601 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002602 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002603 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002604 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2605 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002606 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002607 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002608 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002609 return RetVal;
2610 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002611 break;
2612 }
2613
Chris Lattner2c8086f2005-04-02 05:00:07 +00002614 // Since these produce multiple values, make sure to remember that we
2615 // legalized all of them.
2616 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2617 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2618 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002619 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002620
2621 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002622 case ISD::ADD:
2623 case ISD::SUB:
2624 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002625 case ISD::MULHS:
2626 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002627 case ISD::UDIV:
2628 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002629 case ISD::AND:
2630 case ISD::OR:
2631 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002632 case ISD::SHL:
2633 case ISD::SRL:
2634 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002635 case ISD::FADD:
2636 case ISD::FSUB:
2637 case ISD::FMUL:
2638 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00002639 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002640 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002641 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2642 case Expand: assert(0 && "Not possible");
2643 case Legal:
2644 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2645 break;
2646 case Promote:
2647 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2648 break;
2649 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002650
2651 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002652
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002653 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002654 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002655 case TargetLowering::Legal: break;
2656 case TargetLowering::Custom:
2657 Tmp1 = TLI.LowerOperation(Result, DAG);
2658 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002659 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002660 case TargetLowering::Expand: {
Dan Gohman525178c2007-10-08 18:33:35 +00002661 MVT::ValueType VT = Op.getValueType();
2662
2663 // See if multiply or divide can be lowered using two-result operations.
2664 SDVTList VTs = DAG.getVTList(VT, VT);
2665 if (Node->getOpcode() == ISD::MUL) {
2666 // We just need the low half of the multiply; try both the signed
2667 // and unsigned forms. If the target supports both SMUL_LOHI and
2668 // UMUL_LOHI, form a preference by checking which forms of plain
2669 // MULH it supports.
2670 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2671 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2672 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2673 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2674 unsigned OpToUse = 0;
2675 if (HasSMUL_LOHI && !HasMULHS) {
2676 OpToUse = ISD::SMUL_LOHI;
2677 } else if (HasUMUL_LOHI && !HasMULHU) {
2678 OpToUse = ISD::UMUL_LOHI;
2679 } else if (HasSMUL_LOHI) {
2680 OpToUse = ISD::SMUL_LOHI;
2681 } else if (HasUMUL_LOHI) {
2682 OpToUse = ISD::UMUL_LOHI;
2683 }
2684 if (OpToUse) {
2685 Result = SDOperand(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0);
2686 break;
2687 }
2688 }
2689 if (Node->getOpcode() == ISD::MULHS &&
2690 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
2691 Result = SDOperand(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
2692 break;
2693 }
2694 if (Node->getOpcode() == ISD::MULHU &&
2695 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
2696 Result = SDOperand(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
2697 break;
2698 }
2699 if (Node->getOpcode() == ISD::SDIV &&
2700 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
2701 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0);
2702 break;
2703 }
2704 if (Node->getOpcode() == ISD::UDIV &&
2705 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
2706 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0);
2707 break;
2708 }
2709
Dan Gohman82669522007-10-11 23:57:53 +00002710 // Check to see if we have a libcall for this operator.
2711 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
2712 bool isSigned = false;
2713 switch (Node->getOpcode()) {
2714 case ISD::UDIV:
2715 case ISD::SDIV:
2716 if (VT == MVT::i32) {
2717 LC = Node->getOpcode() == ISD::UDIV
Evan Cheng56966222007-01-12 02:11:51 +00002718 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00002719 isSigned = Node->getOpcode() == ISD::SDIV;
2720 }
2721 break;
2722 case ISD::FPOW:
2723 LC = VT == MVT::f32 ? RTLIB::POW_F32 :
2724 VT == MVT::f64 ? RTLIB::POW_F64 :
2725 VT == MVT::f80 ? RTLIB::POW_F80 :
2726 VT == MVT::ppcf128 ? RTLIB::POW_PPCF128 :
2727 RTLIB::UNKNOWN_LIBCALL;
2728 break;
2729 default: break;
2730 }
2731 if (LC != RTLIB::UNKNOWN_LIBCALL) {
2732 SDOperand Dummy;
2733 Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002734 break;
2735 }
2736
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002737 assert(MVT::isVector(Node->getValueType(0)) &&
2738 "Cannot expand this binary operator!");
2739 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00002740 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002741 break;
2742 }
Evan Chengcc987612006-04-12 21:20:24 +00002743 case TargetLowering::Promote: {
2744 switch (Node->getOpcode()) {
2745 default: assert(0 && "Do not know how to promote this BinOp!");
2746 case ISD::AND:
2747 case ISD::OR:
2748 case ISD::XOR: {
2749 MVT::ValueType OVT = Node->getValueType(0);
2750 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2751 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
2752 // Bit convert each of the values to the new type.
2753 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
2754 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
2755 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2756 // Bit convert the result back the original type.
2757 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
2758 break;
2759 }
2760 }
2761 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002762 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002763 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002764
Dan Gohmane14ea862007-10-05 14:17:22 +00002765 case ISD::SMUL_LOHI:
2766 case ISD::UMUL_LOHI:
2767 case ISD::SDIVREM:
2768 case ISD::UDIVREM:
2769 // These nodes will only be produced by target-specific lowering, so
2770 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00002771 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00002772 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00002773
2774 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2775 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
2776 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00002777 break;
2778
Chris Lattnera09f8482006-03-05 05:09:38 +00002779 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
2780 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2781 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2782 case Expand: assert(0 && "Not possible");
2783 case Legal:
2784 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2785 break;
2786 case Promote:
2787 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2788 break;
2789 }
2790
2791 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2792
2793 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2794 default: assert(0 && "Operation not supported");
2795 case TargetLowering::Custom:
2796 Tmp1 = TLI.LowerOperation(Result, DAG);
2797 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00002798 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002799 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00002800 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00002801 // If this target supports fabs/fneg natively and select is cheap,
2802 // do this efficiently.
2803 if (!TLI.isSelectExpensive() &&
2804 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
2805 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00002806 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00002807 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00002808 // Get the sign bit of the RHS.
2809 MVT::ValueType IVT =
2810 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
2811 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
2812 SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
2813 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
2814 // Get the absolute value of the result.
2815 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
2816 // Select between the nabs and abs value based on the sign bit of
2817 // the input.
2818 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
2819 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
2820 AbsVal),
2821 AbsVal);
2822 Result = LegalizeOp(Result);
2823 break;
2824 }
2825
2826 // Otherwise, do bitwise ops!
Evan Cheng912095b2007-01-04 21:56:39 +00002827 MVT::ValueType NVT =
2828 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
2829 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
2830 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
2831 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00002832 break;
2833 }
Evan Cheng912095b2007-01-04 21:56:39 +00002834 }
Chris Lattnera09f8482006-03-05 05:09:38 +00002835 break;
2836
Nate Begeman551bf3f2006-02-17 05:43:56 +00002837 case ISD::ADDC:
2838 case ISD::SUBC:
2839 Tmp1 = LegalizeOp(Node->getOperand(0));
2840 Tmp2 = LegalizeOp(Node->getOperand(1));
2841 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2842 // Since this produces two values, make sure to remember that we legalized
2843 // both of them.
2844 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2845 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2846 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002847
Nate Begeman551bf3f2006-02-17 05:43:56 +00002848 case ISD::ADDE:
2849 case ISD::SUBE:
2850 Tmp1 = LegalizeOp(Node->getOperand(0));
2851 Tmp2 = LegalizeOp(Node->getOperand(1));
2852 Tmp3 = LegalizeOp(Node->getOperand(2));
2853 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2854 // Since this produces two values, make sure to remember that we legalized
2855 // both of them.
2856 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2857 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2858 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00002859
Nate Begeman419f8b62005-10-18 00:27:41 +00002860 case ISD::BUILD_PAIR: {
2861 MVT::ValueType PairTy = Node->getValueType(0);
2862 // TODO: handle the case where the Lo and Hi operands are not of legal type
2863 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
2864 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
2865 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002866 case TargetLowering::Promote:
2867 case TargetLowering::Custom:
2868 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00002869 case TargetLowering::Legal:
2870 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
2871 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
2872 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00002873 case TargetLowering::Expand:
2874 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
2875 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
2876 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
2877 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
2878 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00002879 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00002880 break;
2881 }
2882 break;
2883 }
2884
Nate Begemanc105e192005-04-06 00:23:54 +00002885 case ISD::UREM:
2886 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00002887 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00002888 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2889 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00002890
Nate Begemanc105e192005-04-06 00:23:54 +00002891 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002892 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
2893 case TargetLowering::Custom:
2894 isCustom = true;
2895 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00002896 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002897 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002898 if (isCustom) {
2899 Tmp1 = TLI.LowerOperation(Result, DAG);
2900 if (Tmp1.Val) Result = Tmp1;
2901 }
Nate Begemanc105e192005-04-06 00:23:54 +00002902 break;
Dan Gohman525178c2007-10-08 18:33:35 +00002903 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00002904 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00002905 bool isSigned = DivOpc == ISD::SDIV;
Dan Gohman525178c2007-10-08 18:33:35 +00002906 MVT::ValueType VT = Node->getValueType(0);
2907
2908 // See if remainder can be lowered using two-result operations.
2909 SDVTList VTs = DAG.getVTList(VT, VT);
2910 if (Node->getOpcode() == ISD::SREM &&
2911 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
2912 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1);
2913 break;
2914 }
2915 if (Node->getOpcode() == ISD::UREM &&
2916 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
2917 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1);
2918 break;
2919 }
2920
2921 if (MVT::isInteger(VT)) {
2922 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002923 TargetLowering::Legal) {
2924 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00002925 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002926 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
2927 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
2928 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00002929 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002930 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00002931 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
2932 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002933 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00002934 Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002935 }
Chris Lattner4c64dd72005-08-03 20:31:37 +00002936 } else {
2937 // Floating point mod -> fmod libcall.
Dan Gohman525178c2007-10-08 18:33:35 +00002938 RTLIB::Libcall LC = VT == MVT::f32
Evan Cheng56966222007-01-12 02:11:51 +00002939 ? RTLIB::REM_F32 : RTLIB::REM_F64;
Chris Lattner4c64dd72005-08-03 20:31:37 +00002940 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00002941 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
2942 false/*sign irrelevant*/, Dummy);
Nate Begemanc105e192005-04-06 00:23:54 +00002943 }
2944 break;
2945 }
Dan Gohman525178c2007-10-08 18:33:35 +00002946 }
Nate Begemanc105e192005-04-06 00:23:54 +00002947 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00002948 case ISD::VAARG: {
2949 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2950 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
2951
Chris Lattner5c62f332006-01-28 07:42:08 +00002952 MVT::ValueType VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00002953 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2954 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002955 case TargetLowering::Custom:
2956 isCustom = true;
2957 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00002958 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002959 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2960 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002961 Tmp1 = Result.getValue(1);
2962
2963 if (isCustom) {
2964 Tmp2 = TLI.LowerOperation(Result, DAG);
2965 if (Tmp2.Val) {
2966 Result = LegalizeOp(Tmp2);
2967 Tmp1 = LegalizeOp(Tmp2.getValue(1));
2968 }
2969 }
Nate Begemanacc398c2006-01-25 18:21:52 +00002970 break;
2971 case TargetLowering::Expand: {
Evan Cheng466685d2006-10-09 20:57:25 +00002972 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +00002973 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00002974 SV->getValue(), SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002975 // Increment the pointer, VAList, to the next vaarg
2976 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
2977 DAG.getConstant(MVT::getSizeInBits(VT)/8,
2978 TLI.getPointerTy()));
2979 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00002980 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
2981 SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00002982 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00002983 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00002984 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00002985 Result = LegalizeOp(Result);
2986 break;
2987 }
2988 }
2989 // Since VAARG produces two values, make sure to remember that we
2990 // legalized both of them.
2991 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00002992 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
2993 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00002994 }
2995
2996 case ISD::VACOPY:
2997 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2998 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
2999 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3000
3001 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3002 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003003 case TargetLowering::Custom:
3004 isCustom = true;
3005 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003006 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003007 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3008 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003009 if (isCustom) {
3010 Tmp1 = TLI.LowerOperation(Result, DAG);
3011 if (Tmp1.Val) Result = Tmp1;
3012 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003013 break;
3014 case TargetLowering::Expand:
3015 // This defaults to loading a pointer from the input and storing it to the
3016 // output, returning the chain.
Evan Cheng466685d2006-10-09 20:57:25 +00003017 SrcValueSDNode *SVD = cast<SrcValueSDNode>(Node->getOperand(3));
Evan Cheng8b2794a2006-10-13 21:14:26 +00003018 SrcValueSDNode *SVS = cast<SrcValueSDNode>(Node->getOperand(4));
Evan Cheng466685d2006-10-09 20:57:25 +00003019 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, SVD->getValue(),
3020 SVD->getOffset());
Evan Cheng8b2794a2006-10-13 21:14:26 +00003021 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, SVS->getValue(),
3022 SVS->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00003023 break;
3024 }
3025 break;
3026
3027 case ISD::VAEND:
3028 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3029 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3030
3031 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3032 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003033 case TargetLowering::Custom:
3034 isCustom = true;
3035 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003036 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003037 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003038 if (isCustom) {
3039 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
3040 if (Tmp1.Val) Result = Tmp1;
3041 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003042 break;
3043 case TargetLowering::Expand:
3044 Result = Tmp1; // Default to a no-op, return the chain
3045 break;
3046 }
3047 break;
3048
3049 case ISD::VASTART:
3050 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3051 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3052
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003053 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3054
Nate Begemanacc398c2006-01-25 18:21:52 +00003055 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3056 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003057 case TargetLowering::Legal: break;
3058 case TargetLowering::Custom:
3059 Tmp1 = TLI.LowerOperation(Result, DAG);
3060 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003061 break;
3062 }
3063 break;
3064
Nate Begeman35ef9132006-01-11 21:21:00 +00003065 case ISD::ROTL:
3066 case ISD::ROTR:
3067 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3068 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003069 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003070 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3071 default:
3072 assert(0 && "ROTL/ROTR legalize operation not supported");
3073 break;
3074 case TargetLowering::Legal:
3075 break;
3076 case TargetLowering::Custom:
3077 Tmp1 = TLI.LowerOperation(Result, DAG);
3078 if (Tmp1.Val) Result = Tmp1;
3079 break;
3080 case TargetLowering::Promote:
3081 assert(0 && "Do not know how to promote ROTL/ROTR");
3082 break;
3083 case TargetLowering::Expand:
3084 assert(0 && "Do not know how to expand ROTL/ROTR");
3085 break;
3086 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003087 break;
3088
Nate Begemand88fc032006-01-14 03:14:10 +00003089 case ISD::BSWAP:
3090 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3091 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003092 case TargetLowering::Custom:
3093 assert(0 && "Cannot custom legalize this yet!");
3094 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003095 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003096 break;
3097 case TargetLowering::Promote: {
3098 MVT::ValueType OVT = Tmp1.getValueType();
3099 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanb55757e2007-05-18 17:52:13 +00003100 unsigned DiffBits = MVT::getSizeInBits(NVT) - MVT::getSizeInBits(OVT);
Nate Begemand88fc032006-01-14 03:14:10 +00003101
Chris Lattner456a93a2006-01-28 07:39:30 +00003102 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3103 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3104 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3105 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3106 break;
3107 }
3108 case TargetLowering::Expand:
3109 Result = ExpandBSWAP(Tmp1);
3110 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003111 }
3112 break;
3113
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003114 case ISD::CTPOP:
3115 case ISD::CTTZ:
3116 case ISD::CTLZ:
3117 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3118 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003119 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003120 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003121 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003122 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003123 TargetLowering::Custom) {
3124 Tmp1 = TLI.LowerOperation(Result, DAG);
3125 if (Tmp1.Val) {
3126 Result = Tmp1;
3127 }
Scott Michel910b66d2007-07-30 21:00:31 +00003128 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003129 break;
3130 case TargetLowering::Promote: {
3131 MVT::ValueType OVT = Tmp1.getValueType();
3132 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003133
3134 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003135 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3136 // Perform the larger operation, then subtract if needed.
3137 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003138 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003139 case ISD::CTPOP:
3140 Result = Tmp1;
3141 break;
3142 case ISD::CTTZ:
3143 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003144 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003145 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003146 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003147 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Scott Michel910b66d2007-07-30 21:00:31 +00003148 DAG.getConstant(MVT::getSizeInBits(OVT),NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003149 break;
3150 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003151 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003152 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003153 DAG.getConstant(MVT::getSizeInBits(NVT) -
3154 MVT::getSizeInBits(OVT), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003155 break;
3156 }
3157 break;
3158 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003159 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003160 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003161 break;
3162 }
3163 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003164
Chris Lattner2c8086f2005-04-02 05:00:07 +00003165 // Unary operators
3166 case ISD::FABS:
3167 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003168 case ISD::FSQRT:
3169 case ISD::FSIN:
3170 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003171 Tmp1 = LegalizeOp(Node->getOperand(0));
3172 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003173 case TargetLowering::Promote:
3174 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003175 isCustom = true;
3176 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003177 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003178 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003179 if (isCustom) {
3180 Tmp1 = TLI.LowerOperation(Result, DAG);
3181 if (Tmp1.Val) Result = Tmp1;
3182 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003183 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003184 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003185 switch (Node->getOpcode()) {
3186 default: assert(0 && "Unreachable!");
3187 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003188 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3189 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003190 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003191 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003192 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003193 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
3194 MVT::ValueType VT = Node->getValueType(0);
3195 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003196 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003197 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3198 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003199 break;
3200 }
3201 case ISD::FSQRT:
3202 case ISD::FSIN:
3203 case ISD::FCOS: {
3204 MVT::ValueType VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003205
3206 // Expand unsupported unary vector operators by unrolling them.
3207 if (MVT::isVector(VT)) {
3208 Result = LegalizeOp(UnrollVectorOp(Op));
3209 break;
3210 }
3211
Evan Cheng56966222007-01-12 02:11:51 +00003212 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003213 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003214 case ISD::FSQRT:
Dale Johannesen317096a2007-09-28 01:08:20 +00003215 LC = VT == MVT::f32 ? RTLIB::SQRT_F32 :
Dale Johannesen161e8972007-10-05 20:04:43 +00003216 VT == MVT::f64 ? RTLIB::SQRT_F64 :
3217 VT == MVT::f80 ? RTLIB::SQRT_F80 :
3218 VT == MVT::ppcf128 ? RTLIB::SQRT_PPCF128 :
3219 RTLIB::UNKNOWN_LIBCALL;
Evan Cheng56966222007-01-12 02:11:51 +00003220 break;
3221 case ISD::FSIN:
3222 LC = VT == MVT::f32 ? RTLIB::SIN_F32 : RTLIB::SIN_F64;
3223 break;
3224 case ISD::FCOS:
3225 LC = VT == MVT::f32 ? RTLIB::COS_F32 : RTLIB::COS_F64;
3226 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003227 default: assert(0 && "Unreachable!");
3228 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00003229 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003230 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3231 false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003232 break;
3233 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003234 }
3235 break;
3236 }
3237 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003238 case ISD::FPOWI: {
Dan Gohman82669522007-10-11 23:57:53 +00003239 MVT::ValueType VT = Node->getValueType(0);
3240
3241 // Expand unsupported unary vector operators by unrolling them.
3242 if (MVT::isVector(VT)) {
3243 Result = LegalizeOp(UnrollVectorOp(Op));
3244 break;
3245 }
3246
3247 // We always lower FPOWI into a libcall. No target support for it yet.
Dale Johannesen317096a2007-09-28 01:08:20 +00003248 RTLIB::Libcall LC =
Dan Gohman82669522007-10-11 23:57:53 +00003249 VT == MVT::f32 ? RTLIB::POWI_F32 :
3250 VT == MVT::f64 ? RTLIB::POWI_F64 :
3251 VT == MVT::f80 ? RTLIB::POWI_F80 :
3252 VT == MVT::ppcf128 ? RTLIB::POWI_PPCF128 :
Dale Johannesen161e8972007-10-05 20:04:43 +00003253 RTLIB::UNKNOWN_LIBCALL;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003254 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003255 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3256 false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003257 break;
3258 }
Chris Lattner35481892005-12-23 00:16:34 +00003259 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003260 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner35481892005-12-23 00:16:34 +00003261 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
Dan Gohman7f321562007-06-25 16:23:39 +00003262 } else if (MVT::isVector(Op.getOperand(0).getValueType())) {
3263 // The input has to be a vector type, we have to either scalarize it, pack
3264 // it, or convert it based on whether the input vector type is legal.
3265 SDNode *InVal = Node->getOperand(0).Val;
Dale Johannesene5269622007-10-20 00:07:52 +00003266 int InIx = Node->getOperand(0).ResNo;
3267 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(InIx));
3268 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(InIx));
Dan Gohman7f321562007-06-25 16:23:39 +00003269
3270 // Figure out if there is a simple type corresponding to this Vector
3271 // type. If so, convert to the vector type.
3272 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3273 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003274 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003275 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3276 LegalizeOp(Node->getOperand(0)));
3277 break;
3278 } else if (NumElems == 1) {
3279 // Turn this into a bit convert of the scalar input.
3280 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3281 ScalarizeVectorOp(Node->getOperand(0)));
3282 break;
3283 } else {
3284 // FIXME: UNIMP! Store then reload
3285 assert(0 && "Cast from unsupported vector type not implemented yet!");
3286 }
Chris Lattner67993f72006-01-23 07:30:46 +00003287 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003288 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3289 Node->getOperand(0).getValueType())) {
3290 default: assert(0 && "Unknown operation action!");
3291 case TargetLowering::Expand:
3292 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
3293 break;
3294 case TargetLowering::Legal:
3295 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003296 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003297 break;
3298 }
3299 }
3300 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003301
Chris Lattner2c8086f2005-04-02 05:00:07 +00003302 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003303 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003304 case ISD::UINT_TO_FP: {
3305 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003306 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3307 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003308 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003309 Node->getOperand(0).getValueType())) {
3310 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003311 case TargetLowering::Custom:
3312 isCustom = true;
3313 // FALLTHROUGH
3314 case TargetLowering::Legal:
3315 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003316 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003317 if (isCustom) {
3318 Tmp1 = TLI.LowerOperation(Result, DAG);
3319 if (Tmp1.Val) Result = Tmp1;
3320 }
3321 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003322 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00003323 Result = ExpandLegalINT_TO_FP(isSigned,
3324 LegalizeOp(Node->getOperand(0)),
3325 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003326 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003327 case TargetLowering::Promote:
3328 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
3329 Node->getValueType(0),
3330 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003331 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00003332 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003333 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00003334 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003335 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
3336 Node->getValueType(0), Node->getOperand(0));
3337 break;
3338 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003339 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003340 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003341 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
3342 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003343 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003344 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
3345 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003346 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003347 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3348 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003349 break;
3350 }
3351 break;
3352 }
3353 case ISD::TRUNCATE:
3354 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3355 case Legal:
3356 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003357 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003358 break;
3359 case Expand:
3360 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3361
3362 // Since the result is legal, we should just be able to truncate the low
3363 // part of the source.
3364 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3365 break;
3366 case Promote:
3367 Result = PromoteOp(Node->getOperand(0));
3368 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3369 break;
3370 }
3371 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003372
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003373 case ISD::FP_TO_SINT:
3374 case ISD::FP_TO_UINT:
3375 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3376 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003377 Tmp1 = LegalizeOp(Node->getOperand(0));
3378
Chris Lattner1618beb2005-07-29 00:11:56 +00003379 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3380 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003381 case TargetLowering::Custom:
3382 isCustom = true;
3383 // FALLTHROUGH
3384 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003385 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003386 if (isCustom) {
3387 Tmp1 = TLI.LowerOperation(Result, DAG);
3388 if (Tmp1.Val) Result = Tmp1;
3389 }
3390 break;
3391 case TargetLowering::Promote:
3392 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3393 Node->getOpcode() == ISD::FP_TO_SINT);
3394 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003395 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003396 if (Node->getOpcode() == ISD::FP_TO_UINT) {
3397 SDOperand True, False;
3398 MVT::ValueType VT = Node->getOperand(0).getValueType();
3399 MVT::ValueType NVT = Node->getValueType(0);
Dale Johannesenf4d48322007-09-19 17:53:26 +00003400 unsigned ShiftAmt = MVT::getSizeInBits(NVT)-1;
Dale Johannesen73328d12007-09-19 23:55:34 +00003401 const uint64_t zero[] = {0, 0};
3402 APFloat apf = APFloat(APInt(MVT::getSizeInBits(VT), 2, zero));
3403 uint64_t x = 1ULL << ShiftAmt;
Neil Boothccf596a2007-10-07 11:45:55 +00003404 (void)apf.convertFromZeroExtendedInteger
3405 (&x, MVT::getSizeInBits(NVT), false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00003406 Tmp2 = DAG.getConstantFP(apf, VT);
Nate Begemand2558e32005-08-14 01:20:53 +00003407 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
3408 Node->getOperand(0), Tmp2, ISD::SETLT);
3409 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3410 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003411 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003412 Tmp2));
3413 False = DAG.getNode(ISD::XOR, NVT, False,
3414 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003415 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3416 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003417 } else {
3418 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3419 }
3420 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003421 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003422 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003423 case Expand: {
Evan Cheng6af00d52006-12-13 01:57:55 +00003424 MVT::ValueType VT = Op.getValueType();
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003425 MVT::ValueType OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003426 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003427 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003428 if (Node->getOpcode()==ISD::FP_TO_SINT)
3429 Result = DAG.getNode(ISD::FP_TO_SINT, VT,
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003430 DAG.getNode(ISD::FP_ROUND, MVT::f64,
3431 (DAG.getNode(ISD::FP_ROUND_INREG,
3432 MVT::ppcf128, Node->getOperand(0),
3433 DAG.getValueType(MVT::f64)))));
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003434 else {
3435 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3436 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3437 Tmp2 = DAG.getConstantFP(apf, OVT);
3438 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3439 // FIXME: generated code sucks.
3440 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3441 DAG.getNode(ISD::ADD, MVT::i32,
3442 DAG.getNode(ISD::FP_TO_SINT, VT,
3443 DAG.getNode(ISD::FSUB, OVT,
3444 Node->getOperand(0), Tmp2)),
3445 DAG.getConstant(0x80000000, MVT::i32)),
3446 DAG.getNode(ISD::FP_TO_SINT, VT,
3447 Node->getOperand(0)),
3448 DAG.getCondCode(ISD::SETGE));
3449 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003450 break;
3451 }
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003452 // Convert f32 / f64 to i32 / i64.
Evan Cheng56966222007-01-12 02:11:51 +00003453 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng6af00d52006-12-13 01:57:55 +00003454 switch (Node->getOpcode()) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003455 case ISD::FP_TO_SINT: {
Dale Johannesen73328d12007-09-19 23:55:34 +00003456 if (OVT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00003457 LC = (VT == MVT::i32)
3458 ? RTLIB::FPTOSINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00003459 else if (OVT == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00003460 LC = (VT == MVT::i32)
3461 ? RTLIB::FPTOSINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
Dale Johannesen161e8972007-10-05 20:04:43 +00003462 else if (OVT == MVT::f80) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003463 assert(VT == MVT::i64);
Dale Johannesen161e8972007-10-05 20:04:43 +00003464 LC = RTLIB::FPTOSINT_F80_I64;
3465 }
3466 else if (OVT == MVT::ppcf128) {
3467 assert(VT == MVT::i64);
3468 LC = RTLIB::FPTOSINT_PPCF128_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00003469 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003470 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003471 }
3472 case ISD::FP_TO_UINT: {
Dale Johannesen73328d12007-09-19 23:55:34 +00003473 if (OVT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00003474 LC = (VT == MVT::i32)
3475 ? RTLIB::FPTOUINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00003476 else if (OVT == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00003477 LC = (VT == MVT::i32)
3478 ? RTLIB::FPTOUINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
Dale Johannesen161e8972007-10-05 20:04:43 +00003479 else if (OVT == MVT::f80) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003480 LC = (VT == MVT::i32)
Dale Johannesen161e8972007-10-05 20:04:43 +00003481 ? RTLIB::FPTOUINT_F80_I32 : RTLIB::FPTOUINT_F80_I64;
3482 }
3483 else if (OVT == MVT::ppcf128) {
3484 assert(VT == MVT::i64);
3485 LC = RTLIB::FPTOUINT_PPCF128_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00003486 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003487 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003488 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003489 default: assert(0 && "Unreachable!");
3490 }
3491 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003492 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3493 false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003494 break;
3495 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003496 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003497 Tmp1 = PromoteOp(Node->getOperand(0));
3498 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3499 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003500 break;
3501 }
3502 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003503
Dale Johannesenab081c72007-08-09 17:27:48 +00003504 case ISD::FP_EXTEND:
Dale Johannesen5411a392007-08-09 01:04:01 +00003505 case ISD::FP_ROUND: {
3506 MVT::ValueType newVT = Op.getValueType();
3507 MVT::ValueType oldVT = Op.getOperand(0).getValueType();
3508 if (TLI.getConvertAction(oldVT, newVT) == TargetLowering::Expand) {
Dale Johannesen638ccd52007-10-06 01:24:11 +00003509 if (Node->getOpcode() == ISD::FP_ROUND && oldVT == MVT::ppcf128) {
3510 SDOperand Lo, Hi;
3511 ExpandOp(Node->getOperand(0), Lo, Hi);
3512 if (newVT == MVT::f64)
3513 Result = Hi;
3514 else
3515 Result = DAG.getNode(ISD::FP_ROUND, newVT, Hi);
3516 break;
Dale Johannesenab081c72007-08-09 17:27:48 +00003517 } else {
Dale Johannesen638ccd52007-10-06 01:24:11 +00003518 // The only other way we can lower this is to turn it into a STORE,
3519 // LOAD pair, targetting a temporary location (a stack slot).
3520
3521 // NOTE: there is a choice here between constantly creating new stack
3522 // slots and always reusing the same one. We currently always create
3523 // new ones, as reuse may inhibit scheduling.
3524 MVT::ValueType slotVT =
3525 (Node->getOpcode() == ISD::FP_EXTEND) ? oldVT : newVT;
3526 const Type *Ty = MVT::getTypeForValueType(slotVT);
3527 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
3528 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
3529 MachineFunction &MF = DAG.getMachineFunction();
3530 int SSFI =
3531 MF.getFrameInfo()->CreateStackObject(TySize, Align);
3532 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
3533 if (Node->getOpcode() == ISD::FP_EXTEND) {
3534 Result = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0),
3535 StackSlot, NULL, 0);
3536 Result = DAG.getExtLoad(ISD::EXTLOAD, newVT,
3537 Result, StackSlot, NULL, 0, oldVT);
3538 } else {
3539 Result = DAG.getTruncStore(DAG.getEntryNode(), Node->getOperand(0),
3540 StackSlot, NULL, 0, newVT);
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003541 Result = DAG.getLoad(newVT, Result, StackSlot, NULL, 0);
Dale Johannesen638ccd52007-10-06 01:24:11 +00003542 }
3543 break;
Dale Johannesenab081c72007-08-09 17:27:48 +00003544 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003545 }
Dale Johannesen849f2142007-07-03 00:53:03 +00003546 }
3547 // FALL THROUGH
Chris Lattner13c78e22005-09-02 00:18:10 +00003548 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003549 case ISD::ZERO_EXTEND:
3550 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003551 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003552 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003553 case Legal:
3554 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003555 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003556 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003557 case Promote:
3558 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003559 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003560 Tmp1 = PromoteOp(Node->getOperand(0));
3561 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003562 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003563 case ISD::ZERO_EXTEND:
3564 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003565 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003566 Result = DAG.getZeroExtendInReg(Result,
3567 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003568 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003569 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003570 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003571 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003572 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003573 Result,
3574 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003575 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003576 case ISD::FP_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003577 Result = PromoteOp(Node->getOperand(0));
3578 if (Result.getValueType() != Op.getValueType())
3579 // Dynamically dead while we have only 2 FP types.
3580 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Result);
3581 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003582 case ISD::FP_ROUND:
Chris Lattnerf8161d82005-01-16 05:06:12 +00003583 Result = PromoteOp(Node->getOperand(0));
3584 Result = DAG.getNode(Node->getOpcode(), Op.getValueType(), Result);
3585 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003586 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003587 }
3588 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003589 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003590 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003591 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003592 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003593
3594 // If this operation is not supported, convert it to a shl/shr or load/store
3595 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003596 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3597 default: assert(0 && "This action not supported for this op yet!");
3598 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003599 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003600 break;
3601 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003602 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003603 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003604 // NOTE: we could fall back on load/store here too for targets without
3605 // SAR. However, it is doubtful that any exist.
3606 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
3607 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00003608 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003609 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3610 Node->getOperand(0), ShiftCst);
3611 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3612 Result, ShiftCst);
3613 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003614 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003615 // EXTLOAD pair, targetting a temporary location (a stack slot).
3616
3617 // NOTE: there is a choice here between constantly creating new stack
3618 // slots and always reusing the same one. We currently always create
3619 // new ones, as reuse may inhibit scheduling.
3620 const Type *Ty = MVT::getTypeForValueType(ExtraVT);
Chris Lattner44b2c502007-04-28 06:42:38 +00003621 uint64_t TySize = TLI.getTargetData()->getTypeSize(Ty);
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00003622 unsigned Align = TLI.getTargetData()->getPrefTypeAlignment(Ty);
Chris Lattner45b8caf2005-01-15 07:15:18 +00003623 MachineFunction &MF = DAG.getMachineFunction();
Misha Brukmanedf128a2005-04-21 22:36:52 +00003624 int SSFI =
Chris Lattner44b2c502007-04-28 06:42:38 +00003625 MF.getFrameInfo()->CreateStackObject(TySize, Align);
Chris Lattner45b8caf2005-01-15 07:15:18 +00003626 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
Evan Cheng8b2794a2006-10-13 21:14:26 +00003627 Result = DAG.getTruncStore(DAG.getEntryNode(), Node->getOperand(0),
3628 StackSlot, NULL, 0, ExtraVT);
Chris Lattner5f056bf2005-07-10 01:55:33 +00003629 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
Evan Cheng466685d2006-10-09 20:57:25 +00003630 Result, StackSlot, NULL, 0, ExtraVT);
Chris Lattner45b8caf2005-01-15 07:15:18 +00003631 } else {
3632 assert(0 && "Unknown op");
3633 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003634 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003635 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003636 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003637 }
Duncan Sands36397f52007-07-27 12:58:54 +00003638 case ISD::TRAMPOLINE: {
3639 SDOperand Ops[6];
3640 for (unsigned i = 0; i != 6; ++i)
3641 Ops[i] = LegalizeOp(Node->getOperand(i));
3642 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3643 // The only option for this node is to custom lower it.
3644 Result = TLI.LowerOperation(Result, DAG);
3645 assert(Result.Val && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00003646
3647 // Since trampoline produces two values, make sure to remember that we
3648 // legalized both of them.
3649 Tmp1 = LegalizeOp(Result.getValue(1));
3650 Result = LegalizeOp(Result);
3651 AddLegalizedOperand(SDOperand(Node, 0), Result);
3652 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3653 return Op.ResNo ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00003654 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00003655 }
Chris Lattner456a93a2006-01-28 07:39:30 +00003656
Chris Lattner4ddd2832006-04-08 04:13:17 +00003657 assert(Result.getValueType() == Op.getValueType() &&
3658 "Bad legalization!");
3659
Chris Lattner456a93a2006-01-28 07:39:30 +00003660 // Make sure that the generated code is itself legal.
3661 if (Result != Op)
3662 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003663
Chris Lattner45982da2005-05-12 16:53:42 +00003664 // Note that LegalizeOp may be reentered even from single-use nodes, which
3665 // means that we always must cache transformed nodes.
3666 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003667 return Result;
3668}
3669
Chris Lattner8b6fa222005-01-15 22:16:26 +00003670/// PromoteOp - Given an operation that produces a value in an invalid type,
3671/// promote it to compute the value into a larger type. The produced value will
3672/// have the correct bits for the low portion of the register, but no guarantee
3673/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00003674SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
3675 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00003676 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00003677 assert(getTypeAction(VT) == Promote &&
3678 "Caller should expand or legalize operands that are not promotable!");
3679 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
3680 "Cannot promote to smaller type!");
3681
Chris Lattner03c85462005-01-15 05:21:40 +00003682 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00003683 SDOperand Result;
3684 SDNode *Node = Op.Val;
3685
Chris Lattner40030bf2007-02-04 01:17:38 +00003686 DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00003687 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00003688
Chris Lattner03c85462005-01-15 05:21:40 +00003689 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003690 case ISD::CopyFromReg:
3691 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00003692 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00003693#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00003694 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00003695#endif
Chris Lattner03c85462005-01-15 05:21:40 +00003696 assert(0 && "Do not know how to promote this operator!");
3697 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00003698 case ISD::UNDEF:
3699 Result = DAG.getNode(ISD::UNDEF, NVT);
3700 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003701 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00003702 if (VT != MVT::i1)
3703 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
3704 else
3705 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00003706 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
3707 break;
3708 case ISD::ConstantFP:
3709 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
3710 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
3711 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00003712
Chris Lattner82fbfb62005-01-18 02:59:52 +00003713 case ISD::SETCC:
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003714 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003715 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
3716 Node->getOperand(1), Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00003717 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00003718
Chris Lattner03c85462005-01-15 05:21:40 +00003719 case ISD::TRUNCATE:
3720 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3721 case Legal:
3722 Result = LegalizeOp(Node->getOperand(0));
3723 assert(Result.getValueType() >= NVT &&
3724 "This truncation doesn't make sense!");
3725 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
3726 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
3727 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00003728 case Promote:
3729 // The truncation is not required, because we don't guarantee anything
3730 // about high bits anyway.
3731 Result = PromoteOp(Node->getOperand(0));
3732 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003733 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00003734 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3735 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00003736 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00003737 }
3738 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003739 case ISD::SIGN_EXTEND:
3740 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00003741 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003742 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3743 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
3744 case Legal:
3745 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00003746 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003747 break;
3748 case Promote:
3749 // Promote the reg if it's smaller.
3750 Result = PromoteOp(Node->getOperand(0));
3751 // The high bits are not guaranteed to be anything. Insert an extend.
3752 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00003753 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00003754 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00003755 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00003756 Result = DAG.getZeroExtendInReg(Result,
3757 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00003758 break;
3759 }
3760 break;
Chris Lattner35481892005-12-23 00:16:34 +00003761 case ISD::BIT_CONVERT:
3762 Result = ExpandBIT_CONVERT(Node->getValueType(0), Node->getOperand(0));
3763 Result = PromoteOp(Result);
3764 break;
3765
Chris Lattner8b6fa222005-01-15 22:16:26 +00003766 case ISD::FP_EXTEND:
3767 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
3768 case ISD::FP_ROUND:
3769 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3770 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
3771 case Promote: assert(0 && "Unreachable with 2 FP types!");
3772 case Legal:
3773 // Input is legal? Do an FP_ROUND_INREG.
Chris Lattner456a93a2006-01-28 07:39:30 +00003774 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
Chris Lattner15e4b012005-07-10 00:07:11 +00003775 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003776 break;
3777 }
3778 break;
3779
3780 case ISD::SINT_TO_FP:
3781 case ISD::UINT_TO_FP:
3782 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3783 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00003784 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00003785 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003786 break;
3787
3788 case Promote:
3789 Result = PromoteOp(Node->getOperand(0));
3790 if (Node->getOpcode() == ISD::SINT_TO_FP)
3791 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003792 Result,
3793 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003794 else
Chris Lattner23993562005-04-13 02:38:47 +00003795 Result = DAG.getZeroExtendInReg(Result,
3796 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003797 // No extra round required here.
3798 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003799 break;
3800 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00003801 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
3802 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00003803 // Round if we cannot tolerate excess precision.
3804 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003805 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3806 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00003807 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003808 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003809 break;
3810
Chris Lattner5e3c5b42005-12-09 17:32:47 +00003811 case ISD::SIGN_EXTEND_INREG:
3812 Result = PromoteOp(Node->getOperand(0));
3813 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
3814 Node->getOperand(1));
3815 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003816 case ISD::FP_TO_SINT:
3817 case ISD::FP_TO_UINT:
3818 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3819 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00003820 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003821 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003822 break;
3823 case Promote:
3824 // The input result is prerounded, so we don't have to do anything
3825 // special.
3826 Tmp1 = PromoteOp(Node->getOperand(0));
3827 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003828 }
Nate Begemand2558e32005-08-14 01:20:53 +00003829 // If we're promoting a UINT to a larger size, check to see if the new node
3830 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
3831 // we can use that instead. This allows us to generate better code for
3832 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
3833 // legal, such as PowerPC.
3834 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003835 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00003836 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
3837 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00003838 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
3839 } else {
3840 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3841 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003842 break;
3843
Chris Lattner2c8086f2005-04-02 05:00:07 +00003844 case ISD::FABS:
3845 case ISD::FNEG:
3846 Tmp1 = PromoteOp(Node->getOperand(0));
3847 assert(Tmp1.getValueType() == NVT);
3848 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
3849 // NOTE: we do not have to do any extra rounding here for
3850 // NoExcessFPPrecision, because we know the input will have the appropriate
3851 // precision, and these operations don't modify precision at all.
3852 break;
3853
Chris Lattnerda6ba872005-04-28 21:44:33 +00003854 case ISD::FSQRT:
3855 case ISD::FSIN:
3856 case ISD::FCOS:
3857 Tmp1 = PromoteOp(Node->getOperand(0));
3858 assert(Tmp1.getValueType() == NVT);
3859 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003860 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003861 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3862 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00003863 break;
3864
Chris Lattner8b2d42c2007-03-03 23:43:21 +00003865 case ISD::FPOWI: {
3866 // Promote f32 powi to f64 powi. Note that this could insert a libcall
3867 // directly as well, which may be better.
3868 Tmp1 = PromoteOp(Node->getOperand(0));
3869 assert(Tmp1.getValueType() == NVT);
3870 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
3871 if (NoExcessFPPrecision)
3872 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3873 DAG.getValueType(VT));
3874 break;
3875 }
3876
Chris Lattner03c85462005-01-15 05:21:40 +00003877 case ISD::AND:
3878 case ISD::OR:
3879 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00003880 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003881 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00003882 case ISD::MUL:
3883 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00003884 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00003885 // that too is okay if they are integer operations.
3886 Tmp1 = PromoteOp(Node->getOperand(0));
3887 Tmp2 = PromoteOp(Node->getOperand(1));
3888 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3889 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00003890 break;
3891 case ISD::FADD:
3892 case ISD::FSUB:
3893 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00003894 Tmp1 = PromoteOp(Node->getOperand(0));
3895 Tmp2 = PromoteOp(Node->getOperand(1));
3896 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
3897 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3898
3899 // Floating point operations will give excess precision that we may not be
3900 // able to tolerate. If we DO allow excess precision, just leave it,
3901 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00003902 // FIXME: Why would we need to round FP ops more than integer ones?
3903 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00003904 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003905 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3906 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00003907 break;
3908
Chris Lattner8b6fa222005-01-15 22:16:26 +00003909 case ISD::SDIV:
3910 case ISD::SREM:
3911 // These operators require that their input be sign extended.
3912 Tmp1 = PromoteOp(Node->getOperand(0));
3913 Tmp2 = PromoteOp(Node->getOperand(1));
3914 if (MVT::isInteger(NVT)) {
Chris Lattner15e4b012005-07-10 00:07:11 +00003915 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3916 DAG.getValueType(VT));
3917 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
3918 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003919 }
3920 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3921
3922 // Perform FP_ROUND: this is probably overly pessimistic.
3923 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003924 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3925 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003926 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00003927 case ISD::FDIV:
3928 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00003929 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00003930 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00003931 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3932 case Legal:
3933 Tmp1 = LegalizeOp(Node->getOperand(0));
3934 break;
3935 case Promote:
3936 Tmp1 = PromoteOp(Node->getOperand(0));
3937 break;
3938 case Expand:
3939 assert(0 && "not implemented");
3940 }
3941 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3942 case Legal:
3943 Tmp2 = LegalizeOp(Node->getOperand(1));
3944 break;
3945 case Promote:
3946 Tmp2 = PromoteOp(Node->getOperand(1));
3947 break;
3948 case Expand:
3949 assert(0 && "not implemented");
3950 }
Chris Lattner01b3d732005-09-28 22:28:18 +00003951 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3952
3953 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00003954 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00003955 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3956 DAG.getValueType(VT));
3957 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003958
3959 case ISD::UDIV:
3960 case ISD::UREM:
3961 // These operators require that their input be zero extended.
3962 Tmp1 = PromoteOp(Node->getOperand(0));
3963 Tmp2 = PromoteOp(Node->getOperand(1));
3964 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00003965 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
3966 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003967 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3968 break;
3969
3970 case ISD::SHL:
3971 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003972 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003973 break;
3974 case ISD::SRA:
3975 // The input value must be properly sign extended.
3976 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003977 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
3978 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003979 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003980 break;
3981 case ISD::SRL:
3982 // The input value must be properly zero extended.
3983 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00003984 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00003985 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003986 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00003987
3988 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00003989 Tmp1 = Node->getOperand(0); // Get the chain.
3990 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00003991 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
3992 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
3993 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
3994 } else {
Evan Cheng466685d2006-10-09 20:57:25 +00003995 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begeman0aed7842006-01-28 03:14:31 +00003996 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00003997 SV->getValue(), SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00003998 // Increment the pointer, VAList, to the next vaarg
3999 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
4000 DAG.getConstant(MVT::getSizeInBits(VT)/8,
4001 TLI.getPointerTy()));
4002 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00004003 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
4004 SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00004005 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004006 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004007 }
4008 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004009 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004010 break;
4011
Evan Cheng466685d2006-10-09 20:57:25 +00004012 case ISD::LOAD: {
4013 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004014 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4015 ? ISD::EXTLOAD : LD->getExtensionType();
4016 Result = DAG.getExtLoad(ExtType, NVT,
4017 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004018 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004019 LD->getLoadedVT(),
4020 LD->isVolatile(),
4021 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004022 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004023 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004024 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004025 }
Chris Lattner03c85462005-01-15 05:21:40 +00004026 case ISD::SELECT:
Chris Lattner03c85462005-01-15 05:21:40 +00004027 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4028 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner456a93a2006-01-28 07:39:30 +00004029 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004030 break;
Nate Begeman9373a812005-08-10 20:51:12 +00004031 case ISD::SELECT_CC:
4032 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4033 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4034 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004035 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004036 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004037 case ISD::BSWAP:
4038 Tmp1 = Node->getOperand(0);
4039 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4040 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4041 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004042 DAG.getConstant(MVT::getSizeInBits(NVT) -
4043 MVT::getSizeInBits(VT),
Nate Begemand88fc032006-01-14 03:14:10 +00004044 TLI.getShiftAmountTy()));
4045 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004046 case ISD::CTPOP:
4047 case ISD::CTTZ:
4048 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004049 // Zero extend the argument
4050 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004051 // Perform the larger operation, then subtract if needed.
4052 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004053 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004054 case ISD::CTPOP:
4055 Result = Tmp1;
4056 break;
4057 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004058 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begemand2558e32005-08-14 01:20:53 +00004059 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004060 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
4061 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004062 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004063 DAG.getConstant(MVT::getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004064 break;
4065 case ISD::CTLZ:
4066 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004067 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004068 DAG.getConstant(MVT::getSizeInBits(NVT) -
4069 MVT::getSizeInBits(VT), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004070 break;
4071 }
4072 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004073 case ISD::EXTRACT_SUBVECTOR:
4074 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004075 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004076 case ISD::EXTRACT_VECTOR_ELT:
4077 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4078 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004079 }
4080
4081 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004082
4083 // Make sure the result is itself legal.
4084 Result = LegalizeOp(Result);
4085
4086 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004087 AddPromotedOperand(Op, Result);
4088 return Result;
4089}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004090
Dan Gohman7f321562007-06-25 16:23:39 +00004091/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4092/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4093/// based on the vector type. The return type of this matches the element type
4094/// of the vector, which may not be legal for the target.
4095SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004096 // We know that operand #0 is the Vec vector. If the index is a constant
4097 // or if the invec is a supported hardware type, we can use it. Otherwise,
4098 // lower to a store then an indexed load.
4099 SDOperand Vec = Op.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004100 SDOperand Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00004101
Dan Gohmane40c7b02007-09-24 15:54:53 +00004102 MVT::ValueType TVT = Vec.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00004103 unsigned NumElems = MVT::getVectorNumElements(TVT);
Chris Lattner15972212006-03-31 17:55:51 +00004104
Dan Gohman7f321562007-06-25 16:23:39 +00004105 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4106 default: assert(0 && "This action is not supported yet!");
4107 case TargetLowering::Custom: {
4108 Vec = LegalizeOp(Vec);
4109 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4110 SDOperand Tmp3 = TLI.LowerOperation(Op, DAG);
4111 if (Tmp3.Val)
4112 return Tmp3;
4113 break;
4114 }
4115 case TargetLowering::Legal:
4116 if (isTypeLegal(TVT)) {
4117 Vec = LegalizeOp(Vec);
4118 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004119 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004120 }
4121 break;
4122 case TargetLowering::Expand:
4123 break;
4124 }
4125
4126 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004127 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004128 Op = ScalarizeVectorOp(Vec);
4129 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
4130 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Chris Lattner15972212006-03-31 17:55:51 +00004131 SDOperand Lo, Hi;
4132 SplitVectorOp(Vec, Lo, Hi);
4133 if (CIdx->getValue() < NumElems/2) {
4134 Vec = Lo;
4135 } else {
4136 Vec = Hi;
Dan Gohman7f321562007-06-25 16:23:39 +00004137 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2,
4138 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00004139 }
Dan Gohman7f321562007-06-25 16:23:39 +00004140
Chris Lattner15972212006-03-31 17:55:51 +00004141 // It's now an extract from the appropriate high or low part. Recurse.
4142 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004143 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00004144 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004145 // Store the value to a temporary stack slot, then LOAD the scalar
4146 // element back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004147 SDOperand StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dan Gohman7f321562007-06-25 16:23:39 +00004148 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
4149
4150 // Add the offset to the index.
4151 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
4152 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4153 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004154
4155 if (MVT::getSizeInBits(Idx.getValueType()) >
4156 MVT::getSizeInBits(TLI.getPointerTy()))
Chris Lattnerf185e672007-10-19 16:47:35 +00004157 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004158 else
Chris Lattnerf185e672007-10-19 16:47:35 +00004159 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004160
Dan Gohman7f321562007-06-25 16:23:39 +00004161 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4162
4163 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00004164 }
Dan Gohman7f321562007-06-25 16:23:39 +00004165 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00004166}
4167
Dan Gohman7f321562007-06-25 16:23:39 +00004168/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00004169/// we assume the operation can be split if it is not already legal.
Dan Gohman7f321562007-06-25 16:23:39 +00004170SDOperand SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDOperand Op) {
Dan Gohman65956352007-06-13 15:12:02 +00004171 // We know that operand #0 is the Vec vector. For now we assume the index
4172 // is a constant and that the extracted result is a supported hardware type.
4173 SDOperand Vec = Op.getOperand(0);
4174 SDOperand Idx = LegalizeOp(Op.getOperand(1));
4175
Dan Gohman7f321562007-06-25 16:23:39 +00004176 unsigned NumElems = MVT::getVectorNumElements(Vec.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00004177
4178 if (NumElems == MVT::getVectorNumElements(Op.getValueType())) {
4179 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004180 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00004181 }
4182
4183 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
4184 SDOperand Lo, Hi;
4185 SplitVectorOp(Vec, Lo, Hi);
4186 if (CIdx->getValue() < NumElems/2) {
4187 Vec = Lo;
4188 } else {
4189 Vec = Hi;
4190 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
4191 }
4192
4193 // It's now an extract from the appropriate high or low part. Recurse.
4194 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004195 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00004196}
4197
Nate Begeman750ac1b2006-02-01 07:19:44 +00004198/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4199/// with condition CC on the current target. This usually involves legalizing
4200/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4201/// there may be no choice but to create a new SetCC node to represent the
4202/// legalized value of setcc lhs, rhs. In this case, the value is returned in
4203/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
4204void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
4205 SDOperand &RHS,
4206 SDOperand &CC) {
Dale Johannesen638ccd52007-10-06 01:24:11 +00004207 SDOperand Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004208
4209 switch (getTypeAction(LHS.getValueType())) {
4210 case Legal:
4211 Tmp1 = LegalizeOp(LHS); // LHS
4212 Tmp2 = LegalizeOp(RHS); // RHS
4213 break;
4214 case Promote:
4215 Tmp1 = PromoteOp(LHS); // LHS
4216 Tmp2 = PromoteOp(RHS); // RHS
4217
4218 // If this is an FP compare, the operands have already been extended.
4219 if (MVT::isInteger(LHS.getValueType())) {
4220 MVT::ValueType VT = LHS.getValueType();
4221 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
4222
4223 // Otherwise, we have to insert explicit sign or zero extends. Note
4224 // that we could insert sign extends for ALL conditions, but zero extend
4225 // is cheaper on many machines (an AND instead of two shifts), so prefer
4226 // it.
4227 switch (cast<CondCodeSDNode>(CC)->get()) {
4228 default: assert(0 && "Unknown integer comparison!");
4229 case ISD::SETEQ:
4230 case ISD::SETNE:
4231 case ISD::SETUGE:
4232 case ISD::SETUGT:
4233 case ISD::SETULE:
4234 case ISD::SETULT:
4235 // ALL of these operations will work if we either sign or zero extend
4236 // the operands (including the unsigned comparisons!). Zero extend is
4237 // usually a simpler/cheaper operation, so prefer it.
4238 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4239 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4240 break;
4241 case ISD::SETGE:
4242 case ISD::SETGT:
4243 case ISD::SETLT:
4244 case ISD::SETLE:
4245 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4246 DAG.getValueType(VT));
4247 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4248 DAG.getValueType(VT));
4249 break;
4250 }
4251 }
4252 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004253 case Expand: {
4254 MVT::ValueType VT = LHS.getValueType();
4255 if (VT == MVT::f32 || VT == MVT::f64) {
4256 // Expand into one or more soft-fp libcall(s).
Evan Cheng56966222007-01-12 02:11:51 +00004257 RTLIB::Libcall LC1, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00004258 switch (cast<CondCodeSDNode>(CC)->get()) {
4259 case ISD::SETEQ:
4260 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00004261 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004262 break;
4263 case ISD::SETNE:
4264 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00004265 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004266 break;
4267 case ISD::SETGE:
4268 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00004269 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004270 break;
4271 case ISD::SETLT:
4272 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00004273 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004274 break;
4275 case ISD::SETLE:
4276 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00004277 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004278 break;
4279 case ISD::SETGT:
4280 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00004281 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004282 break;
4283 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00004284 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4285 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004286 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00004287 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004288 break;
4289 default:
Evan Cheng56966222007-01-12 02:11:51 +00004290 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004291 switch (cast<CondCodeSDNode>(CC)->get()) {
4292 case ISD::SETONE:
4293 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004294 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004295 // Fallthrough
4296 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004297 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004298 break;
4299 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004300 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004301 break;
4302 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004303 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004304 break;
4305 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004306 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004307 break;
Evan Cheng56966222007-01-12 02:11:51 +00004308 case ISD::SETUEQ:
4309 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004310 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004311 default: assert(0 && "Unsupported FP setcc!");
4312 }
4313 }
4314
4315 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00004316 Tmp1 = ExpandLibCall(TLI.getLibcallName(LC1),
Reid Spencer47857812006-12-31 05:55:36 +00004317 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004318 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004319 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004320 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004321 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Evan Cheng2b49c502006-12-15 02:59:56 +00004322 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), Tmp1, Tmp2, CC);
Evan Cheng56966222007-01-12 02:11:51 +00004323 LHS = ExpandLibCall(TLI.getLibcallName(LC2),
Reid Spencer47857812006-12-31 05:55:36 +00004324 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004325 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004326 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004327 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004328 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4329 Tmp2 = SDOperand();
4330 }
4331 LHS = Tmp1;
4332 RHS = Tmp2;
4333 return;
4334 }
4335
Nate Begeman750ac1b2006-02-01 07:19:44 +00004336 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
4337 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004338 ExpandOp(RHS, RHSLo, RHSHi);
4339 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4340
4341 if (VT==MVT::ppcf128) {
4342 // FIXME: This generated code sucks. We want to generate
4343 // FCMP crN, hi1, hi2
4344 // BNE crN, L:
4345 // FCMP crN, lo1, lo2
4346 // The following can be improved, but not that much.
4347 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
4348 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, CCCode);
4349 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4350 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETNE);
4351 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, CCCode);
4352 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4353 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
4354 Tmp2 = SDOperand();
4355 break;
4356 }
4357
4358 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004359 case ISD::SETEQ:
4360 case ISD::SETNE:
4361 if (RHSLo == RHSHi)
4362 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4363 if (RHSCST->isAllOnesValue()) {
4364 // Comparison to -1.
4365 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4366 Tmp2 = RHSLo;
4367 break;
4368 }
4369
4370 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4371 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4372 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4373 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4374 break;
4375 default:
4376 // If this is a comparison of the sign bit, just look at the top part.
4377 // X > -1, x < 0
4378 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4379 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
4380 CST->getValue() == 0) || // X < 0
4381 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4382 CST->isAllOnesValue())) { // X > -1
4383 Tmp1 = LHSHi;
4384 Tmp2 = RHSHi;
4385 break;
4386 }
4387
4388 // FIXME: This generated code sucks.
4389 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004390 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004391 default: assert(0 && "Unknown integer setcc!");
4392 case ISD::SETLT:
4393 case ISD::SETULT: LowCC = ISD::SETULT; break;
4394 case ISD::SETGT:
4395 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4396 case ISD::SETLE:
4397 case ISD::SETULE: LowCC = ISD::SETULE; break;
4398 case ISD::SETGE:
4399 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4400 }
4401
4402 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4403 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4404 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4405
4406 // NOTE: on targets without efficient SELECT of bools, we can always use
4407 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004408 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
4409 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC,
4410 false, DagCombineInfo);
4411 if (!Tmp1.Val)
4412 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
4413 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi,
4414 CCCode, false, DagCombineInfo);
4415 if (!Tmp2.Val)
Chris Lattner85dd3be2007-10-15 17:48:57 +00004416 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00004417
4418 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4419 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
4420 if ((Tmp1C && Tmp1C->getValue() == 0) ||
4421 (Tmp2C && Tmp2C->getValue() == 0 &&
4422 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4423 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
4424 (Tmp2C && Tmp2C->getValue() == 1 &&
4425 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4426 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4427 // low part is known false, returns high part.
4428 // For LE / GE, if high part is known false, ignore the low part.
4429 // For LT / GT, if high part is known true, ignore the low part.
4430 Tmp1 = Tmp2;
4431 Tmp2 = SDOperand();
4432 } else {
4433 Result = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi,
4434 ISD::SETEQ, false, DagCombineInfo);
4435 if (!Result.Val)
4436 Result=DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
4437 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4438 Result, Tmp1, Tmp2));
4439 Tmp1 = Result;
4440 Tmp2 = SDOperand();
4441 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004442 }
4443 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004444 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004445 LHS = Tmp1;
4446 RHS = Tmp2;
4447}
4448
Chris Lattner35481892005-12-23 00:16:34 +00004449/// ExpandBIT_CONVERT - Expand a BIT_CONVERT node into a store/load combination.
Chris Lattner232348d2005-12-23 00:52:30 +00004450/// The resultant code need not be legal. Note that SrcOp is the input operand
4451/// to the BIT_CONVERT, not the BIT_CONVERT node itself.
Chris Lattner35481892005-12-23 00:16:34 +00004452SDOperand SelectionDAGLegalize::ExpandBIT_CONVERT(MVT::ValueType DestVT,
4453 SDOperand SrcOp) {
4454 // Create the stack frame object.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004455 SDOperand FIPtr = DAG.CreateStackTemporary(DestVT);
Chris Lattner35481892005-12-23 00:16:34 +00004456
4457 // Emit a store to the stack slot.
Evan Cheng8b2794a2006-10-13 21:14:26 +00004458 SDOperand Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr, NULL, 0);
Chris Lattner35481892005-12-23 00:16:34 +00004459 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00004460 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
Chris Lattner35481892005-12-23 00:16:34 +00004461}
4462
Chris Lattner4352cc92006-04-04 17:23:26 +00004463SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
4464 // Create a vector sized/aligned stack slot, store the value to element #0,
4465 // then load the whole vector back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004466 SDOperand StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Evan Cheng786225a2006-10-05 23:01:46 +00004467 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Evan Cheng8b2794a2006-10-13 21:14:26 +00004468 NULL, 0);
Evan Cheng466685d2006-10-09 20:57:25 +00004469 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr, NULL, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00004470}
4471
4472
Chris Lattnerce872152006-03-19 06:31:19 +00004473/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004474/// support the operation, but do support the resultant vector type.
Chris Lattnerce872152006-03-19 06:31:19 +00004475SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
4476
4477 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004478 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004479 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004480 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00004481 SDOperand SplatValue = Node->getOperand(0);
Evan Cheng033e6812006-03-24 01:17:21 +00004482 std::map<SDOperand, std::vector<unsigned> > Values;
4483 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004484 bool isConstant = true;
4485 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4486 SplatValue.getOpcode() != ISD::UNDEF)
4487 isConstant = false;
4488
Evan Cheng033e6812006-03-24 01:17:21 +00004489 for (unsigned i = 1; i < NumElems; ++i) {
4490 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004491 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004492 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004493 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004494 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00004495 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004496
4497 // If this isn't a constant element or an undef, we can't use a constant
4498 // pool load.
4499 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4500 V.getOpcode() != ISD::UNDEF)
4501 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004502 }
4503
4504 if (isOnlyLowElement) {
4505 // If the low element is an undef too, then this whole things is an undef.
4506 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4507 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4508 // Otherwise, turn this into a scalar_to_vector node.
4509 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4510 Node->getOperand(0));
4511 }
4512
Chris Lattner2eb86532006-03-24 07:29:17 +00004513 // If all elements are constants, create a load from the constant pool.
4514 if (isConstant) {
4515 MVT::ValueType VT = Node->getValueType(0);
4516 const Type *OpNTy =
4517 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
4518 std::vector<Constant*> CV;
4519 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4520 if (ConstantFPSDNode *V =
4521 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dale Johannesenf04afdb2007-08-30 00:23:21 +00004522 CV.push_back(ConstantFP::get(OpNTy, V->getValueAPF()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004523 } else if (ConstantSDNode *V =
4524 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Reid Spencerb83eb642006-10-20 07:07:24 +00004525 CV.push_back(ConstantInt::get(OpNTy, V->getValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004526 } else {
4527 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
4528 CV.push_back(UndefValue::get(OpNTy));
4529 }
4530 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00004531 Constant *CP = ConstantVector::get(CV);
Chris Lattner2eb86532006-03-24 07:29:17 +00004532 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng466685d2006-10-09 20:57:25 +00004533 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004534 }
4535
Chris Lattner87100e02006-03-20 01:52:29 +00004536 if (SplatValue.Val) { // Splat of one value?
4537 // Build the shuffle constant vector: <0, 0, 0, 0>
4538 MVT::ValueType MaskVT =
Evan Cheng033e6812006-03-24 01:17:21 +00004539 MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman51eaa862007-06-14 22:58:02 +00004540 SDOperand Zero = DAG.getConstant(0, MVT::getVectorElementType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00004541 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004542 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4543 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00004544
4545 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004546 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00004547 // Get the splatted value into the low element of a vector register.
4548 SDOperand LowValVec =
4549 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
4550
4551 // Return shuffle(LowValVec, undef, <0,0,0,0>)
4552 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
4553 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
4554 SplatMask);
4555 }
4556 }
4557
Evan Cheng033e6812006-03-24 01:17:21 +00004558 // If there are only two unique elements, we may be able to turn this into a
4559 // vector shuffle.
4560 if (Values.size() == 2) {
4561 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
4562 MVT::ValueType MaskVT =
4563 MVT::getIntVectorWithNumElements(NumElems);
4564 std::vector<SDOperand> MaskVec(NumElems);
4565 unsigned i = 0;
4566 for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
4567 E = Values.end(); I != E; ++I) {
4568 for (std::vector<unsigned>::iterator II = I->second.begin(),
4569 EE = I->second.end(); II != EE; ++II)
Dan Gohman51eaa862007-06-14 22:58:02 +00004570 MaskVec[*II] = DAG.getConstant(i, MVT::getVectorElementType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00004571 i += NumElems;
4572 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004573 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4574 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00004575
4576 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004577 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
4578 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004579 SmallVector<SDOperand, 8> Ops;
Evan Cheng033e6812006-03-24 01:17:21 +00004580 for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
4581 E = Values.end(); I != E; ++I) {
4582 SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4583 I->first);
4584 Ops.push_back(Op);
4585 }
4586 Ops.push_back(ShuffleMask);
4587
4588 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004589 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0),
4590 &Ops[0], Ops.size());
Evan Cheng033e6812006-03-24 01:17:21 +00004591 }
4592 }
Chris Lattnerce872152006-03-19 06:31:19 +00004593
4594 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
4595 // aligned object on the stack, store each element into it, then load
4596 // the result as a vector.
4597 MVT::ValueType VT = Node->getValueType(0);
4598 // Create the stack frame object.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004599 SDOperand FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00004600
4601 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004602 SmallVector<SDOperand, 8> Stores;
Chris Lattnerce872152006-03-19 06:31:19 +00004603 unsigned TypeByteSize =
4604 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
Chris Lattnerce872152006-03-19 06:31:19 +00004605 // Store (in the right endianness) the elements to memory.
4606 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
4607 // Ignore undef elements.
4608 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
4609
Chris Lattner841c8822006-03-22 01:46:54 +00004610 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00004611
4612 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
4613 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
4614
Evan Cheng786225a2006-10-05 23:01:46 +00004615 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00004616 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00004617 }
4618
4619 SDOperand StoreChain;
4620 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004621 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4622 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00004623 else
4624 StoreChain = DAG.getEntryNode();
4625
4626 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00004627 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00004628}
4629
Chris Lattner5b359c62005-04-02 04:00:59 +00004630void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
4631 SDOperand Op, SDOperand Amt,
4632 SDOperand &Lo, SDOperand &Hi) {
4633 // Expand the subcomponents.
4634 SDOperand LHSL, LHSH;
4635 ExpandOp(Op, LHSL, LHSH);
4636
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004637 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004638 MVT::ValueType VT = LHSL.getValueType();
4639 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00004640 Hi = Lo.getValue(1);
4641}
4642
4643
Chris Lattnere34b3962005-01-19 04:19:40 +00004644/// ExpandShift - Try to find a clever way to expand this shift operation out to
4645/// smaller elements. If we can't find a way that is more efficient than a
4646/// libcall on this target, return false. Otherwise, return true with the
4647/// low-parts expanded into Lo and Hi.
4648bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
4649 SDOperand &Lo, SDOperand &Hi) {
4650 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
4651 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004652
Chris Lattnere34b3962005-01-19 04:19:40 +00004653 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004654 SDOperand ShAmt = LegalizeOp(Amt);
4655 MVT::ValueType ShTy = ShAmt.getValueType();
4656 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
4657 unsigned NVTBits = MVT::getSizeInBits(NVT);
4658
Chris Lattner7a3c8552007-10-14 20:35:12 +00004659 // Handle the case when Amt is an immediate.
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004660 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
4661 unsigned Cst = CN->getValue();
4662 // Expand the incoming operand to be shifted, so that we have its parts
4663 SDOperand InL, InH;
4664 ExpandOp(Op, InL, InH);
4665 switch(Opc) {
4666 case ISD::SHL:
4667 if (Cst > VTBits) {
4668 Lo = DAG.getConstant(0, NVT);
4669 Hi = DAG.getConstant(0, NVT);
4670 } else if (Cst > NVTBits) {
4671 Lo = DAG.getConstant(0, NVT);
4672 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00004673 } else if (Cst == NVTBits) {
4674 Lo = DAG.getConstant(0, NVT);
4675 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004676 } else {
4677 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
4678 Hi = DAG.getNode(ISD::OR, NVT,
4679 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
4680 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
4681 }
4682 return true;
4683 case ISD::SRL:
4684 if (Cst > VTBits) {
4685 Lo = DAG.getConstant(0, NVT);
4686 Hi = DAG.getConstant(0, NVT);
4687 } else if (Cst > NVTBits) {
4688 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
4689 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00004690 } else if (Cst == NVTBits) {
4691 Lo = InH;
4692 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004693 } else {
4694 Lo = DAG.getNode(ISD::OR, NVT,
4695 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
4696 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
4697 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
4698 }
4699 return true;
4700 case ISD::SRA:
4701 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00004702 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004703 DAG.getConstant(NVTBits-1, ShTy));
4704 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00004705 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004706 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004707 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004708 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00004709 } else if (Cst == NVTBits) {
4710 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00004711 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00004712 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004713 } else {
4714 Lo = DAG.getNode(ISD::OR, NVT,
4715 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
4716 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
4717 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
4718 }
4719 return true;
4720 }
4721 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00004722
4723 // Okay, the shift amount isn't constant. However, if we can tell that it is
4724 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
4725 uint64_t Mask = NVTBits, KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00004726 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00004727
4728 // If we know that the high bit of the shift amount is one, then we can do
4729 // this as a couple of simple shifts.
4730 if (KnownOne & Mask) {
4731 // Mask out the high bit, which we know is set.
4732 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
4733 DAG.getConstant(NVTBits-1, Amt.getValueType()));
4734
4735 // Expand the incoming operand to be shifted, so that we have its parts
4736 SDOperand InL, InH;
4737 ExpandOp(Op, InL, InH);
4738 switch(Opc) {
4739 case ISD::SHL:
4740 Lo = DAG.getConstant(0, NVT); // Low part is zero.
4741 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
4742 return true;
4743 case ISD::SRL:
4744 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
4745 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
4746 return true;
4747 case ISD::SRA:
4748 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
4749 DAG.getConstant(NVTBits-1, Amt.getValueType()));
4750 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
4751 return true;
4752 }
4753 }
4754
4755 // If we know that the high bit of the shift amount is zero, then we can do
4756 // this as a couple of simple shifts.
4757 if (KnownZero & Mask) {
4758 // Compute 32-amt.
4759 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
4760 DAG.getConstant(NVTBits, Amt.getValueType()),
4761 Amt);
4762
4763 // Expand the incoming operand to be shifted, so that we have its parts
4764 SDOperand InL, InH;
4765 ExpandOp(Op, InL, InH);
4766 switch(Opc) {
4767 case ISD::SHL:
4768 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
4769 Hi = DAG.getNode(ISD::OR, NVT,
4770 DAG.getNode(ISD::SHL, NVT, InH, Amt),
4771 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
4772 return true;
4773 case ISD::SRL:
4774 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
4775 Lo = DAG.getNode(ISD::OR, NVT,
4776 DAG.getNode(ISD::SRL, NVT, InL, Amt),
4777 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
4778 return true;
4779 case ISD::SRA:
4780 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
4781 Lo = DAG.getNode(ISD::OR, NVT,
4782 DAG.getNode(ISD::SRL, NVT, InL, Amt),
4783 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
4784 return true;
4785 }
4786 }
4787
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004788 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00004789}
Chris Lattner77e77a62005-01-21 06:05:23 +00004790
Chris Lattner9c32d3b2005-01-23 04:42:50 +00004791
Chris Lattner77e77a62005-01-21 06:05:23 +00004792// ExpandLibCall - Expand a node into a call to a libcall. If the result value
4793// does not fit into a register, return the lo part and set the hi part to the
4794// by-reg argument. If it does fit into a single register, return the result
4795// and leave the Hi part unset.
4796SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
Reid Spencer47857812006-12-31 05:55:36 +00004797 bool isSigned, SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00004798 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
4799 // The input chain to this libcall is the entry node of the function.
4800 // Legalizing the call will automatically add the previous call to the
4801 // dependence.
4802 SDOperand InChain = DAG.getEntryNode();
4803
Chris Lattner77e77a62005-01-21 06:05:23 +00004804 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00004805 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00004806 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
4807 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
4808 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
Reid Spencer47857812006-12-31 05:55:36 +00004809 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00004810 Entry.isSExt = isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00004811 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00004812 }
4813 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00004814
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004815 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00004816 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004817 std::pair<SDOperand,SDOperand> CallInfo =
Reid Spencer47857812006-12-31 05:55:36 +00004818 TLI.LowerCallTo(InChain, RetTy, isSigned, false, CallingConv::C, false,
Chris Lattneradf6a962005-05-13 18:50:42 +00004819 Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00004820
Chris Lattner6831a812006-02-13 09:18:02 +00004821 // Legalize the call sequence, starting with the chain. This will advance
4822 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
4823 // was added by LowerCallTo (guaranteeing proper serialization of calls).
4824 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00004825 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004826 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00004827 default: assert(0 && "Unknown thing");
4828 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00004829 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00004830 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00004831 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00004832 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00004833 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00004834 }
Chris Lattner99c25b82005-09-02 20:26:58 +00004835 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00004836}
4837
Chris Lattner9c32d3b2005-01-23 04:42:50 +00004838
Evan Cheng4c6cfad2007-04-27 07:33:31 +00004839/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
4840///
Chris Lattner77e77a62005-01-21 06:05:23 +00004841SDOperand SelectionDAGLegalize::
4842ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattner77e77a62005-01-21 06:05:23 +00004843 assert(getTypeAction(Source.getValueType()) == Expand &&
4844 "This is not an expansion!");
4845 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
4846
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004847 if (!isSigned) {
Chris Lattnere9c35e72005-04-13 05:09:42 +00004848 assert(Source.getValueType() == MVT::i64 &&
4849 "This only works for 64-bit -> FP");
4850 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
4851 // incoming integer is set. To handle this, we dynamically test to see if
4852 // it is set, and, if so, add a fudge factor.
4853 SDOperand Lo, Hi;
4854 ExpandOp(Source, Lo, Hi);
4855
Chris Lattner66de05b2005-05-13 04:45:13 +00004856 // If this is unsigned, and not supported, first perform the conversion to
4857 // signed, then adjust the result if the sign bit is set.
4858 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
4859 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
4860
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00004861 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
4862 DAG.getConstant(0, Hi.getValueType()),
4863 ISD::SETLT);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004864 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
4865 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
4866 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00004867 uint64_t FF = 0x5f800000ULL;
4868 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00004869 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00004870
Chris Lattner5839bf22005-08-26 17:15:30 +00004871 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00004872 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
4873 SDOperand FudgeInReg;
4874 if (DestTy == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00004875 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Dale Johannesen118cd9d2007-09-16 16:51:49 +00004876 else if (MVT::getSizeInBits(DestTy) > MVT::getSizeInBits(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00004877 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen118cd9d2007-09-16 16:51:49 +00004878 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00004879 CPIdx, NULL, 0, MVT::f32);
4880 else
4881 assert(0 && "Unexpected conversion");
4882
Evan Cheng4c6cfad2007-04-27 07:33:31 +00004883 MVT::ValueType SCVT = SignedConv.getValueType();
4884 if (SCVT != DestTy) {
4885 // Destination type needs to be expanded as well. The FADD now we are
4886 // constructing will be expanded into a libcall.
4887 if (MVT::getSizeInBits(SCVT) != MVT::getSizeInBits(DestTy)) {
4888 assert(SCVT == MVT::i32 && DestTy == MVT::f64);
4889 SignedConv = DAG.getNode(ISD::BUILD_PAIR, MVT::i64,
4890 SignedConv, SignedConv.getValue(1));
4891 }
4892 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
4893 }
Chris Lattner473a9902005-09-29 06:44:39 +00004894 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00004895 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004896
Chris Lattnera88a2602005-05-14 05:33:54 +00004897 // Check to see if the target has a custom way to lower this. If so, use it.
4898 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
4899 default: assert(0 && "This action not implemented for this operation!");
4900 case TargetLowering::Legal:
4901 case TargetLowering::Expand:
4902 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00004903 case TargetLowering::Custom: {
4904 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
4905 Source), DAG);
4906 if (NV.Val)
4907 return LegalizeOp(NV);
4908 break; // The target decided this was legal after all
4909 }
Chris Lattnera88a2602005-05-14 05:33:54 +00004910 }
4911
Chris Lattner13689e22005-05-12 07:00:44 +00004912 // Expand the source, then glue it back together for the call. We must expand
4913 // the source in case it is shared (this pass of legalize must traverse it).
4914 SDOperand SrcLo, SrcHi;
4915 ExpandOp(Source, SrcLo, SrcHi);
4916 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
4917
Evan Cheng56966222007-01-12 02:11:51 +00004918 RTLIB::Libcall LC;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004919 if (DestTy == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00004920 LC = RTLIB::SINTTOFP_I64_F32;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004921 else {
4922 assert(DestTy == MVT::f64 && "Unknown fp value type!");
Evan Cheng56966222007-01-12 02:11:51 +00004923 LC = RTLIB::SINTTOFP_I64_F64;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004924 }
Chris Lattner6831a812006-02-13 09:18:02 +00004925
Evan Cheng4c6cfad2007-04-27 07:33:31 +00004926 assert(TLI.getLibcallName(LC) && "Don't know how to expand this SINT_TO_FP!");
Chris Lattner6831a812006-02-13 09:18:02 +00004927 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
4928 SDOperand UnusedHiPart;
Evan Cheng56966222007-01-12 02:11:51 +00004929 return ExpandLibCall(TLI.getLibcallName(LC), Source.Val, isSigned,
4930 UnusedHiPart);
Chris Lattner77e77a62005-01-21 06:05:23 +00004931}
Misha Brukmanedf128a2005-04-21 22:36:52 +00004932
Chris Lattner22cde6a2006-01-28 08:25:58 +00004933/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
4934/// INT_TO_FP operation of the specified operand when the target requests that
4935/// we expand it. At this point, we know that the result and operand types are
4936/// legal for the target.
4937SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
4938 SDOperand Op0,
4939 MVT::ValueType DestVT) {
4940 if (Op0.getValueType() == MVT::i32) {
4941 // simple 32-bit [signed|unsigned] integer to float/double expansion
4942
Chris Lattner58092e32007-01-20 22:35:55 +00004943 // get the stack frame index of a 8 byte buffer, pessimistically aligned
Chris Lattner22cde6a2006-01-28 08:25:58 +00004944 MachineFunction &MF = DAG.getMachineFunction();
Chris Lattner58092e32007-01-20 22:35:55 +00004945 const Type *F64Type = MVT::getTypeForValueType(MVT::f64);
4946 unsigned StackAlign =
Chris Lattnerd2b7cec2007-02-14 05:52:17 +00004947 (unsigned)TLI.getTargetData()->getPrefTypeAlignment(F64Type);
Chris Lattner58092e32007-01-20 22:35:55 +00004948 int SSFI = MF.getFrameInfo()->CreateStackObject(8, StackAlign);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004949 // get address of 8 byte buffer
4950 SDOperand StackSlot = DAG.getFrameIndex(SSFI, TLI.getPointerTy());
4951 // word offset constant for Hi/Lo address computation
4952 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
4953 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00004954 SDOperand Hi = StackSlot;
4955 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
4956 if (TLI.isLittleEndian())
4957 std::swap(Hi, Lo);
4958
Chris Lattner22cde6a2006-01-28 08:25:58 +00004959 // if signed map to unsigned space
4960 SDOperand Op0Mapped;
4961 if (isSigned) {
4962 // constant used to invert sign bit (signed to unsigned mapping)
4963 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
4964 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
4965 } else {
4966 Op0Mapped = Op0;
4967 }
4968 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00004969 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00004970 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004971 // initial hi portion of constructed double
4972 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
4973 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00004974 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004975 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00004976 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004977 // FP constant to bias correct the final result
4978 SDOperand Bias = DAG.getConstantFP(isSigned ?
4979 BitsToDouble(0x4330000080000000ULL)
4980 : BitsToDouble(0x4330000000000000ULL),
4981 MVT::f64);
4982 // subtract the bias
4983 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
4984 // final result
4985 SDOperand Result;
4986 // handle final rounding
4987 if (DestVT == MVT::f64) {
4988 // do nothing
4989 Result = Sub;
Dale Johannesen118cd9d2007-09-16 16:51:49 +00004990 } else if (MVT::getSizeInBits(DestVT) < MVT::getSizeInBits(MVT::f64)) {
4991 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub);
4992 } else if (MVT::getSizeInBits(DestVT) > MVT::getSizeInBits(MVT::f64)) {
4993 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00004994 }
4995 return Result;
4996 }
4997 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
4998 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
4999
5000 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
5001 DAG.getConstant(0, Op0.getValueType()),
5002 ISD::SETLT);
5003 SDOperand Zero = getIntPtrConstant(0), Four = getIntPtrConstant(4);
5004 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5005 SignSet, Four, Zero);
5006
5007 // If the sign bit of the integer is set, the large number will be treated
5008 // as a negative number. To counteract this, the dynamic code adds an
5009 // offset depending on the data type.
5010 uint64_t FF;
5011 switch (Op0.getValueType()) {
5012 default: assert(0 && "Unsupported integer type!");
5013 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5014 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5015 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5016 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5017 }
5018 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005019 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005020
5021 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
5022 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5023 SDOperand FudgeInReg;
5024 if (DestVT == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00005025 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005026 else {
Dale Johannesen73328d12007-09-19 23:55:34 +00005027 FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005028 DAG.getEntryNode(), CPIdx,
Evan Cheng466685d2006-10-09 20:57:25 +00005029 NULL, 0, MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00005030 }
5031
5032 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5033}
5034
5035/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5036/// *INT_TO_FP operation of the specified operand when the target requests that
5037/// we promote it. At this point, we know that the result and operand types are
5038/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5039/// operation that takes a larger input.
5040SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
5041 MVT::ValueType DestVT,
5042 bool isSigned) {
5043 // First step, figure out the appropriate *INT_TO_FP operation to use.
5044 MVT::ValueType NewInTy = LegalOp.getValueType();
5045
5046 unsigned OpToUse = 0;
5047
5048 // Scan for the appropriate larger type to use.
5049 while (1) {
5050 NewInTy = (MVT::ValueType)(NewInTy+1);
5051 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
5052
5053 // If the target supports SINT_TO_FP of this type, use it.
5054 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5055 default: break;
5056 case TargetLowering::Legal:
5057 if (!TLI.isTypeLegal(NewInTy))
5058 break; // Can't use this datatype.
5059 // FALL THROUGH.
5060 case TargetLowering::Custom:
5061 OpToUse = ISD::SINT_TO_FP;
5062 break;
5063 }
5064 if (OpToUse) break;
5065 if (isSigned) continue;
5066
5067 // If the target supports UINT_TO_FP of this type, use it.
5068 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5069 default: break;
5070 case TargetLowering::Legal:
5071 if (!TLI.isTypeLegal(NewInTy))
5072 break; // Can't use this datatype.
5073 // FALL THROUGH.
5074 case TargetLowering::Custom:
5075 OpToUse = ISD::UINT_TO_FP;
5076 break;
5077 }
5078 if (OpToUse) break;
5079
5080 // Otherwise, try a larger type.
5081 }
5082
5083 // Okay, we found the operation and type to use. Zero extend our input to the
5084 // desired type then run the operation on it.
5085 return DAG.getNode(OpToUse, DestVT,
5086 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5087 NewInTy, LegalOp));
5088}
5089
5090/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5091/// FP_TO_*INT operation of the specified operand when the target requests that
5092/// we promote it. At this point, we know that the result and operand types are
5093/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5094/// operation that returns a larger result.
5095SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
5096 MVT::ValueType DestVT,
5097 bool isSigned) {
5098 // First step, figure out the appropriate FP_TO*INT operation to use.
5099 MVT::ValueType NewOutTy = DestVT;
5100
5101 unsigned OpToUse = 0;
5102
5103 // Scan for the appropriate larger type to use.
5104 while (1) {
5105 NewOutTy = (MVT::ValueType)(NewOutTy+1);
5106 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
5107
5108 // If the target supports FP_TO_SINT returning this type, use it.
5109 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5110 default: break;
5111 case TargetLowering::Legal:
5112 if (!TLI.isTypeLegal(NewOutTy))
5113 break; // Can't use this datatype.
5114 // FALL THROUGH.
5115 case TargetLowering::Custom:
5116 OpToUse = ISD::FP_TO_SINT;
5117 break;
5118 }
5119 if (OpToUse) break;
5120
5121 // If the target supports FP_TO_UINT of this type, use it.
5122 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5123 default: break;
5124 case TargetLowering::Legal:
5125 if (!TLI.isTypeLegal(NewOutTy))
5126 break; // Can't use this datatype.
5127 // FALL THROUGH.
5128 case TargetLowering::Custom:
5129 OpToUse = ISD::FP_TO_UINT;
5130 break;
5131 }
5132 if (OpToUse) break;
5133
5134 // Otherwise, try a larger type.
5135 }
5136
5137 // Okay, we found the operation and type to use. Truncate the result of the
5138 // extended FP_TO_*INT operation to the desired size.
5139 return DAG.getNode(ISD::TRUNCATE, DestVT,
5140 DAG.getNode(OpToUse, NewOutTy, LegalOp));
5141}
5142
5143/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5144///
5145SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
5146 MVT::ValueType VT = Op.getValueType();
5147 MVT::ValueType SHVT = TLI.getShiftAmountTy();
5148 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
5149 switch (VT) {
5150 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5151 case MVT::i16:
5152 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5153 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5154 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5155 case MVT::i32:
5156 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5157 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5158 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5159 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5160 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5161 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5162 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5163 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5164 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5165 case MVT::i64:
5166 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5167 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5168 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5169 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5170 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5171 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5172 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5173 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5174 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5175 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5176 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5177 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5178 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5179 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5180 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5181 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5182 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5183 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5184 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5185 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5186 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5187 }
5188}
5189
5190/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5191///
5192SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
5193 switch (Opc) {
5194 default: assert(0 && "Cannot expand this yet!");
5195 case ISD::CTPOP: {
5196 static const uint64_t mask[6] = {
5197 0x5555555555555555ULL, 0x3333333333333333ULL,
5198 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5199 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5200 };
5201 MVT::ValueType VT = Op.getValueType();
5202 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00005203 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005204 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5205 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
5206 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
5207 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5208 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5209 DAG.getNode(ISD::AND, VT,
5210 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5211 }
5212 return Op;
5213 }
5214 case ISD::CTLZ: {
5215 // for now, we do this:
5216 // x = x | (x >> 1);
5217 // x = x | (x >> 2);
5218 // ...
5219 // x = x | (x >>16);
5220 // x = x | (x >>32); // for 64-bit input
5221 // return popcount(~x);
5222 //
5223 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
5224 MVT::ValueType VT = Op.getValueType();
5225 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00005226 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005227 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5228 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5229 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5230 }
5231 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5232 return DAG.getNode(ISD::CTPOP, VT, Op);
5233 }
5234 case ISD::CTTZ: {
5235 // for now, we use: { return popcount(~x & (x - 1)); }
5236 // unless the target has ctlz but not ctpop, in which case we use:
5237 // { return 32 - nlz(~x & (x-1)); }
5238 // see also http://www.hackersdelight.org/HDcode/ntz.cc
5239 MVT::ValueType VT = Op.getValueType();
5240 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
5241 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
5242 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5243 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5244 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5245 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5246 TLI.isOperationLegal(ISD::CTLZ, VT))
5247 return DAG.getNode(ISD::SUB, VT,
Dan Gohmanb55757e2007-05-18 17:52:13 +00005248 DAG.getConstant(MVT::getSizeInBits(VT), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005249 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5250 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5251 }
5252 }
5253}
Chris Lattnere34b3962005-01-19 04:19:40 +00005254
Chris Lattner3e928bb2005-01-07 07:47:09 +00005255/// ExpandOp - Expand the specified SDOperand into its two component pieces
5256/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5257/// LegalizeNodes map is filled in for any results that are not expanded, the
5258/// ExpandedNodes map is filled in for any results that are expanded, and the
5259/// Lo/Hi values are returned.
5260void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
5261 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00005262 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005263 SDNode *Node = Op.Val;
5264 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005265 assert(((MVT::isInteger(NVT) && NVT < VT) || MVT::isFloatingPoint(VT) ||
Dan Gohman7f321562007-06-25 16:23:39 +00005266 MVT::isVector(VT)) &&
Chris Lattner3e928bb2005-01-07 07:47:09 +00005267 "Cannot expand to FP value or to larger int value!");
5268
Chris Lattner6fdcb252005-09-02 20:32:45 +00005269 // See if we already expanded it.
Chris Lattner40030bf2007-02-04 01:17:38 +00005270 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00005271 = ExpandedNodes.find(Op);
5272 if (I != ExpandedNodes.end()) {
5273 Lo = I->second.first;
5274 Hi = I->second.second;
5275 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005276 }
5277
Chris Lattner3e928bb2005-01-07 07:47:09 +00005278 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005279 case ISD::CopyFromReg:
5280 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005281 case ISD::FP_ROUND_INREG:
5282 if (VT == MVT::ppcf128 &&
5283 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5284 TargetLowering::Custom) {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005285 SDOperand SrcLo, SrcHi, Src;
5286 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5287 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
5288 SDOperand Result = TLI.LowerOperation(
5289 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005290 assert(Result.Val->getOpcode() == ISD::BUILD_PAIR);
5291 Lo = Result.Val->getOperand(0);
5292 Hi = Result.Val->getOperand(1);
5293 break;
5294 }
5295 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00005296 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005297#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005298 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005299#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00005300 assert(0 && "Do not know how to expand this operator!");
5301 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005302 case ISD::UNDEF:
Evan Chengaa975c12006-12-16 02:20:50 +00005303 NVT = TLI.getTypeToExpandTo(VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005304 Lo = DAG.getNode(ISD::UNDEF, NVT);
5305 Hi = DAG.getNode(ISD::UNDEF, NVT);
5306 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005307 case ISD::Constant: {
5308 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
5309 Lo = DAG.getConstant(Cst, NVT);
5310 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
5311 break;
5312 }
Evan Cheng00495212006-12-12 21:32:44 +00005313 case ISD::ConstantFP: {
5314 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00005315 if (CFP->getValueType(0) == MVT::ppcf128) {
5316 APInt api = CFP->getValueAPF().convertToAPInt();
5317 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5318 MVT::f64);
5319 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5320 MVT::f64);
5321 break;
5322 }
Evan Cheng279101e2006-12-12 22:19:28 +00005323 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005324 if (getTypeAction(Lo.getValueType()) == Expand)
5325 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005326 break;
5327 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005328 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005329 // Return the operands.
5330 Lo = Node->getOperand(0);
5331 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005332 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005333
5334 case ISD::SIGN_EXTEND_INREG:
5335 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005336 // sext_inreg the low part if needed.
5337 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5338
5339 // The high part gets the sign extension from the lo-part. This handles
5340 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005341 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5342 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
5343 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005344 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005345
Nate Begemand88fc032006-01-14 03:14:10 +00005346 case ISD::BSWAP: {
5347 ExpandOp(Node->getOperand(0), Lo, Hi);
5348 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
5349 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5350 Lo = TempLo;
5351 break;
5352 }
5353
Chris Lattneredb1add2005-05-11 04:51:16 +00005354 case ISD::CTPOP:
5355 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005356 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5357 DAG.getNode(ISD::CTPOP, NVT, Lo),
5358 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005359 Hi = DAG.getConstant(0, NVT);
5360 break;
5361
Chris Lattner39a8f332005-05-12 19:05:01 +00005362 case ISD::CTLZ: {
5363 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005364 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005365 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5366 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005367 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
5368 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005369 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
5370 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5371
5372 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5373 Hi = DAG.getConstant(0, NVT);
5374 break;
5375 }
5376
5377 case ISD::CTTZ: {
5378 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005379 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005380 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5381 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005382 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
5383 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005384 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
5385 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5386
5387 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5388 Hi = DAG.getConstant(0, NVT);
5389 break;
5390 }
Chris Lattneredb1add2005-05-11 04:51:16 +00005391
Nate Begemanacc398c2006-01-25 18:21:52 +00005392 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005393 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5394 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00005395 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5396 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5397
5398 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005399 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00005400 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
5401 if (!TLI.isLittleEndian())
5402 std::swap(Lo, Hi);
5403 break;
5404 }
5405
Chris Lattner3e928bb2005-01-07 07:47:09 +00005406 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00005407 LoadSDNode *LD = cast<LoadSDNode>(Node);
5408 SDOperand Ch = LD->getChain(); // Legalize the chain.
5409 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
5410 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005411 int SVOffset = LD->getSrcValueOffset();
5412 unsigned Alignment = LD->getAlignment();
5413 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005414
Evan Cheng466685d2006-10-09 20:57:25 +00005415 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005416 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5417 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00005418 if (VT == MVT::f32 || VT == MVT::f64) {
5419 // f32->i32 or f64->i64 one to one expansion.
5420 // Remember that we legalized the chain.
5421 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00005422 // Recursively expand the new load.
5423 if (getTypeAction(NVT) == Expand)
5424 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005425 break;
5426 }
Chris Lattnerec39a452005-01-19 18:02:17 +00005427
Evan Cheng466685d2006-10-09 20:57:25 +00005428 // Increment the pointer to the other half.
5429 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
5430 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
5431 getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00005432 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00005433 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005434 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5435 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00005436
Evan Cheng466685d2006-10-09 20:57:25 +00005437 // Build a factor node to remember that this load is independent of the
5438 // other one.
5439 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5440 Hi.getValue(1));
5441
5442 // Remember that we legalized the chain.
5443 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
5444 if (!TLI.isLittleEndian())
5445 std::swap(Lo, Hi);
5446 } else {
Evan Cheng2e49f092006-10-11 07:10:22 +00005447 MVT::ValueType EVT = LD->getLoadedVT();
Evan Cheng548f6112006-12-13 03:19:57 +00005448
Dale Johannesenb6210fc2007-10-19 20:29:00 +00005449 if ((VT == MVT::f64 && EVT == MVT::f32) ||
5450 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00005451 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
5452 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005453 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00005454 // Remember that we legalized the chain.
5455 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
5456 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
5457 break;
5458 }
Evan Cheng466685d2006-10-09 20:57:25 +00005459
5460 if (EVT == NVT)
5461 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005462 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005463 else
5464 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005465 SVOffset, EVT, isVolatile,
5466 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005467
5468 // Remember that we legalized the chain.
5469 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
5470
5471 if (ExtType == ISD::SEXTLOAD) {
5472 // The high part is obtained by SRA'ing all but one of the bits of the
5473 // lo part.
5474 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
5475 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5476 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
5477 } else if (ExtType == ISD::ZEXTLOAD) {
5478 // The high part is just a zero.
5479 Hi = DAG.getConstant(0, NVT);
5480 } else /* if (ExtType == ISD::EXTLOAD) */ {
5481 // The high part is undefined.
5482 Hi = DAG.getNode(ISD::UNDEF, NVT);
5483 }
5484 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005485 break;
5486 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005487 case ISD::AND:
5488 case ISD::OR:
5489 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
5490 SDOperand LL, LH, RL, RH;
5491 ExpandOp(Node->getOperand(0), LL, LH);
5492 ExpandOp(Node->getOperand(1), RL, RH);
5493 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
5494 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
5495 break;
5496 }
5497 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00005498 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005499 ExpandOp(Node->getOperand(1), LL, LH);
5500 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00005501 if (getTypeAction(NVT) == Expand)
5502 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00005503 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00005504 if (VT != MVT::f32)
5505 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005506 break;
5507 }
Nate Begeman9373a812005-08-10 20:51:12 +00005508 case ISD::SELECT_CC: {
5509 SDOperand TL, TH, FL, FH;
5510 ExpandOp(Node->getOperand(2), TL, TH);
5511 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00005512 if (getTypeAction(NVT) == Expand)
5513 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00005514 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5515 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00005516 if (VT != MVT::f32)
5517 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5518 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00005519 break;
5520 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00005521 case ISD::ANY_EXTEND:
5522 // The low part is any extension of the input (which degenerates to a copy).
5523 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
5524 // The high part is undefined.
5525 Hi = DAG.getNode(ISD::UNDEF, NVT);
5526 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005527 case ISD::SIGN_EXTEND: {
5528 // The low part is just a sign extension of the input (which degenerates to
5529 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00005530 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005531
Chris Lattner3e928bb2005-01-07 07:47:09 +00005532 // The high part is obtained by SRA'ing all but one of the bits of the lo
5533 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00005534 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner8137c9e2006-01-28 05:07:51 +00005535 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5536 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00005537 break;
5538 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00005539 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00005540 // The low part is just a zero extension of the input (which degenerates to
5541 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00005542 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005543
Chris Lattner3e928bb2005-01-07 07:47:09 +00005544 // The high part is just a zero.
5545 Hi = DAG.getConstant(0, NVT);
5546 break;
Chris Lattner35481892005-12-23 00:16:34 +00005547
Chris Lattner4c948eb2007-02-13 23:55:16 +00005548 case ISD::TRUNCATE: {
5549 // The input value must be larger than this value. Expand *it*.
5550 SDOperand NewLo;
5551 ExpandOp(Node->getOperand(0), NewLo, Hi);
5552
5553 // The low part is now either the right size, or it is closer. If not the
5554 // right size, make an illegal truncate so we recursively expand it.
5555 if (NewLo.getValueType() != Node->getValueType(0))
5556 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
5557 ExpandOp(NewLo, Lo, Hi);
5558 break;
5559 }
5560
Chris Lattner35481892005-12-23 00:16:34 +00005561 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005562 SDOperand Tmp;
5563 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
5564 // If the target wants to, allow it to lower this itself.
5565 switch (getTypeAction(Node->getOperand(0).getValueType())) {
5566 case Expand: assert(0 && "cannot expand FP!");
5567 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
5568 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
5569 }
5570 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
5571 }
5572
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005573 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00005574 if (VT == MVT::f32 || VT == MVT::f64) {
5575 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00005576 if (getTypeAction(NVT) == Expand)
5577 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00005578 break;
5579 }
5580
5581 // If source operand will be expanded to the same type as VT, i.e.
5582 // i64 <- f64, i32 <- f32, expand the source operand instead.
5583 MVT::ValueType VT0 = Node->getOperand(0).getValueType();
5584 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
5585 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005586 break;
5587 }
5588
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005589 // Turn this into a load/store pair by default.
5590 if (Tmp.Val == 0)
Evan Cheng13acce32006-12-11 19:27:14 +00005591 Tmp = ExpandBIT_CONVERT(VT, Node->getOperand(0));
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005592
Chris Lattner35481892005-12-23 00:16:34 +00005593 ExpandOp(Tmp, Lo, Hi);
5594 break;
5595 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00005596
Chris Lattner8137c9e2006-01-28 05:07:51 +00005597 case ISD::READCYCLECOUNTER:
Chris Lattner308575b2005-11-20 22:56:56 +00005598 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
5599 TargetLowering::Custom &&
5600 "Must custom expand ReadCycleCounter");
Chris Lattner8137c9e2006-01-28 05:07:51 +00005601 Lo = TLI.LowerOperation(Op, DAG);
5602 assert(Lo.Val && "Node must be custom expanded!");
5603 Hi = Lo.getValue(1);
Chris Lattner308575b2005-11-20 22:56:56 +00005604 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005605 LegalizeOp(Lo.getValue(2)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00005606 break;
5607
Chris Lattner4e6c7462005-01-08 19:27:05 +00005608 // These operators cannot be expanded directly, emit them as calls to
5609 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00005610 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00005611 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00005612 SDOperand Op;
5613 switch (getTypeAction(Node->getOperand(0).getValueType())) {
5614 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00005615 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
5616 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00005617 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005618
Chris Lattnerf20d1832005-07-30 01:40:57 +00005619 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
5620
Chris Lattner80a3e942005-07-29 00:33:32 +00005621 // Now that the custom expander is done, expand the result, which is still
5622 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00005623 if (Op.Val) {
5624 ExpandOp(Op, Lo, Hi);
5625 break;
5626 }
Chris Lattner80a3e942005-07-29 00:33:32 +00005627 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005628
Dale Johannesen161e8972007-10-05 20:04:43 +00005629 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattner4e6c7462005-01-08 19:27:05 +00005630 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005631 LC = RTLIB::FPTOSINT_F32_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00005632 else if (Node->getOperand(0).getValueType() == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00005633 LC = RTLIB::FPTOSINT_F64_I64;
Dale Johannesen161e8972007-10-05 20:04:43 +00005634 else if (Node->getOperand(0).getValueType() == MVT::f80)
5635 LC = RTLIB::FPTOSINT_F80_I64;
5636 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
5637 LC = RTLIB::FPTOSINT_PPCF128_I64;
Evan Cheng56966222007-01-12 02:11:51 +00005638 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
5639 false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00005640 break;
Evan Cheng56966222007-01-12 02:11:51 +00005641 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005642
Evan Cheng56966222007-01-12 02:11:51 +00005643 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00005644 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005645 SDOperand Op;
5646 switch (getTypeAction(Node->getOperand(0).getValueType())) {
5647 case Expand: assert(0 && "cannot expand FP!");
5648 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
5649 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
5650 }
5651
5652 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
5653
5654 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00005655 if (Op.Val) {
5656 ExpandOp(Op, Lo, Hi);
5657 break;
5658 }
Chris Lattner80a3e942005-07-29 00:33:32 +00005659 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005660
Evan Chengdaccea182007-10-05 01:09:32 +00005661 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattner4e6c7462005-01-08 19:27:05 +00005662 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005663 LC = RTLIB::FPTOUINT_F32_I64;
Dale Johannesen72292f02007-09-28 18:44:17 +00005664 else if (Node->getOperand(0).getValueType() == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00005665 LC = RTLIB::FPTOUINT_F64_I64;
Dale Johannesen161e8972007-10-05 20:04:43 +00005666 else if (Node->getOperand(0).getValueType() == MVT::f80)
5667 LC = RTLIB::FPTOUINT_F80_I64;
5668 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
5669 LC = RTLIB::FPTOUINT_PPCF128_I64;
Evan Cheng56966222007-01-12 02:11:51 +00005670 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
5671 false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00005672 break;
Evan Cheng56966222007-01-12 02:11:51 +00005673 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00005674
Evan Cheng05a2d562006-01-09 18:31:59 +00005675 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00005676 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00005677 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00005678 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005679 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00005680 Op = TLI.LowerOperation(Op, DAG);
5681 if (Op.Val) {
5682 // Now that the custom expander is done, expand the result, which is
5683 // still VT.
5684 ExpandOp(Op, Lo, Hi);
5685 break;
5686 }
5687 }
5688
Chris Lattner79980b02006-09-13 03:50:39 +00005689 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
5690 // this X << 1 as X+X.
5691 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
5692 if (ShAmt->getValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
5693 TLI.isOperationLegal(ISD::ADDE, NVT)) {
5694 SDOperand LoOps[2], HiOps[3];
5695 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
5696 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
5697 LoOps[1] = LoOps[0];
5698 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
5699
5700 HiOps[1] = HiOps[0];
5701 HiOps[2] = Lo.getValue(1);
5702 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
5703 break;
5704 }
5705 }
5706
Chris Lattnere34b3962005-01-19 04:19:40 +00005707 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00005708 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00005709 break;
Chris Lattner47599822005-04-02 03:38:53 +00005710
5711 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00005712 TargetLowering::LegalizeAction Action =
5713 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
5714 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
5715 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005716 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00005717 break;
5718 }
5719
Chris Lattnere34b3962005-01-19 04:19:40 +00005720 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005721 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SHL_I64), Node,
5722 false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00005723 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00005724 }
Chris Lattnere34b3962005-01-19 04:19:40 +00005725
Evan Cheng05a2d562006-01-09 18:31:59 +00005726 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00005727 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00005728 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00005729 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005730 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00005731 Op = TLI.LowerOperation(Op, DAG);
5732 if (Op.Val) {
5733 // Now that the custom expander is done, expand the result, which is
5734 // still VT.
5735 ExpandOp(Op, Lo, Hi);
5736 break;
5737 }
5738 }
5739
Chris Lattnere34b3962005-01-19 04:19:40 +00005740 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00005741 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00005742 break;
Chris Lattner47599822005-04-02 03:38:53 +00005743
5744 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00005745 TargetLowering::LegalizeAction Action =
5746 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
5747 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
5748 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005749 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00005750 break;
5751 }
5752
Chris Lattnere34b3962005-01-19 04:19:40 +00005753 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005754 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRA_I64), Node,
5755 true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00005756 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00005757 }
5758
5759 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00005760 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00005761 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00005762 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005763 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00005764 Op = TLI.LowerOperation(Op, DAG);
5765 if (Op.Val) {
5766 // Now that the custom expander is done, expand the result, which is
5767 // still VT.
5768 ExpandOp(Op, Lo, Hi);
5769 break;
5770 }
5771 }
5772
Chris Lattnere34b3962005-01-19 04:19:40 +00005773 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00005774 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00005775 break;
Chris Lattner47599822005-04-02 03:38:53 +00005776
5777 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00005778 TargetLowering::LegalizeAction Action =
5779 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
5780 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
5781 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005782 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00005783 break;
5784 }
5785
Chris Lattnere34b3962005-01-19 04:19:40 +00005786 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005787 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRL_I64), Node,
5788 false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00005789 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00005790 }
Chris Lattnere34b3962005-01-19 04:19:40 +00005791
Misha Brukmanedf128a2005-04-21 22:36:52 +00005792 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005793 case ISD::SUB: {
5794 // If the target wants to custom expand this, let them.
5795 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
5796 TargetLowering::Custom) {
5797 Op = TLI.LowerOperation(Op, DAG);
5798 if (Op.Val) {
5799 ExpandOp(Op, Lo, Hi);
5800 break;
5801 }
5802 }
5803
5804 // Expand the subcomponents.
5805 SDOperand LHSL, LHSH, RHSL, RHSH;
5806 ExpandOp(Node->getOperand(0), LHSL, LHSH);
5807 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00005808 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
5809 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005810 LoOps[0] = LHSL;
5811 LoOps[1] = RHSL;
5812 HiOps[0] = LHSH;
5813 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00005814 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00005815 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005816 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00005817 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00005818 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00005819 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005820 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00005821 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00005822 }
Chris Lattner84f67882005-01-20 18:52:28 +00005823 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00005824 }
Chris Lattnerb429f732007-05-17 18:15:41 +00005825
5826 case ISD::ADDC:
5827 case ISD::SUBC: {
5828 // Expand the subcomponents.
5829 SDOperand LHSL, LHSH, RHSL, RHSH;
5830 ExpandOp(Node->getOperand(0), LHSL, LHSH);
5831 ExpandOp(Node->getOperand(1), RHSL, RHSH);
5832 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
5833 SDOperand LoOps[2] = { LHSL, RHSL };
5834 SDOperand HiOps[3] = { LHSH, RHSH };
5835
5836 if (Node->getOpcode() == ISD::ADDC) {
5837 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
5838 HiOps[2] = Lo.getValue(1);
5839 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
5840 } else {
5841 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
5842 HiOps[2] = Lo.getValue(1);
5843 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
5844 }
5845 // Remember that we legalized the flag.
5846 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
5847 break;
5848 }
5849 case ISD::ADDE:
5850 case ISD::SUBE: {
5851 // Expand the subcomponents.
5852 SDOperand LHSL, LHSH, RHSL, RHSH;
5853 ExpandOp(Node->getOperand(0), LHSL, LHSH);
5854 ExpandOp(Node->getOperand(1), RHSL, RHSH);
5855 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
5856 SDOperand LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
5857 SDOperand HiOps[3] = { LHSH, RHSH };
5858
5859 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
5860 HiOps[2] = Lo.getValue(1);
5861 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
5862
5863 // Remember that we legalized the flag.
5864 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
5865 break;
5866 }
Nate Begemanc7c16572005-04-11 03:01:51 +00005867 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00005868 // If the target wants to custom expand this, let them.
5869 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00005870 SDOperand New = TLI.LowerOperation(Op, DAG);
5871 if (New.Val) {
5872 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00005873 break;
5874 }
5875 }
5876
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005877 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
5878 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00005879 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
5880 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
5881 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Nate Begemanc7c16572005-04-11 03:01:51 +00005882 SDOperand LL, LH, RL, RH;
5883 ExpandOp(Node->getOperand(0), LL, LH);
5884 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman525178c2007-10-08 18:33:35 +00005885 unsigned BitSize = MVT::getSizeInBits(RH.getValueType());
5886 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
5887 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
5888 // FIXME: generalize this to handle other bit sizes
5889 if (LHSSB == 32 && RHSSB == 32 &&
5890 DAG.MaskedValueIsZero(Op.getOperand(0), 0xFFFFFFFF00000000ULL) &&
5891 DAG.MaskedValueIsZero(Op.getOperand(1), 0xFFFFFFFF00000000ULL)) {
5892 // The inputs are both zero-extended.
5893 if (HasUMUL_LOHI) {
5894 // We can emit a umul_lohi.
5895 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
5896 Hi = SDOperand(Lo.Val, 1);
5897 break;
5898 }
5899 if (HasMULHU) {
5900 // We can emit a mulhu+mul.
5901 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
5902 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
5903 break;
5904 }
Dan Gohman525178c2007-10-08 18:33:35 +00005905 }
5906 if (LHSSB > BitSize && RHSSB > BitSize) {
5907 // The input values are both sign-extended.
5908 if (HasSMUL_LOHI) {
5909 // We can emit a smul_lohi.
5910 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
5911 Hi = SDOperand(Lo.Val, 1);
5912 break;
5913 }
5914 if (HasMULHS) {
5915 // We can emit a mulhs+mul.
5916 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
5917 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
5918 break;
5919 }
5920 }
5921 if (HasUMUL_LOHI) {
5922 // Lo,Hi = umul LHS, RHS.
5923 SDOperand UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
5924 DAG.getVTList(NVT, NVT), LL, RL);
5925 Lo = UMulLOHI;
5926 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00005927 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
5928 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
5929 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
5930 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00005931 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00005932 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00005933 if (HasMULHU) {
5934 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
5935 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
5936 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
5937 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
5938 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
5939 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
5940 break;
5941 }
Nate Begemanc7c16572005-04-11 03:01:51 +00005942 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00005943
Dan Gohman525178c2007-10-08 18:33:35 +00005944 // If nothing else, we can make a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005945 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::MUL_I64), Node,
5946 false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00005947 break;
5948 }
Evan Cheng56966222007-01-12 02:11:51 +00005949 case ISD::SDIV:
5950 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SDIV_I64), Node, true, Hi);
5951 break;
5952 case ISD::UDIV:
5953 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UDIV_I64), Node, true, Hi);
5954 break;
5955 case ISD::SREM:
5956 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SREM_I64), Node, true, Hi);
5957 break;
5958 case ISD::UREM:
5959 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UREM_I64), Node, true, Hi);
5960 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00005961
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005962 case ISD::FADD:
Dale Johannesen161e8972007-10-05 20:04:43 +00005963 Lo = ExpandLibCall(TLI.getLibcallName(VT == MVT::f32 ? RTLIB::ADD_F32 :
5964 VT == MVT::f64 ? RTLIB::ADD_F64 :
5965 VT == MVT::ppcf128 ?
5966 RTLIB::ADD_PPCF128 :
5967 RTLIB::UNKNOWN_LIBCALL),
Evan Cheng56966222007-01-12 02:11:51 +00005968 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005969 break;
5970 case ISD::FSUB:
Dale Johannesen161e8972007-10-05 20:04:43 +00005971 Lo = ExpandLibCall(TLI.getLibcallName(VT == MVT::f32 ? RTLIB::SUB_F32 :
5972 VT == MVT::f64 ? RTLIB::SUB_F64 :
5973 VT == MVT::ppcf128 ?
5974 RTLIB::SUB_PPCF128 :
5975 RTLIB::UNKNOWN_LIBCALL),
Evan Cheng56966222007-01-12 02:11:51 +00005976 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005977 break;
5978 case ISD::FMUL:
Dale Johannesen161e8972007-10-05 20:04:43 +00005979 Lo = ExpandLibCall(TLI.getLibcallName(VT == MVT::f32 ? RTLIB::MUL_F32 :
5980 VT == MVT::f64 ? RTLIB::MUL_F64 :
5981 VT == MVT::ppcf128 ?
5982 RTLIB::MUL_PPCF128 :
5983 RTLIB::UNKNOWN_LIBCALL),
Evan Cheng56966222007-01-12 02:11:51 +00005984 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005985 break;
5986 case ISD::FDIV:
Dale Johannesen161e8972007-10-05 20:04:43 +00005987 Lo = ExpandLibCall(TLI.getLibcallName(VT == MVT::f32 ? RTLIB::DIV_F32 :
5988 VT == MVT::f64 ? RTLIB::DIV_F64 :
5989 VT == MVT::ppcf128 ?
5990 RTLIB::DIV_PPCF128 :
5991 RTLIB::UNKNOWN_LIBCALL),
Evan Cheng56966222007-01-12 02:11:51 +00005992 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005993 break;
5994 case ISD::FP_EXTEND:
Dale Johannesenca68aaa2007-10-12 01:37:08 +00005995 if (VT == MVT::ppcf128) {
5996 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
5997 Node->getOperand(0).getValueType()==MVT::f64);
5998 const uint64_t zero = 0;
5999 if (Node->getOperand(0).getValueType()==MVT::f32)
6000 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6001 else
6002 Hi = Node->getOperand(0);
6003 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6004 break;
6005 }
Evan Cheng56966222007-01-12 02:11:51 +00006006 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPEXT_F32_F64), Node, true,Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006007 break;
6008 case ISD::FP_ROUND:
Evan Cheng56966222007-01-12 02:11:51 +00006009 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPROUND_F64_F32),Node,true,Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006010 break;
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006011 case ISD::FPOWI:
Dale Johannesen317096a2007-09-28 01:08:20 +00006012 Lo = ExpandLibCall(TLI.getLibcallName((VT == MVT::f32) ? RTLIB::POWI_F32 :
6013 (VT == MVT::f64) ? RTLIB::POWI_F64 :
Dale Johannesen161e8972007-10-05 20:04:43 +00006014 (VT == MVT::f80) ? RTLIB::POWI_F80 :
6015 (VT == MVT::ppcf128) ?
6016 RTLIB::POWI_PPCF128 :
6017 RTLIB::UNKNOWN_LIBCALL),
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006018 Node, false, Hi);
6019 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006020 case ISD::FSQRT:
6021 case ISD::FSIN:
6022 case ISD::FCOS: {
Evan Cheng56966222007-01-12 02:11:51 +00006023 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006024 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00006025 case ISD::FSQRT:
Dale Johannesen317096a2007-09-28 01:08:20 +00006026 LC = (VT == MVT::f32) ? RTLIB::SQRT_F32 :
Dale Johannesen161e8972007-10-05 20:04:43 +00006027 (VT == MVT::f64) ? RTLIB::SQRT_F64 :
6028 (VT == MVT::f80) ? RTLIB::SQRT_F80 :
6029 (VT == MVT::ppcf128) ? RTLIB::SQRT_PPCF128 :
6030 RTLIB::UNKNOWN_LIBCALL;
Evan Cheng56966222007-01-12 02:11:51 +00006031 break;
6032 case ISD::FSIN:
6033 LC = (VT == MVT::f32) ? RTLIB::SIN_F32 : RTLIB::SIN_F64;
6034 break;
6035 case ISD::FCOS:
6036 LC = (VT == MVT::f32) ? RTLIB::COS_F32 : RTLIB::COS_F64;
6037 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006038 default: assert(0 && "Unreachable!");
6039 }
Evan Cheng56966222007-01-12 02:11:51 +00006040 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00006041 break;
6042 }
Evan Cheng966bf242006-12-16 00:52:40 +00006043 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006044 if (VT == MVT::ppcf128) {
6045 SDOperand Tmp;
6046 ExpandOp(Node->getOperand(0), Lo, Tmp);
6047 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6048 // lo = hi==fabs(hi) ? lo : -lo;
6049 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6050 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6051 DAG.getCondCode(ISD::SETEQ));
6052 break;
6053 }
Evan Cheng966bf242006-12-16 00:52:40 +00006054 SDOperand Mask = (VT == MVT::f64)
6055 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6056 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6057 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6058 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6059 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6060 if (getTypeAction(NVT) == Expand)
6061 ExpandOp(Lo, Lo, Hi);
6062 break;
6063 }
6064 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006065 if (VT == MVT::ppcf128) {
6066 ExpandOp(Node->getOperand(0), Lo, Hi);
6067 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6068 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6069 break;
6070 }
Evan Cheng966bf242006-12-16 00:52:40 +00006071 SDOperand Mask = (VT == MVT::f64)
6072 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6073 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6074 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6075 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6076 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6077 if (getTypeAction(NVT) == Expand)
6078 ExpandOp(Lo, Lo, Hi);
6079 break;
6080 }
Evan Cheng912095b2007-01-04 21:56:39 +00006081 case ISD::FCOPYSIGN: {
6082 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6083 if (getTypeAction(NVT) == Expand)
6084 ExpandOp(Lo, Lo, Hi);
6085 break;
6086 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006087 case ISD::SINT_TO_FP:
6088 case ISD::UINT_TO_FP: {
6089 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
6090 MVT::ValueType SrcVT = Node->getOperand(0).getValueType();
Dale Johannesen6e63e092007-10-12 17:52:03 +00006091 if (VT == MVT::ppcf128 && SrcVT != MVT::i64) {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006092 static uint64_t zero = 0;
6093 if (isSigned) {
6094 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6095 Node->getOperand(0)));
6096 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6097 } else {
6098 static uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
6099 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6100 Node->getOperand(0)));
6101 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6102 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00006103 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006104 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6105 DAG.getConstant(0, MVT::i32),
6106 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6107 DAG.getConstantFP(
6108 APFloat(APInt(128, 2, TwoE32)),
6109 MVT::ppcf128)),
6110 Hi,
6111 DAG.getCondCode(ISD::SETLT)),
6112 Lo, Hi);
6113 }
6114 break;
6115 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00006116 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6117 // si64->ppcf128 done by libcall, below
6118 static uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
6119 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6120 Lo, Hi);
6121 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6122 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6123 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6124 DAG.getConstant(0, MVT::i64),
6125 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6126 DAG.getConstantFP(
6127 APFloat(APInt(128, 2, TwoE64)),
6128 MVT::ppcf128)),
6129 Hi,
6130 DAG.getCondCode(ISD::SETLT)),
6131 Lo, Hi);
6132 break;
6133 }
Evan Cheng64f638d2007-09-27 07:35:39 +00006134 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng7df28dc2006-12-19 01:44:04 +00006135 if (Node->getOperand(0).getValueType() == MVT::i64) {
6136 if (VT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00006137 LC = isSigned ? RTLIB::SINTTOFP_I64_F32 : RTLIB::UINTTOFP_I64_F32;
Dale Johannesen73328d12007-09-19 23:55:34 +00006138 else if (VT == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00006139 LC = isSigned ? RTLIB::SINTTOFP_I64_F64 : RTLIB::UINTTOFP_I64_F64;
Dale Johannesen161e8972007-10-05 20:04:43 +00006140 else if (VT == MVT::f80) {
Dale Johannesen73328d12007-09-19 23:55:34 +00006141 assert(isSigned);
Dale Johannesen161e8972007-10-05 20:04:43 +00006142 LC = RTLIB::SINTTOFP_I64_F80;
6143 }
6144 else if (VT == MVT::ppcf128) {
6145 assert(isSigned);
6146 LC = RTLIB::SINTTOFP_I64_PPCF128;
Dale Johannesen73328d12007-09-19 23:55:34 +00006147 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006148 } else {
6149 if (VT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00006150 LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32;
Evan Cheng7df28dc2006-12-19 01:44:04 +00006151 else
Evan Cheng56966222007-01-12 02:11:51 +00006152 LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64;
Evan Cheng7df28dc2006-12-19 01:44:04 +00006153 }
6154
6155 // Promote the operand if needed.
6156 if (getTypeAction(SrcVT) == Promote) {
6157 SDOperand Tmp = PromoteOp(Node->getOperand(0));
6158 Tmp = isSigned
6159 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6160 DAG.getValueType(SrcVT))
6161 : DAG.getZeroExtendInReg(Tmp, SrcVT);
6162 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
6163 }
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006164
6165 const char *LibCall = TLI.getLibcallName(LC);
6166 if (LibCall)
6167 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Hi);
6168 else {
6169 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6170 Node->getOperand(0));
6171 if (getTypeAction(Lo.getValueType()) == Expand)
6172 ExpandOp(Lo, Lo, Hi);
6173 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006174 break;
6175 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00006176 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006177
Chris Lattner83397362005-12-21 18:02:52 +00006178 // Make sure the resultant values have been legalized themselves, unless this
6179 // is a type that requires multi-step expansion.
6180 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6181 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00006182 if (Hi.Val)
6183 // Don't legalize the high part if it is expanded to a single node.
6184 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00006185 }
Evan Cheng05a2d562006-01-09 18:31:59 +00006186
6187 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00006188 bool isNew = ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi)));
Evan Cheng05a2d562006-01-09 18:31:59 +00006189 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006190}
6191
Dan Gohman7f321562007-06-25 16:23:39 +00006192/// SplitVectorOp - Given an operand of vector type, break it down into
6193/// two smaller values, still of vector type.
Chris Lattnerc7029802006-03-18 01:44:44 +00006194void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
6195 SDOperand &Hi) {
Dan Gohman7f321562007-06-25 16:23:39 +00006196 assert(MVT::isVector(Op.getValueType()) && "Cannot split non-vector type!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006197 SDNode *Node = Op.Val;
Dan Gohmane40c7b02007-09-24 15:54:53 +00006198 unsigned NumElements = MVT::getVectorNumElements(Op.getValueType());
Chris Lattnerc7029802006-03-18 01:44:44 +00006199 assert(NumElements > 1 && "Cannot split a single element vector!");
6200 unsigned NewNumElts = NumElements/2;
Dan Gohmane40c7b02007-09-24 15:54:53 +00006201 MVT::ValueType NewEltVT = MVT::getVectorElementType(Op.getValueType());
Dan Gohman7f321562007-06-25 16:23:39 +00006202 MVT::ValueType NewVT = MVT::getVectorType(NewEltVT, NewNumElts);
Chris Lattnerc7029802006-03-18 01:44:44 +00006203
6204 // See if we already split it.
6205 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
6206 = SplitNodes.find(Op);
6207 if (I != SplitNodes.end()) {
6208 Lo = I->second.first;
6209 Hi = I->second.second;
6210 return;
6211 }
6212
6213 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006214 default:
6215#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006216 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006217#endif
6218 assert(0 && "Unhandled operation in SplitVectorOp!");
Dan Gohman7f321562007-06-25 16:23:39 +00006219 case ISD::BUILD_PAIR:
6220 Lo = Node->getOperand(0);
6221 Hi = Node->getOperand(1);
6222 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00006223 case ISD::INSERT_VECTOR_ELT: {
6224 SplitVectorOp(Node->getOperand(0), Lo, Hi);
6225 unsigned Index = cast<ConstantSDNode>(Node->getOperand(2))->getValue();
6226 SDOperand ScalarOp = Node->getOperand(1);
6227 if (Index < NewNumElts)
6228 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT, Lo, ScalarOp,
6229 DAG.getConstant(Index, TLI.getPointerTy()));
6230 else
6231 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT, Hi, ScalarOp,
6232 DAG.getConstant(Index - NewNumElts, TLI.getPointerTy()));
6233 break;
6234 }
Dan Gohman7f321562007-06-25 16:23:39 +00006235 case ISD::BUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006236 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
6237 Node->op_begin()+NewNumElts);
Dan Gohman7f321562007-06-25 16:23:39 +00006238 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006239
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006240 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts,
Dan Gohman7f321562007-06-25 16:23:39 +00006241 Node->op_end());
6242 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006243 break;
6244 }
Dan Gohman7f321562007-06-25 16:23:39 +00006245 case ISD::CONCAT_VECTORS: {
6246 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6247 if (NewNumSubvectors == 1) {
6248 Lo = Node->getOperand(0);
6249 Hi = Node->getOperand(1);
6250 } else {
6251 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
6252 Node->op_begin()+NewNumSubvectors);
6253 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00006254
Dan Gohman7f321562007-06-25 16:23:39 +00006255 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumSubvectors,
6256 Node->op_end());
6257 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT, &HiOps[0], HiOps.size());
6258 }
Dan Gohman65956352007-06-13 15:12:02 +00006259 break;
6260 }
Dan Gohmanc6230962007-10-17 14:48:28 +00006261 case ISD::SELECT: {
6262 SDOperand Cond = Node->getOperand(0);
6263
6264 SDOperand LL, LH, RL, RH;
6265 SplitVectorOp(Node->getOperand(1), LL, LH);
6266 SplitVectorOp(Node->getOperand(2), RL, RH);
6267
6268 if (MVT::isVector(Cond.getValueType())) {
6269 // Handle a vector merge.
6270 SDOperand CL, CH;
6271 SplitVectorOp(Cond, CL, CH);
6272 Lo = DAG.getNode(Node->getOpcode(), NewVT, CL, LL, RL);
6273 Hi = DAG.getNode(Node->getOpcode(), NewVT, CH, LH, RH);
6274 } else {
6275 // Handle a simple select with vector operands.
6276 Lo = DAG.getNode(Node->getOpcode(), NewVT, Cond, LL, RL);
6277 Hi = DAG.getNode(Node->getOpcode(), NewVT, Cond, LH, RH);
6278 }
6279 break;
6280 }
Dan Gohman7f321562007-06-25 16:23:39 +00006281 case ISD::ADD:
6282 case ISD::SUB:
6283 case ISD::MUL:
6284 case ISD::FADD:
6285 case ISD::FSUB:
6286 case ISD::FMUL:
6287 case ISD::SDIV:
6288 case ISD::UDIV:
6289 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00006290 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006291 case ISD::AND:
6292 case ISD::OR:
6293 case ISD::XOR: {
Chris Lattnerc7029802006-03-18 01:44:44 +00006294 SDOperand LL, LH, RL, RH;
6295 SplitVectorOp(Node->getOperand(0), LL, LH);
6296 SplitVectorOp(Node->getOperand(1), RL, RH);
6297
Dan Gohman7f321562007-06-25 16:23:39 +00006298 Lo = DAG.getNode(Node->getOpcode(), NewVT, LL, RL);
6299 Hi = DAG.getNode(Node->getOpcode(), NewVT, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00006300 break;
6301 }
Dan Gohman82669522007-10-11 23:57:53 +00006302 case ISD::FPOWI: {
6303 SDOperand L, H;
6304 SplitVectorOp(Node->getOperand(0), L, H);
6305
6306 Lo = DAG.getNode(Node->getOpcode(), NewVT, L, Node->getOperand(1));
6307 Hi = DAG.getNode(Node->getOpcode(), NewVT, H, Node->getOperand(1));
6308 break;
6309 }
6310 case ISD::CTTZ:
6311 case ISD::CTLZ:
6312 case ISD::CTPOP:
6313 case ISD::FNEG:
6314 case ISD::FABS:
6315 case ISD::FSQRT:
6316 case ISD::FSIN:
6317 case ISD::FCOS: {
6318 SDOperand L, H;
6319 SplitVectorOp(Node->getOperand(0), L, H);
6320
6321 Lo = DAG.getNode(Node->getOpcode(), NewVT, L);
6322 Hi = DAG.getNode(Node->getOpcode(), NewVT, H);
6323 break;
6324 }
Dan Gohman7f321562007-06-25 16:23:39 +00006325 case ISD::LOAD: {
6326 LoadSDNode *LD = cast<LoadSDNode>(Node);
6327 SDOperand Ch = LD->getChain();
6328 SDOperand Ptr = LD->getBasePtr();
6329 const Value *SV = LD->getSrcValue();
6330 int SVOffset = LD->getSrcValueOffset();
6331 unsigned Alignment = LD->getAlignment();
6332 bool isVolatile = LD->isVolatile();
6333
6334 Lo = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
6335 unsigned IncrementSize = NewNumElts * MVT::getSizeInBits(NewEltVT)/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00006336 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
6337 getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006338 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006339 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman7f321562007-06-25 16:23:39 +00006340 Hi = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00006341
6342 // Build a factor node to remember that this load is independent of the
6343 // other one.
6344 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
6345 Hi.getValue(1));
6346
6347 // Remember that we legalized the chain.
6348 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00006349 break;
6350 }
Dan Gohman7f321562007-06-25 16:23:39 +00006351 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00006352 // We know the result is a vector. The input may be either a vector or a
6353 // scalar value.
Dan Gohman10a7aa62007-06-29 00:09:08 +00006354 SDOperand InOp = Node->getOperand(0);
6355 if (!MVT::isVector(InOp.getValueType()) ||
6356 MVT::getVectorNumElements(InOp.getValueType()) == 1) {
6357 // The input is a scalar or single-element vector.
6358 // Lower to a store/load so that it can be split.
6359 // FIXME: this could be improved probably.
Chris Lattner85dd3be2007-10-15 17:48:57 +00006360 SDOperand Ptr = DAG.CreateStackTemporary(InOp.getValueType());
Chris Lattner7692eb42006-03-23 21:16:34 +00006361
Evan Cheng786225a2006-10-05 23:01:46 +00006362 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman10a7aa62007-06-29 00:09:08 +00006363 InOp, Ptr, NULL, 0);
6364 InOp = DAG.getLoad(Op.getValueType(), St, Ptr, NULL, 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00006365 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00006366 // Split the vector and convert each of the pieces now.
6367 SplitVectorOp(InOp, Lo, Hi);
6368 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT, Lo);
6369 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT, Hi);
6370 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00006371 }
Chris Lattnerc7029802006-03-18 01:44:44 +00006372 }
6373
6374 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00006375 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00006376 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00006377 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00006378}
6379
6380
Dan Gohman89b20c02007-06-27 14:06:22 +00006381/// ScalarizeVectorOp - Given an operand of single-element vector type
6382/// (e.g. v1f32), convert it into the equivalent operation that returns a
6383/// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +00006384SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) {
6385 assert(MVT::isVector(Op.getValueType()) &&
6386 "Bad ScalarizeVectorOp invocation!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006387 SDNode *Node = Op.Val;
Dan Gohman7f321562007-06-25 16:23:39 +00006388 MVT::ValueType NewVT = MVT::getVectorElementType(Op.getValueType());
6389 assert(MVT::getVectorNumElements(Op.getValueType()) == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00006390
Dan Gohman7f321562007-06-25 16:23:39 +00006391 // See if we already scalarized it.
6392 std::map<SDOperand, SDOperand>::iterator I = ScalarizedNodes.find(Op);
6393 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00006394
6395 SDOperand Result;
6396 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00006397 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006398#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006399 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006400#endif
Dan Gohman7f321562007-06-25 16:23:39 +00006401 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
6402 case ISD::ADD:
6403 case ISD::FADD:
6404 case ISD::SUB:
6405 case ISD::FSUB:
6406 case ISD::MUL:
6407 case ISD::FMUL:
6408 case ISD::SDIV:
6409 case ISD::UDIV:
6410 case ISD::FDIV:
6411 case ISD::SREM:
6412 case ISD::UREM:
6413 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00006414 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006415 case ISD::AND:
6416 case ISD::OR:
6417 case ISD::XOR:
6418 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00006419 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00006420 ScalarizeVectorOp(Node->getOperand(0)),
6421 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00006422 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006423 case ISD::FNEG:
6424 case ISD::FABS:
6425 case ISD::FSQRT:
6426 case ISD::FSIN:
6427 case ISD::FCOS:
6428 Result = DAG.getNode(Node->getOpcode(),
6429 NewVT,
6430 ScalarizeVectorOp(Node->getOperand(0)));
6431 break;
Dan Gohman9e04c822007-10-12 14:13:46 +00006432 case ISD::FPOWI:
6433 Result = DAG.getNode(Node->getOpcode(),
6434 NewVT,
6435 ScalarizeVectorOp(Node->getOperand(0)),
6436 Node->getOperand(1));
6437 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006438 case ISD::LOAD: {
6439 LoadSDNode *LD = cast<LoadSDNode>(Node);
6440 SDOperand Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
6441 SDOperand Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00006442
Dan Gohman7f321562007-06-25 16:23:39 +00006443 const Value *SV = LD->getSrcValue();
6444 int SVOffset = LD->getSrcValueOffset();
6445 Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset,
6446 LD->isVolatile(), LD->getAlignment());
6447
Chris Lattnerc7029802006-03-18 01:44:44 +00006448 // Remember that we legalized the chain.
6449 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
6450 break;
6451 }
Dan Gohman7f321562007-06-25 16:23:39 +00006452 case ISD::BUILD_VECTOR:
6453 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00006454 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006455 case ISD::INSERT_VECTOR_ELT:
6456 // Returning the inserted scalar element.
6457 Result = Node->getOperand(1);
6458 break;
6459 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00006460 assert(Node->getOperand(0).getValueType() == NewVT &&
6461 "Concat of non-legal vectors not yet supported!");
6462 Result = Node->getOperand(0);
6463 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006464 case ISD::VECTOR_SHUFFLE: {
6465 // Figure out if the scalar is the LHS or RHS and return it.
6466 SDOperand EltNum = Node->getOperand(2).getOperand(0);
6467 if (cast<ConstantSDNode>(EltNum)->getValue())
6468 Result = ScalarizeVectorOp(Node->getOperand(1));
6469 else
6470 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00006471 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006472 }
6473 case ISD::EXTRACT_SUBVECTOR:
6474 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00006475 assert(Result.getValueType() == NewVT);
6476 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006477 case ISD::BIT_CONVERT:
6478 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
Chris Lattner5b2316e2006-03-28 20:24:43 +00006479 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006480 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00006481 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00006482 ScalarizeVectorOp(Op.getOperand(1)),
6483 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00006484 break;
Chris Lattnerc7029802006-03-18 01:44:44 +00006485 }
6486
6487 if (TLI.isTypeLegal(NewVT))
6488 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00006489 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
6490 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00006491 return Result;
6492}
6493
Chris Lattner3e928bb2005-01-07 07:47:09 +00006494
6495// SelectionDAG::Legalize - This is the entry point for the file.
6496//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00006497void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00006498 if (ViewLegalizeDAGs) viewGraph();
6499
Chris Lattner3e928bb2005-01-07 07:47:09 +00006500 /// run - This is the main entry point to this class.
6501 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00006502 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006503}
6504