blob: 70dd97d22346d58846ec69fcc27deec89a07ea4e [file] [log] [blame]
Chris Lattner3e928bb2005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner3e928bb2005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3e928bb2005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner45b8caf2005-01-15 07:15:18 +000016#include "llvm/CodeGen/MachineFrameInfo.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000017#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000018#include "llvm/CodeGen/MachineModuleInfo.h"
Evan Cheng61bbbab2007-08-16 23:50:06 +000019#include "llvm/Target/TargetFrameInfo.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000020#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000021#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000022#include "llvm/Target/TargetMachine.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000023#include "llvm/Target/TargetOptions.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000024#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000025#include "llvm/Constants.h"
Reid Spencerc1030572007-01-19 21:13:56 +000026#include "llvm/DerivedTypes.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 Lattner1401d152008-01-16 07:45:30 +0000202 SDOperand EmitStackConvert(SDOperand SrcOp, MVT::ValueType SlotVT,
203 MVT::ValueType DestVT);
Chris Lattnerce872152006-03-19 06:31:19 +0000204 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner4352cc92006-04-04 17:23:26 +0000205 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Jim Laskey6269ed12005-08-17 00:39:29 +0000206 SDOperand ExpandLegalINT_TO_FP(bool isSigned,
207 SDOperand LegalOp,
208 MVT::ValueType DestVT);
Nate Begeman5a8441e2005-07-16 02:02:34 +0000209 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
210 bool isSigned);
Chris Lattner1618beb2005-07-29 00:11:56 +0000211 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
212 bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000213
Chris Lattner456a93a2006-01-28 07:39:30 +0000214 SDOperand ExpandBSWAP(SDOperand Op);
215 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattnere34b3962005-01-19 04:19:40 +0000216 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
217 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000218 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
219 SDOperand &Lo, SDOperand &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000220
Dan Gohman7f321562007-06-25 16:23:39 +0000221 SDOperand ExpandEXTRACT_SUBVECTOR(SDOperand Op);
Chris Lattner4aab2f42006-04-02 05:06:04 +0000222 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000223};
224}
225
Chris Lattner4352cc92006-04-04 17:23:26 +0000226/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
227/// specified mask and type. Targets can specify exactly which masks they
228/// support and the code generator is tasked with not creating illegal masks.
229///
230/// Note that this will also return true for shuffles that are promoted to a
231/// different type.
232SDNode *SelectionDAGLegalize::isShuffleLegal(MVT::ValueType VT,
233 SDOperand Mask) const {
234 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
235 default: return 0;
236 case TargetLowering::Legal:
237 case TargetLowering::Custom:
238 break;
239 case TargetLowering::Promote: {
240 // If this is promoted to a different type, convert the shuffle mask and
241 // ask if it is legal in the promoted type!
242 MVT::ValueType NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
243
244 // If we changed # elements, change the shuffle mask.
245 unsigned NumEltsGrowth =
246 MVT::getVectorNumElements(NVT) / MVT::getVectorNumElements(VT);
247 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
248 if (NumEltsGrowth > 1) {
249 // Renumber the elements.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000250 SmallVector<SDOperand, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000251 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
252 SDOperand InOp = Mask.getOperand(i);
253 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
254 if (InOp.getOpcode() == ISD::UNDEF)
255 Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
256 else {
257 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
258 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32));
259 }
260 }
261 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000262 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000263 }
264 VT = NVT;
265 break;
266 }
267 }
268 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
269}
270
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000271SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
272 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
273 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000274 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000275 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000276}
277
Chris Lattnere10e6f72007-06-18 21:28:10 +0000278/// ComputeTopDownOrdering - Compute a top-down ordering of the dag, where Order
279/// contains all of a nodes operands before it contains the node.
280static void ComputeTopDownOrdering(SelectionDAG &DAG,
281 SmallVector<SDNode*, 64> &Order) {
282
283 DenseMap<SDNode*, unsigned> Visited;
284 std::vector<SDNode*> Worklist;
285 Worklist.reserve(128);
Chris Lattner32fca002005-10-06 01:20:27 +0000286
Chris Lattnere10e6f72007-06-18 21:28:10 +0000287 // Compute ordering from all of the leaves in the graphs, those (like the
288 // entry node) that have no operands.
289 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
290 E = DAG.allnodes_end(); I != E; ++I) {
291 if (I->getNumOperands() == 0) {
292 Visited[I] = 0 - 1U;
293 Worklist.push_back(I);
294 }
Chris Lattner32fca002005-10-06 01:20:27 +0000295 }
296
Chris Lattnere10e6f72007-06-18 21:28:10 +0000297 while (!Worklist.empty()) {
298 SDNode *N = Worklist.back();
299 Worklist.pop_back();
300
301 if (++Visited[N] != N->getNumOperands())
302 continue; // Haven't visited all operands yet
303
304 Order.push_back(N);
305
306 // Now that we have N in, add anything that uses it if all of their operands
307 // are now done.
308 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
309 UI != E; ++UI)
310 Worklist.push_back(*UI);
311 }
312
313 assert(Order.size() == Visited.size() &&
314 Order.size() ==
315 (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) &&
316 "Error: DAG is cyclic!");
Chris Lattner32fca002005-10-06 01:20:27 +0000317}
318
Chris Lattner1618beb2005-07-29 00:11:56 +0000319
Chris Lattner3e928bb2005-01-07 07:47:09 +0000320void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000321 LastCALLSEQ_END = DAG.getEntryNode();
322 IsLegalizingCall = false;
323
Chris Lattnerab510a72005-10-02 17:49:46 +0000324 // The legalize process is inherently a bottom-up recursive process (users
325 // legalize their uses before themselves). Given infinite stack space, we
326 // could just start legalizing on the root and traverse the whole graph. In
327 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000328 // blocks. To avoid this problem, compute an ordering of the nodes where each
329 // node is only legalized after all of its operands are legalized.
Chris Lattner0ed44172007-02-04 01:20:02 +0000330 SmallVector<SDNode*, 64> Order;
Chris Lattnere10e6f72007-06-18 21:28:10 +0000331 ComputeTopDownOrdering(DAG, Order);
Chris Lattnerab510a72005-10-02 17:49:46 +0000332
Chris Lattnerc7029802006-03-18 01:44:44 +0000333 for (unsigned i = 0, e = Order.size(); i != e; ++i)
334 HandleOp(SDOperand(Order[i], 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000335
336 // Finally, it's possible the root changed. Get the new root.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000337 SDOperand OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000338 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
339 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000340
341 ExpandedNodes.clear();
342 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000343 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000344 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000345 ScalarizedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000346
347 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000348 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000349}
350
Chris Lattner6831a812006-02-13 09:18:02 +0000351
352/// FindCallEndFromCallStart - Given a chained node that is part of a call
353/// sequence, find the CALLSEQ_END node that terminates the call sequence.
354static SDNode *FindCallEndFromCallStart(SDNode *Node) {
355 if (Node->getOpcode() == ISD::CALLSEQ_END)
356 return Node;
357 if (Node->use_empty())
358 return 0; // No CallSeqEnd
359
360 // The chain is usually at the end.
361 SDOperand TheChain(Node, Node->getNumValues()-1);
362 if (TheChain.getValueType() != MVT::Other) {
363 // Sometimes it's at the beginning.
364 TheChain = SDOperand(Node, 0);
365 if (TheChain.getValueType() != MVT::Other) {
366 // Otherwise, hunt for it.
367 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
368 if (Node->getValueType(i) == MVT::Other) {
369 TheChain = SDOperand(Node, i);
370 break;
371 }
372
373 // Otherwise, we walked into a node without a chain.
374 if (TheChain.getValueType() != MVT::Other)
375 return 0;
376 }
377 }
378
379 for (SDNode::use_iterator UI = Node->use_begin(),
380 E = Node->use_end(); UI != E; ++UI) {
381
382 // Make sure to only follow users of our token chain.
383 SDNode *User = *UI;
384 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
385 if (User->getOperand(i) == TheChain)
386 if (SDNode *Result = FindCallEndFromCallStart(User))
387 return Result;
388 }
389 return 0;
390}
391
392/// FindCallStartFromCallEnd - Given a chained node that is part of a call
393/// sequence, find the CALLSEQ_START node that initiates the call sequence.
394static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
395 assert(Node && "Didn't find callseq_start for a call??");
396 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
397
398 assert(Node->getOperand(0).getValueType() == MVT::Other &&
399 "Node doesn't have a token chain argument!");
400 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
401}
402
403/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
404/// see if any uses can reach Dest. If no dest operands can get to dest,
405/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000406///
407/// Keep track of the nodes we fine that actually do lead to Dest in
408/// NodesLeadingTo. This avoids retraversing them exponential number of times.
409///
410bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000411 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000412 if (N == Dest) return true; // N certainly leads to Dest :)
413
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000414 // If we've already processed this node and it does lead to Dest, there is no
415 // need to reprocess it.
416 if (NodesLeadingTo.count(N)) return true;
417
Chris Lattner6831a812006-02-13 09:18:02 +0000418 // If the first result of this node has been already legalized, then it cannot
419 // reach N.
420 switch (getTypeAction(N->getValueType(0))) {
421 case Legal:
422 if (LegalizedNodes.count(SDOperand(N, 0))) return false;
423 break;
424 case Promote:
425 if (PromotedNodes.count(SDOperand(N, 0))) return false;
426 break;
427 case Expand:
428 if (ExpandedNodes.count(SDOperand(N, 0))) return false;
429 break;
430 }
431
432 // Okay, this node has not already been legalized. Check and legalize all
433 // operands. If none lead to Dest, then we can legalize this node.
434 bool OperandsLeadToDest = false;
435 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
436 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000437 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000438
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000439 if (OperandsLeadToDest) {
440 NodesLeadingTo.insert(N);
441 return true;
442 }
Chris Lattner6831a812006-02-13 09:18:02 +0000443
444 // Okay, this node looks safe, legalize it and return false.
Chris Lattner80edfb32006-04-17 22:10:08 +0000445 HandleOp(SDOperand(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000446 return false;
447}
448
Dan Gohman7f321562007-06-25 16:23:39 +0000449/// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000450/// appropriate for its type.
451void SelectionDAGLegalize::HandleOp(SDOperand Op) {
Dan Gohman7f321562007-06-25 16:23:39 +0000452 MVT::ValueType VT = Op.getValueType();
453 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000454 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000455 case Legal: (void)LegalizeOp(Op); break;
456 case Promote: (void)PromoteOp(Op); break;
Chris Lattnerc7029802006-03-18 01:44:44 +0000457 case Expand:
Dan Gohman7f321562007-06-25 16:23:39 +0000458 if (!MVT::isVector(VT)) {
459 // If this is an illegal scalar, expand it into its two component
460 // pieces.
Chris Lattnerc7029802006-03-18 01:44:44 +0000461 SDOperand X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000462 if (Op.getOpcode() == ISD::TargetConstant)
463 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000464 ExpandOp(Op, X, Y);
Dan Gohman7f321562007-06-25 16:23:39 +0000465 } else if (MVT::getVectorNumElements(VT) == 1) {
466 // If this is an illegal single element vector, convert it to a
467 // scalar operation.
468 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000469 } else {
Dan Gohman7f321562007-06-25 16:23:39 +0000470 // Otherwise, this is an illegal multiple element vector.
471 // Split it in half and legalize both parts.
472 SDOperand X, Y;
473 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000474 }
475 break;
476 }
477}
Chris Lattner6831a812006-02-13 09:18:02 +0000478
Evan Cheng9f877882006-12-13 20:57:08 +0000479/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
480/// a load from the constant pool.
481static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng279101e2006-12-12 22:19:28 +0000482 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000483 bool Extend = false;
484
485 // If a FP immediate is precise when represented as a float and if the
486 // target can do an extending load from float to double, we put it into
487 // the constant pool as a float, even if it's is statically typed as a
488 // double.
489 MVT::ValueType VT = CFP->getValueType(0);
490 bool isDouble = VT == MVT::f64;
Dale Johannesen118cd9d2007-09-16 16:51:49 +0000491 ConstantFP *LLVMC = ConstantFP::get(MVT::getTypeForValueType(VT),
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000492 CFP->getValueAPF());
Evan Cheng9f877882006-12-13 20:57:08 +0000493 if (!UseCP) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000494 if (VT!=MVT::f64 && VT!=MVT::f32)
495 assert(0 && "Invalid type expansion");
Dale Johannesen9d5f4562007-09-12 03:30:33 +0000496 return DAG.getConstant(LLVMC->getValueAPF().convertToAPInt().getZExtValue(),
497 isDouble ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000498 }
499
Dale Johannesenf04afdb2007-08-30 00:23:21 +0000500 if (isDouble && CFP->isValueValidForType(MVT::f32, CFP->getValueAPF()) &&
Evan Cheng00495212006-12-12 21:32:44 +0000501 // Only do this if the target has a native EXTLOAD instruction from f32.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000502 // Do not try to be clever about long doubles (so far)
Evan Cheng00495212006-12-12 21:32:44 +0000503 TLI.isLoadXLegal(ISD::EXTLOAD, MVT::f32)) {
504 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC,Type::FloatTy));
505 VT = MVT::f32;
506 Extend = true;
507 }
508
509 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
510 if (Extend) {
511 return DAG.getExtLoad(ISD::EXTLOAD, MVT::f64, DAG.getEntryNode(),
512 CPIdx, NULL, 0, MVT::f32);
513 } else {
514 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
515 }
516}
517
Chris Lattner6831a812006-02-13 09:18:02 +0000518
Evan Cheng912095b2007-01-04 21:56:39 +0000519/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
520/// operations.
521static
522SDOperand ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT::ValueType NVT,
523 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng068c5f42007-01-05 21:31:51 +0000524 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng912095b2007-01-04 21:56:39 +0000525 MVT::ValueType SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000526 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
527 "fcopysign expansion only supported for f32 and f64");
Evan Cheng912095b2007-01-04 21:56:39 +0000528 MVT::ValueType SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000529
Evan Cheng912095b2007-01-04 21:56:39 +0000530 // First get the sign bit of second operand.
Evan Cheng068c5f42007-01-05 21:31:51 +0000531 SDOperand Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000532 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
533 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000534 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000535 SDOperand SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000536 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000537 // Shift right or sign-extend it if the two operands have different types.
538 int SizeDiff = MVT::getSizeInBits(SrcNVT) - MVT::getSizeInBits(NVT);
539 if (SizeDiff > 0) {
540 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
541 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
542 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
543 } else if (SizeDiff < 0)
544 SignBit = DAG.getNode(ISD::SIGN_EXTEND, NVT, SignBit);
Evan Cheng068c5f42007-01-05 21:31:51 +0000545
546 // Clear the sign bit of first operand.
547 SDOperand Mask2 = (VT == MVT::f64)
548 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
549 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
550 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Evan Cheng912095b2007-01-04 21:56:39 +0000551 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000552 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
553
554 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000555 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
556 return Result;
557}
558
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000559/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
560static
561SDOperand ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
562 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000563 SDOperand Chain = ST->getChain();
564 SDOperand Ptr = ST->getBasePtr();
565 SDOperand Val = ST->getValue();
566 MVT::ValueType VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000567 int Alignment = ST->getAlignment();
568 int SVOffset = ST->getSrcValueOffset();
569 if (MVT::isFloatingPoint(ST->getStoredVT())) {
570 // Expand to a bitconvert of the value to the integer type of the
571 // same size, then a (misaligned) int store.
572 MVT::ValueType intVT;
573 if (VT==MVT::f64)
574 intVT = MVT::i64;
575 else if (VT==MVT::f32)
576 intVT = MVT::i32;
577 else
578 assert(0 && "Unaligned load of unsupported floating point type");
579
580 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
581 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
582 SVOffset, ST->isVolatile(), Alignment);
583 }
584 assert(MVT::isInteger(ST->getStoredVT()) &&
585 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000586 // Get the half-size VT
587 MVT::ValueType NewStoredVT = ST->getStoredVT() - 1;
588 int NumBits = MVT::getSizeInBits(NewStoredVT);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000589 int IncrementSize = NumBits / 8;
590
591 // Divide the stored value in two parts.
592 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
593 SDOperand Lo = Val;
594 SDOperand Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
595
596 // Store the two parts
597 SDOperand Store1, Store2;
598 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
599 ST->getSrcValue(), SVOffset, NewStoredVT,
600 ST->isVolatile(), Alignment);
601 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
602 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000603 Alignment = MinAlign(Alignment, IncrementSize);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000604 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
605 ST->getSrcValue(), SVOffset + IncrementSize,
606 NewStoredVT, ST->isVolatile(), Alignment);
607
608 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
609}
610
611/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
612static
613SDOperand ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
614 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000615 int SVOffset = LD->getSrcValueOffset();
616 SDOperand Chain = LD->getChain();
617 SDOperand Ptr = LD->getBasePtr();
618 MVT::ValueType VT = LD->getValueType(0);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000619 MVT::ValueType LoadedVT = LD->getLoadedVT();
Chris Lattnere400af82007-11-19 21:38:03 +0000620 if (MVT::isFloatingPoint(VT) && !MVT::isVector(VT)) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000621 // Expand to a (misaligned) integer load of the same size,
622 // then bitconvert to floating point.
623 MVT::ValueType intVT;
Chris Lattnere400af82007-11-19 21:38:03 +0000624 if (LoadedVT == MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000625 intVT = MVT::i64;
Chris Lattnere400af82007-11-19 21:38:03 +0000626 else if (LoadedVT == MVT::f32)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000627 intVT = MVT::i32;
628 else
629 assert(0 && "Unaligned load of unsupported floating point type");
630
631 SDOperand newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
632 SVOffset, LD->isVolatile(),
633 LD->getAlignment());
634 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
635 if (LoadedVT != VT)
636 Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
637
638 SDOperand Ops[] = { Result, Chain };
639 return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
640 Ops, 2);
641 }
Chris Lattnere400af82007-11-19 21:38:03 +0000642 assert((MVT::isInteger(LoadedVT) || MVT::isVector(LoadedVT)) &&
643 "Unaligned load of unsupported type.");
644
645 // Compute the new VT that is half the size of the old one. We either have an
646 // integer MVT or we have a vector MVT.
647 unsigned NumBits = MVT::getSizeInBits(LoadedVT);
648 MVT::ValueType NewLoadedVT;
649 if (!MVT::isVector(LoadedVT)) {
650 NewLoadedVT = MVT::getIntegerType(NumBits/2);
651 } else {
652 // FIXME: This is not right for <1 x anything> it is also not right for
653 // non-power-of-two vectors.
654 NewLoadedVT = MVT::getVectorType(MVT::getVectorElementType(LoadedVT),
655 MVT::getVectorNumElements(LoadedVT)/2);
656 }
657 NumBits >>= 1;
658
659 unsigned Alignment = LD->getAlignment();
660 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000661 ISD::LoadExtType HiExtType = LD->getExtensionType();
662
663 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
664 if (HiExtType == ISD::NON_EXTLOAD)
665 HiExtType = ISD::ZEXTLOAD;
666
667 // Load the value in two parts
668 SDOperand Lo, Hi;
669 if (TLI.isLittleEndian()) {
670 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
671 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
672 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
673 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
674 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
675 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000676 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000677 } else {
678 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
679 NewLoadedVT,LD->isVolatile(), Alignment);
680 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
681 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
682 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
683 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000684 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000685 }
686
687 // aggregate the two parts
688 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
689 SDOperand Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
690 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
691
692 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
693 Hi.getValue(1));
694
695 SDOperand Ops[] = { Result, TF };
696 return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other), Ops, 2);
697}
Evan Cheng912095b2007-01-04 21:56:39 +0000698
Dan Gohman82669522007-10-11 23:57:53 +0000699/// UnrollVectorOp - We know that the given vector has a legal type, however
700/// the operation it performs is not legal and is an operation that we have
701/// no way of lowering. "Unroll" the vector, splitting out the scalars and
702/// operating on each element individually.
703SDOperand SelectionDAGLegalize::UnrollVectorOp(SDOperand Op) {
704 MVT::ValueType VT = Op.getValueType();
705 assert(isTypeLegal(VT) &&
706 "Caller should expand or promote operands that are not legal!");
707 assert(Op.Val->getNumValues() == 1 &&
708 "Can't unroll a vector with multiple results!");
709 unsigned NE = MVT::getVectorNumElements(VT);
710 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
711
712 SmallVector<SDOperand, 8> Scalars;
713 SmallVector<SDOperand, 4> Operands(Op.getNumOperands());
714 for (unsigned i = 0; i != NE; ++i) {
715 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
716 SDOperand Operand = Op.getOperand(j);
717 MVT::ValueType OperandVT = Operand.getValueType();
718 if (MVT::isVector(OperandVT)) {
719 // A vector operand; extract a single element.
720 MVT::ValueType OperandEltVT = MVT::getVectorElementType(OperandVT);
721 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
722 OperandEltVT,
723 Operand,
724 DAG.getConstant(i, MVT::i32));
725 } else {
726 // A scalar operand; just use it as is.
727 Operands[j] = Operand;
728 }
729 }
730 Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
731 &Operands[0], Operands.size()));
732 }
733
734 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
735}
736
Duncan Sands007f9842008-01-10 10:28:30 +0000737/// GetFPLibCall - Return the right libcall for the given floating point type.
738static RTLIB::Libcall GetFPLibCall(MVT::ValueType VT,
739 RTLIB::Libcall Call_F32,
740 RTLIB::Libcall Call_F64,
741 RTLIB::Libcall Call_F80,
742 RTLIB::Libcall Call_PPCF128) {
743 return
744 VT == MVT::f32 ? Call_F32 :
745 VT == MVT::f64 ? Call_F64 :
746 VT == MVT::f80 ? Call_F80 :
747 VT == MVT::ppcf128 ? Call_PPCF128 :
748 RTLIB::UNKNOWN_LIBCALL;
749}
750
Dan Gohmana3466152007-07-13 20:14:11 +0000751/// LegalizeOp - We know that the specified value has a legal type, and
752/// that its operands are legal. Now ensure that the operation itself
753/// is legal, recursively ensuring that the operands' operations remain
754/// legal.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000755SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000756 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
757 return Op;
758
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000759 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000760 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000761 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000762
Chris Lattner3e928bb2005-01-07 07:47:09 +0000763 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000764 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000765 if (Node->getNumValues() > 1) {
766 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000767 if (getTypeAction(Node->getValueType(i)) != Legal) {
768 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000769 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000770 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000771 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000772 }
773 }
774
Chris Lattner45982da2005-05-12 16:53:42 +0000775 // Note that LegalizeOp may be reentered even from single-use nodes, which
776 // means that we always must cache transformed nodes.
Chris Lattner718071c2007-02-04 00:50:02 +0000777 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000778 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000779
Nate Begeman9373a812005-08-10 20:51:12 +0000780 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000781 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000782 bool isCustom = false;
783
Chris Lattner3e928bb2005-01-07 07:47:09 +0000784 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000785 case ISD::FrameIndex:
786 case ISD::EntryToken:
787 case ISD::Register:
788 case ISD::BasicBlock:
789 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000790 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000791 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000792 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000793 case ISD::TargetConstantPool:
794 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000795 case ISD::TargetGlobalTLSAddress:
Chris Lattner948c1b12006-01-28 08:31:04 +0000796 case ISD::TargetExternalSymbol:
797 case ISD::VALUETYPE:
798 case ISD::SRCVALUE:
799 case ISD::STRING:
800 case ISD::CONDCODE:
801 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +0000802 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +0000803 "This must be legal!");
804 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000805 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000806 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
807 // If this is a target node, legalize it by legalizing the operands then
808 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000809 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000810 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000811 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000812
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000813 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000814
815 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
816 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
817 return Result.getValue(Op.ResNo);
818 }
819 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000820#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +0000821 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000822#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000823 assert(0 && "Do not know how to legalize this operator!");
824 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +0000825 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000826 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000827 case ISD::GlobalTLSAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000828 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000829 case ISD::ConstantPool:
830 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000831 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
832 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000833 case TargetLowering::Custom:
834 Tmp1 = TLI.LowerOperation(Op, DAG);
835 if (Tmp1.Val) Result = Tmp1;
836 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000837 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000838 break;
839 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000840 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000841 case ISD::FRAMEADDR:
842 case ISD::RETURNADDR:
843 // The only option for these nodes is to custom lower them. If the target
844 // does not custom lower them, then return zero.
845 Tmp1 = TLI.LowerOperation(Op, DAG);
846 if (Tmp1.Val)
847 Result = Tmp1;
848 else
849 Result = DAG.getConstant(0, TLI.getPointerTy());
850 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000851 case ISD::FRAME_TO_ARGS_OFFSET: {
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000852 MVT::ValueType VT = Node->getValueType(0);
853 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
854 default: assert(0 && "This action is not supported yet!");
855 case TargetLowering::Custom:
856 Result = TLI.LowerOperation(Op, DAG);
857 if (Result.Val) break;
858 // Fall Thru
859 case TargetLowering::Legal:
860 Result = DAG.getConstant(0, VT);
861 break;
862 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000863 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000864 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000865 case ISD::EXCEPTIONADDR: {
866 Tmp1 = LegalizeOp(Node->getOperand(0));
867 MVT::ValueType VT = Node->getValueType(0);
868 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
869 default: assert(0 && "This action is not supported yet!");
870 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000871 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000872 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000873 }
874 break;
875 case TargetLowering::Custom:
876 Result = TLI.LowerOperation(Op, DAG);
877 if (Result.Val) break;
878 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000879 case TargetLowering::Legal: {
880 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp1 };
881 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
Duncan Sandsb027fa02007-12-31 18:35:50 +0000882 Ops, 2);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000883 break;
884 }
885 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000886 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000887 if (Result.Val->getNumValues() == 1) break;
888
889 assert(Result.Val->getNumValues() == 2 &&
890 "Cannot return more than two values!");
891
892 // Since we produced two values, make sure to remember that we
893 // legalized both of them.
894 Tmp1 = LegalizeOp(Result);
895 Tmp2 = LegalizeOp(Result.getValue(1));
896 AddLegalizedOperand(Op.getValue(0), Tmp1);
897 AddLegalizedOperand(Op.getValue(1), Tmp2);
898 return Op.ResNo ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +0000899 case ISD::EHSELECTION: {
900 Tmp1 = LegalizeOp(Node->getOperand(0));
901 Tmp2 = LegalizeOp(Node->getOperand(1));
902 MVT::ValueType VT = Node->getValueType(0);
903 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
904 default: assert(0 && "This action is not supported yet!");
905 case TargetLowering::Expand: {
906 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000907 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +0000908 }
909 break;
910 case TargetLowering::Custom:
911 Result = TLI.LowerOperation(Op, DAG);
912 if (Result.Val) break;
913 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000914 case TargetLowering::Legal: {
915 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp2 };
916 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
Duncan Sandsb027fa02007-12-31 18:35:50 +0000917 Ops, 2);
Jim Laskey8782d482007-02-28 20:43:58 +0000918 break;
919 }
920 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000921 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000922 if (Result.Val->getNumValues() == 1) break;
923
924 assert(Result.Val->getNumValues() == 2 &&
925 "Cannot return more than two values!");
926
927 // Since we produced two values, make sure to remember that we
928 // legalized both of them.
929 Tmp1 = LegalizeOp(Result);
930 Tmp2 = LegalizeOp(Result.getValue(1));
931 AddLegalizedOperand(Op.getValue(0), Tmp1);
932 AddLegalizedOperand(Op.getValue(1), Tmp2);
933 return Op.ResNo ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000934 case ISD::EH_RETURN: {
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000935 MVT::ValueType VT = Node->getValueType(0);
936 // The only "good" option for this node is to custom lower it.
937 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
938 default: assert(0 && "This action is not supported at all!");
939 case TargetLowering::Custom:
940 Result = TLI.LowerOperation(Op, DAG);
941 if (Result.Val) break;
942 // Fall Thru
943 case TargetLowering::Legal:
944 // Target does not know, how to lower this, lower to noop
945 Result = LegalizeOp(Node->getOperand(0));
946 break;
947 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000948 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000949 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000950 case ISD::AssertSext:
951 case ISD::AssertZext:
952 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000953 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000954 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000955 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000956 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +0000957 Result = Node->getOperand(Op.ResNo);
958 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000959 case ISD::CopyFromReg:
960 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000961 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000962 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000963 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000964 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000965 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000966 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000967 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000968 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
969 } else {
970 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
971 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000972 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
973 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000974 // Since CopyFromReg produces two values, make sure to remember that we
975 // legalized both of them.
976 AddLegalizedOperand(Op.getValue(0), Result);
977 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
978 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000979 case ISD::UNDEF: {
980 MVT::ValueType VT = Op.getValueType();
981 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000982 default: assert(0 && "This action is not supported yet!");
983 case TargetLowering::Expand:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000984 if (MVT::isInteger(VT))
985 Result = DAG.getConstant(0, VT);
986 else if (MVT::isFloatingPoint(VT))
Dale Johannesenf41db212007-09-26 17:26:49 +0000987 Result = DAG.getConstantFP(APFloat(APInt(MVT::getSizeInBits(VT), 0)),
988 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000989 else
990 assert(0 && "Unknown value type!");
991 break;
Nate Begemanea19cd52005-04-02 00:41:14 +0000992 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000993 break;
994 }
995 break;
996 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +0000997
Chris Lattner48b61a72006-03-28 00:40:33 +0000998 case ISD::INTRINSIC_W_CHAIN:
999 case ISD::INTRINSIC_WO_CHAIN:
1000 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001001 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001002 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1003 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001004 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +00001005
1006 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +00001007 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001008 TargetLowering::Custom) {
1009 Tmp3 = TLI.LowerOperation(Result, DAG);
1010 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001011 }
1012
1013 if (Result.Val->getNumValues() == 1) break;
1014
1015 // Must have return value and chain result.
1016 assert(Result.Val->getNumValues() == 2 &&
1017 "Cannot return more than two values!");
1018
1019 // Since loads produce two values, make sure to remember that we
1020 // legalized both of them.
1021 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1022 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1023 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001024 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001025
1026 case ISD::LOCATION:
1027 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
1028 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1029
1030 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
1031 case TargetLowering::Promote:
1032 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001033 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001034 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001035 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Jim Laskey1ee29252007-01-26 14:34:52 +00001036 bool useLABEL = TLI.isOperationLegal(ISD::LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001037
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001038 if (MMI && (useDEBUG_LOC || useLABEL)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001039 const std::string &FName =
1040 cast<StringSDNode>(Node->getOperand(3))->getValue();
1041 const std::string &DirName =
1042 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001043 unsigned SrcFile = MMI->RecordSource(DirName, FName);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001044
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001045 SmallVector<SDOperand, 8> Ops;
Jim Laskeye81aecb2005-12-21 20:51:37 +00001046 Ops.push_back(Tmp1); // chain
Jim Laskeyabf6d172006-01-05 01:25:28 +00001047 SDOperand LineOp = Node->getOperand(1);
1048 SDOperand ColOp = Node->getOperand(2);
1049
1050 if (useDEBUG_LOC) {
1051 Ops.push_back(LineOp); // line #
1052 Ops.push_back(ColOp); // col #
1053 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001054 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001055 } else {
Jim Laskeyd0e58e32006-02-15 19:34:44 +00001056 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
1057 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001058 unsigned ID = MMI->RecordLabel(Line, Col, SrcFile);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001059 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Jim Laskey1ee29252007-01-26 14:34:52 +00001060 Result = DAG.getNode(ISD::LABEL, MVT::Other,&Ops[0],Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001061 }
Jim Laskeye81aecb2005-12-21 20:51:37 +00001062 } else {
1063 Result = Tmp1; // chain
1064 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001065 break;
Chris Lattnere7736732005-12-18 23:54:29 +00001066 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001067 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +00001068 if (Tmp1 != Node->getOperand(0) ||
1069 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001070 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +00001071 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +00001072 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
1073 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1074 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1075 } else {
1076 // Otherwise promote them.
1077 Ops.push_back(PromoteOp(Node->getOperand(1)));
1078 Ops.push_back(PromoteOp(Node->getOperand(2)));
1079 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001080 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1081 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001082 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001083 }
1084 break;
1085 }
1086 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001087
1088 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001089 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001090 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001091 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +00001092 case TargetLowering::Legal:
1093 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1094 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1095 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1096 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001097 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001098 break;
1099 }
1100 break;
1101
Jim Laskey1ee29252007-01-26 14:34:52 +00001102 case ISD::LABEL:
1103 assert(Node->getNumOperands() == 2 && "Invalid LABEL node!");
1104 switch (TLI.getOperationAction(ISD::LABEL, MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001105 default: assert(0 && "This action is not supported yet!");
1106 case TargetLowering::Legal:
1107 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1108 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001109 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001110 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001111 case TargetLowering::Expand:
1112 Result = LegalizeOp(Node->getOperand(0));
1113 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001114 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001115 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001116
Scott Michelc1513d22007-08-08 23:23:31 +00001117 case ISD::Constant: {
1118 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1119 unsigned opAction =
1120 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1121
Chris Lattner3e928bb2005-01-07 07:47:09 +00001122 // We know we don't need to expand constants here, constants only have one
1123 // value and we check that it is fine above.
1124
Scott Michelc1513d22007-08-08 23:23:31 +00001125 if (opAction == TargetLowering::Custom) {
1126 Tmp1 = TLI.LowerOperation(Result, DAG);
1127 if (Tmp1.Val)
1128 Result = Tmp1;
1129 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001130 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001131 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001132 case ISD::ConstantFP: {
1133 // Spill FP immediates to the constant pool if the target cannot directly
1134 // codegen them. Targets often have some immediate values that can be
1135 // efficiently generated into an FP register without a load. We explicitly
1136 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001137 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1138
1139 // Check to see if this FP immediate is already legal.
1140 bool isLegal = false;
1141 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1142 E = TLI.legal_fpimm_end(); I != E; ++I)
1143 if (CFP->isExactlyValue(*I)) {
1144 isLegal = true;
1145 break;
1146 }
1147
Chris Lattner3181a772006-01-29 06:26:56 +00001148 // If this is a legal constant, turn it into a TargetConstantFP node.
1149 if (isLegal) {
Dale Johannesenf04afdb2007-08-30 00:23:21 +00001150 Result = DAG.getTargetConstantFP(CFP->getValueAPF(),
1151 CFP->getValueType(0));
Chris Lattner3181a772006-01-29 06:26:56 +00001152 break;
1153 }
1154
1155 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1156 default: assert(0 && "This action is not supported yet!");
1157 case TargetLowering::Custom:
1158 Tmp3 = TLI.LowerOperation(Result, DAG);
1159 if (Tmp3.Val) {
1160 Result = Tmp3;
1161 break;
1162 }
1163 // FALLTHROUGH
1164 case TargetLowering::Expand:
Evan Cheng279101e2006-12-12 22:19:28 +00001165 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001166 }
1167 break;
1168 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001169 case ISD::TokenFactor:
1170 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001171 Tmp1 = LegalizeOp(Node->getOperand(0));
1172 Tmp2 = LegalizeOp(Node->getOperand(1));
1173 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1174 } else if (Node->getNumOperands() == 3) {
1175 Tmp1 = LegalizeOp(Node->getOperand(0));
1176 Tmp2 = LegalizeOp(Node->getOperand(1));
1177 Tmp3 = LegalizeOp(Node->getOperand(2));
1178 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001179 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001180 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001181 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001182 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1183 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001184 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001185 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001186 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001187
1188 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001189 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001190 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001191 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1192 assert(Tmp3.Val && "Target didn't custom lower this node!");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001193
1194 // The number of incoming and outgoing values should match; unless the final
1195 // outgoing value is a flag.
1196 assert((Tmp3.Val->getNumValues() == Result.Val->getNumValues() ||
1197 (Tmp3.Val->getNumValues() == Result.Val->getNumValues() + 1 &&
1198 Tmp3.Val->getValueType(Tmp3.Val->getNumValues() - 1) ==
1199 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001200 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001201
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001202 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001203 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +00001204 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001205 if (Tmp3.Val->getValueType(i) == MVT::Flag)
1206 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001207 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +00001208 if (Op.ResNo == i)
1209 Tmp2 = Tmp1;
1210 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
1211 }
1212 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001213 case ISD::EXTRACT_SUBREG: {
1214 Tmp1 = LegalizeOp(Node->getOperand(0));
1215 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1216 assert(idx && "Operand must be a constant");
1217 Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1218 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1219 }
1220 break;
1221 case ISD::INSERT_SUBREG: {
1222 Tmp1 = LegalizeOp(Node->getOperand(0));
1223 Tmp2 = LegalizeOp(Node->getOperand(1));
1224 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1225 assert(idx && "Operand must be a constant");
1226 Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1227 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1228 }
1229 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001230 case ISD::BUILD_VECTOR:
1231 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001232 default: assert(0 && "This action is not supported yet!");
1233 case TargetLowering::Custom:
1234 Tmp3 = TLI.LowerOperation(Result, DAG);
1235 if (Tmp3.Val) {
1236 Result = Tmp3;
1237 break;
1238 }
1239 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001240 case TargetLowering::Expand:
1241 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +00001242 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001243 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001244 break;
1245 case ISD::INSERT_VECTOR_ELT:
1246 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
1247 Tmp2 = LegalizeOp(Node->getOperand(1)); // InVal
1248 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
1249 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1250
1251 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1252 Node->getValueType(0))) {
1253 default: assert(0 && "This action is not supported yet!");
1254 case TargetLowering::Legal:
1255 break;
1256 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001257 Tmp4 = TLI.LowerOperation(Result, DAG);
1258 if (Tmp4.Val) {
1259 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001260 break;
1261 }
1262 // FALLTHROUGH
1263 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001264 // If the insert index is a constant, codegen this as a scalar_to_vector,
1265 // then a shuffle that inserts it into the right position in the vector.
1266 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
1267 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
1268 Tmp1.getValueType(), Tmp2);
1269
1270 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
1271 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
Dan Gohman51eaa862007-06-14 22:58:02 +00001272 MVT::ValueType ShufMaskEltVT = MVT::getVectorElementType(ShufMaskVT);
Chris Lattner8d5a8942006-04-17 19:21:01 +00001273
1274 // We generate a shuffle of InVec and ScVec, so the shuffle mask should
1275 // be 0,1,2,3,4,5... with the appropriate element replaced with elt 0 of
1276 // the RHS.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001277 SmallVector<SDOperand, 8> ShufOps;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001278 for (unsigned i = 0; i != NumElts; ++i) {
1279 if (i != InsertPos->getValue())
1280 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1281 else
1282 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1283 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001284 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
1285 &ShufOps[0], ShufOps.size());
Chris Lattner8d5a8942006-04-17 19:21:01 +00001286
1287 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1288 Tmp1, ScVec, ShufMask);
1289 Result = LegalizeOp(Result);
1290 break;
1291 }
1292
Chris Lattner2332b9f2006-03-19 01:17:20 +00001293 // If the target doesn't support this, we have to spill the input vector
1294 // to a temporary stack slot, update the element, then reload it. This is
1295 // badness. We could also load the value into a vector register (either
1296 // with a "move to register" or "extload into register" instruction, then
1297 // permute it into place, if the idx is a constant and if the idx is
1298 // supported by the target.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001299 MVT::ValueType VT = Tmp1.getValueType();
1300 MVT::ValueType EltVT = Tmp2.getValueType();
1301 MVT::ValueType IdxVT = Tmp3.getValueType();
1302 MVT::ValueType PtrVT = TLI.getPointerTy();
Chris Lattner85dd3be2007-10-15 17:48:57 +00001303 SDOperand StackPtr = DAG.CreateStackTemporary(VT);
Evan Chengeb0b4612006-03-31 01:27:51 +00001304 // Store the vector.
Evan Cheng8b2794a2006-10-13 21:14:26 +00001305 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +00001306
1307 // Truncate or zero extend offset to target pointer type.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001308 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
1309 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Chengeb0b4612006-03-31 01:27:51 +00001310 // Add the offset to the index.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001311 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
1312 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
1313 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Evan Chengeb0b4612006-03-31 01:27:51 +00001314 // Store the scalar value.
Evan Cheng8b2794a2006-10-13 21:14:26 +00001315 Ch = DAG.getStore(Ch, Tmp2, StackPtr2, NULL, 0);
Evan Chengeb0b4612006-03-31 01:27:51 +00001316 // Load the updated vector.
Evan Cheng466685d2006-10-09 20:57:25 +00001317 Result = DAG.getLoad(VT, Ch, StackPtr, NULL, 0);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001318 break;
1319 }
1320 }
1321 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001322 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001323 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1324 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1325 break;
1326 }
1327
Chris Lattnerce872152006-03-19 06:31:19 +00001328 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1329 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1330 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1331 Node->getValueType(0))) {
1332 default: assert(0 && "This action is not supported yet!");
1333 case TargetLowering::Legal:
1334 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001335 case TargetLowering::Custom:
1336 Tmp3 = TLI.LowerOperation(Result, DAG);
1337 if (Tmp3.Val) {
1338 Result = Tmp3;
1339 break;
1340 }
1341 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001342 case TargetLowering::Expand:
1343 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001344 break;
1345 }
Chris Lattnerce872152006-03-19 06:31:19 +00001346 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001347 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001348 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1349 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1350 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1351
1352 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001353 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1354 default: assert(0 && "Unknown operation action!");
1355 case TargetLowering::Legal:
1356 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1357 "vector shuffle should not be created if not legal!");
1358 break;
1359 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001360 Tmp3 = TLI.LowerOperation(Result, DAG);
1361 if (Tmp3.Val) {
1362 Result = Tmp3;
1363 break;
1364 }
1365 // FALLTHROUGH
1366 case TargetLowering::Expand: {
1367 MVT::ValueType VT = Node->getValueType(0);
Dan Gohman51eaa862007-06-14 22:58:02 +00001368 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001369 MVT::ValueType PtrVT = TLI.getPointerTy();
1370 SDOperand Mask = Node->getOperand(2);
1371 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001372 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001373 for (unsigned i = 0; i != NumElems; ++i) {
1374 SDOperand Arg = Mask.getOperand(i);
1375 if (Arg.getOpcode() == ISD::UNDEF) {
1376 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1377 } else {
1378 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1379 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1380 if (Idx < NumElems)
1381 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1382 DAG.getConstant(Idx, PtrVT)));
1383 else
1384 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1385 DAG.getConstant(Idx - NumElems, PtrVT)));
1386 }
1387 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001388 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001389 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001390 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001391 case TargetLowering::Promote: {
1392 // Change base type to a different vector type.
1393 MVT::ValueType OVT = Node->getValueType(0);
1394 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1395
1396 // Cast the two input vectors.
1397 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1398 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1399
1400 // Convert the shuffle mask to the right # elements.
1401 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1402 assert(Tmp3.Val && "Shuffle not legal?");
1403 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1404 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1405 break;
1406 }
Chris Lattner87100e02006-03-20 01:52:29 +00001407 }
1408 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001409
1410 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001411 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001412 Tmp2 = LegalizeOp(Node->getOperand(1));
1413 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001414 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001415 break;
1416
Dan Gohman7f321562007-06-25 16:23:39 +00001417 case ISD::EXTRACT_SUBVECTOR:
1418 Tmp1 = Node->getOperand(0);
1419 Tmp2 = LegalizeOp(Node->getOperand(1));
1420 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1421 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001422 break;
1423
Chris Lattner6831a812006-02-13 09:18:02 +00001424 case ISD::CALLSEQ_START: {
1425 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1426
1427 // Recursively Legalize all of the inputs of the call end that do not lead
1428 // to this call start. This ensures that any libcalls that need be inserted
1429 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001430 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001431 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001432 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1433 NodesLeadingTo);
1434 }
Chris Lattner6831a812006-02-13 09:18:02 +00001435
1436 // Now that we legalized all of the inputs (which may have inserted
1437 // libcalls) create the new CALLSEQ_START node.
1438 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1439
1440 // Merge in the last call, to ensure that this call start after the last
1441 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001442 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001443 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1444 Tmp1 = LegalizeOp(Tmp1);
1445 }
Chris Lattner6831a812006-02-13 09:18:02 +00001446
1447 // Do not try to legalize the target-specific arguments (#1+).
1448 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001449 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001450 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001451 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001452 }
1453
1454 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001455 AddLegalizedOperand(Op.getValue(0), Result);
1456 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1457 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1458
Chris Lattner6831a812006-02-13 09:18:02 +00001459 // Now that the callseq_start and all of the non-call nodes above this call
1460 // sequence have been legalized, legalize the call itself. During this
1461 // process, no libcalls can/will be inserted, guaranteeing that no calls
1462 // can overlap.
1463 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1464 SDOperand InCallSEQ = LastCALLSEQ_END;
1465 // Note that we are selecting this call!
1466 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1467 IsLegalizingCall = true;
1468
1469 // Legalize the call, starting from the CALLSEQ_END.
1470 LegalizeOp(LastCALLSEQ_END);
1471 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1472 return Result;
1473 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001474 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001475 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1476 // will cause this node to be legalized as well as handling libcalls right.
1477 if (LastCALLSEQ_END.Val != Node) {
1478 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
Chris Lattner718071c2007-02-04 00:50:02 +00001479 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001480 assert(I != LegalizedNodes.end() &&
1481 "Legalizing the call start should have legalized this node!");
1482 return I->second;
1483 }
1484
1485 // Otherwise, the call start has been legalized and everything is going
1486 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001487 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001488 // Do not try to legalize the target-specific arguments (#1+), except for
1489 // an optional flag input.
1490 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1491 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001492 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001493 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001494 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001495 }
1496 } else {
1497 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1498 if (Tmp1 != Node->getOperand(0) ||
1499 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001500 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001501 Ops[0] = Tmp1;
1502 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001503 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001504 }
Chris Lattner6a542892006-01-24 05:48:21 +00001505 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001506 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001507 // This finishes up call legalization.
1508 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001509
1510 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1511 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1512 if (Node->getNumValues() == 2)
1513 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1514 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001515 case ISD::DYNAMIC_STACKALLOC: {
Evan Cheng61bbbab2007-08-16 23:50:06 +00001516 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001517 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1518 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1519 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001520 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001521
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001522 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001523 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001524 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001525 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001526 case TargetLowering::Expand: {
1527 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1528 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1529 " not tell us which reg is the stack pointer!");
1530 SDOperand Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001531
1532 // Chain the dynamic stack allocation so that it doesn't modify the stack
1533 // pointer when other instructions are using the stack.
1534 Chain = DAG.getCALLSEQ_START(Chain,
1535 DAG.getConstant(0, TLI.getPointerTy()));
1536
Chris Lattner903d2782006-01-15 08:54:32 +00001537 SDOperand Size = Tmp2.getOperand(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001538 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, VT);
1539 Chain = SP.getValue(1);
1540 unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1541 unsigned StackAlign =
1542 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1543 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001544 SP = DAG.getNode(ISD::AND, VT, SP,
1545 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001546 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001547 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1548
1549 Tmp2 =
1550 DAG.getCALLSEQ_END(Chain,
1551 DAG.getConstant(0, TLI.getPointerTy()),
1552 DAG.getConstant(0, TLI.getPointerTy()),
1553 SDOperand());
1554
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001555 Tmp1 = LegalizeOp(Tmp1);
1556 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001557 break;
1558 }
1559 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001560 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1561 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001562 Tmp1 = LegalizeOp(Tmp3);
1563 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001564 }
Chris Lattner903d2782006-01-15 08:54:32 +00001565 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001566 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001567 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001568 }
Chris Lattner903d2782006-01-15 08:54:32 +00001569 // Since this op produce two values, make sure to remember that we
1570 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001571 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1572 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001573 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001574 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001575 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001576 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001577 bool Changed = false;
1578 // Legalize all of the operands of the inline asm, in case they are nodes
1579 // that need to be expanded or something. Note we skip the asm string and
1580 // all of the TargetConstant flags.
1581 SDOperand Op = LegalizeOp(Ops[0]);
1582 Changed = Op != Ops[0];
1583 Ops[0] = Op;
1584
1585 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1586 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1587 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1588 for (++i; NumVals; ++i, --NumVals) {
1589 SDOperand Op = LegalizeOp(Ops[i]);
1590 if (Op != Ops[i]) {
1591 Changed = true;
1592 Ops[i] = Op;
1593 }
1594 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001595 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001596
1597 if (HasInFlag) {
1598 Op = LegalizeOp(Ops.back());
1599 Changed |= Op != Ops.back();
1600 Ops.back() = Op;
1601 }
1602
1603 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001604 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001605
1606 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001607 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001608 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1609 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001610 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001611 case ISD::BR:
1612 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001613 // Ensure that libcalls are emitted before a branch.
1614 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1615 Tmp1 = LegalizeOp(Tmp1);
1616 LastCALLSEQ_END = DAG.getEntryNode();
1617
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001618 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001619 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001620 case ISD::BRIND:
1621 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1622 // Ensure that libcalls are emitted before a branch.
1623 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1624 Tmp1 = LegalizeOp(Tmp1);
1625 LastCALLSEQ_END = DAG.getEntryNode();
1626
1627 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1628 default: assert(0 && "Indirect target must be legal type (pointer)!");
1629 case Legal:
1630 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1631 break;
1632 }
1633 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1634 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001635 case ISD::BR_JT:
1636 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1637 // Ensure that libcalls are emitted before a branch.
1638 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1639 Tmp1 = LegalizeOp(Tmp1);
1640 LastCALLSEQ_END = DAG.getEntryNode();
1641
1642 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1643 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1644
1645 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1646 default: assert(0 && "This action is not supported yet!");
1647 case TargetLowering::Legal: break;
1648 case TargetLowering::Custom:
1649 Tmp1 = TLI.LowerOperation(Result, DAG);
1650 if (Tmp1.Val) Result = Tmp1;
1651 break;
1652 case TargetLowering::Expand: {
1653 SDOperand Chain = Result.getOperand(0);
1654 SDOperand Table = Result.getOperand(1);
1655 SDOperand Index = Result.getOperand(2);
1656
1657 MVT::ValueType PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001658 MachineFunction &MF = DAG.getMachineFunction();
1659 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001660 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1661 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001662
1663 SDOperand LD;
1664 switch (EntrySize) {
1665 default: assert(0 && "Size of jump table not supported yet."); break;
1666 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr, NULL, 0); break;
1667 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr, NULL, 0); break;
1668 }
1669
Evan Chengcc415862007-11-09 01:32:10 +00001670 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001671 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001672 // For PIC, the sequence is:
1673 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00001674 // RelocBase can be JumpTable, GOT or some sort of global base.
1675 if (PTy != MVT::i32)
1676 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1677 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1678 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00001679 }
Evan Chengcc415862007-11-09 01:32:10 +00001680 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001681 }
1682 }
1683 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001684 case ISD::BRCOND:
1685 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001686 // Ensure that libcalls are emitted before a return.
1687 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1688 Tmp1 = LegalizeOp(Tmp1);
1689 LastCALLSEQ_END = DAG.getEntryNode();
1690
Chris Lattner47e92232005-01-18 19:27:06 +00001691 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1692 case Expand: assert(0 && "It's impossible to expand bools");
1693 case Legal:
1694 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1695 break;
1696 case Promote:
1697 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001698
1699 // The top bits of the promoted condition are not necessarily zero, ensure
1700 // that the value is properly zero extended.
Dan Gohmanea859be2007-06-22 14:59:07 +00001701 if (!DAG.MaskedValueIsZero(Tmp2,
Chris Lattnerf9908172006-11-27 04:39:56 +00001702 MVT::getIntVTBitMask(Tmp2.getValueType())^1))
1703 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001704 break;
1705 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001706
1707 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001708 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001709
1710 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1711 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001712 case TargetLowering::Legal: break;
1713 case TargetLowering::Custom:
1714 Tmp1 = TLI.LowerOperation(Result, DAG);
1715 if (Tmp1.Val) Result = Tmp1;
1716 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001717 case TargetLowering::Expand:
1718 // Expand brcond's setcc into its constituent parts and create a BR_CC
1719 // Node.
1720 if (Tmp2.getOpcode() == ISD::SETCC) {
1721 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1722 Tmp2.getOperand(0), Tmp2.getOperand(1),
1723 Node->getOperand(2));
1724 } else {
1725 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1726 DAG.getCondCode(ISD::SETNE), Tmp2,
1727 DAG.getConstant(0, Tmp2.getValueType()),
1728 Node->getOperand(2));
1729 }
1730 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001731 }
1732 break;
1733 case ISD::BR_CC:
1734 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001735 // Ensure that libcalls are emitted before a branch.
1736 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1737 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001738 Tmp2 = Node->getOperand(2); // LHS
1739 Tmp3 = Node->getOperand(3); // RHS
1740 Tmp4 = Node->getOperand(1); // CC
1741
1742 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001743 LastCALLSEQ_END = DAG.getEntryNode();
1744
Nate Begeman750ac1b2006-02-01 07:19:44 +00001745 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1746 // the LHS is a legal SETCC itself. In this case, we need to compare
1747 // the result against zero to select between true and false values.
1748 if (Tmp3.Val == 0) {
1749 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1750 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001751 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001752
1753 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1754 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001755
Chris Lattner181b7a32005-12-17 23:46:46 +00001756 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1757 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001758 case TargetLowering::Legal: break;
1759 case TargetLowering::Custom:
1760 Tmp4 = TLI.LowerOperation(Result, DAG);
1761 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001762 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001763 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001764 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001765 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001766 LoadSDNode *LD = cast<LoadSDNode>(Node);
1767 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1768 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001769
Evan Cheng466685d2006-10-09 20:57:25 +00001770 ISD::LoadExtType ExtType = LD->getExtensionType();
1771 if (ExtType == ISD::NON_EXTLOAD) {
1772 MVT::ValueType VT = Node->getValueType(0);
1773 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1774 Tmp3 = Result.getValue(0);
1775 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001776
Evan Cheng466685d2006-10-09 20:57:25 +00001777 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1778 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001779 case TargetLowering::Legal:
1780 // If this is an unaligned load and the target doesn't support it,
1781 // expand it.
1782 if (!TLI.allowsUnalignedMemoryAccesses()) {
1783 unsigned ABIAlignment = TLI.getTargetData()->
1784 getABITypeAlignment(MVT::getTypeForValueType(LD->getLoadedVT()));
1785 if (LD->getAlignment() < ABIAlignment){
1786 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1787 TLI);
1788 Tmp3 = Result.getOperand(0);
1789 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001790 Tmp3 = LegalizeOp(Tmp3);
1791 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001792 }
1793 }
1794 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001795 case TargetLowering::Custom:
1796 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1797 if (Tmp1.Val) {
1798 Tmp3 = LegalizeOp(Tmp1);
1799 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001800 }
Evan Cheng466685d2006-10-09 20:57:25 +00001801 break;
1802 case TargetLowering::Promote: {
1803 // Only promote a load of vector type to another.
1804 assert(MVT::isVector(VT) && "Cannot promote this load!");
1805 // Change base type to a different vector type.
1806 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1807
1808 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001809 LD->getSrcValueOffset(),
1810 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001811 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1812 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001813 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001814 }
Evan Cheng466685d2006-10-09 20:57:25 +00001815 }
1816 // Since loads produce two values, make sure to remember that we
1817 // legalized both of them.
1818 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1819 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1820 return Op.ResNo ? Tmp4 : Tmp3;
1821 } else {
Evan Cheng2e49f092006-10-11 07:10:22 +00001822 MVT::ValueType SrcVT = LD->getLoadedVT();
Evan Cheng466685d2006-10-09 20:57:25 +00001823 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
1824 default: assert(0 && "This action is not supported yet!");
1825 case TargetLowering::Promote:
1826 assert(SrcVT == MVT::i1 &&
1827 "Can only promote extending LOAD from i1 -> i8!");
1828 Result = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
1829 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001830 MVT::i8, LD->isVolatile(), LD->getAlignment());
Duncan Sandsf411b832007-10-17 13:49:58 +00001831 Tmp1 = Result.getValue(0);
1832 Tmp2 = Result.getValue(1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001833 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001834 case TargetLowering::Custom:
1835 isCustom = true;
1836 // FALLTHROUGH
1837 case TargetLowering::Legal:
1838 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1839 Tmp1 = Result.getValue(0);
1840 Tmp2 = Result.getValue(1);
1841
1842 if (isCustom) {
1843 Tmp3 = TLI.LowerOperation(Result, DAG);
1844 if (Tmp3.Val) {
1845 Tmp1 = LegalizeOp(Tmp3);
1846 Tmp2 = LegalizeOp(Tmp3.getValue(1));
1847 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001848 } else {
1849 // If this is an unaligned load and the target doesn't support it,
1850 // expand it.
1851 if (!TLI.allowsUnalignedMemoryAccesses()) {
1852 unsigned ABIAlignment = TLI.getTargetData()->
1853 getABITypeAlignment(MVT::getTypeForValueType(LD->getLoadedVT()));
1854 if (LD->getAlignment() < ABIAlignment){
1855 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1856 TLI);
1857 Tmp1 = Result.getOperand(0);
1858 Tmp2 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001859 Tmp1 = LegalizeOp(Tmp1);
1860 Tmp2 = LegalizeOp(Tmp2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001861 }
1862 }
Evan Cheng466685d2006-10-09 20:57:25 +00001863 }
1864 break;
1865 case TargetLowering::Expand:
1866 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
1867 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
1868 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001869 LD->getSrcValueOffset(),
1870 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001871 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
1872 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
1873 Tmp2 = LegalizeOp(Load.getValue(1));
1874 break;
1875 }
Chris Lattnerfea997a2007-02-01 04:55:59 +00001876 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
Evan Cheng466685d2006-10-09 20:57:25 +00001877 // Turn the unsupported load into an EXTLOAD followed by an explicit
1878 // zero/sign extend inreg.
1879 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
1880 Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001881 LD->getSrcValueOffset(), SrcVT,
1882 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001883 SDOperand ValRes;
1884 if (ExtType == ISD::SEXTLOAD)
1885 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1886 Result, DAG.getValueType(SrcVT));
1887 else
1888 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
1889 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
1890 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
1891 break;
1892 }
1893 // Since loads produce two values, make sure to remember that we legalized
1894 // both of them.
1895 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1896 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
1897 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00001898 }
Chris Lattner01ff7212005-04-10 22:54:25 +00001899 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001900 case ISD::EXTRACT_ELEMENT: {
1901 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
1902 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001903 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00001904 case Legal:
1905 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
1906 // 1 -> Hi
1907 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
1908 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
1909 TLI.getShiftAmountTy()));
1910 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
1911 } else {
1912 // 0 -> Lo
1913 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
1914 Node->getOperand(0));
1915 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00001916 break;
1917 case Expand:
1918 // Get both the low and high parts.
1919 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
1920 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
1921 Result = Tmp2; // 1 -> Hi
1922 else
1923 Result = Tmp1; // 0 -> Lo
1924 break;
1925 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001926 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00001927 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001928
1929 case ISD::CopyToReg:
1930 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00001931
Chris Lattnerc9c60f62005-08-24 16:35:28 +00001932 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001933 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00001934 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00001935 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001936 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001937 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001938 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001939 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001940 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001941 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001942 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
1943 Tmp3);
1944 } else {
1945 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00001946 }
1947
1948 // Since this produces two values, make sure to remember that we legalized
1949 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001950 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001951 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001952 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00001953 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001954 break;
1955
1956 case ISD::RET:
1957 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001958
1959 // Ensure that libcalls are emitted before a return.
1960 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1961 Tmp1 = LegalizeOp(Tmp1);
1962 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00001963
Chris Lattner3e928bb2005-01-07 07:47:09 +00001964 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00001965 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00001966 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001967 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00001968 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00001969 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00001970 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001971 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00001972 case Expand:
Dan Gohman7f321562007-06-25 16:23:39 +00001973 if (!MVT::isVector(Tmp2.getValueType())) {
Chris Lattnerf87324e2006-04-11 01:31:51 +00001974 SDOperand Lo, Hi;
1975 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00001976
1977 // Big endian systems want the hi reg first.
1978 if (!TLI.isLittleEndian())
1979 std::swap(Lo, Hi);
1980
Evan Cheng13acce32006-12-11 19:27:14 +00001981 if (Hi.Val)
1982 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
1983 else
1984 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00001985 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001986 } else {
1987 SDNode *InVal = Tmp2.Val;
Dale Johannesene5269622007-10-20 00:07:52 +00001988 int InIx = Tmp2.ResNo;
1989 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(InIx));
1990 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(InIx));
Chris Lattnerf87324e2006-04-11 01:31:51 +00001991
Dan Gohman7f321562007-06-25 16:23:39 +00001992 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00001993 // type. If so, convert to the vector type.
Chris Lattnerf87324e2006-04-11 01:31:51 +00001994 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00001995 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00001996 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00001997 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00001998 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00001999 } else if (NumElems == 1) {
2000 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002001 Tmp2 = ScalarizeVectorOp(Tmp2);
2002 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002003 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002004
2005 // FIXME: Returns of gcc generic vectors smaller than a legal type
2006 // should be returned in integer registers!
2007
Chris Lattnerf87324e2006-04-11 01:31:51 +00002008 // The scalarized value type may not be legal, e.g. it might require
2009 // promotion or expansion. Relegalize the return.
2010 Result = LegalizeOp(Result);
2011 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002012 // FIXME: Returns of gcc generic vectors larger than a legal vector
2013 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00002014 SDOperand Lo, Hi;
2015 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00002016 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002017 Result = LegalizeOp(Result);
2018 }
2019 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002020 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002021 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002022 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002023 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002024 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002025 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002026 }
2027 break;
2028 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002029 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002030 break;
2031 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002032 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002033 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002034 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002035 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2036 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002037 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002038 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002039 break;
2040 case Expand: {
2041 SDOperand Lo, Hi;
Dan Gohman6595cb32007-06-27 16:08:04 +00002042 assert(!MVT::isExtendedVT(Node->getOperand(i).getValueType()) &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002043 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002044 ExpandOp(Node->getOperand(i), Lo, Hi);
2045 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002046 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00002047 if (Hi.Val) {
2048 NewValues.push_back(Hi);
2049 NewValues.push_back(Node->getOperand(i+1));
2050 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002051 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002052 }
2053 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002054 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002055 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002056
2057 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002058 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002059 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002060 Result = DAG.getNode(ISD::RET, MVT::Other,
2061 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002062 break;
2063 }
2064 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002065
Chris Lattner6862dbc2006-01-29 21:02:23 +00002066 if (Result.getOpcode() == ISD::RET) {
2067 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2068 default: assert(0 && "This action is not supported yet!");
2069 case TargetLowering::Legal: break;
2070 case TargetLowering::Custom:
2071 Tmp1 = TLI.LowerOperation(Result, DAG);
2072 if (Tmp1.Val) Result = Tmp1;
2073 break;
2074 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002075 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002076 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002077 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002078 StoreSDNode *ST = cast<StoreSDNode>(Node);
2079 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2080 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002081 int SVOffset = ST->getSrcValueOffset();
2082 unsigned Alignment = ST->getAlignment();
2083 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002084
Evan Cheng8b2794a2006-10-13 21:14:26 +00002085 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002086 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2087 // FIXME: We shouldn't do this for TargetConstantFP's.
2088 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2089 // to phase ordering between legalized code and the dag combiner. This
2090 // probably means that we need to integrate dag combiner and legalizer
2091 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002092 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002093 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002094 if (CFP->getValueType(0) == MVT::f32 &&
2095 getTypeAction(MVT::i32) == Legal) {
Dale Johannesen9d5f4562007-09-12 03:30:33 +00002096 Tmp3 = DAG.getConstant((uint32_t)CFP->getValueAPF().
2097 convertToAPInt().getZExtValue(),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002098 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002099 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2100 SVOffset, isVolatile, Alignment);
2101 break;
2102 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002103 // If this target supports 64-bit registers, do a single 64-bit store.
2104 if (getTypeAction(MVT::i64) == Legal) {
2105 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
2106 getZExtValue(), MVT::i64);
2107 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2108 SVOffset, isVolatile, Alignment);
2109 break;
2110 } else if (getTypeAction(MVT::i32) == Legal) {
2111 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2112 // stores. If the target supports neither 32- nor 64-bits, this
2113 // xform is certainly not worth it.
2114 uint64_t IntVal =CFP->getValueAPF().convertToAPInt().getZExtValue();
2115 SDOperand Lo = DAG.getConstant(uint32_t(IntVal), MVT::i32);
2116 SDOperand Hi = DAG.getConstant(uint32_t(IntVal >>32), MVT::i32);
2117 if (!TLI.isLittleEndian()) std::swap(Lo, Hi);
2118
2119 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2120 SVOffset, isVolatile, Alignment);
2121 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002122 DAG.getIntPtrConstant(4));
Chris Lattner3cb93512007-10-15 05:46:06 +00002123 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002124 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002125
2126 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2127 break;
2128 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002129 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002130 }
2131
Evan Cheng8b2794a2006-10-13 21:14:26 +00002132 switch (getTypeAction(ST->getStoredVT())) {
2133 case Legal: {
2134 Tmp3 = LegalizeOp(ST->getValue());
2135 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2136 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002137
Evan Cheng8b2794a2006-10-13 21:14:26 +00002138 MVT::ValueType VT = Tmp3.getValueType();
2139 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2140 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002141 case TargetLowering::Legal:
2142 // If this is an unaligned store and the target doesn't support it,
2143 // expand it.
2144 if (!TLI.allowsUnalignedMemoryAccesses()) {
2145 unsigned ABIAlignment = TLI.getTargetData()->
2146 getABITypeAlignment(MVT::getTypeForValueType(ST->getStoredVT()));
2147 if (ST->getAlignment() < ABIAlignment)
2148 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2149 TLI);
2150 }
2151 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002152 case TargetLowering::Custom:
2153 Tmp1 = TLI.LowerOperation(Result, DAG);
2154 if (Tmp1.Val) Result = Tmp1;
2155 break;
2156 case TargetLowering::Promote:
2157 assert(MVT::isVector(VT) && "Unknown legal promote case!");
2158 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2159 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2160 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002161 ST->getSrcValue(), SVOffset, isVolatile,
2162 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002163 break;
2164 }
2165 break;
2166 }
2167 case Promote:
2168 // Truncate the value and store the result.
2169 Tmp3 = PromoteOp(ST->getValue());
2170 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002171 SVOffset, ST->getStoredVT(),
2172 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002173 break;
2174
2175 case Expand:
2176 unsigned IncrementSize = 0;
2177 SDOperand Lo, Hi;
2178
2179 // If this is a vector type, then we have to calculate the increment as
2180 // the product of the element size in bytes, and the number of elements
2181 // in the high half of the vector.
Dan Gohman7f321562007-06-25 16:23:39 +00002182 if (MVT::isVector(ST->getValue().getValueType())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002183 SDNode *InVal = ST->getValue().Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002184 int InIx = ST->getValue().ResNo;
Chris Lattner0bd48932008-01-17 07:00:52 +00002185 MVT::ValueType InVT = InVal->getValueType(InIx);
2186 unsigned NumElems = MVT::getVectorNumElements(InVT);
2187 MVT::ValueType EVT = MVT::getVectorElementType(InVT);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002188
Dan Gohman7f321562007-06-25 16:23:39 +00002189 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002190 // type. If so, convert to the vector type.
Evan Cheng8b2794a2006-10-13 21:14:26 +00002191 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002192 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002193 // Turn this into a normal store of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002194 Tmp3 = LegalizeOp(Node->getOperand(1));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002195 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002196 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002197 Result = LegalizeOp(Result);
2198 break;
2199 } else if (NumElems == 1) {
2200 // Turn this into a normal store of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002201 Tmp3 = ScalarizeVectorOp(Node->getOperand(1));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002202 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002203 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002204 // The scalarized value type may not be legal, e.g. it might require
2205 // promotion or expansion. Relegalize the scalar store.
2206 Result = LegalizeOp(Result);
2207 break;
2208 } else {
2209 SplitVectorOp(Node->getOperand(1), Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00002210 IncrementSize = MVT::getVectorNumElements(Lo.Val->getValueType(0)) *
2211 MVT::getSizeInBits(EVT)/8;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002212 }
2213 } else {
2214 ExpandOp(Node->getOperand(1), Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002215 IncrementSize = Hi.Val ? MVT::getSizeInBits(Hi.getValueType())/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002216
2217 if (!TLI.isLittleEndian())
2218 std::swap(Lo, Hi);
2219 }
2220
2221 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002222 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002223
2224 if (Hi.Val == NULL) {
2225 // Must be int <-> float one-to-one expansion.
2226 Result = Lo;
2227 break;
2228 }
2229
Evan Cheng8b2794a2006-10-13 21:14:26 +00002230 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002231 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002232 assert(isTypeLegal(Tmp2.getValueType()) &&
2233 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002234 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002235 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002236 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002237 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002238 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2239 break;
2240 }
2241 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002242 switch (getTypeAction(ST->getValue().getValueType())) {
2243 case Legal:
2244 Tmp3 = LegalizeOp(ST->getValue());
2245 break;
2246 case Promote:
2247 // We can promote the value, the truncstore will still take care of it.
2248 Tmp3 = PromoteOp(ST->getValue());
2249 break;
2250 case Expand:
2251 // Just store the low part. This may become a non-trunc store, so make
2252 // sure to use getTruncStore, not UpdateNodeOperands below.
2253 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2254 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2255 SVOffset, MVT::i8, isVolatile, Alignment);
2256 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002257
Duncan Sands7e857202008-01-22 07:17:34 +00002258 MVT::ValueType StVT = ST->getStoredVT();
2259 unsigned StWidth = MVT::getSizeInBits(StVT);
2260
2261 if (StWidth != MVT::getStoreSizeInBits(StVT)) {
2262 // Promote to a byte-sized store with upper bits zero if not
2263 // storing an integral number of bytes. For example, promote
2264 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
2265 MVT::ValueType NVT = MVT::getIntegerType(MVT::getStoreSizeInBits(StVT));
2266 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2267 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2268 SVOffset, NVT, isVolatile, Alignment);
2269 } else if (StWidth & (StWidth - 1)) {
2270 // If not storing a power-of-2 number of bits, expand as two stores.
2271 assert(MVT::isExtendedVT(StVT) && !MVT::isVector(StVT) &&
2272 "Unsupported truncstore!");
2273 unsigned RoundWidth = 1 << Log2_32(StWidth);
2274 assert(RoundWidth < StWidth);
2275 unsigned ExtraWidth = StWidth - RoundWidth;
2276 assert(ExtraWidth < RoundWidth);
2277 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2278 "Store size not an integral number of bytes!");
2279 MVT::ValueType RoundVT = MVT::getIntegerType(RoundWidth);
2280 MVT::ValueType ExtraVT = MVT::getIntegerType(ExtraWidth);
2281 SDOperand Lo, Hi;
2282 unsigned IncrementSize;
2283
2284 if (TLI.isLittleEndian()) {
2285 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2286 // Store the bottom RoundWidth bits.
2287 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2288 SVOffset, RoundVT,
2289 isVolatile, Alignment);
2290
2291 // Store the remaining ExtraWidth bits.
2292 IncrementSize = RoundWidth / 8;
2293 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2294 DAG.getIntPtrConstant(IncrementSize));
2295 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2296 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2297 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2298 SVOffset + IncrementSize, ExtraVT, isVolatile,
2299 MinAlign(Alignment, IncrementSize));
2300 } else {
2301 // Big endian - avoid unaligned stores.
2302 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2303 // Store the top RoundWidth bits.
2304 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2305 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2306 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2307 RoundVT, isVolatile, Alignment);
2308
2309 // Store the remaining ExtraWidth bits.
2310 IncrementSize = RoundWidth / 8;
2311 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2312 DAG.getIntPtrConstant(IncrementSize));
2313 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2314 SVOffset + IncrementSize, ExtraVT, isVolatile,
2315 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002316 }
Duncan Sands7e857202008-01-22 07:17:34 +00002317
2318 // The order of the stores doesn't matter.
2319 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2320 } else {
2321 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2322 Tmp2 != ST->getBasePtr())
2323 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2324 ST->getOffset());
2325
2326 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2327 default: assert(0 && "This action is not supported yet!");
2328 case TargetLowering::Legal:
2329 // If this is an unaligned store and the target doesn't support it,
2330 // expand it.
2331 if (!TLI.allowsUnalignedMemoryAccesses()) {
2332 unsigned ABIAlignment = TLI.getTargetData()->
2333 getABITypeAlignment(MVT::getTypeForValueType(ST->getStoredVT()));
2334 if (ST->getAlignment() < ABIAlignment)
2335 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2336 TLI);
2337 }
2338 break;
2339 case TargetLowering::Custom:
2340 Result = TLI.LowerOperation(Result, DAG);
2341 break;
2342 case Expand:
2343 // TRUNCSTORE:i16 i32 -> STORE i16
2344 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2345 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2346 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2347 isVolatile, Alignment);
2348 break;
2349 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002350 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002351 }
2352 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002353 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002354 case ISD::PCMARKER:
2355 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002356 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002357 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002358 case ISD::STACKSAVE:
2359 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002360 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2361 Tmp1 = Result.getValue(0);
2362 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002363
Chris Lattner140d53c2006-01-13 02:50:02 +00002364 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2365 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002366 case TargetLowering::Legal: break;
2367 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002368 Tmp3 = TLI.LowerOperation(Result, DAG);
2369 if (Tmp3.Val) {
2370 Tmp1 = LegalizeOp(Tmp3);
2371 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002372 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002373 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002374 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002375 // Expand to CopyFromReg if the target set
2376 // StackPointerRegisterToSaveRestore.
2377 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002378 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002379 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002380 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002381 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002382 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2383 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002384 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002385 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002386 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002387
2388 // Since stacksave produce two values, make sure to remember that we
2389 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002390 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2391 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2392 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002393
Chris Lattner140d53c2006-01-13 02:50:02 +00002394 case ISD::STACKRESTORE:
2395 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2396 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002397 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002398
2399 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2400 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002401 case TargetLowering::Legal: break;
2402 case TargetLowering::Custom:
2403 Tmp1 = TLI.LowerOperation(Result, DAG);
2404 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002405 break;
2406 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002407 // Expand to CopyToReg if the target set
2408 // StackPointerRegisterToSaveRestore.
2409 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2410 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2411 } else {
2412 Result = Tmp1;
2413 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002414 break;
2415 }
2416 break;
2417
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002418 case ISD::READCYCLECOUNTER:
2419 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002420 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002421 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2422 Node->getValueType(0))) {
2423 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002424 case TargetLowering::Legal:
2425 Tmp1 = Result.getValue(0);
2426 Tmp2 = Result.getValue(1);
2427 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002428 case TargetLowering::Custom:
2429 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002430 Tmp1 = LegalizeOp(Result.getValue(0));
2431 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002432 break;
2433 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002434
2435 // Since rdcc produce two values, make sure to remember that we legalized
2436 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002437 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2438 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002439 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002440
Chris Lattner2ee743f2005-01-14 22:08:15 +00002441 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002442 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2443 case Expand: assert(0 && "It's impossible to expand bools");
2444 case Legal:
2445 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2446 break;
2447 case Promote:
2448 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002449 // Make sure the condition is either zero or one.
Dan Gohmanea859be2007-06-22 14:59:07 +00002450 if (!DAG.MaskedValueIsZero(Tmp1,
Chris Lattnerb6c80602006-11-28 01:03:30 +00002451 MVT::getIntVTBitMask(Tmp1.getValueType())^1))
2452 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002453 break;
2454 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002455 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002456 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002457
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002458 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002459
Nate Begemanb942a3d2005-08-23 04:29:48 +00002460 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002461 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002462 case TargetLowering::Legal: break;
2463 case TargetLowering::Custom: {
2464 Tmp1 = TLI.LowerOperation(Result, DAG);
2465 if (Tmp1.Val) Result = Tmp1;
2466 break;
2467 }
Nate Begeman9373a812005-08-10 20:51:12 +00002468 case TargetLowering::Expand:
2469 if (Tmp1.getOpcode() == ISD::SETCC) {
2470 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2471 Tmp2, Tmp3,
2472 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2473 } else {
2474 Result = DAG.getSelectCC(Tmp1,
2475 DAG.getConstant(0, Tmp1.getValueType()),
2476 Tmp2, Tmp3, ISD::SETNE);
2477 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002478 break;
2479 case TargetLowering::Promote: {
2480 MVT::ValueType NVT =
2481 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2482 unsigned ExtOp, TruncOp;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002483 if (MVT::isVector(Tmp2.getValueType())) {
2484 ExtOp = ISD::BIT_CONVERT;
2485 TruncOp = ISD::BIT_CONVERT;
2486 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002487 ExtOp = ISD::ANY_EXTEND;
2488 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002489 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002490 ExtOp = ISD::FP_EXTEND;
2491 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002492 }
2493 // Promote each of the values to the new type.
2494 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2495 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2496 // Perform the larger operation, then round down.
2497 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002498 if (TruncOp != ISD::FP_ROUND)
2499 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2500 else
2501 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2502 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002503 break;
2504 }
2505 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002506 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002507 case ISD::SELECT_CC: {
2508 Tmp1 = Node->getOperand(0); // LHS
2509 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002510 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2511 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00002512 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002513
Nate Begeman750ac1b2006-02-01 07:19:44 +00002514 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2515
2516 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2517 // the LHS is a legal SETCC itself. In this case, we need to compare
2518 // the result against zero to select between true and false values.
2519 if (Tmp2.Val == 0) {
2520 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2521 CC = DAG.getCondCode(ISD::SETNE);
2522 }
2523 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2524
2525 // Everything is legal, see if we should expand this op or something.
2526 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2527 default: assert(0 && "This action is not supported yet!");
2528 case TargetLowering::Legal: break;
2529 case TargetLowering::Custom:
2530 Tmp1 = TLI.LowerOperation(Result, DAG);
2531 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002532 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002533 }
2534 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002535 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002536 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002537 Tmp1 = Node->getOperand(0);
2538 Tmp2 = Node->getOperand(1);
2539 Tmp3 = Node->getOperand(2);
2540 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2541
2542 // If we had to Expand the SetCC operands into a SELECT node, then it may
2543 // not always be possible to return a true LHS & RHS. In this case, just
2544 // return the value we legalized, returned in the LHS
2545 if (Tmp2.Val == 0) {
2546 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002547 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002548 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002549
Chris Lattner73e142f2006-01-30 22:43:50 +00002550 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002551 default: assert(0 && "Cannot handle this action for SETCC yet!");
2552 case TargetLowering::Custom:
2553 isCustom = true;
2554 // FALLTHROUGH.
2555 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002556 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002557 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002558 Tmp4 = TLI.LowerOperation(Result, DAG);
2559 if (Tmp4.Val) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002560 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002561 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002562 case TargetLowering::Promote: {
2563 // First step, figure out the appropriate operation to use.
2564 // Allow SETCC to not be supported for all legal data types
2565 // Mostly this targets FP
2566 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
Chris Lattner00755df2007-02-04 00:27:56 +00002567 MVT::ValueType OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002568
2569 // Scan for the appropriate larger type to use.
2570 while (1) {
2571 NewInTy = (MVT::ValueType)(NewInTy+1);
2572
2573 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
2574 "Fell off of the edge of the integer world");
2575 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
2576 "Fell off of the edge of the floating point world");
2577
2578 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002579 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002580 break;
2581 }
2582 if (MVT::isInteger(NewInTy))
2583 assert(0 && "Cannot promote Legal Integer SETCC yet");
2584 else {
2585 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2586 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2587 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002588 Tmp1 = LegalizeOp(Tmp1);
2589 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002590 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002591 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002592 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002593 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002594 case TargetLowering::Expand:
2595 // Expand a setcc node into a select_cc of the same condition, lhs, and
2596 // rhs that selects between const 1 (true) and const 0 (false).
2597 MVT::ValueType VT = Node->getValueType(0);
2598 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2599 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002600 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002601 break;
2602 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002603 break;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002604 case ISD::MEMSET:
2605 case ISD::MEMCPY:
2606 case ISD::MEMMOVE: {
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002607 Tmp1 = LegalizeOp(Node->getOperand(0)); // Chain
Chris Lattnere5605212005-01-28 22:29:18 +00002608 Tmp2 = LegalizeOp(Node->getOperand(1)); // Pointer
2609
2610 if (Node->getOpcode() == ISD::MEMSET) { // memset = ubyte
2611 switch (getTypeAction(Node->getOperand(2).getValueType())) {
2612 case Expand: assert(0 && "Cannot expand a byte!");
2613 case Legal:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002614 Tmp3 = LegalizeOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002615 break;
2616 case Promote:
Chris Lattnerdeb692e2005-02-01 18:38:28 +00002617 Tmp3 = PromoteOp(Node->getOperand(2));
Chris Lattnere5605212005-01-28 22:29:18 +00002618 break;
2619 }
2620 } else {
Misha Brukmanedf128a2005-04-21 22:36:52 +00002621 Tmp3 = LegalizeOp(Node->getOperand(2)); // memcpy/move = pointer,
Chris Lattnere5605212005-01-28 22:29:18 +00002622 }
Chris Lattner272455b2005-02-02 03:44:41 +00002623
2624 SDOperand Tmp4;
2625 switch (getTypeAction(Node->getOperand(3).getValueType())) {
Chris Lattner6814f152005-07-13 01:42:45 +00002626 case Expand: {
2627 // Length is too big, just take the lo-part of the length.
2628 SDOperand HiPart;
Chris Lattnerfa9aa2b2006-11-07 04:11:44 +00002629 ExpandOp(Node->getOperand(3), Tmp4, HiPart);
Chris Lattner6814f152005-07-13 01:42:45 +00002630 break;
2631 }
Chris Lattnere5605212005-01-28 22:29:18 +00002632 case Legal:
2633 Tmp4 = LegalizeOp(Node->getOperand(3));
Chris Lattnere5605212005-01-28 22:29:18 +00002634 break;
2635 case Promote:
2636 Tmp4 = PromoteOp(Node->getOperand(3));
Chris Lattner272455b2005-02-02 03:44:41 +00002637 break;
2638 }
2639
2640 SDOperand Tmp5;
2641 switch (getTypeAction(Node->getOperand(4).getValueType())) { // uint
2642 case Expand: assert(0 && "Cannot expand this yet!");
2643 case Legal:
2644 Tmp5 = LegalizeOp(Node->getOperand(4));
2645 break;
2646 case Promote:
Chris Lattnere5605212005-01-28 22:29:18 +00002647 Tmp5 = PromoteOp(Node->getOperand(4));
2648 break;
2649 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002650
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002651 SDOperand Tmp6;
2652 switch (getTypeAction(Node->getOperand(5).getValueType())) { // bool
2653 case Expand: assert(0 && "Cannot expand this yet!");
2654 case Legal:
2655 Tmp6 = LegalizeOp(Node->getOperand(5));
2656 break;
2657 case Promote:
2658 Tmp6 = PromoteOp(Node->getOperand(5));
2659 break;
2660 }
2661
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002662 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
2663 default: assert(0 && "This action not implemented for this operation!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002664 case TargetLowering::Custom:
2665 isCustom = true;
2666 // FALLTHROUGH
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002667 case TargetLowering::Legal: {
2668 SDOperand Ops[] = { Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6 };
2669 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
Chris Lattner456a93a2006-01-28 07:39:30 +00002670 if (isCustom) {
2671 Tmp1 = TLI.LowerOperation(Result, DAG);
2672 if (Tmp1.Val) Result = Tmp1;
2673 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002674 break;
Rafael Espindola5c0d6ed2007-10-19 10:41:11 +00002675 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002676 case TargetLowering::Expand: {
Chris Lattnere1bd8222005-01-11 05:57:22 +00002677 // Otherwise, the target does not support this operation. Lower the
2678 // operation to an explicit libcall as appropriate.
2679 MVT::ValueType IntPtr = TLI.getPointerTy();
Owen Andersona69571c2006-05-03 01:29:57 +00002680 const Type *IntPtrTy = TLI.getTargetData()->getIntPtrType();
Reid Spencer47857812006-12-31 05:55:36 +00002681 TargetLowering::ArgListTy Args;
2682 TargetLowering::ArgListEntry Entry;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002683
Reid Spencer3bfbf4e2005-01-12 14:53:45 +00002684 const char *FnName = 0;
Chris Lattnere1bd8222005-01-11 05:57:22 +00002685 if (Node->getOpcode() == ISD::MEMSET) {
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002686 Entry.Node = Tmp2; Entry.Ty = IntPtrTy;
Reid Spencer47857812006-12-31 05:55:36 +00002687 Args.push_back(Entry);
Chris Lattnerdca7abe2006-02-20 06:38:35 +00002688 // Extend the (previously legalized) ubyte argument to be an int value
2689 // for the call.
2690 if (Tmp3.getValueType() > MVT::i32)
2691 Tmp3 = DAG.getNode(ISD::TRUNCATE, MVT::i32, Tmp3);
2692 else
2693 Tmp3 = DAG.getNode(ISD::ZERO_EXTEND, MVT::i32, Tmp3);
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002694 Entry.Node = Tmp3; Entry.Ty = Type::Int32Ty; Entry.isSExt = true;
Reid Spencer47857812006-12-31 05:55:36 +00002695 Args.push_back(Entry);
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00002696 Entry.Node = Tmp4; Entry.Ty = IntPtrTy; Entry.isSExt = false;
Reid Spencer47857812006-12-31 05:55:36 +00002697 Args.push_back(Entry);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002698
2699 FnName = "memset";
2700 } else if (Node->getOpcode() == ISD::MEMCPY ||
2701 Node->getOpcode() == ISD::MEMMOVE) {
Anton Korobeynikovb25fe822007-02-01 08:39:52 +00002702 Entry.Ty = IntPtrTy;
Reid Spencerb47b25c2007-01-03 04:22:32 +00002703 Entry.Node = Tmp2; Args.push_back(Entry);
2704 Entry.Node = Tmp3; Args.push_back(Entry);
2705 Entry.Node = Tmp4; Args.push_back(Entry);
Chris Lattnere1bd8222005-01-11 05:57:22 +00002706 FnName = Node->getOpcode() == ISD::MEMMOVE ? "memmove" : "memcpy";
2707 } else {
2708 assert(0 && "Unknown op!");
2709 }
Chris Lattner45982da2005-05-12 16:53:42 +00002710
Chris Lattnere1bd8222005-01-11 05:57:22 +00002711 std::pair<SDOperand,SDOperand> CallResult =
Reid Spencer47857812006-12-31 05:55:36 +00002712 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, false, CallingConv::C, false,
Chris Lattnere1bd8222005-01-11 05:57:22 +00002713 DAG.getExternalSymbol(FnName, IntPtr), Args, DAG);
Chris Lattner456a93a2006-01-28 07:39:30 +00002714 Result = CallResult.second;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002715 break;
2716 }
Chris Lattnere1bd8222005-01-11 05:57:22 +00002717 }
2718 break;
2719 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002720
Chris Lattner5b359c62005-04-02 04:00:59 +00002721 case ISD::SHL_PARTS:
2722 case ISD::SRA_PARTS:
2723 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002724 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002725 bool Changed = false;
2726 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2727 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2728 Changed |= Ops.back() != Node->getOperand(i);
2729 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002730 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002731 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002732
Evan Cheng05a2d562006-01-09 18:31:59 +00002733 switch (TLI.getOperationAction(Node->getOpcode(),
2734 Node->getValueType(0))) {
2735 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002736 case TargetLowering::Legal: break;
2737 case TargetLowering::Custom:
2738 Tmp1 = TLI.LowerOperation(Result, DAG);
2739 if (Tmp1.Val) {
2740 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002741 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002742 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002743 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2744 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002745 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002746 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002747 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002748 return RetVal;
2749 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002750 break;
2751 }
2752
Chris Lattner2c8086f2005-04-02 05:00:07 +00002753 // Since these produce multiple values, make sure to remember that we
2754 // legalized all of them.
2755 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2756 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2757 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002758 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002759
2760 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002761 case ISD::ADD:
2762 case ISD::SUB:
2763 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002764 case ISD::MULHS:
2765 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002766 case ISD::UDIV:
2767 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002768 case ISD::AND:
2769 case ISD::OR:
2770 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002771 case ISD::SHL:
2772 case ISD::SRL:
2773 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002774 case ISD::FADD:
2775 case ISD::FSUB:
2776 case ISD::FMUL:
2777 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00002778 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002779 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002780 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2781 case Expand: assert(0 && "Not possible");
2782 case Legal:
2783 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2784 break;
2785 case Promote:
2786 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2787 break;
2788 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002789
2790 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002791
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002792 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002793 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002794 case TargetLowering::Legal: break;
2795 case TargetLowering::Custom:
2796 Tmp1 = TLI.LowerOperation(Result, DAG);
2797 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002798 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002799 case TargetLowering::Expand: {
Dan Gohman525178c2007-10-08 18:33:35 +00002800 MVT::ValueType VT = Op.getValueType();
2801
2802 // See if multiply or divide can be lowered using two-result operations.
2803 SDVTList VTs = DAG.getVTList(VT, VT);
2804 if (Node->getOpcode() == ISD::MUL) {
2805 // We just need the low half of the multiply; try both the signed
2806 // and unsigned forms. If the target supports both SMUL_LOHI and
2807 // UMUL_LOHI, form a preference by checking which forms of plain
2808 // MULH it supports.
2809 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2810 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2811 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2812 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2813 unsigned OpToUse = 0;
2814 if (HasSMUL_LOHI && !HasMULHS) {
2815 OpToUse = ISD::SMUL_LOHI;
2816 } else if (HasUMUL_LOHI && !HasMULHU) {
2817 OpToUse = ISD::UMUL_LOHI;
2818 } else if (HasSMUL_LOHI) {
2819 OpToUse = ISD::SMUL_LOHI;
2820 } else if (HasUMUL_LOHI) {
2821 OpToUse = ISD::UMUL_LOHI;
2822 }
2823 if (OpToUse) {
2824 Result = SDOperand(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0);
2825 break;
2826 }
2827 }
2828 if (Node->getOpcode() == ISD::MULHS &&
2829 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
2830 Result = SDOperand(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
2831 break;
2832 }
2833 if (Node->getOpcode() == ISD::MULHU &&
2834 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
2835 Result = SDOperand(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
2836 break;
2837 }
2838 if (Node->getOpcode() == ISD::SDIV &&
2839 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
2840 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0);
2841 break;
2842 }
2843 if (Node->getOpcode() == ISD::UDIV &&
2844 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
2845 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0);
2846 break;
2847 }
2848
Dan Gohman82669522007-10-11 23:57:53 +00002849 // Check to see if we have a libcall for this operator.
2850 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
2851 bool isSigned = false;
2852 switch (Node->getOpcode()) {
2853 case ISD::UDIV:
2854 case ISD::SDIV:
2855 if (VT == MVT::i32) {
2856 LC = Node->getOpcode() == ISD::UDIV
Evan Cheng56966222007-01-12 02:11:51 +00002857 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00002858 isSigned = Node->getOpcode() == ISD::SDIV;
2859 }
2860 break;
2861 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00002862 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
2863 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00002864 break;
2865 default: break;
2866 }
2867 if (LC != RTLIB::UNKNOWN_LIBCALL) {
2868 SDOperand Dummy;
2869 Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002870 break;
2871 }
2872
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002873 assert(MVT::isVector(Node->getValueType(0)) &&
2874 "Cannot expand this binary operator!");
2875 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00002876 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002877 break;
2878 }
Evan Chengcc987612006-04-12 21:20:24 +00002879 case TargetLowering::Promote: {
2880 switch (Node->getOpcode()) {
2881 default: assert(0 && "Do not know how to promote this BinOp!");
2882 case ISD::AND:
2883 case ISD::OR:
2884 case ISD::XOR: {
2885 MVT::ValueType OVT = Node->getValueType(0);
2886 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
2887 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
2888 // Bit convert each of the values to the new type.
2889 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
2890 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
2891 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
2892 // Bit convert the result back the original type.
2893 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
2894 break;
2895 }
2896 }
2897 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002898 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002899 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002900
Dan Gohmane14ea862007-10-05 14:17:22 +00002901 case ISD::SMUL_LOHI:
2902 case ISD::UMUL_LOHI:
2903 case ISD::SDIVREM:
2904 case ISD::UDIVREM:
2905 // These nodes will only be produced by target-specific lowering, so
2906 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00002907 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00002908 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00002909
2910 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2911 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
2912 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00002913 break;
2914
Chris Lattnera09f8482006-03-05 05:09:38 +00002915 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
2916 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2917 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2918 case Expand: assert(0 && "Not possible");
2919 case Legal:
2920 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2921 break;
2922 case Promote:
2923 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2924 break;
2925 }
2926
2927 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2928
2929 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
2930 default: assert(0 && "Operation not supported");
2931 case TargetLowering::Custom:
2932 Tmp1 = TLI.LowerOperation(Result, DAG);
2933 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00002934 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00002935 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00002936 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00002937 // If this target supports fabs/fneg natively and select is cheap,
2938 // do this efficiently.
2939 if (!TLI.isSelectExpensive() &&
2940 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
2941 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00002942 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00002943 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00002944 // Get the sign bit of the RHS.
2945 MVT::ValueType IVT =
2946 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
2947 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
2948 SignBit = DAG.getSetCC(TLI.getSetCCResultTy(),
2949 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
2950 // Get the absolute value of the result.
2951 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
2952 // Select between the nabs and abs value based on the sign bit of
2953 // the input.
2954 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
2955 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
2956 AbsVal),
2957 AbsVal);
2958 Result = LegalizeOp(Result);
2959 break;
2960 }
2961
2962 // Otherwise, do bitwise ops!
Evan Cheng912095b2007-01-04 21:56:39 +00002963 MVT::ValueType NVT =
2964 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
2965 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
2966 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
2967 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00002968 break;
2969 }
Evan Cheng912095b2007-01-04 21:56:39 +00002970 }
Chris Lattnera09f8482006-03-05 05:09:38 +00002971 break;
2972
Nate Begeman551bf3f2006-02-17 05:43:56 +00002973 case ISD::ADDC:
2974 case ISD::SUBC:
2975 Tmp1 = LegalizeOp(Node->getOperand(0));
2976 Tmp2 = LegalizeOp(Node->getOperand(1));
2977 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2978 // Since this produces two values, make sure to remember that we legalized
2979 // both of them.
2980 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2981 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2982 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00002983
Nate Begeman551bf3f2006-02-17 05:43:56 +00002984 case ISD::ADDE:
2985 case ISD::SUBE:
2986 Tmp1 = LegalizeOp(Node->getOperand(0));
2987 Tmp2 = LegalizeOp(Node->getOperand(1));
2988 Tmp3 = LegalizeOp(Node->getOperand(2));
2989 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
2990 // Since this produces two values, make sure to remember that we legalized
2991 // both of them.
2992 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
2993 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
2994 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00002995
Nate Begeman419f8b62005-10-18 00:27:41 +00002996 case ISD::BUILD_PAIR: {
2997 MVT::ValueType PairTy = Node->getValueType(0);
2998 // TODO: handle the case where the Lo and Hi operands are not of legal type
2999 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3000 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3001 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003002 case TargetLowering::Promote:
3003 case TargetLowering::Custom:
3004 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003005 case TargetLowering::Legal:
3006 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3007 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3008 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003009 case TargetLowering::Expand:
3010 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3011 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3012 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
3013 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
3014 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00003015 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003016 break;
3017 }
3018 break;
3019 }
3020
Nate Begemanc105e192005-04-06 00:23:54 +00003021 case ISD::UREM:
3022 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003023 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003024 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3025 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003026
Nate Begemanc105e192005-04-06 00:23:54 +00003027 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003028 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3029 case TargetLowering::Custom:
3030 isCustom = true;
3031 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003032 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003033 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003034 if (isCustom) {
3035 Tmp1 = TLI.LowerOperation(Result, DAG);
3036 if (Tmp1.Val) Result = Tmp1;
3037 }
Nate Begemanc105e192005-04-06 00:23:54 +00003038 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003039 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003040 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003041 bool isSigned = DivOpc == ISD::SDIV;
Dan Gohman525178c2007-10-08 18:33:35 +00003042 MVT::ValueType VT = Node->getValueType(0);
3043
3044 // See if remainder can be lowered using two-result operations.
3045 SDVTList VTs = DAG.getVTList(VT, VT);
3046 if (Node->getOpcode() == ISD::SREM &&
3047 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3048 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3049 break;
3050 }
3051 if (Node->getOpcode() == ISD::UREM &&
3052 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3053 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3054 break;
3055 }
3056
3057 if (MVT::isInteger(VT)) {
3058 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003059 TargetLowering::Legal) {
3060 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00003061 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003062 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3063 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Dan Gohman80176312007-11-05 23:35:22 +00003064 } else if (MVT::isVector(VT)) {
3065 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003066 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003067 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003068 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003069 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3070 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003071 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003072 Result = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003073 }
Dan Gohman0d974262007-11-06 22:11:54 +00003074 } else {
3075 assert(MVT::isFloatingPoint(VT) &&
3076 "remainder op must have integer or floating-point type");
Dan Gohman80176312007-11-05 23:35:22 +00003077 if (MVT::isVector(VT)) {
3078 Result = LegalizeOp(UnrollVectorOp(Op));
3079 } else {
3080 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003081 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3082 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman80176312007-11-05 23:35:22 +00003083 SDOperand Dummy;
3084 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3085 false/*sign irrelevant*/, Dummy);
3086 }
Nate Begemanc105e192005-04-06 00:23:54 +00003087 }
3088 break;
3089 }
Dan Gohman525178c2007-10-08 18:33:35 +00003090 }
Nate Begemanc105e192005-04-06 00:23:54 +00003091 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003092 case ISD::VAARG: {
3093 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3094 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3095
Chris Lattner5c62f332006-01-28 07:42:08 +00003096 MVT::ValueType VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003097 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3098 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003099 case TargetLowering::Custom:
3100 isCustom = true;
3101 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003102 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003103 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3104 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003105 Tmp1 = Result.getValue(1);
3106
3107 if (isCustom) {
3108 Tmp2 = TLI.LowerOperation(Result, DAG);
3109 if (Tmp2.Val) {
3110 Result = LegalizeOp(Tmp2);
3111 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3112 }
3113 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003114 break;
3115 case TargetLowering::Expand: {
Evan Cheng466685d2006-10-09 20:57:25 +00003116 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +00003117 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00003118 SV->getValue(), SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00003119 // Increment the pointer, VAList, to the next vaarg
3120 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3121 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3122 TLI.getPointerTy()));
3123 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00003124 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
3125 SV->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00003126 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003127 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003128 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003129 Result = LegalizeOp(Result);
3130 break;
3131 }
3132 }
3133 // Since VAARG produces two values, make sure to remember that we
3134 // legalized both of them.
3135 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00003136 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3137 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003138 }
3139
3140 case ISD::VACOPY:
3141 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3142 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3143 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3144
3145 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3146 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003147 case TargetLowering::Custom:
3148 isCustom = true;
3149 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003150 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003151 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3152 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003153 if (isCustom) {
3154 Tmp1 = TLI.LowerOperation(Result, DAG);
3155 if (Tmp1.Val) Result = Tmp1;
3156 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003157 break;
3158 case TargetLowering::Expand:
3159 // This defaults to loading a pointer from the input and storing it to the
3160 // output, returning the chain.
Evan Cheng466685d2006-10-09 20:57:25 +00003161 SrcValueSDNode *SVD = cast<SrcValueSDNode>(Node->getOperand(3));
Evan Cheng8b2794a2006-10-13 21:14:26 +00003162 SrcValueSDNode *SVS = cast<SrcValueSDNode>(Node->getOperand(4));
Evan Cheng466685d2006-10-09 20:57:25 +00003163 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, SVD->getValue(),
3164 SVD->getOffset());
Evan Cheng8b2794a2006-10-13 21:14:26 +00003165 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, SVS->getValue(),
3166 SVS->getOffset());
Nate Begemanacc398c2006-01-25 18:21:52 +00003167 break;
3168 }
3169 break;
3170
3171 case ISD::VAEND:
3172 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3173 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3174
3175 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3176 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003177 case TargetLowering::Custom:
3178 isCustom = true;
3179 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003180 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003181 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003182 if (isCustom) {
3183 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
3184 if (Tmp1.Val) Result = Tmp1;
3185 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003186 break;
3187 case TargetLowering::Expand:
3188 Result = Tmp1; // Default to a no-op, return the chain
3189 break;
3190 }
3191 break;
3192
3193 case ISD::VASTART:
3194 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3195 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3196
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003197 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3198
Nate Begemanacc398c2006-01-25 18:21:52 +00003199 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3200 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003201 case TargetLowering::Legal: break;
3202 case TargetLowering::Custom:
3203 Tmp1 = TLI.LowerOperation(Result, DAG);
3204 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003205 break;
3206 }
3207 break;
3208
Nate Begeman35ef9132006-01-11 21:21:00 +00003209 case ISD::ROTL:
3210 case ISD::ROTR:
3211 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3212 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003213 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003214 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3215 default:
3216 assert(0 && "ROTL/ROTR legalize operation not supported");
3217 break;
3218 case TargetLowering::Legal:
3219 break;
3220 case TargetLowering::Custom:
3221 Tmp1 = TLI.LowerOperation(Result, DAG);
3222 if (Tmp1.Val) Result = Tmp1;
3223 break;
3224 case TargetLowering::Promote:
3225 assert(0 && "Do not know how to promote ROTL/ROTR");
3226 break;
3227 case TargetLowering::Expand:
3228 assert(0 && "Do not know how to expand ROTL/ROTR");
3229 break;
3230 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003231 break;
3232
Nate Begemand88fc032006-01-14 03:14:10 +00003233 case ISD::BSWAP:
3234 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3235 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003236 case TargetLowering::Custom:
3237 assert(0 && "Cannot custom legalize this yet!");
3238 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003239 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003240 break;
3241 case TargetLowering::Promote: {
3242 MVT::ValueType OVT = Tmp1.getValueType();
3243 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanb55757e2007-05-18 17:52:13 +00003244 unsigned DiffBits = MVT::getSizeInBits(NVT) - MVT::getSizeInBits(OVT);
Nate Begemand88fc032006-01-14 03:14:10 +00003245
Chris Lattner456a93a2006-01-28 07:39:30 +00003246 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3247 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3248 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3249 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3250 break;
3251 }
3252 case TargetLowering::Expand:
3253 Result = ExpandBSWAP(Tmp1);
3254 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003255 }
3256 break;
3257
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003258 case ISD::CTPOP:
3259 case ISD::CTTZ:
3260 case ISD::CTLZ:
3261 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3262 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003263 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003264 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003265 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003266 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003267 TargetLowering::Custom) {
3268 Tmp1 = TLI.LowerOperation(Result, DAG);
3269 if (Tmp1.Val) {
3270 Result = Tmp1;
3271 }
Scott Michel910b66d2007-07-30 21:00:31 +00003272 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003273 break;
3274 case TargetLowering::Promote: {
3275 MVT::ValueType OVT = Tmp1.getValueType();
3276 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003277
3278 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003279 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3280 // Perform the larger operation, then subtract if needed.
3281 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003282 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003283 case ISD::CTPOP:
3284 Result = Tmp1;
3285 break;
3286 case ISD::CTTZ:
3287 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003288 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003289 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003290 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003291 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Scott Michel910b66d2007-07-30 21:00:31 +00003292 DAG.getConstant(MVT::getSizeInBits(OVT),NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003293 break;
3294 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003295 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003296 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003297 DAG.getConstant(MVT::getSizeInBits(NVT) -
3298 MVT::getSizeInBits(OVT), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003299 break;
3300 }
3301 break;
3302 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003303 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003304 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003305 break;
3306 }
3307 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003308
Chris Lattner2c8086f2005-04-02 05:00:07 +00003309 // Unary operators
3310 case ISD::FABS:
3311 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003312 case ISD::FSQRT:
3313 case ISD::FSIN:
3314 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003315 Tmp1 = LegalizeOp(Node->getOperand(0));
3316 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003317 case TargetLowering::Promote:
3318 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003319 isCustom = true;
3320 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003321 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003322 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003323 if (isCustom) {
3324 Tmp1 = TLI.LowerOperation(Result, DAG);
3325 if (Tmp1.Val) Result = Tmp1;
3326 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003327 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003328 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003329 switch (Node->getOpcode()) {
3330 default: assert(0 && "Unreachable!");
3331 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003332 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3333 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003334 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003335 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003336 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003337 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
3338 MVT::ValueType VT = Node->getValueType(0);
3339 Tmp2 = DAG.getConstantFP(0.0, VT);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003340 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1, Tmp2, ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003341 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3342 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003343 break;
3344 }
3345 case ISD::FSQRT:
3346 case ISD::FSIN:
3347 case ISD::FCOS: {
3348 MVT::ValueType VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003349
3350 // Expand unsupported unary vector operators by unrolling them.
3351 if (MVT::isVector(VT)) {
3352 Result = LegalizeOp(UnrollVectorOp(Op));
3353 break;
3354 }
3355
Evan Cheng56966222007-01-12 02:11:51 +00003356 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003357 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003358 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003359 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3360 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003361 break;
3362 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003363 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3364 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003365 break;
3366 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003367 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3368 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003369 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003370 default: assert(0 && "Unreachable!");
3371 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00003372 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003373 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3374 false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003375 break;
3376 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003377 }
3378 break;
3379 }
3380 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003381 case ISD::FPOWI: {
Dan Gohman82669522007-10-11 23:57:53 +00003382 MVT::ValueType VT = Node->getValueType(0);
3383
3384 // Expand unsupported unary vector operators by unrolling them.
3385 if (MVT::isVector(VT)) {
3386 Result = LegalizeOp(UnrollVectorOp(Op));
3387 break;
3388 }
3389
3390 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003391 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3392 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003393 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003394 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3395 false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003396 break;
3397 }
Chris Lattner35481892005-12-23 00:16:34 +00003398 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003399 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003400 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3401 Node->getValueType(0));
Dan Gohman7f321562007-06-25 16:23:39 +00003402 } else if (MVT::isVector(Op.getOperand(0).getValueType())) {
3403 // The input has to be a vector type, we have to either scalarize it, pack
3404 // it, or convert it based on whether the input vector type is legal.
3405 SDNode *InVal = Node->getOperand(0).Val;
Dale Johannesene5269622007-10-20 00:07:52 +00003406 int InIx = Node->getOperand(0).ResNo;
3407 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(InIx));
3408 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(InIx));
Dan Gohman7f321562007-06-25 16:23:39 +00003409
3410 // Figure out if there is a simple type corresponding to this Vector
3411 // type. If so, convert to the vector type.
3412 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3413 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003414 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003415 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3416 LegalizeOp(Node->getOperand(0)));
3417 break;
3418 } else if (NumElems == 1) {
3419 // Turn this into a bit convert of the scalar input.
3420 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3421 ScalarizeVectorOp(Node->getOperand(0)));
3422 break;
3423 } else {
3424 // FIXME: UNIMP! Store then reload
3425 assert(0 && "Cast from unsupported vector type not implemented yet!");
3426 }
Chris Lattner67993f72006-01-23 07:30:46 +00003427 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003428 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3429 Node->getOperand(0).getValueType())) {
3430 default: assert(0 && "Unknown operation action!");
3431 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003432 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3433 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003434 break;
3435 case TargetLowering::Legal:
3436 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003437 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003438 break;
3439 }
3440 }
3441 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003442
Chris Lattner2c8086f2005-04-02 05:00:07 +00003443 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003444 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003445 case ISD::UINT_TO_FP: {
3446 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003447 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3448 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003449 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003450 Node->getOperand(0).getValueType())) {
3451 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003452 case TargetLowering::Custom:
3453 isCustom = true;
3454 // FALLTHROUGH
3455 case TargetLowering::Legal:
3456 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003457 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003458 if (isCustom) {
3459 Tmp1 = TLI.LowerOperation(Result, DAG);
3460 if (Tmp1.Val) Result = Tmp1;
3461 }
3462 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003463 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00003464 Result = ExpandLegalINT_TO_FP(isSigned,
3465 LegalizeOp(Node->getOperand(0)),
3466 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003467 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003468 case TargetLowering::Promote:
3469 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
3470 Node->getValueType(0),
3471 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003472 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00003473 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003474 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00003475 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003476 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
3477 Node->getValueType(0), Node->getOperand(0));
3478 break;
3479 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003480 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003481 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003482 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
3483 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003484 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003485 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
3486 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003487 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003488 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3489 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003490 break;
3491 }
3492 break;
3493 }
3494 case ISD::TRUNCATE:
3495 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3496 case Legal:
3497 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003498 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003499 break;
3500 case Expand:
3501 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3502
3503 // Since the result is legal, we should just be able to truncate the low
3504 // part of the source.
3505 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3506 break;
3507 case Promote:
3508 Result = PromoteOp(Node->getOperand(0));
3509 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3510 break;
3511 }
3512 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003513
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003514 case ISD::FP_TO_SINT:
3515 case ISD::FP_TO_UINT:
3516 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3517 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003518 Tmp1 = LegalizeOp(Node->getOperand(0));
3519
Chris Lattner1618beb2005-07-29 00:11:56 +00003520 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3521 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003522 case TargetLowering::Custom:
3523 isCustom = true;
3524 // FALLTHROUGH
3525 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003526 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003527 if (isCustom) {
3528 Tmp1 = TLI.LowerOperation(Result, DAG);
3529 if (Tmp1.Val) Result = Tmp1;
3530 }
3531 break;
3532 case TargetLowering::Promote:
3533 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3534 Node->getOpcode() == ISD::FP_TO_SINT);
3535 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003536 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003537 if (Node->getOpcode() == ISD::FP_TO_UINT) {
3538 SDOperand True, False;
3539 MVT::ValueType VT = Node->getOperand(0).getValueType();
3540 MVT::ValueType NVT = Node->getValueType(0);
Dale Johannesenf4d48322007-09-19 17:53:26 +00003541 unsigned ShiftAmt = MVT::getSizeInBits(NVT)-1;
Dale Johannesen73328d12007-09-19 23:55:34 +00003542 const uint64_t zero[] = {0, 0};
3543 APFloat apf = APFloat(APInt(MVT::getSizeInBits(VT), 2, zero));
3544 uint64_t x = 1ULL << ShiftAmt;
Neil Boothccf596a2007-10-07 11:45:55 +00003545 (void)apf.convertFromZeroExtendedInteger
3546 (&x, MVT::getSizeInBits(NVT), false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00003547 Tmp2 = DAG.getConstantFP(apf, VT);
Nate Begemand2558e32005-08-14 01:20:53 +00003548 Tmp3 = DAG.getSetCC(TLI.getSetCCResultTy(),
3549 Node->getOperand(0), Tmp2, ISD::SETLT);
3550 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3551 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003552 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003553 Tmp2));
3554 False = DAG.getNode(ISD::XOR, NVT, False,
3555 DAG.getConstant(1ULL << ShiftAmt, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003556 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3557 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003558 } else {
3559 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3560 }
3561 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003562 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003563 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003564 case Expand: {
Evan Cheng6af00d52006-12-13 01:57:55 +00003565 MVT::ValueType VT = Op.getValueType();
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003566 MVT::ValueType OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003567 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003568 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003569 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3570 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3571 Node->getOperand(0), DAG.getValueType(MVT::f64));
3572 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3573 DAG.getIntPtrConstant(1));
3574 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3575 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003576 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3577 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3578 Tmp2 = DAG.getConstantFP(apf, OVT);
3579 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3580 // FIXME: generated code sucks.
3581 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3582 DAG.getNode(ISD::ADD, MVT::i32,
3583 DAG.getNode(ISD::FP_TO_SINT, VT,
3584 DAG.getNode(ISD::FSUB, OVT,
3585 Node->getOperand(0), Tmp2)),
3586 DAG.getConstant(0x80000000, MVT::i32)),
3587 DAG.getNode(ISD::FP_TO_SINT, VT,
3588 Node->getOperand(0)),
3589 DAG.getCondCode(ISD::SETGE));
3590 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003591 break;
3592 }
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003593 // Convert f32 / f64 to i32 / i64.
Evan Cheng56966222007-01-12 02:11:51 +00003594 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng6af00d52006-12-13 01:57:55 +00003595 switch (Node->getOpcode()) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003596 case ISD::FP_TO_SINT: {
Dale Johannesen73328d12007-09-19 23:55:34 +00003597 if (OVT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00003598 LC = (VT == MVT::i32)
3599 ? RTLIB::FPTOSINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00003600 else if (OVT == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00003601 LC = (VT == MVT::i32)
3602 ? RTLIB::FPTOSINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
Dale Johannesen161e8972007-10-05 20:04:43 +00003603 else if (OVT == MVT::f80) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003604 assert(VT == MVT::i64);
Dale Johannesen161e8972007-10-05 20:04:43 +00003605 LC = RTLIB::FPTOSINT_F80_I64;
3606 }
3607 else if (OVT == MVT::ppcf128) {
3608 assert(VT == MVT::i64);
3609 LC = RTLIB::FPTOSINT_PPCF128_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00003610 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003611 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003612 }
3613 case ISD::FP_TO_UINT: {
Dale Johannesen73328d12007-09-19 23:55:34 +00003614 if (OVT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00003615 LC = (VT == MVT::i32)
3616 ? RTLIB::FPTOUINT_F32_I32 : RTLIB::FPTOSINT_F32_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00003617 else if (OVT == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00003618 LC = (VT == MVT::i32)
3619 ? RTLIB::FPTOUINT_F64_I32 : RTLIB::FPTOSINT_F64_I64;
Dale Johannesen161e8972007-10-05 20:04:43 +00003620 else if (OVT == MVT::f80) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003621 LC = (VT == MVT::i32)
Dale Johannesen161e8972007-10-05 20:04:43 +00003622 ? RTLIB::FPTOUINT_F80_I32 : RTLIB::FPTOUINT_F80_I64;
3623 }
3624 else if (OVT == MVT::ppcf128) {
3625 assert(VT == MVT::i64);
3626 LC = RTLIB::FPTOUINT_PPCF128_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00003627 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003628 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003629 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003630 default: assert(0 && "Unreachable!");
3631 }
3632 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00003633 Result = ExpandLibCall(TLI.getLibcallName(LC), Node,
3634 false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003635 break;
3636 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003637 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003638 Tmp1 = PromoteOp(Node->getOperand(0));
3639 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3640 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003641 break;
3642 }
3643 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003644
Chris Lattnerf2670a82008-01-16 06:57:07 +00003645 case ISD::FP_EXTEND: {
Chris Lattner0bd48932008-01-17 07:00:52 +00003646 MVT::ValueType DstVT = Op.getValueType();
3647 MVT::ValueType SrcVT = Op.getOperand(0).getValueType();
3648 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3649 // The only other way we can lower this is to turn it into a STORE,
3650 // LOAD pair, targetting a temporary location (a stack slot).
3651 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3652 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00003653 }
3654 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3655 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3656 case Legal:
3657 Tmp1 = LegalizeOp(Node->getOperand(0));
3658 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3659 break;
3660 case Promote:
3661 Tmp1 = PromoteOp(Node->getOperand(0));
3662 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3663 break;
3664 }
3665 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003666 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003667 case ISD::FP_ROUND: {
Chris Lattner0bd48932008-01-17 07:00:52 +00003668 MVT::ValueType DstVT = Op.getValueType();
3669 MVT::ValueType SrcVT = Op.getOperand(0).getValueType();
3670 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3671 if (SrcVT == MVT::ppcf128) {
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003672 SDOperand Lo;
3673 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003674 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003675 if (DstVT!=MVT::f64)
3676 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00003677 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00003678 }
Chris Lattner0bd48932008-01-17 07:00:52 +00003679 // The only other way we can lower this is to turn it into a STORE,
3680 // LOAD pair, targetting a temporary location (a stack slot).
3681 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3682 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00003683 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00003684 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3685 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3686 case Legal:
3687 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003688 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003689 break;
3690 case Promote:
3691 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003692 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3693 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003694 break;
3695 }
3696 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003697 }
Chris Lattner13c78e22005-09-02 00:18:10 +00003698 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003699 case ISD::ZERO_EXTEND:
3700 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003701 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003702 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003703 case Legal:
3704 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003705 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003706 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003707 case Promote:
3708 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003709 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003710 Tmp1 = PromoteOp(Node->getOperand(0));
3711 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003712 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003713 case ISD::ZERO_EXTEND:
3714 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003715 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003716 Result = DAG.getZeroExtendInReg(Result,
3717 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003718 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003719 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003720 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003721 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003722 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003723 Result,
3724 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003725 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003726 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003727 }
3728 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003729 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003730 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003731 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003732 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003733
3734 // If this operation is not supported, convert it to a shl/shr or load/store
3735 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003736 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3737 default: assert(0 && "This action not supported for this op yet!");
3738 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003739 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003740 break;
3741 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003742 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003743 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003744 // NOTE: we could fall back on load/store here too for targets without
3745 // SAR. However, it is doubtful that any exist.
3746 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
3747 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00003748 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003749 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3750 Node->getOperand(0), ShiftCst);
3751 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3752 Result, ShiftCst);
3753 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003754 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003755 // EXTLOAD pair, targetting a temporary location (a stack slot).
3756
3757 // NOTE: there is a choice here between constantly creating new stack
3758 // slots and always reusing the same one. We currently always create
3759 // new ones, as reuse may inhibit scheduling.
Chris Lattnera66bb392008-01-16 07:51:34 +00003760 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3761 Node->getValueType(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00003762 } else {
3763 assert(0 && "Unknown op");
3764 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003765 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003766 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003767 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003768 }
Duncan Sands36397f52007-07-27 12:58:54 +00003769 case ISD::TRAMPOLINE: {
3770 SDOperand Ops[6];
3771 for (unsigned i = 0; i != 6; ++i)
3772 Ops[i] = LegalizeOp(Node->getOperand(i));
3773 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3774 // The only option for this node is to custom lower it.
3775 Result = TLI.LowerOperation(Result, DAG);
3776 assert(Result.Val && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00003777
3778 // Since trampoline produces two values, make sure to remember that we
3779 // legalized both of them.
3780 Tmp1 = LegalizeOp(Result.getValue(1));
3781 Result = LegalizeOp(Result);
3782 AddLegalizedOperand(SDOperand(Node, 0), Result);
3783 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3784 return Op.ResNo ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00003785 }
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003786 case ISD::FLT_ROUNDS: {
3787 MVT::ValueType VT = Node->getValueType(0);
3788 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3789 default: assert(0 && "This action not supported for this op yet!");
3790 case TargetLowering::Custom:
3791 Result = TLI.LowerOperation(Op, DAG);
3792 if (Result.Val) break;
3793 // Fall Thru
3794 case TargetLowering::Legal:
3795 // If this operation is not supported, lower it to constant 1
3796 Result = DAG.getConstant(1, VT);
3797 break;
3798 }
3799 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003800 case ISD::TRAP: {
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003801 MVT::ValueType VT = Node->getValueType(0);
3802 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3803 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00003804 case TargetLowering::Legal:
3805 Tmp1 = LegalizeOp(Node->getOperand(0));
3806 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3807 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003808 case TargetLowering::Custom:
3809 Result = TLI.LowerOperation(Op, DAG);
3810 if (Result.Val) break;
3811 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00003812 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003813 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00003814 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003815 TargetLowering::ArgListTy Args;
3816 std::pair<SDOperand,SDOperand> CallResult =
Chris Lattner41bab0b2008-01-15 21:58:08 +00003817 TLI.LowerCallTo(Tmp1, Type::VoidTy, false, false, CallingConv::C, false,
Chris Lattner034f12e2008-01-15 22:09:33 +00003818 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
3819 Args, DAG);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003820 Result = CallResult.second;
3821 break;
3822 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003823 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003824 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00003825 }
Chris Lattner456a93a2006-01-28 07:39:30 +00003826
Chris Lattner4ddd2832006-04-08 04:13:17 +00003827 assert(Result.getValueType() == Op.getValueType() &&
3828 "Bad legalization!");
3829
Chris Lattner456a93a2006-01-28 07:39:30 +00003830 // Make sure that the generated code is itself legal.
3831 if (Result != Op)
3832 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003833
Chris Lattner45982da2005-05-12 16:53:42 +00003834 // Note that LegalizeOp may be reentered even from single-use nodes, which
3835 // means that we always must cache transformed nodes.
3836 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003837 return Result;
3838}
3839
Chris Lattner8b6fa222005-01-15 22:16:26 +00003840/// PromoteOp - Given an operation that produces a value in an invalid type,
3841/// promote it to compute the value into a larger type. The produced value will
3842/// have the correct bits for the low portion of the register, but no guarantee
3843/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00003844SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
3845 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00003846 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00003847 assert(getTypeAction(VT) == Promote &&
3848 "Caller should expand or legalize operands that are not promotable!");
3849 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
3850 "Cannot promote to smaller type!");
3851
Chris Lattner03c85462005-01-15 05:21:40 +00003852 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00003853 SDOperand Result;
3854 SDNode *Node = Op.Val;
3855
Chris Lattner40030bf2007-02-04 01:17:38 +00003856 DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00003857 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00003858
Chris Lattner03c85462005-01-15 05:21:40 +00003859 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003860 case ISD::CopyFromReg:
3861 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00003862 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00003863#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00003864 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00003865#endif
Chris Lattner03c85462005-01-15 05:21:40 +00003866 assert(0 && "Do not know how to promote this operator!");
3867 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00003868 case ISD::UNDEF:
3869 Result = DAG.getNode(ISD::UNDEF, NVT);
3870 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003871 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00003872 if (VT != MVT::i1)
3873 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
3874 else
3875 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00003876 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
3877 break;
3878 case ISD::ConstantFP:
3879 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
3880 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
3881 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00003882
Chris Lattner82fbfb62005-01-18 02:59:52 +00003883 case ISD::SETCC:
Chris Lattnerc9c60f62005-08-24 16:35:28 +00003884 assert(isTypeLegal(TLI.getSetCCResultTy()) && "SetCC type is not legal??");
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003885 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(),Node->getOperand(0),
3886 Node->getOperand(1), Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00003887 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00003888
Chris Lattner03c85462005-01-15 05:21:40 +00003889 case ISD::TRUNCATE:
3890 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3891 case Legal:
3892 Result = LegalizeOp(Node->getOperand(0));
3893 assert(Result.getValueType() >= NVT &&
3894 "This truncation doesn't make sense!");
3895 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
3896 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
3897 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00003898 case Promote:
3899 // The truncation is not required, because we don't guarantee anything
3900 // about high bits anyway.
3901 Result = PromoteOp(Node->getOperand(0));
3902 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003903 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00003904 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3905 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00003906 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00003907 }
3908 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003909 case ISD::SIGN_EXTEND:
3910 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00003911 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00003912 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3913 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
3914 case Legal:
3915 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00003916 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003917 break;
3918 case Promote:
3919 // Promote the reg if it's smaller.
3920 Result = PromoteOp(Node->getOperand(0));
3921 // The high bits are not guaranteed to be anything. Insert an extend.
3922 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00003923 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00003924 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00003925 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00003926 Result = DAG.getZeroExtendInReg(Result,
3927 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00003928 break;
3929 }
3930 break;
Chris Lattner35481892005-12-23 00:16:34 +00003931 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00003932 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3933 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003934 Result = PromoteOp(Result);
3935 break;
3936
Chris Lattner8b6fa222005-01-15 22:16:26 +00003937 case ISD::FP_EXTEND:
3938 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
3939 case ISD::FP_ROUND:
3940 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3941 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
3942 case Promote: assert(0 && "Unreachable with 2 FP types!");
3943 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00003944 if (Node->getConstantOperandVal(1) == 0) {
3945 // Input is legal? Do an FP_ROUND_INREG.
3946 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
3947 DAG.getValueType(VT));
3948 } else {
3949 // Just remove the truncate, it isn't affecting the value.
3950 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
3951 Node->getOperand(1));
3952 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003953 break;
3954 }
3955 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003956 case ISD::SINT_TO_FP:
3957 case ISD::UINT_TO_FP:
3958 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3959 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00003960 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00003961 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003962 break;
3963
3964 case Promote:
3965 Result = PromoteOp(Node->getOperand(0));
3966 if (Node->getOpcode() == ISD::SINT_TO_FP)
3967 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003968 Result,
3969 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00003970 else
Chris Lattner23993562005-04-13 02:38:47 +00003971 Result = DAG.getZeroExtendInReg(Result,
3972 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003973 // No extra round required here.
3974 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003975 break;
3976 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00003977 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
3978 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00003979 // Round if we cannot tolerate excess precision.
3980 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00003981 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
3982 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00003983 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003984 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00003985 break;
3986
Chris Lattner5e3c5b42005-12-09 17:32:47 +00003987 case ISD::SIGN_EXTEND_INREG:
3988 Result = PromoteOp(Node->getOperand(0));
3989 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
3990 Node->getOperand(1));
3991 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00003992 case ISD::FP_TO_SINT:
3993 case ISD::FP_TO_UINT:
3994 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3995 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00003996 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003997 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00003998 break;
3999 case Promote:
4000 // The input result is prerounded, so we don't have to do anything
4001 // special.
4002 Tmp1 = PromoteOp(Node->getOperand(0));
4003 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004004 }
Nate Begemand2558e32005-08-14 01:20:53 +00004005 // If we're promoting a UINT to a larger size, check to see if the new node
4006 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4007 // we can use that instead. This allows us to generate better code for
4008 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4009 // legal, such as PowerPC.
4010 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004011 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004012 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4013 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00004014 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4015 } else {
4016 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4017 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004018 break;
4019
Chris Lattner2c8086f2005-04-02 05:00:07 +00004020 case ISD::FABS:
4021 case ISD::FNEG:
4022 Tmp1 = PromoteOp(Node->getOperand(0));
4023 assert(Tmp1.getValueType() == NVT);
4024 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4025 // NOTE: we do not have to do any extra rounding here for
4026 // NoExcessFPPrecision, because we know the input will have the appropriate
4027 // precision, and these operations don't modify precision at all.
4028 break;
4029
Chris Lattnerda6ba872005-04-28 21:44:33 +00004030 case ISD::FSQRT:
4031 case ISD::FSIN:
4032 case ISD::FCOS:
4033 Tmp1 = PromoteOp(Node->getOperand(0));
4034 assert(Tmp1.getValueType() == NVT);
4035 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004036 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004037 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4038 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004039 break;
4040
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004041 case ISD::FPOWI: {
4042 // Promote f32 powi to f64 powi. Note that this could insert a libcall
4043 // directly as well, which may be better.
4044 Tmp1 = PromoteOp(Node->getOperand(0));
4045 assert(Tmp1.getValueType() == NVT);
4046 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
4047 if (NoExcessFPPrecision)
4048 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4049 DAG.getValueType(VT));
4050 break;
4051 }
4052
Chris Lattner03c85462005-01-15 05:21:40 +00004053 case ISD::AND:
4054 case ISD::OR:
4055 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004056 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004057 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004058 case ISD::MUL:
4059 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004060 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004061 // that too is okay if they are integer operations.
4062 Tmp1 = PromoteOp(Node->getOperand(0));
4063 Tmp2 = PromoteOp(Node->getOperand(1));
4064 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4065 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004066 break;
4067 case ISD::FADD:
4068 case ISD::FSUB:
4069 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004070 Tmp1 = PromoteOp(Node->getOperand(0));
4071 Tmp2 = PromoteOp(Node->getOperand(1));
4072 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4073 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4074
4075 // Floating point operations will give excess precision that we may not be
4076 // able to tolerate. If we DO allow excess precision, just leave it,
4077 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004078 // FIXME: Why would we need to round FP ops more than integer ones?
4079 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004080 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004081 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4082 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004083 break;
4084
Chris Lattner8b6fa222005-01-15 22:16:26 +00004085 case ISD::SDIV:
4086 case ISD::SREM:
4087 // These operators require that their input be sign extended.
4088 Tmp1 = PromoteOp(Node->getOperand(0));
4089 Tmp2 = PromoteOp(Node->getOperand(1));
4090 if (MVT::isInteger(NVT)) {
Chris Lattner15e4b012005-07-10 00:07:11 +00004091 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4092 DAG.getValueType(VT));
4093 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4094 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004095 }
4096 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4097
4098 // Perform FP_ROUND: this is probably overly pessimistic.
4099 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004100 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4101 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004102 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004103 case ISD::FDIV:
4104 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004105 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004106 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004107 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004108 case Expand: assert(0 && "not implemented");
4109 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4110 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004111 }
4112 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004113 case Expand: assert(0 && "not implemented");
4114 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4115 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004116 }
Chris Lattner01b3d732005-09-28 22:28:18 +00004117 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4118
4119 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004120 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00004121 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4122 DAG.getValueType(VT));
4123 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004124
4125 case ISD::UDIV:
4126 case ISD::UREM:
4127 // These operators require that their input be zero extended.
4128 Tmp1 = PromoteOp(Node->getOperand(0));
4129 Tmp2 = PromoteOp(Node->getOperand(1));
4130 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00004131 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4132 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004133 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4134 break;
4135
4136 case ISD::SHL:
4137 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00004138 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004139 break;
4140 case ISD::SRA:
4141 // The input value must be properly sign extended.
4142 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00004143 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4144 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00004145 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004146 break;
4147 case ISD::SRL:
4148 // The input value must be properly zero extended.
4149 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00004150 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004151 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004152 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004153
4154 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004155 Tmp1 = Node->getOperand(0); // Get the chain.
4156 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004157 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4158 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
4159 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
4160 } else {
Evan Cheng466685d2006-10-09 20:57:25 +00004161 SrcValueSDNode *SV = cast<SrcValueSDNode>(Node->getOperand(2));
Nate Begeman0aed7842006-01-28 03:14:31 +00004162 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2,
Evan Cheng466685d2006-10-09 20:57:25 +00004163 SV->getValue(), SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00004164 // Increment the pointer, VAList, to the next vaarg
4165 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
4166 DAG.getConstant(MVT::getSizeInBits(VT)/8,
4167 TLI.getPointerTy()));
4168 // Store the incremented VAList to the legalized pointer
Evan Cheng8b2794a2006-10-13 21:14:26 +00004169 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, SV->getValue(),
4170 SV->getOffset());
Nate Begeman0aed7842006-01-28 03:14:31 +00004171 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004172 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004173 }
4174 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004175 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004176 break;
4177
Evan Cheng466685d2006-10-09 20:57:25 +00004178 case ISD::LOAD: {
4179 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004180 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4181 ? ISD::EXTLOAD : LD->getExtensionType();
4182 Result = DAG.getExtLoad(ExtType, NVT,
4183 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004184 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004185 LD->getLoadedVT(),
4186 LD->isVolatile(),
4187 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004188 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004189 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004190 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004191 }
Chris Lattner03c85462005-01-15 05:21:40 +00004192 case ISD::SELECT:
Chris Lattner03c85462005-01-15 05:21:40 +00004193 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4194 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner456a93a2006-01-28 07:39:30 +00004195 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004196 break;
Nate Begeman9373a812005-08-10 20:51:12 +00004197 case ISD::SELECT_CC:
4198 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4199 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4200 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004201 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004202 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004203 case ISD::BSWAP:
4204 Tmp1 = Node->getOperand(0);
4205 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4206 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4207 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004208 DAG.getConstant(MVT::getSizeInBits(NVT) -
4209 MVT::getSizeInBits(VT),
Nate Begemand88fc032006-01-14 03:14:10 +00004210 TLI.getShiftAmountTy()));
4211 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004212 case ISD::CTPOP:
4213 case ISD::CTTZ:
4214 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004215 // Zero extend the argument
4216 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004217 // Perform the larger operation, then subtract if needed.
4218 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004219 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004220 case ISD::CTPOP:
4221 Result = Tmp1;
4222 break;
4223 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004224 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Nate Begemand2558e32005-08-14 01:20:53 +00004225 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004226 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
4227 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004228 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004229 DAG.getConstant(MVT::getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004230 break;
4231 case ISD::CTLZ:
4232 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004233 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004234 DAG.getConstant(MVT::getSizeInBits(NVT) -
4235 MVT::getSizeInBits(VT), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004236 break;
4237 }
4238 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004239 case ISD::EXTRACT_SUBVECTOR:
4240 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004241 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004242 case ISD::EXTRACT_VECTOR_ELT:
4243 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4244 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004245 }
4246
4247 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004248
4249 // Make sure the result is itself legal.
4250 Result = LegalizeOp(Result);
4251
4252 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004253 AddPromotedOperand(Op, Result);
4254 return Result;
4255}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004256
Dan Gohman7f321562007-06-25 16:23:39 +00004257/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4258/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4259/// based on the vector type. The return type of this matches the element type
4260/// of the vector, which may not be legal for the target.
4261SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004262 // We know that operand #0 is the Vec vector. If the index is a constant
4263 // or if the invec is a supported hardware type, we can use it. Otherwise,
4264 // lower to a store then an indexed load.
4265 SDOperand Vec = Op.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004266 SDOperand Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00004267
Dan Gohmane40c7b02007-09-24 15:54:53 +00004268 MVT::ValueType TVT = Vec.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00004269 unsigned NumElems = MVT::getVectorNumElements(TVT);
Chris Lattner15972212006-03-31 17:55:51 +00004270
Dan Gohman7f321562007-06-25 16:23:39 +00004271 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4272 default: assert(0 && "This action is not supported yet!");
4273 case TargetLowering::Custom: {
4274 Vec = LegalizeOp(Vec);
4275 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4276 SDOperand Tmp3 = TLI.LowerOperation(Op, DAG);
4277 if (Tmp3.Val)
4278 return Tmp3;
4279 break;
4280 }
4281 case TargetLowering::Legal:
4282 if (isTypeLegal(TVT)) {
4283 Vec = LegalizeOp(Vec);
4284 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004285 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004286 }
4287 break;
4288 case TargetLowering::Expand:
4289 break;
4290 }
4291
4292 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004293 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004294 Op = ScalarizeVectorOp(Vec);
4295 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
4296 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Chris Lattner15972212006-03-31 17:55:51 +00004297 SDOperand Lo, Hi;
4298 SplitVectorOp(Vec, Lo, Hi);
4299 if (CIdx->getValue() < NumElems/2) {
4300 Vec = Lo;
4301 } else {
4302 Vec = Hi;
Dan Gohman7f321562007-06-25 16:23:39 +00004303 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2,
4304 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00004305 }
Dan Gohman7f321562007-06-25 16:23:39 +00004306
Chris Lattner15972212006-03-31 17:55:51 +00004307 // It's now an extract from the appropriate high or low part. Recurse.
4308 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004309 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00004310 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004311 // Store the value to a temporary stack slot, then LOAD the scalar
4312 // element back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004313 SDOperand StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dan Gohman7f321562007-06-25 16:23:39 +00004314 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
4315
4316 // Add the offset to the index.
4317 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
4318 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4319 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004320
4321 if (MVT::getSizeInBits(Idx.getValueType()) >
4322 MVT::getSizeInBits(TLI.getPointerTy()))
Chris Lattnerf185e672007-10-19 16:47:35 +00004323 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004324 else
Chris Lattnerf185e672007-10-19 16:47:35 +00004325 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004326
Dan Gohman7f321562007-06-25 16:23:39 +00004327 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4328
4329 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00004330 }
Dan Gohman7f321562007-06-25 16:23:39 +00004331 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00004332}
4333
Dan Gohman7f321562007-06-25 16:23:39 +00004334/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00004335/// we assume the operation can be split if it is not already legal.
Dan Gohman7f321562007-06-25 16:23:39 +00004336SDOperand SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDOperand Op) {
Dan Gohman65956352007-06-13 15:12:02 +00004337 // We know that operand #0 is the Vec vector. For now we assume the index
4338 // is a constant and that the extracted result is a supported hardware type.
4339 SDOperand Vec = Op.getOperand(0);
4340 SDOperand Idx = LegalizeOp(Op.getOperand(1));
4341
Dan Gohman7f321562007-06-25 16:23:39 +00004342 unsigned NumElems = MVT::getVectorNumElements(Vec.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00004343
4344 if (NumElems == MVT::getVectorNumElements(Op.getValueType())) {
4345 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004346 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00004347 }
4348
4349 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
4350 SDOperand Lo, Hi;
4351 SplitVectorOp(Vec, Lo, Hi);
4352 if (CIdx->getValue() < NumElems/2) {
4353 Vec = Lo;
4354 } else {
4355 Vec = Hi;
4356 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
4357 }
4358
4359 // It's now an extract from the appropriate high or low part. Recurse.
4360 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004361 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00004362}
4363
Nate Begeman750ac1b2006-02-01 07:19:44 +00004364/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4365/// with condition CC on the current target. This usually involves legalizing
4366/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4367/// there may be no choice but to create a new SetCC node to represent the
4368/// legalized value of setcc lhs, rhs. In this case, the value is returned in
4369/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
4370void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
4371 SDOperand &RHS,
4372 SDOperand &CC) {
Dale Johannesen638ccd52007-10-06 01:24:11 +00004373 SDOperand Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004374
4375 switch (getTypeAction(LHS.getValueType())) {
4376 case Legal:
4377 Tmp1 = LegalizeOp(LHS); // LHS
4378 Tmp2 = LegalizeOp(RHS); // RHS
4379 break;
4380 case Promote:
4381 Tmp1 = PromoteOp(LHS); // LHS
4382 Tmp2 = PromoteOp(RHS); // RHS
4383
4384 // If this is an FP compare, the operands have already been extended.
4385 if (MVT::isInteger(LHS.getValueType())) {
4386 MVT::ValueType VT = LHS.getValueType();
4387 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
4388
4389 // Otherwise, we have to insert explicit sign or zero extends. Note
4390 // that we could insert sign extends for ALL conditions, but zero extend
4391 // is cheaper on many machines (an AND instead of two shifts), so prefer
4392 // it.
4393 switch (cast<CondCodeSDNode>(CC)->get()) {
4394 default: assert(0 && "Unknown integer comparison!");
4395 case ISD::SETEQ:
4396 case ISD::SETNE:
4397 case ISD::SETUGE:
4398 case ISD::SETUGT:
4399 case ISD::SETULE:
4400 case ISD::SETULT:
4401 // ALL of these operations will work if we either sign or zero extend
4402 // the operands (including the unsigned comparisons!). Zero extend is
4403 // usually a simpler/cheaper operation, so prefer it.
4404 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4405 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4406 break;
4407 case ISD::SETGE:
4408 case ISD::SETGT:
4409 case ISD::SETLT:
4410 case ISD::SETLE:
4411 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4412 DAG.getValueType(VT));
4413 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4414 DAG.getValueType(VT));
4415 break;
4416 }
4417 }
4418 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004419 case Expand: {
4420 MVT::ValueType VT = LHS.getValueType();
4421 if (VT == MVT::f32 || VT == MVT::f64) {
4422 // Expand into one or more soft-fp libcall(s).
Evan Cheng56966222007-01-12 02:11:51 +00004423 RTLIB::Libcall LC1, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00004424 switch (cast<CondCodeSDNode>(CC)->get()) {
4425 case ISD::SETEQ:
4426 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00004427 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004428 break;
4429 case ISD::SETNE:
4430 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00004431 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004432 break;
4433 case ISD::SETGE:
4434 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00004435 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004436 break;
4437 case ISD::SETLT:
4438 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00004439 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004440 break;
4441 case ISD::SETLE:
4442 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00004443 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004444 break;
4445 case ISD::SETGT:
4446 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00004447 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004448 break;
4449 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00004450 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4451 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004452 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00004453 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004454 break;
4455 default:
Evan Cheng56966222007-01-12 02:11:51 +00004456 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004457 switch (cast<CondCodeSDNode>(CC)->get()) {
4458 case ISD::SETONE:
4459 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004460 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004461 // Fallthrough
4462 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004463 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004464 break;
4465 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004466 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004467 break;
4468 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004469 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004470 break;
4471 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004472 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004473 break;
Evan Cheng56966222007-01-12 02:11:51 +00004474 case ISD::SETUEQ:
4475 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004476 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004477 default: assert(0 && "Unsupported FP setcc!");
4478 }
4479 }
4480
4481 SDOperand Dummy;
Evan Cheng56966222007-01-12 02:11:51 +00004482 Tmp1 = ExpandLibCall(TLI.getLibcallName(LC1),
Reid Spencer47857812006-12-31 05:55:36 +00004483 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004484 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004485 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004486 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004487 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Evan Cheng2b49c502006-12-15 02:59:56 +00004488 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), Tmp1, Tmp2, CC);
Evan Cheng56966222007-01-12 02:11:51 +00004489 LHS = ExpandLibCall(TLI.getLibcallName(LC2),
Reid Spencer47857812006-12-31 05:55:36 +00004490 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004491 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004492 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004493 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004494 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4495 Tmp2 = SDOperand();
4496 }
4497 LHS = Tmp1;
4498 RHS = Tmp2;
4499 return;
4500 }
4501
Nate Begeman750ac1b2006-02-01 07:19:44 +00004502 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
4503 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004504 ExpandOp(RHS, RHSLo, RHSHi);
4505 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4506
4507 if (VT==MVT::ppcf128) {
4508 // FIXME: This generated code sucks. We want to generate
4509 // FCMP crN, hi1, hi2
4510 // BNE crN, L:
4511 // FCMP crN, lo1, lo2
4512 // The following can be improved, but not that much.
4513 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
4514 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, CCCode);
4515 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4516 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETNE);
4517 Tmp2 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, CCCode);
4518 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4519 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
4520 Tmp2 = SDOperand();
4521 break;
4522 }
4523
4524 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004525 case ISD::SETEQ:
4526 case ISD::SETNE:
4527 if (RHSLo == RHSHi)
4528 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4529 if (RHSCST->isAllOnesValue()) {
4530 // Comparison to -1.
4531 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4532 Tmp2 = RHSLo;
4533 break;
4534 }
4535
4536 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4537 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4538 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4539 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4540 break;
4541 default:
4542 // If this is a comparison of the sign bit, just look at the top part.
4543 // X > -1, x < 0
4544 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4545 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
4546 CST->getValue() == 0) || // X < 0
4547 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4548 CST->isAllOnesValue())) { // X > -1
4549 Tmp1 = LHSHi;
4550 Tmp2 = RHSHi;
4551 break;
4552 }
4553
4554 // FIXME: This generated code sucks.
4555 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004556 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004557 default: assert(0 && "Unknown integer setcc!");
4558 case ISD::SETLT:
4559 case ISD::SETULT: LowCC = ISD::SETULT; break;
4560 case ISD::SETGT:
4561 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4562 case ISD::SETLE:
4563 case ISD::SETULE: LowCC = ISD::SETULE; break;
4564 case ISD::SETGE:
4565 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4566 }
4567
4568 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4569 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4570 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4571
4572 // NOTE: on targets without efficient SELECT of bools, we can always use
4573 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004574 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
4575 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC,
4576 false, DagCombineInfo);
4577 if (!Tmp1.Val)
4578 Tmp1 = DAG.getSetCC(TLI.getSetCCResultTy(), LHSLo, RHSLo, LowCC);
4579 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi,
4580 CCCode, false, DagCombineInfo);
4581 if (!Tmp2.Val)
Chris Lattner85dd3be2007-10-15 17:48:57 +00004582 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultTy(), LHSHi, RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00004583
4584 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4585 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
4586 if ((Tmp1C && Tmp1C->getValue() == 0) ||
4587 (Tmp2C && Tmp2C->getValue() == 0 &&
4588 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4589 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
4590 (Tmp2C && Tmp2C->getValue() == 1 &&
4591 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4592 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4593 // low part is known false, returns high part.
4594 // For LE / GE, if high part is known false, ignore the low part.
4595 // For LT / GT, if high part is known true, ignore the low part.
4596 Tmp1 = Tmp2;
4597 Tmp2 = SDOperand();
4598 } else {
4599 Result = TLI.SimplifySetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi,
4600 ISD::SETEQ, false, DagCombineInfo);
4601 if (!Result.Val)
4602 Result=DAG.getSetCC(TLI.getSetCCResultTy(), LHSHi, RHSHi, ISD::SETEQ);
4603 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4604 Result, Tmp1, Tmp2));
4605 Tmp1 = Result;
4606 Tmp2 = SDOperand();
4607 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004608 }
4609 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004610 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004611 LHS = Tmp1;
4612 RHS = Tmp2;
4613}
4614
Chris Lattner1401d152008-01-16 07:45:30 +00004615/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4616/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4617/// a load from the stack slot to DestVT, extending it if needed.
4618/// The resultant code need not be legal.
4619SDOperand SelectionDAGLegalize::EmitStackConvert(SDOperand SrcOp,
4620 MVT::ValueType SlotVT,
4621 MVT::ValueType DestVT) {
Chris Lattner35481892005-12-23 00:16:34 +00004622 // Create the stack frame object.
Chris Lattner1401d152008-01-16 07:45:30 +00004623 SDOperand FIPtr = DAG.CreateStackTemporary(SlotVT);
4624
4625 unsigned SrcSize = MVT::getSizeInBits(SrcOp.getValueType());
4626 unsigned SlotSize = MVT::getSizeInBits(SlotVT);
4627 unsigned DestSize = MVT::getSizeInBits(DestVT);
Chris Lattner35481892005-12-23 00:16:34 +00004628
Chris Lattner1401d152008-01-16 07:45:30 +00004629 // Emit a store to the stack slot. Use a truncstore if the input value is
4630 // later than DestVT.
4631 SDOperand Store;
4632 if (SrcSize > SlotSize)
4633 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr, NULL, 0,SlotVT);
4634 else {
4635 assert(SrcSize == SlotSize && "Invalid store");
4636 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr, NULL, 0);
4637 }
4638
Chris Lattner35481892005-12-23 00:16:34 +00004639 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00004640 if (SlotSize == DestSize)
4641 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
4642
4643 assert(SlotSize < DestSize && "Unknown extension!");
4644 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT);
Chris Lattner35481892005-12-23 00:16:34 +00004645}
4646
Chris Lattner4352cc92006-04-04 17:23:26 +00004647SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
4648 // Create a vector sized/aligned stack slot, store the value to element #0,
4649 // then load the whole vector back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004650 SDOperand StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Evan Cheng786225a2006-10-05 23:01:46 +00004651 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Evan Cheng8b2794a2006-10-13 21:14:26 +00004652 NULL, 0);
Evan Cheng466685d2006-10-09 20:57:25 +00004653 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr, NULL, 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00004654}
4655
4656
Chris Lattnerce872152006-03-19 06:31:19 +00004657/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004658/// support the operation, but do support the resultant vector type.
Chris Lattnerce872152006-03-19 06:31:19 +00004659SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
4660
4661 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004662 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004663 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004664 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00004665 SDOperand SplatValue = Node->getOperand(0);
Evan Cheng033e6812006-03-24 01:17:21 +00004666 std::map<SDOperand, std::vector<unsigned> > Values;
4667 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004668 bool isConstant = true;
4669 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4670 SplatValue.getOpcode() != ISD::UNDEF)
4671 isConstant = false;
4672
Evan Cheng033e6812006-03-24 01:17:21 +00004673 for (unsigned i = 1; i < NumElems; ++i) {
4674 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004675 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004676 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004677 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004678 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00004679 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004680
4681 // If this isn't a constant element or an undef, we can't use a constant
4682 // pool load.
4683 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4684 V.getOpcode() != ISD::UNDEF)
4685 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004686 }
4687
4688 if (isOnlyLowElement) {
4689 // If the low element is an undef too, then this whole things is an undef.
4690 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4691 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4692 // Otherwise, turn this into a scalar_to_vector node.
4693 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4694 Node->getOperand(0));
4695 }
4696
Chris Lattner2eb86532006-03-24 07:29:17 +00004697 // If all elements are constants, create a load from the constant pool.
4698 if (isConstant) {
4699 MVT::ValueType VT = Node->getValueType(0);
4700 const Type *OpNTy =
4701 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
4702 std::vector<Constant*> CV;
4703 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4704 if (ConstantFPSDNode *V =
4705 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dale Johannesenf04afdb2007-08-30 00:23:21 +00004706 CV.push_back(ConstantFP::get(OpNTy, V->getValueAPF()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004707 } else if (ConstantSDNode *V =
4708 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Reid Spencerb83eb642006-10-20 07:07:24 +00004709 CV.push_back(ConstantInt::get(OpNTy, V->getValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004710 } else {
4711 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
4712 CV.push_back(UndefValue::get(OpNTy));
4713 }
4714 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00004715 Constant *CP = ConstantVector::get(CV);
Chris Lattner2eb86532006-03-24 07:29:17 +00004716 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng466685d2006-10-09 20:57:25 +00004717 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004718 }
4719
Chris Lattner87100e02006-03-20 01:52:29 +00004720 if (SplatValue.Val) { // Splat of one value?
4721 // Build the shuffle constant vector: <0, 0, 0, 0>
4722 MVT::ValueType MaskVT =
Evan Cheng033e6812006-03-24 01:17:21 +00004723 MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman51eaa862007-06-14 22:58:02 +00004724 SDOperand Zero = DAG.getConstant(0, MVT::getVectorElementType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00004725 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004726 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4727 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00004728
4729 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004730 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00004731 // Get the splatted value into the low element of a vector register.
4732 SDOperand LowValVec =
4733 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
4734
4735 // Return shuffle(LowValVec, undef, <0,0,0,0>)
4736 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
4737 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
4738 SplatMask);
4739 }
4740 }
4741
Evan Cheng033e6812006-03-24 01:17:21 +00004742 // If there are only two unique elements, we may be able to turn this into a
4743 // vector shuffle.
4744 if (Values.size() == 2) {
4745 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
4746 MVT::ValueType MaskVT =
4747 MVT::getIntVectorWithNumElements(NumElems);
4748 std::vector<SDOperand> MaskVec(NumElems);
4749 unsigned i = 0;
4750 for (std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
4751 E = Values.end(); I != E; ++I) {
4752 for (std::vector<unsigned>::iterator II = I->second.begin(),
4753 EE = I->second.end(); II != EE; ++II)
Dan Gohman51eaa862007-06-14 22:58:02 +00004754 MaskVec[*II] = DAG.getConstant(i, MVT::getVectorElementType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00004755 i += NumElems;
4756 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004757 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4758 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00004759
4760 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004761 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
4762 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004763 SmallVector<SDOperand, 8> Ops;
Evan Cheng033e6812006-03-24 01:17:21 +00004764 for(std::map<SDOperand,std::vector<unsigned> >::iterator I=Values.begin(),
4765 E = Values.end(); I != E; ++I) {
4766 SDOperand Op = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4767 I->first);
4768 Ops.push_back(Op);
4769 }
4770 Ops.push_back(ShuffleMask);
4771
4772 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004773 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0),
4774 &Ops[0], Ops.size());
Evan Cheng033e6812006-03-24 01:17:21 +00004775 }
4776 }
Chris Lattnerce872152006-03-19 06:31:19 +00004777
4778 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
4779 // aligned object on the stack, store each element into it, then load
4780 // the result as a vector.
4781 MVT::ValueType VT = Node->getValueType(0);
4782 // Create the stack frame object.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004783 SDOperand FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00004784
4785 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004786 SmallVector<SDOperand, 8> Stores;
Chris Lattnerce872152006-03-19 06:31:19 +00004787 unsigned TypeByteSize =
4788 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
Chris Lattnerce872152006-03-19 06:31:19 +00004789 // Store (in the right endianness) the elements to memory.
4790 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
4791 // Ignore undef elements.
4792 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
4793
Chris Lattner841c8822006-03-22 01:46:54 +00004794 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00004795
4796 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
4797 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
4798
Evan Cheng786225a2006-10-05 23:01:46 +00004799 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00004800 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00004801 }
4802
4803 SDOperand StoreChain;
4804 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004805 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
4806 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00004807 else
4808 StoreChain = DAG.getEntryNode();
4809
4810 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00004811 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00004812}
4813
Chris Lattner5b359c62005-04-02 04:00:59 +00004814void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
4815 SDOperand Op, SDOperand Amt,
4816 SDOperand &Lo, SDOperand &Hi) {
4817 // Expand the subcomponents.
4818 SDOperand LHSL, LHSH;
4819 ExpandOp(Op, LHSL, LHSH);
4820
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004821 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00004822 MVT::ValueType VT = LHSL.getValueType();
4823 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00004824 Hi = Lo.getValue(1);
4825}
4826
4827
Chris Lattnere34b3962005-01-19 04:19:40 +00004828/// ExpandShift - Try to find a clever way to expand this shift operation out to
4829/// smaller elements. If we can't find a way that is more efficient than a
4830/// libcall on this target, return false. Otherwise, return true with the
4831/// low-parts expanded into Lo and Hi.
4832bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
4833 SDOperand &Lo, SDOperand &Hi) {
4834 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
4835 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004836
Chris Lattnere34b3962005-01-19 04:19:40 +00004837 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004838 SDOperand ShAmt = LegalizeOp(Amt);
4839 MVT::ValueType ShTy = ShAmt.getValueType();
4840 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
4841 unsigned NVTBits = MVT::getSizeInBits(NVT);
4842
Chris Lattner7a3c8552007-10-14 20:35:12 +00004843 // Handle the case when Amt is an immediate.
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004844 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
4845 unsigned Cst = CN->getValue();
4846 // Expand the incoming operand to be shifted, so that we have its parts
4847 SDOperand InL, InH;
4848 ExpandOp(Op, InL, InH);
4849 switch(Opc) {
4850 case ISD::SHL:
4851 if (Cst > VTBits) {
4852 Lo = DAG.getConstant(0, NVT);
4853 Hi = DAG.getConstant(0, NVT);
4854 } else if (Cst > NVTBits) {
4855 Lo = DAG.getConstant(0, NVT);
4856 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00004857 } else if (Cst == NVTBits) {
4858 Lo = DAG.getConstant(0, NVT);
4859 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004860 } else {
4861 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
4862 Hi = DAG.getNode(ISD::OR, NVT,
4863 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
4864 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
4865 }
4866 return true;
4867 case ISD::SRL:
4868 if (Cst > VTBits) {
4869 Lo = DAG.getConstant(0, NVT);
4870 Hi = DAG.getConstant(0, NVT);
4871 } else if (Cst > NVTBits) {
4872 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
4873 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00004874 } else if (Cst == NVTBits) {
4875 Lo = InH;
4876 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004877 } else {
4878 Lo = DAG.getNode(ISD::OR, NVT,
4879 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
4880 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
4881 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
4882 }
4883 return true;
4884 case ISD::SRA:
4885 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00004886 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004887 DAG.getConstant(NVTBits-1, ShTy));
4888 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00004889 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004890 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00004891 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004892 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00004893 } else if (Cst == NVTBits) {
4894 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00004895 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00004896 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004897 } else {
4898 Lo = DAG.getNode(ISD::OR, NVT,
4899 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
4900 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
4901 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
4902 }
4903 return true;
4904 }
4905 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00004906
4907 // Okay, the shift amount isn't constant. However, if we can tell that it is
4908 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
4909 uint64_t Mask = NVTBits, KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00004910 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00004911
4912 // If we know that the high bit of the shift amount is one, then we can do
4913 // this as a couple of simple shifts.
4914 if (KnownOne & Mask) {
4915 // Mask out the high bit, which we know is set.
4916 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
4917 DAG.getConstant(NVTBits-1, Amt.getValueType()));
4918
4919 // Expand the incoming operand to be shifted, so that we have its parts
4920 SDOperand InL, InH;
4921 ExpandOp(Op, InL, InH);
4922 switch(Opc) {
4923 case ISD::SHL:
4924 Lo = DAG.getConstant(0, NVT); // Low part is zero.
4925 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
4926 return true;
4927 case ISD::SRL:
4928 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
4929 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
4930 return true;
4931 case ISD::SRA:
4932 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
4933 DAG.getConstant(NVTBits-1, Amt.getValueType()));
4934 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
4935 return true;
4936 }
4937 }
4938
4939 // If we know that the high bit of the shift amount is zero, then we can do
4940 // this as a couple of simple shifts.
4941 if (KnownZero & Mask) {
4942 // Compute 32-amt.
4943 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
4944 DAG.getConstant(NVTBits, Amt.getValueType()),
4945 Amt);
4946
4947 // Expand the incoming operand to be shifted, so that we have its parts
4948 SDOperand InL, InH;
4949 ExpandOp(Op, InL, InH);
4950 switch(Opc) {
4951 case ISD::SHL:
4952 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
4953 Hi = DAG.getNode(ISD::OR, NVT,
4954 DAG.getNode(ISD::SHL, NVT, InH, Amt),
4955 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
4956 return true;
4957 case ISD::SRL:
4958 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
4959 Lo = DAG.getNode(ISD::OR, NVT,
4960 DAG.getNode(ISD::SRL, NVT, InL, Amt),
4961 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
4962 return true;
4963 case ISD::SRA:
4964 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
4965 Lo = DAG.getNode(ISD::OR, NVT,
4966 DAG.getNode(ISD::SRL, NVT, InL, Amt),
4967 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
4968 return true;
4969 }
4970 }
4971
Nate Begemanf1fe32e2005-04-06 21:13:14 +00004972 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00004973}
Chris Lattner77e77a62005-01-21 06:05:23 +00004974
Chris Lattner9c32d3b2005-01-23 04:42:50 +00004975
Chris Lattner77e77a62005-01-21 06:05:23 +00004976// ExpandLibCall - Expand a node into a call to a libcall. If the result value
4977// does not fit into a register, return the lo part and set the hi part to the
4978// by-reg argument. If it does fit into a single register, return the result
4979// and leave the Hi part unset.
4980SDOperand SelectionDAGLegalize::ExpandLibCall(const char *Name, SDNode *Node,
Reid Spencer47857812006-12-31 05:55:36 +00004981 bool isSigned, SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00004982 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
4983 // The input chain to this libcall is the entry node of the function.
4984 // Legalizing the call will automatically add the previous call to the
4985 // dependence.
4986 SDOperand InChain = DAG.getEntryNode();
4987
Chris Lattner77e77a62005-01-21 06:05:23 +00004988 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00004989 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00004990 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
4991 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
4992 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
Reid Spencer47857812006-12-31 05:55:36 +00004993 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00004994 Entry.isSExt = isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00004995 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00004996 }
4997 SDOperand Callee = DAG.getExternalSymbol(Name, TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00004998
Chris Lattner0d67f0c2005-05-11 19:02:11 +00004999 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00005000 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005001 std::pair<SDOperand,SDOperand> CallInfo =
Reid Spencer47857812006-12-31 05:55:36 +00005002 TLI.LowerCallTo(InChain, RetTy, isSigned, false, CallingConv::C, false,
Chris Lattneradf6a962005-05-13 18:50:42 +00005003 Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005004
Chris Lattner6831a812006-02-13 09:18:02 +00005005 // Legalize the call sequence, starting with the chain. This will advance
5006 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5007 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5008 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00005009 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005010 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005011 default: assert(0 && "Unknown thing");
5012 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005013 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005014 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005015 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005016 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005017 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005018 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005019 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005020}
5021
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005022
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005023/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5024///
Chris Lattner77e77a62005-01-21 06:05:23 +00005025SDOperand SelectionDAGLegalize::
5026ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005027 assert(getTypeAction(Source.getValueType()) == Expand &&
5028 "This is not an expansion!");
5029 assert(Source.getValueType() == MVT::i64 && "Only handle expand from i64!");
5030
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005031 if (!isSigned) {
Chris Lattnere9c35e72005-04-13 05:09:42 +00005032 assert(Source.getValueType() == MVT::i64 &&
5033 "This only works for 64-bit -> FP");
5034 // The 64-bit value loaded will be incorrectly if the 'sign bit' of the
5035 // incoming integer is set. To handle this, we dynamically test to see if
5036 // it is set, and, if so, add a fudge factor.
5037 SDOperand Lo, Hi;
5038 ExpandOp(Source, Lo, Hi);
5039
Chris Lattner66de05b2005-05-13 04:45:13 +00005040 // If this is unsigned, and not supported, first perform the conversion to
5041 // signed, then adjust the result if the sign bit is set.
5042 SDOperand SignedConv = ExpandIntToFP(true, DestTy,
5043 DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), Lo, Hi));
5044
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005045 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Hi,
5046 DAG.getConstant(0, Hi.getValueType()),
5047 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005048 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005049 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5050 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005051 uint64_t FF = 0x5f800000ULL;
5052 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005053 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005054
Chris Lattner5839bf22005-08-26 17:15:30 +00005055 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00005056 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5057 SDOperand FudgeInReg;
5058 if (DestTy == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00005059 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005060 else if (MVT::getSizeInBits(DestTy) > MVT::getSizeInBits(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005061 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005062 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005063 CPIdx, NULL, 0, MVT::f32);
5064 else
5065 assert(0 && "Unexpected conversion");
5066
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005067 MVT::ValueType SCVT = SignedConv.getValueType();
5068 if (SCVT != DestTy) {
5069 // Destination type needs to be expanded as well. The FADD now we are
5070 // constructing will be expanded into a libcall.
5071 if (MVT::getSizeInBits(SCVT) != MVT::getSizeInBits(DestTy)) {
5072 assert(SCVT == MVT::i32 && DestTy == MVT::f64);
5073 SignedConv = DAG.getNode(ISD::BUILD_PAIR, MVT::i64,
5074 SignedConv, SignedConv.getValue(1));
5075 }
5076 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5077 }
Chris Lattner473a9902005-09-29 06:44:39 +00005078 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005079 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005080
Chris Lattnera88a2602005-05-14 05:33:54 +00005081 // Check to see if the target has a custom way to lower this. If so, use it.
5082 switch (TLI.getOperationAction(ISD::SINT_TO_FP, Source.getValueType())) {
5083 default: assert(0 && "This action not implemented for this operation!");
5084 case TargetLowering::Legal:
5085 case TargetLowering::Expand:
5086 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005087 case TargetLowering::Custom: {
5088 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
5089 Source), DAG);
5090 if (NV.Val)
5091 return LegalizeOp(NV);
5092 break; // The target decided this was legal after all
5093 }
Chris Lattnera88a2602005-05-14 05:33:54 +00005094 }
5095
Chris Lattner13689e22005-05-12 07:00:44 +00005096 // Expand the source, then glue it back together for the call. We must expand
5097 // the source in case it is shared (this pass of legalize must traverse it).
5098 SDOperand SrcLo, SrcHi;
5099 ExpandOp(Source, SrcLo, SrcHi);
5100 Source = DAG.getNode(ISD::BUILD_PAIR, Source.getValueType(), SrcLo, SrcHi);
5101
Evan Cheng56966222007-01-12 02:11:51 +00005102 RTLIB::Libcall LC;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005103 if (DestTy == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005104 LC = RTLIB::SINTTOFP_I64_F32;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005105 else {
5106 assert(DestTy == MVT::f64 && "Unknown fp value type!");
Evan Cheng56966222007-01-12 02:11:51 +00005107 LC = RTLIB::SINTTOFP_I64_F64;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005108 }
Chris Lattner6831a812006-02-13 09:18:02 +00005109
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005110 assert(TLI.getLibcallName(LC) && "Don't know how to expand this SINT_TO_FP!");
Chris Lattner6831a812006-02-13 09:18:02 +00005111 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
5112 SDOperand UnusedHiPart;
Evan Cheng56966222007-01-12 02:11:51 +00005113 return ExpandLibCall(TLI.getLibcallName(LC), Source.Val, isSigned,
5114 UnusedHiPart);
Chris Lattner77e77a62005-01-21 06:05:23 +00005115}
Misha Brukmanedf128a2005-04-21 22:36:52 +00005116
Chris Lattner22cde6a2006-01-28 08:25:58 +00005117/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5118/// INT_TO_FP operation of the specified operand when the target requests that
5119/// we expand it. At this point, we know that the result and operand types are
5120/// legal for the target.
5121SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5122 SDOperand Op0,
5123 MVT::ValueType DestVT) {
5124 if (Op0.getValueType() == MVT::i32) {
5125 // simple 32-bit [signed|unsigned] integer to float/double expansion
5126
Chris Lattner23594d42008-01-16 07:03:22 +00005127 // Get the stack frame index of a 8 byte buffer.
5128 SDOperand StackSlot = DAG.CreateStackTemporary(MVT::f64);
5129
Chris Lattner22cde6a2006-01-28 08:25:58 +00005130 // word offset constant for Hi/Lo address computation
5131 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
5132 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00005133 SDOperand Hi = StackSlot;
5134 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
5135 if (TLI.isLittleEndian())
5136 std::swap(Hi, Lo);
5137
Chris Lattner22cde6a2006-01-28 08:25:58 +00005138 // if signed map to unsigned space
5139 SDOperand Op0Mapped;
5140 if (isSigned) {
5141 // constant used to invert sign bit (signed to unsigned mapping)
5142 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
5143 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5144 } else {
5145 Op0Mapped = Op0;
5146 }
5147 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00005148 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005149 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005150 // initial hi portion of constructed double
5151 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
5152 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00005153 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005154 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00005155 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005156 // FP constant to bias correct the final result
5157 SDOperand Bias = DAG.getConstantFP(isSigned ?
5158 BitsToDouble(0x4330000080000000ULL)
5159 : BitsToDouble(0x4330000000000000ULL),
5160 MVT::f64);
5161 // subtract the bias
5162 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
5163 // final result
5164 SDOperand Result;
5165 // handle final rounding
5166 if (DestVT == MVT::f64) {
5167 // do nothing
5168 Result = Sub;
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005169 } else if (MVT::getSizeInBits(DestVT) < MVT::getSizeInBits(MVT::f64)) {
Chris Lattner0bd48932008-01-17 07:00:52 +00005170 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5171 DAG.getIntPtrConstant(0));
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005172 } else if (MVT::getSizeInBits(DestVT) > MVT::getSizeInBits(MVT::f64)) {
5173 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005174 }
5175 return Result;
5176 }
5177 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
5178 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
5179
5180 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultTy(), Op0,
5181 DAG.getConstant(0, Op0.getValueType()),
5182 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005183 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005184 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5185 SignSet, Four, Zero);
5186
5187 // If the sign bit of the integer is set, the large number will be treated
5188 // as a negative number. To counteract this, the dynamic code adds an
5189 // offset depending on the data type.
5190 uint64_t FF;
5191 switch (Op0.getValueType()) {
5192 default: assert(0 && "Unsupported integer type!");
5193 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5194 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5195 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5196 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5197 }
5198 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005199 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005200
5201 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
5202 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5203 SDOperand FudgeInReg;
5204 if (DestVT == MVT::f32)
Evan Cheng466685d2006-10-09 20:57:25 +00005205 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005206 else {
Dale Johannesen73328d12007-09-19 23:55:34 +00005207 FudgeInReg = LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005208 DAG.getEntryNode(), CPIdx,
Evan Cheng466685d2006-10-09 20:57:25 +00005209 NULL, 0, MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00005210 }
5211
5212 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5213}
5214
5215/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5216/// *INT_TO_FP operation of the specified operand when the target requests that
5217/// we promote it. At this point, we know that the result and operand types are
5218/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5219/// operation that takes a larger input.
5220SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
5221 MVT::ValueType DestVT,
5222 bool isSigned) {
5223 // First step, figure out the appropriate *INT_TO_FP operation to use.
5224 MVT::ValueType NewInTy = LegalOp.getValueType();
5225
5226 unsigned OpToUse = 0;
5227
5228 // Scan for the appropriate larger type to use.
5229 while (1) {
5230 NewInTy = (MVT::ValueType)(NewInTy+1);
5231 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
5232
5233 // If the target supports SINT_TO_FP of this type, use it.
5234 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5235 default: break;
5236 case TargetLowering::Legal:
5237 if (!TLI.isTypeLegal(NewInTy))
5238 break; // Can't use this datatype.
5239 // FALL THROUGH.
5240 case TargetLowering::Custom:
5241 OpToUse = ISD::SINT_TO_FP;
5242 break;
5243 }
5244 if (OpToUse) break;
5245 if (isSigned) continue;
5246
5247 // If the target supports UINT_TO_FP of this type, use it.
5248 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5249 default: break;
5250 case TargetLowering::Legal:
5251 if (!TLI.isTypeLegal(NewInTy))
5252 break; // Can't use this datatype.
5253 // FALL THROUGH.
5254 case TargetLowering::Custom:
5255 OpToUse = ISD::UINT_TO_FP;
5256 break;
5257 }
5258 if (OpToUse) break;
5259
5260 // Otherwise, try a larger type.
5261 }
5262
5263 // Okay, we found the operation and type to use. Zero extend our input to the
5264 // desired type then run the operation on it.
5265 return DAG.getNode(OpToUse, DestVT,
5266 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5267 NewInTy, LegalOp));
5268}
5269
5270/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5271/// FP_TO_*INT operation of the specified operand when the target requests that
5272/// we promote it. At this point, we know that the result and operand types are
5273/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5274/// operation that returns a larger result.
5275SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
5276 MVT::ValueType DestVT,
5277 bool isSigned) {
5278 // First step, figure out the appropriate FP_TO*INT operation to use.
5279 MVT::ValueType NewOutTy = DestVT;
5280
5281 unsigned OpToUse = 0;
5282
5283 // Scan for the appropriate larger type to use.
5284 while (1) {
5285 NewOutTy = (MVT::ValueType)(NewOutTy+1);
5286 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
5287
5288 // If the target supports FP_TO_SINT returning this type, use it.
5289 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5290 default: break;
5291 case TargetLowering::Legal:
5292 if (!TLI.isTypeLegal(NewOutTy))
5293 break; // Can't use this datatype.
5294 // FALL THROUGH.
5295 case TargetLowering::Custom:
5296 OpToUse = ISD::FP_TO_SINT;
5297 break;
5298 }
5299 if (OpToUse) break;
5300
5301 // If the target supports FP_TO_UINT of this type, use it.
5302 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5303 default: break;
5304 case TargetLowering::Legal:
5305 if (!TLI.isTypeLegal(NewOutTy))
5306 break; // Can't use this datatype.
5307 // FALL THROUGH.
5308 case TargetLowering::Custom:
5309 OpToUse = ISD::FP_TO_UINT;
5310 break;
5311 }
5312 if (OpToUse) break;
5313
5314 // Otherwise, try a larger type.
5315 }
5316
Chris Lattner27a6c732007-11-24 07:07:01 +00005317
5318 // Okay, we found the operation and type to use.
5319 SDOperand Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
5320
5321 // If the operation produces an invalid type, it must be custom lowered. Use
5322 // the target lowering hooks to expand it. Just keep the low part of the
5323 // expanded operation, we know that we're truncating anyway.
5324 if (getTypeAction(NewOutTy) == Expand) {
5325 Operation = SDOperand(TLI.ExpandOperationResult(Operation.Val, DAG), 0);
5326 assert(Operation.Val && "Didn't return anything");
5327 }
5328
5329 // Truncate the result of the extended FP_TO_*INT operation to the desired
5330 // size.
5331 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005332}
5333
5334/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5335///
5336SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
5337 MVT::ValueType VT = Op.getValueType();
5338 MVT::ValueType SHVT = TLI.getShiftAmountTy();
5339 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
5340 switch (VT) {
5341 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5342 case MVT::i16:
5343 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5344 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5345 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5346 case MVT::i32:
5347 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5348 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5349 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5350 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5351 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5352 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5353 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5354 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5355 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5356 case MVT::i64:
5357 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5358 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5359 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5360 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5361 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5362 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5363 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5364 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5365 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5366 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5367 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5368 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5369 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5370 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5371 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5372 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5373 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5374 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5375 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5376 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5377 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5378 }
5379}
5380
5381/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5382///
5383SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
5384 switch (Opc) {
5385 default: assert(0 && "Cannot expand this yet!");
5386 case ISD::CTPOP: {
5387 static const uint64_t mask[6] = {
5388 0x5555555555555555ULL, 0x3333333333333333ULL,
5389 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5390 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5391 };
5392 MVT::ValueType VT = Op.getValueType();
5393 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00005394 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005395 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5396 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
5397 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
5398 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5399 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5400 DAG.getNode(ISD::AND, VT,
5401 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5402 }
5403 return Op;
5404 }
5405 case ISD::CTLZ: {
5406 // for now, we do this:
5407 // x = x | (x >> 1);
5408 // x = x | (x >> 2);
5409 // ...
5410 // x = x | (x >>16);
5411 // x = x | (x >>32); // for 64-bit input
5412 // return popcount(~x);
5413 //
5414 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
5415 MVT::ValueType VT = Op.getValueType();
5416 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00005417 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005418 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5419 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5420 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5421 }
5422 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5423 return DAG.getNode(ISD::CTPOP, VT, Op);
5424 }
5425 case ISD::CTTZ: {
5426 // for now, we use: { return popcount(~x & (x - 1)); }
5427 // unless the target has ctlz but not ctpop, in which case we use:
5428 // { return 32 - nlz(~x & (x-1)); }
5429 // see also http://www.hackersdelight.org/HDcode/ntz.cc
5430 MVT::ValueType VT = Op.getValueType();
5431 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
5432 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
5433 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5434 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5435 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5436 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5437 TLI.isOperationLegal(ISD::CTLZ, VT))
5438 return DAG.getNode(ISD::SUB, VT,
Dan Gohmanb55757e2007-05-18 17:52:13 +00005439 DAG.getConstant(MVT::getSizeInBits(VT), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005440 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5441 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5442 }
5443 }
5444}
Chris Lattnere34b3962005-01-19 04:19:40 +00005445
Chris Lattner3e928bb2005-01-07 07:47:09 +00005446/// ExpandOp - Expand the specified SDOperand into its two component pieces
5447/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5448/// LegalizeNodes map is filled in for any results that are not expanded, the
5449/// ExpandedNodes map is filled in for any results that are expanded, and the
5450/// Lo/Hi values are returned.
5451void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
5452 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00005453 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005454 SDNode *Node = Op.Val;
5455 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005456 assert(((MVT::isInteger(NVT) && NVT < VT) || MVT::isFloatingPoint(VT) ||
Dan Gohman7f321562007-06-25 16:23:39 +00005457 MVT::isVector(VT)) &&
Chris Lattner3e928bb2005-01-07 07:47:09 +00005458 "Cannot expand to FP value or to larger int value!");
5459
Chris Lattner6fdcb252005-09-02 20:32:45 +00005460 // See if we already expanded it.
Chris Lattner40030bf2007-02-04 01:17:38 +00005461 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00005462 = ExpandedNodes.find(Op);
5463 if (I != ExpandedNodes.end()) {
5464 Lo = I->second.first;
5465 Hi = I->second.second;
5466 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005467 }
5468
Chris Lattner3e928bb2005-01-07 07:47:09 +00005469 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005470 case ISD::CopyFromReg:
5471 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005472 case ISD::FP_ROUND_INREG:
5473 if (VT == MVT::ppcf128 &&
5474 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5475 TargetLowering::Custom) {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005476 SDOperand SrcLo, SrcHi, Src;
5477 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5478 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
5479 SDOperand Result = TLI.LowerOperation(
5480 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005481 assert(Result.Val->getOpcode() == ISD::BUILD_PAIR);
5482 Lo = Result.Val->getOperand(0);
5483 Hi = Result.Val->getOperand(1);
5484 break;
5485 }
5486 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00005487 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005488#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005489 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005490#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00005491 assert(0 && "Do not know how to expand this operator!");
5492 abort();
Dale Johannesen25f1d082007-10-31 00:32:36 +00005493 case ISD::EXTRACT_VECTOR_ELT:
5494 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5495 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5496 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5497 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005498 case ISD::UNDEF:
Evan Chengaa975c12006-12-16 02:20:50 +00005499 NVT = TLI.getTypeToExpandTo(VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005500 Lo = DAG.getNode(ISD::UNDEF, NVT);
5501 Hi = DAG.getNode(ISD::UNDEF, NVT);
5502 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005503 case ISD::Constant: {
5504 uint64_t Cst = cast<ConstantSDNode>(Node)->getValue();
5505 Lo = DAG.getConstant(Cst, NVT);
5506 Hi = DAG.getConstant(Cst >> MVT::getSizeInBits(NVT), NVT);
5507 break;
5508 }
Evan Cheng00495212006-12-12 21:32:44 +00005509 case ISD::ConstantFP: {
5510 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00005511 if (CFP->getValueType(0) == MVT::ppcf128) {
5512 APInt api = CFP->getValueAPF().convertToAPInt();
5513 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5514 MVT::f64);
5515 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5516 MVT::f64);
5517 break;
5518 }
Evan Cheng279101e2006-12-12 22:19:28 +00005519 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005520 if (getTypeAction(Lo.getValueType()) == Expand)
5521 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005522 break;
5523 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005524 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005525 // Return the operands.
5526 Lo = Node->getOperand(0);
5527 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005528 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005529
5530 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00005531 if (Node->getNumValues() == 1) {
5532 ExpandOp(Op.getOperand(0), Lo, Hi);
5533 break;
5534 }
Chris Lattner27a6c732007-11-24 07:07:01 +00005535 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
5536 assert(Op.ResNo == 0 && Node->getNumValues() == 2 &&
5537 Op.getValue(1).getValueType() == MVT::Other &&
5538 "unhandled MERGE_VALUES");
5539 ExpandOp(Op.getOperand(0), Lo, Hi);
5540 // Remember that we legalized the chain.
5541 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5542 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005543
5544 case ISD::SIGN_EXTEND_INREG:
5545 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005546 // sext_inreg the low part if needed.
5547 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5548
5549 // The high part gets the sign extension from the lo-part. This handles
5550 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005551 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5552 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
5553 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005554 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005555
Nate Begemand88fc032006-01-14 03:14:10 +00005556 case ISD::BSWAP: {
5557 ExpandOp(Node->getOperand(0), Lo, Hi);
5558 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
5559 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5560 Lo = TempLo;
5561 break;
5562 }
5563
Chris Lattneredb1add2005-05-11 04:51:16 +00005564 case ISD::CTPOP:
5565 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005566 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5567 DAG.getNode(ISD::CTPOP, NVT, Lo),
5568 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005569 Hi = DAG.getConstant(0, NVT);
5570 break;
5571
Chris Lattner39a8f332005-05-12 19:05:01 +00005572 case ISD::CTLZ: {
5573 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005574 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005575 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5576 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005577 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), HLZ, BitsC,
5578 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005579 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
5580 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5581
5582 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5583 Hi = DAG.getConstant(0, NVT);
5584 break;
5585 }
5586
5587 case ISD::CTTZ: {
5588 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005589 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005590 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5591 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005592 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultTy(), LTZ, BitsC,
5593 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005594 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
5595 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5596
5597 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5598 Hi = DAG.getConstant(0, NVT);
5599 break;
5600 }
Chris Lattneredb1add2005-05-11 04:51:16 +00005601
Nate Begemanacc398c2006-01-25 18:21:52 +00005602 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005603 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5604 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00005605 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5606 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5607
5608 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005609 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00005610 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
5611 if (!TLI.isLittleEndian())
5612 std::swap(Lo, Hi);
5613 break;
5614 }
5615
Chris Lattner3e928bb2005-01-07 07:47:09 +00005616 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00005617 LoadSDNode *LD = cast<LoadSDNode>(Node);
5618 SDOperand Ch = LD->getChain(); // Legalize the chain.
5619 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
5620 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005621 int SVOffset = LD->getSrcValueOffset();
5622 unsigned Alignment = LD->getAlignment();
5623 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005624
Evan Cheng466685d2006-10-09 20:57:25 +00005625 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005626 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5627 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00005628 if (VT == MVT::f32 || VT == MVT::f64) {
5629 // f32->i32 or f64->i64 one to one expansion.
5630 // Remember that we legalized the chain.
5631 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00005632 // Recursively expand the new load.
5633 if (getTypeAction(NVT) == Expand)
5634 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005635 break;
5636 }
Chris Lattnerec39a452005-01-19 18:02:17 +00005637
Evan Cheng466685d2006-10-09 20:57:25 +00005638 // Increment the pointer to the other half.
5639 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
5640 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00005641 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00005642 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00005643 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005644 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5645 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00005646
Evan Cheng466685d2006-10-09 20:57:25 +00005647 // Build a factor node to remember that this load is independent of the
5648 // other one.
5649 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5650 Hi.getValue(1));
5651
5652 // Remember that we legalized the chain.
5653 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
5654 if (!TLI.isLittleEndian())
5655 std::swap(Lo, Hi);
5656 } else {
Evan Cheng2e49f092006-10-11 07:10:22 +00005657 MVT::ValueType EVT = LD->getLoadedVT();
Evan Cheng548f6112006-12-13 03:19:57 +00005658
Dale Johannesenb6210fc2007-10-19 20:29:00 +00005659 if ((VT == MVT::f64 && EVT == MVT::f32) ||
5660 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00005661 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
5662 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005663 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00005664 // Remember that we legalized the chain.
5665 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
5666 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
5667 break;
5668 }
Evan Cheng466685d2006-10-09 20:57:25 +00005669
5670 if (EVT == NVT)
5671 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005672 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005673 else
5674 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005675 SVOffset, EVT, isVolatile,
5676 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005677
5678 // Remember that we legalized the chain.
5679 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
5680
5681 if (ExtType == ISD::SEXTLOAD) {
5682 // The high part is obtained by SRA'ing all but one of the bits of the
5683 // lo part.
5684 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
5685 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5686 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
5687 } else if (ExtType == ISD::ZEXTLOAD) {
5688 // The high part is just a zero.
5689 Hi = DAG.getConstant(0, NVT);
5690 } else /* if (ExtType == ISD::EXTLOAD) */ {
5691 // The high part is undefined.
5692 Hi = DAG.getNode(ISD::UNDEF, NVT);
5693 }
5694 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005695 break;
5696 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005697 case ISD::AND:
5698 case ISD::OR:
5699 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
5700 SDOperand LL, LH, RL, RH;
5701 ExpandOp(Node->getOperand(0), LL, LH);
5702 ExpandOp(Node->getOperand(1), RL, RH);
5703 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
5704 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
5705 break;
5706 }
5707 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00005708 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005709 ExpandOp(Node->getOperand(1), LL, LH);
5710 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00005711 if (getTypeAction(NVT) == Expand)
5712 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00005713 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00005714 if (VT != MVT::f32)
5715 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005716 break;
5717 }
Nate Begeman9373a812005-08-10 20:51:12 +00005718 case ISD::SELECT_CC: {
5719 SDOperand TL, TH, FL, FH;
5720 ExpandOp(Node->getOperand(2), TL, TH);
5721 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00005722 if (getTypeAction(NVT) == Expand)
5723 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00005724 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5725 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00005726 if (VT != MVT::f32)
5727 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5728 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00005729 break;
5730 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00005731 case ISD::ANY_EXTEND:
5732 // The low part is any extension of the input (which degenerates to a copy).
5733 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
5734 // The high part is undefined.
5735 Hi = DAG.getNode(ISD::UNDEF, NVT);
5736 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005737 case ISD::SIGN_EXTEND: {
5738 // The low part is just a sign extension of the input (which degenerates to
5739 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00005740 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005741
Chris Lattner3e928bb2005-01-07 07:47:09 +00005742 // The high part is obtained by SRA'ing all but one of the bits of the lo
5743 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00005744 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner8137c9e2006-01-28 05:07:51 +00005745 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5746 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00005747 break;
5748 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00005749 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00005750 // The low part is just a zero extension of the input (which degenerates to
5751 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00005752 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005753
Chris Lattner3e928bb2005-01-07 07:47:09 +00005754 // The high part is just a zero.
5755 Hi = DAG.getConstant(0, NVT);
5756 break;
Chris Lattner35481892005-12-23 00:16:34 +00005757
Chris Lattner4c948eb2007-02-13 23:55:16 +00005758 case ISD::TRUNCATE: {
5759 // The input value must be larger than this value. Expand *it*.
5760 SDOperand NewLo;
5761 ExpandOp(Node->getOperand(0), NewLo, Hi);
5762
5763 // The low part is now either the right size, or it is closer. If not the
5764 // right size, make an illegal truncate so we recursively expand it.
5765 if (NewLo.getValueType() != Node->getValueType(0))
5766 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
5767 ExpandOp(NewLo, Lo, Hi);
5768 break;
5769 }
5770
Chris Lattner35481892005-12-23 00:16:34 +00005771 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005772 SDOperand Tmp;
5773 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
5774 // If the target wants to, allow it to lower this itself.
5775 switch (getTypeAction(Node->getOperand(0).getValueType())) {
5776 case Expand: assert(0 && "cannot expand FP!");
5777 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
5778 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
5779 }
5780 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
5781 }
5782
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005783 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00005784 if (VT == MVT::f32 || VT == MVT::f64) {
5785 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00005786 if (getTypeAction(NVT) == Expand)
5787 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00005788 break;
5789 }
5790
5791 // If source operand will be expanded to the same type as VT, i.e.
5792 // i64 <- f64, i32 <- f32, expand the source operand instead.
5793 MVT::ValueType VT0 = Node->getOperand(0).getValueType();
5794 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
5795 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005796 break;
5797 }
5798
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005799 // Turn this into a load/store pair by default.
5800 if (Tmp.Val == 0)
Chris Lattner1401d152008-01-16 07:45:30 +00005801 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00005802
Chris Lattner35481892005-12-23 00:16:34 +00005803 ExpandOp(Tmp, Lo, Hi);
5804 break;
5805 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00005806
Chris Lattner27a6c732007-11-24 07:07:01 +00005807 case ISD::READCYCLECOUNTER: {
Chris Lattner308575b2005-11-20 22:56:56 +00005808 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
5809 TargetLowering::Custom &&
5810 "Must custom expand ReadCycleCounter");
Chris Lattner27a6c732007-11-24 07:07:01 +00005811 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
5812 assert(Tmp.Val && "Node must be custom expanded!");
5813 ExpandOp(Tmp.getValue(0), Lo, Hi);
Chris Lattner308575b2005-11-20 22:56:56 +00005814 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00005815 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00005816 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005817 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00005818
Chris Lattner4e6c7462005-01-08 19:27:05 +00005819 // These operators cannot be expanded directly, emit them as calls to
5820 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00005821 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00005822 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00005823 SDOperand Op;
5824 switch (getTypeAction(Node->getOperand(0).getValueType())) {
5825 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00005826 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
5827 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00005828 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005829
Chris Lattnerf20d1832005-07-30 01:40:57 +00005830 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
5831
Chris Lattner80a3e942005-07-29 00:33:32 +00005832 // Now that the custom expander is done, expand the result, which is still
5833 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00005834 if (Op.Val) {
5835 ExpandOp(Op, Lo, Hi);
5836 break;
5837 }
Chris Lattner80a3e942005-07-29 00:33:32 +00005838 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005839
Dale Johannesen161e8972007-10-05 20:04:43 +00005840 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattner4e6c7462005-01-08 19:27:05 +00005841 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005842 LC = RTLIB::FPTOSINT_F32_I64;
Dale Johannesen73328d12007-09-19 23:55:34 +00005843 else if (Node->getOperand(0).getValueType() == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00005844 LC = RTLIB::FPTOSINT_F64_I64;
Dale Johannesen161e8972007-10-05 20:04:43 +00005845 else if (Node->getOperand(0).getValueType() == MVT::f80)
5846 LC = RTLIB::FPTOSINT_F80_I64;
5847 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
5848 LC = RTLIB::FPTOSINT_PPCF128_I64;
Evan Cheng56966222007-01-12 02:11:51 +00005849 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
5850 false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00005851 break;
Evan Cheng56966222007-01-12 02:11:51 +00005852 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005853
Evan Cheng56966222007-01-12 02:11:51 +00005854 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00005855 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005856 SDOperand Op;
5857 switch (getTypeAction(Node->getOperand(0).getValueType())) {
5858 case Expand: assert(0 && "cannot expand FP!");
5859 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
5860 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
5861 }
5862
5863 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
5864
5865 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00005866 if (Op.Val) {
5867 ExpandOp(Op, Lo, Hi);
5868 break;
5869 }
Chris Lattner80a3e942005-07-29 00:33:32 +00005870 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00005871
Evan Chengdaccea182007-10-05 01:09:32 +00005872 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattner4e6c7462005-01-08 19:27:05 +00005873 if (Node->getOperand(0).getValueType() == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00005874 LC = RTLIB::FPTOUINT_F32_I64;
Dale Johannesen72292f02007-09-28 18:44:17 +00005875 else if (Node->getOperand(0).getValueType() == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00005876 LC = RTLIB::FPTOUINT_F64_I64;
Dale Johannesen161e8972007-10-05 20:04:43 +00005877 else if (Node->getOperand(0).getValueType() == MVT::f80)
5878 LC = RTLIB::FPTOUINT_F80_I64;
5879 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
5880 LC = RTLIB::FPTOUINT_PPCF128_I64;
Evan Cheng56966222007-01-12 02:11:51 +00005881 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node,
5882 false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00005883 break;
Evan Cheng56966222007-01-12 02:11:51 +00005884 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00005885
Evan Cheng05a2d562006-01-09 18:31:59 +00005886 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00005887 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00005888 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00005889 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005890 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00005891 Op = TLI.LowerOperation(Op, DAG);
5892 if (Op.Val) {
5893 // Now that the custom expander is done, expand the result, which is
5894 // still VT.
5895 ExpandOp(Op, Lo, Hi);
5896 break;
5897 }
5898 }
5899
Chris Lattner79980b02006-09-13 03:50:39 +00005900 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
5901 // this X << 1 as X+X.
5902 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
5903 if (ShAmt->getValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
5904 TLI.isOperationLegal(ISD::ADDE, NVT)) {
5905 SDOperand LoOps[2], HiOps[3];
5906 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
5907 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
5908 LoOps[1] = LoOps[0];
5909 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
5910
5911 HiOps[1] = HiOps[0];
5912 HiOps[2] = Lo.getValue(1);
5913 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
5914 break;
5915 }
5916 }
5917
Chris Lattnere34b3962005-01-19 04:19:40 +00005918 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00005919 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00005920 break;
Chris Lattner47599822005-04-02 03:38:53 +00005921
5922 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00005923 TargetLowering::LegalizeAction Action =
5924 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
5925 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
5926 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005927 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00005928 break;
5929 }
5930
Chris Lattnere34b3962005-01-19 04:19:40 +00005931 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005932 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SHL_I64), Node,
5933 false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00005934 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00005935 }
Chris Lattnere34b3962005-01-19 04:19:40 +00005936
Evan Cheng05a2d562006-01-09 18:31:59 +00005937 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00005938 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00005939 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00005940 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005941 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00005942 Op = TLI.LowerOperation(Op, DAG);
5943 if (Op.Val) {
5944 // Now that the custom expander is done, expand the result, which is
5945 // still VT.
5946 ExpandOp(Op, Lo, Hi);
5947 break;
5948 }
5949 }
5950
Chris Lattnere34b3962005-01-19 04:19:40 +00005951 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00005952 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00005953 break;
Chris Lattner47599822005-04-02 03:38:53 +00005954
5955 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00005956 TargetLowering::LegalizeAction Action =
5957 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
5958 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
5959 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005960 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00005961 break;
5962 }
5963
Chris Lattnere34b3962005-01-19 04:19:40 +00005964 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005965 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRA_I64), Node,
5966 true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00005967 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00005968 }
5969
5970 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00005971 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00005972 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00005973 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005974 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00005975 Op = TLI.LowerOperation(Op, DAG);
5976 if (Op.Val) {
5977 // Now that the custom expander is done, expand the result, which is
5978 // still VT.
5979 ExpandOp(Op, Lo, Hi);
5980 break;
5981 }
5982 }
5983
Chris Lattnere34b3962005-01-19 04:19:40 +00005984 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00005985 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00005986 break;
Chris Lattner47599822005-04-02 03:38:53 +00005987
5988 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00005989 TargetLowering::LegalizeAction Action =
5990 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
5991 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
5992 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005993 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00005994 break;
5995 }
5996
Chris Lattnere34b3962005-01-19 04:19:40 +00005997 // Otherwise, emit a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00005998 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SRL_I64), Node,
5999 false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006000 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006001 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006002
Misha Brukmanedf128a2005-04-21 22:36:52 +00006003 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006004 case ISD::SUB: {
6005 // If the target wants to custom expand this, let them.
6006 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6007 TargetLowering::Custom) {
6008 Op = TLI.LowerOperation(Op, DAG);
6009 if (Op.Val) {
6010 ExpandOp(Op, Lo, Hi);
6011 break;
6012 }
6013 }
6014
6015 // Expand the subcomponents.
6016 SDOperand LHSL, LHSH, RHSL, RHSH;
6017 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6018 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00006019 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6020 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006021 LoOps[0] = LHSL;
6022 LoOps[1] = RHSL;
6023 HiOps[0] = LHSH;
6024 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006025 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00006026 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006027 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006028 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006029 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00006030 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006031 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006032 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006033 }
Chris Lattner84f67882005-01-20 18:52:28 +00006034 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006035 }
Chris Lattnerb429f732007-05-17 18:15:41 +00006036
6037 case ISD::ADDC:
6038 case ISD::SUBC: {
6039 // Expand the subcomponents.
6040 SDOperand LHSL, LHSH, RHSL, RHSH;
6041 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6042 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6043 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6044 SDOperand LoOps[2] = { LHSL, RHSL };
6045 SDOperand HiOps[3] = { LHSH, RHSH };
6046
6047 if (Node->getOpcode() == ISD::ADDC) {
6048 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6049 HiOps[2] = Lo.getValue(1);
6050 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6051 } else {
6052 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6053 HiOps[2] = Lo.getValue(1);
6054 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6055 }
6056 // Remember that we legalized the flag.
6057 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6058 break;
6059 }
6060 case ISD::ADDE:
6061 case ISD::SUBE: {
6062 // Expand the subcomponents.
6063 SDOperand LHSL, LHSH, RHSL, RHSH;
6064 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6065 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6066 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6067 SDOperand LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6068 SDOperand HiOps[3] = { LHSH, RHSH };
6069
6070 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6071 HiOps[2] = Lo.getValue(1);
6072 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6073
6074 // Remember that we legalized the flag.
6075 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6076 break;
6077 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006078 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006079 // If the target wants to custom expand this, let them.
6080 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00006081 SDOperand New = TLI.LowerOperation(Op, DAG);
6082 if (New.Val) {
6083 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006084 break;
6085 }
6086 }
6087
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006088 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6089 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00006090 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6091 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6092 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Nate Begemanc7c16572005-04-11 03:01:51 +00006093 SDOperand LL, LH, RL, RH;
6094 ExpandOp(Node->getOperand(0), LL, LH);
6095 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman525178c2007-10-08 18:33:35 +00006096 unsigned BitSize = MVT::getSizeInBits(RH.getValueType());
6097 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6098 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
6099 // FIXME: generalize this to handle other bit sizes
6100 if (LHSSB == 32 && RHSSB == 32 &&
6101 DAG.MaskedValueIsZero(Op.getOperand(0), 0xFFFFFFFF00000000ULL) &&
6102 DAG.MaskedValueIsZero(Op.getOperand(1), 0xFFFFFFFF00000000ULL)) {
6103 // The inputs are both zero-extended.
6104 if (HasUMUL_LOHI) {
6105 // We can emit a umul_lohi.
6106 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6107 Hi = SDOperand(Lo.Val, 1);
6108 break;
6109 }
6110 if (HasMULHU) {
6111 // We can emit a mulhu+mul.
6112 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6113 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6114 break;
6115 }
Dan Gohman525178c2007-10-08 18:33:35 +00006116 }
6117 if (LHSSB > BitSize && RHSSB > BitSize) {
6118 // The input values are both sign-extended.
6119 if (HasSMUL_LOHI) {
6120 // We can emit a smul_lohi.
6121 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6122 Hi = SDOperand(Lo.Val, 1);
6123 break;
6124 }
6125 if (HasMULHS) {
6126 // We can emit a mulhs+mul.
6127 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6128 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6129 break;
6130 }
6131 }
6132 if (HasUMUL_LOHI) {
6133 // Lo,Hi = umul LHS, RHS.
6134 SDOperand UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
6135 DAG.getVTList(NVT, NVT), LL, RL);
6136 Lo = UMulLOHI;
6137 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00006138 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6139 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6140 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6141 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00006142 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00006143 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00006144 if (HasMULHU) {
6145 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6146 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6147 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6148 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6149 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6150 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6151 break;
6152 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006153 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006154
Dan Gohman525178c2007-10-08 18:33:35 +00006155 // If nothing else, we can make a libcall.
Evan Cheng56966222007-01-12 02:11:51 +00006156 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::MUL_I64), Node,
6157 false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00006158 break;
6159 }
Evan Cheng56966222007-01-12 02:11:51 +00006160 case ISD::SDIV:
6161 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SDIV_I64), Node, true, Hi);
6162 break;
6163 case ISD::UDIV:
6164 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UDIV_I64), Node, true, Hi);
6165 break;
6166 case ISD::SREM:
6167 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::SREM_I64), Node, true, Hi);
6168 break;
6169 case ISD::UREM:
6170 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::UREM_I64), Node, true, Hi);
6171 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00006172
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006173 case ISD::FADD:
Duncan Sands007f9842008-01-10 10:28:30 +00006174 Lo = ExpandLibCall(TLI.getLibcallName(GetFPLibCall(VT, RTLIB::ADD_F32,
6175 RTLIB::ADD_F64,
6176 RTLIB::ADD_F80,
6177 RTLIB::ADD_PPCF128)),
Evan Cheng56966222007-01-12 02:11:51 +00006178 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006179 break;
6180 case ISD::FSUB:
Duncan Sands007f9842008-01-10 10:28:30 +00006181 Lo = ExpandLibCall(TLI.getLibcallName(GetFPLibCall(VT, RTLIB::SUB_F32,
6182 RTLIB::SUB_F64,
6183 RTLIB::SUB_F80,
6184 RTLIB::SUB_PPCF128)),
Evan Cheng56966222007-01-12 02:11:51 +00006185 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006186 break;
6187 case ISD::FMUL:
Duncan Sands007f9842008-01-10 10:28:30 +00006188 Lo = ExpandLibCall(TLI.getLibcallName(GetFPLibCall(VT, RTLIB::MUL_F32,
6189 RTLIB::MUL_F64,
6190 RTLIB::MUL_F80,
6191 RTLIB::MUL_PPCF128)),
Evan Cheng56966222007-01-12 02:11:51 +00006192 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006193 break;
6194 case ISD::FDIV:
Duncan Sands007f9842008-01-10 10:28:30 +00006195 Lo = ExpandLibCall(TLI.getLibcallName(GetFPLibCall(VT, RTLIB::DIV_F32,
6196 RTLIB::DIV_F64,
6197 RTLIB::DIV_F80,
6198 RTLIB::DIV_PPCF128)),
Evan Cheng56966222007-01-12 02:11:51 +00006199 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006200 break;
6201 case ISD::FP_EXTEND:
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006202 if (VT == MVT::ppcf128) {
6203 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6204 Node->getOperand(0).getValueType()==MVT::f64);
6205 const uint64_t zero = 0;
6206 if (Node->getOperand(0).getValueType()==MVT::f32)
6207 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6208 else
6209 Hi = Node->getOperand(0);
6210 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6211 break;
6212 }
Evan Cheng56966222007-01-12 02:11:51 +00006213 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPEXT_F32_F64), Node, true,Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006214 break;
6215 case ISD::FP_ROUND:
Evan Cheng56966222007-01-12 02:11:51 +00006216 Lo = ExpandLibCall(TLI.getLibcallName(RTLIB::FPROUND_F64_F32),Node,true,Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006217 break;
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006218 case ISD::FPOWI:
Duncan Sands007f9842008-01-10 10:28:30 +00006219 Lo = ExpandLibCall(TLI.getLibcallName(GetFPLibCall(VT, RTLIB::POWI_F32,
6220 RTLIB::POWI_F64,
6221 RTLIB::POWI_F80,
6222 RTLIB::POWI_PPCF128)),
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006223 Node, false, Hi);
6224 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006225 case ISD::FSQRT:
6226 case ISD::FSIN:
6227 case ISD::FCOS: {
Evan Cheng56966222007-01-12 02:11:51 +00006228 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006229 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00006230 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00006231 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6232 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006233 break;
6234 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00006235 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6236 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006237 break;
6238 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00006239 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6240 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006241 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006242 default: assert(0 && "Unreachable!");
6243 }
Evan Cheng56966222007-01-12 02:11:51 +00006244 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00006245 break;
6246 }
Evan Cheng966bf242006-12-16 00:52:40 +00006247 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006248 if (VT == MVT::ppcf128) {
6249 SDOperand Tmp;
6250 ExpandOp(Node->getOperand(0), Lo, Tmp);
6251 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6252 // lo = hi==fabs(hi) ? lo : -lo;
6253 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6254 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6255 DAG.getCondCode(ISD::SETEQ));
6256 break;
6257 }
Evan Cheng966bf242006-12-16 00:52:40 +00006258 SDOperand Mask = (VT == MVT::f64)
6259 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6260 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6261 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6262 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6263 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6264 if (getTypeAction(NVT) == Expand)
6265 ExpandOp(Lo, Lo, Hi);
6266 break;
6267 }
6268 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006269 if (VT == MVT::ppcf128) {
6270 ExpandOp(Node->getOperand(0), Lo, Hi);
6271 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6272 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6273 break;
6274 }
Evan Cheng966bf242006-12-16 00:52:40 +00006275 SDOperand Mask = (VT == MVT::f64)
6276 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6277 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6278 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6279 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6280 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6281 if (getTypeAction(NVT) == Expand)
6282 ExpandOp(Lo, Lo, Hi);
6283 break;
6284 }
Evan Cheng912095b2007-01-04 21:56:39 +00006285 case ISD::FCOPYSIGN: {
6286 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6287 if (getTypeAction(NVT) == Expand)
6288 ExpandOp(Lo, Lo, Hi);
6289 break;
6290 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006291 case ISD::SINT_TO_FP:
6292 case ISD::UINT_TO_FP: {
6293 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
6294 MVT::ValueType SrcVT = Node->getOperand(0).getValueType();
Dale Johannesen6e63e092007-10-12 17:52:03 +00006295 if (VT == MVT::ppcf128 && SrcVT != MVT::i64) {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006296 static uint64_t zero = 0;
6297 if (isSigned) {
6298 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6299 Node->getOperand(0)));
6300 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6301 } else {
6302 static uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
6303 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6304 Node->getOperand(0)));
6305 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6306 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00006307 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006308 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6309 DAG.getConstant(0, MVT::i32),
6310 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6311 DAG.getConstantFP(
6312 APFloat(APInt(128, 2, TwoE32)),
6313 MVT::ppcf128)),
6314 Hi,
6315 DAG.getCondCode(ISD::SETLT)),
6316 Lo, Hi);
6317 }
6318 break;
6319 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00006320 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6321 // si64->ppcf128 done by libcall, below
6322 static uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
6323 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6324 Lo, Hi);
6325 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6326 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6327 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6328 DAG.getConstant(0, MVT::i64),
6329 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6330 DAG.getConstantFP(
6331 APFloat(APInt(128, 2, TwoE64)),
6332 MVT::ppcf128)),
6333 Hi,
6334 DAG.getCondCode(ISD::SETLT)),
6335 Lo, Hi);
6336 break;
6337 }
Evan Cheng64f638d2007-09-27 07:35:39 +00006338 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng7df28dc2006-12-19 01:44:04 +00006339 if (Node->getOperand(0).getValueType() == MVT::i64) {
6340 if (VT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00006341 LC = isSigned ? RTLIB::SINTTOFP_I64_F32 : RTLIB::UINTTOFP_I64_F32;
Dale Johannesen73328d12007-09-19 23:55:34 +00006342 else if (VT == MVT::f64)
Evan Cheng56966222007-01-12 02:11:51 +00006343 LC = isSigned ? RTLIB::SINTTOFP_I64_F64 : RTLIB::UINTTOFP_I64_F64;
Dale Johannesen161e8972007-10-05 20:04:43 +00006344 else if (VT == MVT::f80) {
Dale Johannesen73328d12007-09-19 23:55:34 +00006345 assert(isSigned);
Dale Johannesen161e8972007-10-05 20:04:43 +00006346 LC = RTLIB::SINTTOFP_I64_F80;
6347 }
6348 else if (VT == MVT::ppcf128) {
6349 assert(isSigned);
6350 LC = RTLIB::SINTTOFP_I64_PPCF128;
Dale Johannesen73328d12007-09-19 23:55:34 +00006351 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006352 } else {
6353 if (VT == MVT::f32)
Evan Cheng56966222007-01-12 02:11:51 +00006354 LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32;
Evan Cheng7df28dc2006-12-19 01:44:04 +00006355 else
Evan Cheng56966222007-01-12 02:11:51 +00006356 LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64;
Evan Cheng7df28dc2006-12-19 01:44:04 +00006357 }
6358
6359 // Promote the operand if needed.
6360 if (getTypeAction(SrcVT) == Promote) {
6361 SDOperand Tmp = PromoteOp(Node->getOperand(0));
6362 Tmp = isSigned
6363 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6364 DAG.getValueType(SrcVT))
6365 : DAG.getZeroExtendInReg(Tmp, SrcVT);
6366 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
6367 }
Evan Cheng4c6cfad2007-04-27 07:33:31 +00006368
6369 const char *LibCall = TLI.getLibcallName(LC);
6370 if (LibCall)
6371 Lo = ExpandLibCall(TLI.getLibcallName(LC), Node, isSigned, Hi);
6372 else {
6373 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6374 Node->getOperand(0));
6375 if (getTypeAction(Lo.getValueType()) == Expand)
6376 ExpandOp(Lo, Lo, Hi);
6377 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006378 break;
6379 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00006380 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006381
Chris Lattner83397362005-12-21 18:02:52 +00006382 // Make sure the resultant values have been legalized themselves, unless this
6383 // is a type that requires multi-step expansion.
6384 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6385 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00006386 if (Hi.Val)
6387 // Don't legalize the high part if it is expanded to a single node.
6388 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00006389 }
Evan Cheng05a2d562006-01-09 18:31:59 +00006390
6391 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00006392 bool isNew = ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi)));
Evan Cheng05a2d562006-01-09 18:31:59 +00006393 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006394}
6395
Dan Gohman7f321562007-06-25 16:23:39 +00006396/// SplitVectorOp - Given an operand of vector type, break it down into
6397/// two smaller values, still of vector type.
Chris Lattnerc7029802006-03-18 01:44:44 +00006398void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
6399 SDOperand &Hi) {
Dan Gohman7f321562007-06-25 16:23:39 +00006400 assert(MVT::isVector(Op.getValueType()) && "Cannot split non-vector type!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006401 SDNode *Node = Op.Val;
Dan Gohmane40c7b02007-09-24 15:54:53 +00006402 unsigned NumElements = MVT::getVectorNumElements(Op.getValueType());
Chris Lattnerc7029802006-03-18 01:44:44 +00006403 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00006404
Dan Gohmane40c7b02007-09-24 15:54:53 +00006405 MVT::ValueType NewEltVT = MVT::getVectorElementType(Op.getValueType());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006406
6407 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6408 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6409
6410 MVT::ValueType NewVT_Lo = MVT::getVectorType(NewEltVT, NewNumElts_Lo);
6411 MVT::ValueType NewVT_Hi = MVT::getVectorType(NewEltVT, NewNumElts_Hi);
6412
Chris Lattnerc7029802006-03-18 01:44:44 +00006413 // See if we already split it.
6414 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
6415 = SplitNodes.find(Op);
6416 if (I != SplitNodes.end()) {
6417 Lo = I->second.first;
6418 Hi = I->second.second;
6419 return;
6420 }
6421
6422 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006423 default:
6424#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006425 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006426#endif
6427 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00006428 case ISD::UNDEF:
6429 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6430 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6431 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006432 case ISD::BUILD_PAIR:
6433 Lo = Node->getOperand(0);
6434 Hi = Node->getOperand(1);
6435 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00006436 case ISD::INSERT_VECTOR_ELT: {
6437 SplitVectorOp(Node->getOperand(0), Lo, Hi);
6438 unsigned Index = cast<ConstantSDNode>(Node->getOperand(2))->getValue();
6439 SDOperand ScalarOp = Node->getOperand(1);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006440 if (Index < NewNumElts_Lo)
6441 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
Dan Gohman9fe46622007-09-28 23:53:40 +00006442 DAG.getConstant(Index, TLI.getPointerTy()));
6443 else
Nate Begeman5db1afb2007-11-15 21:15:26 +00006444 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6445 DAG.getConstant(Index - NewNumElts_Lo,
6446 TLI.getPointerTy()));
Dan Gohman9fe46622007-09-28 23:53:40 +00006447 break;
6448 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00006449 case ISD::VECTOR_SHUFFLE: {
6450 // Build the low part.
6451 SDOperand Mask = Node->getOperand(2);
6452 SmallVector<SDOperand, 8> Ops;
6453 MVT::ValueType PtrVT = TLI.getPointerTy();
6454
6455 // Insert all of the elements from the input that are needed. We use
6456 // buildvector of extractelement here because the input vectors will have
6457 // to be legalized, so this makes the code simpler.
6458 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
6459 unsigned Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getValue();
6460 SDOperand InVec = Node->getOperand(0);
6461 if (Idx >= NumElements) {
6462 InVec = Node->getOperand(1);
6463 Idx -= NumElements;
6464 }
6465 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6466 DAG.getConstant(Idx, PtrVT)));
6467 }
6468 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6469 Ops.clear();
6470
6471 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
6472 unsigned Idx = cast<ConstantSDNode>(Mask.getOperand(i))->getValue();
6473 SDOperand InVec = Node->getOperand(0);
6474 if (Idx >= NumElements) {
6475 InVec = Node->getOperand(1);
6476 Idx -= NumElements;
6477 }
6478 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6479 DAG.getConstant(Idx, PtrVT)));
6480 }
6481 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6482 break;
6483 }
Dan Gohman7f321562007-06-25 16:23:39 +00006484 case ISD::BUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006485 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00006486 Node->op_begin()+NewNumElts_Lo);
6487 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006488
Nate Begeman5db1afb2007-11-15 21:15:26 +00006489 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00006490 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006491 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006492 break;
6493 }
Dan Gohman7f321562007-06-25 16:23:39 +00006494 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00006495 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00006496 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6497 if (NewNumSubvectors == 1) {
6498 Lo = Node->getOperand(0);
6499 Hi = Node->getOperand(1);
6500 } else {
6501 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
6502 Node->op_begin()+NewNumSubvectors);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006503 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00006504
Dan Gohman7f321562007-06-25 16:23:39 +00006505 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumSubvectors,
6506 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006507 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00006508 }
Dan Gohman65956352007-06-13 15:12:02 +00006509 break;
6510 }
Dan Gohmanc6230962007-10-17 14:48:28 +00006511 case ISD::SELECT: {
6512 SDOperand Cond = Node->getOperand(0);
6513
6514 SDOperand LL, LH, RL, RH;
6515 SplitVectorOp(Node->getOperand(1), LL, LH);
6516 SplitVectorOp(Node->getOperand(2), RL, RH);
6517
6518 if (MVT::isVector(Cond.getValueType())) {
6519 // Handle a vector merge.
6520 SDOperand CL, CH;
6521 SplitVectorOp(Cond, CL, CH);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006522 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6523 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006524 } else {
6525 // Handle a simple select with vector operands.
Nate Begeman5db1afb2007-11-15 21:15:26 +00006526 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6527 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006528 }
6529 break;
6530 }
Dan Gohman7f321562007-06-25 16:23:39 +00006531 case ISD::ADD:
6532 case ISD::SUB:
6533 case ISD::MUL:
6534 case ISD::FADD:
6535 case ISD::FSUB:
6536 case ISD::FMUL:
6537 case ISD::SDIV:
6538 case ISD::UDIV:
6539 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00006540 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006541 case ISD::AND:
6542 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00006543 case ISD::XOR:
6544 case ISD::UREM:
6545 case ISD::SREM:
6546 case ISD::FREM: {
Chris Lattnerc7029802006-03-18 01:44:44 +00006547 SDOperand LL, LH, RL, RH;
6548 SplitVectorOp(Node->getOperand(0), LL, LH);
6549 SplitVectorOp(Node->getOperand(1), RL, RH);
6550
Nate Begeman5db1afb2007-11-15 21:15:26 +00006551 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
6552 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00006553 break;
6554 }
Dan Gohman82669522007-10-11 23:57:53 +00006555 case ISD::FPOWI: {
6556 SDOperand L, H;
6557 SplitVectorOp(Node->getOperand(0), L, H);
6558
Nate Begeman5db1afb2007-11-15 21:15:26 +00006559 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
6560 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00006561 break;
6562 }
6563 case ISD::CTTZ:
6564 case ISD::CTLZ:
6565 case ISD::CTPOP:
6566 case ISD::FNEG:
6567 case ISD::FABS:
6568 case ISD::FSQRT:
6569 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00006570 case ISD::FCOS:
6571 case ISD::FP_TO_SINT:
6572 case ISD::FP_TO_UINT:
6573 case ISD::SINT_TO_FP:
6574 case ISD::UINT_TO_FP: {
Dan Gohman82669522007-10-11 23:57:53 +00006575 SDOperand L, H;
6576 SplitVectorOp(Node->getOperand(0), L, H);
6577
Nate Begeman5db1afb2007-11-15 21:15:26 +00006578 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
6579 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00006580 break;
6581 }
Dan Gohman7f321562007-06-25 16:23:39 +00006582 case ISD::LOAD: {
6583 LoadSDNode *LD = cast<LoadSDNode>(Node);
6584 SDOperand Ch = LD->getChain();
6585 SDOperand Ptr = LD->getBasePtr();
6586 const Value *SV = LD->getSrcValue();
6587 int SVOffset = LD->getSrcValueOffset();
6588 unsigned Alignment = LD->getAlignment();
6589 bool isVolatile = LD->isVolatile();
6590
Nate Begeman5db1afb2007-11-15 21:15:26 +00006591 Lo = DAG.getLoad(NewVT_Lo, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
6592 unsigned IncrementSize = NewNumElts_Lo * MVT::getSizeInBits(NewEltVT)/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00006593 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006594 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006595 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006596 Alignment = MinAlign(Alignment, IncrementSize);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006597 Hi = DAG.getLoad(NewVT_Hi, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00006598
6599 // Build a factor node to remember that this load is independent of the
6600 // other one.
6601 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
6602 Hi.getValue(1));
6603
6604 // Remember that we legalized the chain.
6605 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00006606 break;
6607 }
Dan Gohman7f321562007-06-25 16:23:39 +00006608 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00006609 // We know the result is a vector. The input may be either a vector or a
6610 // scalar value.
Dan Gohman10a7aa62007-06-29 00:09:08 +00006611 SDOperand InOp = Node->getOperand(0);
6612 if (!MVT::isVector(InOp.getValueType()) ||
6613 MVT::getVectorNumElements(InOp.getValueType()) == 1) {
6614 // The input is a scalar or single-element vector.
6615 // Lower to a store/load so that it can be split.
6616 // FIXME: this could be improved probably.
Chris Lattner85dd3be2007-10-15 17:48:57 +00006617 SDOperand Ptr = DAG.CreateStackTemporary(InOp.getValueType());
Chris Lattner7692eb42006-03-23 21:16:34 +00006618
Evan Cheng786225a2006-10-05 23:01:46 +00006619 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman10a7aa62007-06-29 00:09:08 +00006620 InOp, Ptr, NULL, 0);
6621 InOp = DAG.getLoad(Op.getValueType(), St, Ptr, NULL, 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00006622 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00006623 // Split the vector and convert each of the pieces now.
6624 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006625 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
6626 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00006627 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00006628 }
Chris Lattnerc7029802006-03-18 01:44:44 +00006629 }
6630
6631 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00006632 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00006633 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00006634 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00006635}
6636
6637
Dan Gohman89b20c02007-06-27 14:06:22 +00006638/// ScalarizeVectorOp - Given an operand of single-element vector type
6639/// (e.g. v1f32), convert it into the equivalent operation that returns a
6640/// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +00006641SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) {
6642 assert(MVT::isVector(Op.getValueType()) &&
6643 "Bad ScalarizeVectorOp invocation!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006644 SDNode *Node = Op.Val;
Dan Gohman7f321562007-06-25 16:23:39 +00006645 MVT::ValueType NewVT = MVT::getVectorElementType(Op.getValueType());
6646 assert(MVT::getVectorNumElements(Op.getValueType()) == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00006647
Dan Gohman7f321562007-06-25 16:23:39 +00006648 // See if we already scalarized it.
6649 std::map<SDOperand, SDOperand>::iterator I = ScalarizedNodes.find(Op);
6650 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00006651
6652 SDOperand Result;
6653 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00006654 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006655#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006656 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006657#endif
Dan Gohman7f321562007-06-25 16:23:39 +00006658 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
6659 case ISD::ADD:
6660 case ISD::FADD:
6661 case ISD::SUB:
6662 case ISD::FSUB:
6663 case ISD::MUL:
6664 case ISD::FMUL:
6665 case ISD::SDIV:
6666 case ISD::UDIV:
6667 case ISD::FDIV:
6668 case ISD::SREM:
6669 case ISD::UREM:
6670 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00006671 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006672 case ISD::AND:
6673 case ISD::OR:
6674 case ISD::XOR:
6675 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00006676 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00006677 ScalarizeVectorOp(Node->getOperand(0)),
6678 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00006679 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006680 case ISD::FNEG:
6681 case ISD::FABS:
6682 case ISD::FSQRT:
6683 case ISD::FSIN:
6684 case ISD::FCOS:
6685 Result = DAG.getNode(Node->getOpcode(),
6686 NewVT,
6687 ScalarizeVectorOp(Node->getOperand(0)));
6688 break;
Dan Gohman9e04c822007-10-12 14:13:46 +00006689 case ISD::FPOWI:
6690 Result = DAG.getNode(Node->getOpcode(),
6691 NewVT,
6692 ScalarizeVectorOp(Node->getOperand(0)),
6693 Node->getOperand(1));
6694 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006695 case ISD::LOAD: {
6696 LoadSDNode *LD = cast<LoadSDNode>(Node);
6697 SDOperand Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
6698 SDOperand Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00006699
Dan Gohman7f321562007-06-25 16:23:39 +00006700 const Value *SV = LD->getSrcValue();
6701 int SVOffset = LD->getSrcValueOffset();
6702 Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset,
6703 LD->isVolatile(), LD->getAlignment());
6704
Chris Lattnerc7029802006-03-18 01:44:44 +00006705 // Remember that we legalized the chain.
6706 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
6707 break;
6708 }
Dan Gohman7f321562007-06-25 16:23:39 +00006709 case ISD::BUILD_VECTOR:
6710 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00006711 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006712 case ISD::INSERT_VECTOR_ELT:
6713 // Returning the inserted scalar element.
6714 Result = Node->getOperand(1);
6715 break;
6716 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00006717 assert(Node->getOperand(0).getValueType() == NewVT &&
6718 "Concat of non-legal vectors not yet supported!");
6719 Result = Node->getOperand(0);
6720 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006721 case ISD::VECTOR_SHUFFLE: {
6722 // Figure out if the scalar is the LHS or RHS and return it.
6723 SDOperand EltNum = Node->getOperand(2).getOperand(0);
6724 if (cast<ConstantSDNode>(EltNum)->getValue())
6725 Result = ScalarizeVectorOp(Node->getOperand(1));
6726 else
6727 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00006728 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006729 }
6730 case ISD::EXTRACT_SUBVECTOR:
6731 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00006732 assert(Result.getValueType() == NewVT);
6733 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006734 case ISD::BIT_CONVERT:
6735 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
Chris Lattner5b2316e2006-03-28 20:24:43 +00006736 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006737 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00006738 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00006739 ScalarizeVectorOp(Op.getOperand(1)),
6740 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00006741 break;
Chris Lattnerc7029802006-03-18 01:44:44 +00006742 }
6743
6744 if (TLI.isTypeLegal(NewVT))
6745 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00006746 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
6747 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00006748 return Result;
6749}
6750
Chris Lattner3e928bb2005-01-07 07:47:09 +00006751
6752// SelectionDAG::Legalize - This is the entry point for the file.
6753//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00006754void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00006755 if (ViewLegalizeDAGs) viewGraph();
6756
Chris Lattner3e928bb2005-01-07 07:47:09 +00006757 /// run - This is the main entry point to this class.
6758 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00006759 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006760}
6761