blob: 377c627b23e06402715687c28c98d454c60740c9 [file] [log] [blame]
Chris Lattner3e928bb2005-01-07 07:47:09 +00001//===-- LegalizeDAG.cpp - Implement SelectionDAG::Legalize ----------------===//
Misha Brukmanedf128a2005-04-21 22:36:52 +00002//
Chris Lattner3e928bb2005-01-07 07:47:09 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanedf128a2005-04-21 22:36:52 +00007//
Chris Lattner3e928bb2005-01-07 07:47:09 +00008//===----------------------------------------------------------------------===//
9//
10// This file implements the SelectionDAG::Legalize method.
11//
12//===----------------------------------------------------------------------===//
13
14#include "llvm/CodeGen/SelectionDAG.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000015#include "llvm/CodeGen/MachineFunction.h"
Chris Lattner45b8caf2005-01-15 07:15:18 +000016#include "llvm/CodeGen/MachineFrameInfo.h"
Jim Laskeyacd80ac2006-12-14 19:17:33 +000017#include "llvm/CodeGen/MachineJumpTableInfo.h"
Chris Lattner84bc5422007-12-31 04:13:23 +000018#include "llvm/CodeGen/MachineModuleInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000019#include "llvm/CodeGen/PseudoSourceValue.h"
Evan Cheng61bbbab2007-08-16 23:50:06 +000020#include "llvm/Target/TargetFrameInfo.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000021#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000022#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000023#include "llvm/Target/TargetMachine.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000024#include "llvm/Target/TargetOptions.h"
Dan Gohman707e0182008-04-12 04:36:06 +000025#include "llvm/Target/TargetSubtarget.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000026#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000027#include "llvm/Constants.h"
Reid Spencerc1030572007-01-19 21:13:56 +000028#include "llvm/DerivedTypes.h"
Chris Lattner5e46a192006-04-02 03:07:27 +000029#include "llvm/Support/CommandLine.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000030#include "llvm/Support/Compiler.h"
Duncan Sandsdc846502007-10-28 12:59:45 +000031#include "llvm/Support/MathExtras.h"
Chris Lattner79715142007-02-03 01:12:36 +000032#include "llvm/ADT/DenseMap.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000033#include "llvm/ADT/SmallVector.h"
Chris Lattner00755df2007-02-04 00:27:56 +000034#include "llvm/ADT/SmallPtrSet.h"
Evan Cheng033e6812006-03-24 01:17:21 +000035#include <map>
Chris Lattner3e928bb2005-01-07 07:47:09 +000036using namespace llvm;
37
Chris Lattner5e46a192006-04-02 03:07:27 +000038#ifndef NDEBUG
39static cl::opt<bool>
40ViewLegalizeDAGs("view-legalize-dags", cl::Hidden,
41 cl::desc("Pop up a window to show dags before legalize"));
42#else
43static const bool ViewLegalizeDAGs = 0;
44#endif
45
Chris Lattner3e928bb2005-01-07 07:47:09 +000046//===----------------------------------------------------------------------===//
47/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
48/// hacks on it until the target machine can handle it. This involves
49/// eliminating value sizes the machine cannot handle (promoting small sizes to
50/// large sizes or splitting up large values into small values) as well as
51/// eliminating operations the machine cannot handle.
52///
53/// This code also does a small amount of optimization and recognition of idioms
54/// as part of its processing. For example, if a target does not support a
55/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
56/// will attempt merge setcc and brc instructions into brcc's.
57///
58namespace {
Chris Lattner360e8202006-06-28 21:58:30 +000059class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattner3e928bb2005-01-07 07:47:09 +000060 TargetLowering &TLI;
61 SelectionDAG &DAG;
62
Chris Lattner6831a812006-02-13 09:18:02 +000063 // Libcall insertion helpers.
64
65 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
66 /// legalized. We use this to ensure that calls are properly serialized
67 /// against each other, including inserted libcalls.
68 SDOperand LastCALLSEQ_END;
69
70 /// IsLegalizingCall - This member is used *only* for purposes of providing
71 /// helpful assertions that a libcall isn't created while another call is
72 /// being legalized (which could lead to non-serialized call sequences).
73 bool IsLegalizingCall;
74
Chris Lattner3e928bb2005-01-07 07:47:09 +000075 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000076 Legal, // The target natively supports this operation.
77 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000078 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000079 };
Chris Lattner6831a812006-02-13 09:18:02 +000080
Chris Lattner3e928bb2005-01-07 07:47:09 +000081 /// ValueTypeActions - This is a bitvector that contains two bits for each
82 /// value type, where the two bits correspond to the LegalizeAction enum.
83 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000084 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000085
Chris Lattner3e928bb2005-01-07 07:47:09 +000086 /// LegalizedNodes - For nodes that are of legal width, and that have more
87 /// than one use, this map indicates what regularized operand to use. This
88 /// allows us to avoid legalizing the same thing more than once.
Roman Levenstein9cac5252008-04-16 16:15:27 +000089 DenseMap<SDOperand, SDOperand> LegalizedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000090
Chris Lattner03c85462005-01-15 05:21:40 +000091 /// PromotedNodes - For nodes that are below legal width, and that have more
92 /// than one use, this map indicates what promoted value to use. This allows
93 /// us to avoid promoting the same thing more than once.
Roman Levenstein9cac5252008-04-16 16:15:27 +000094 DenseMap<SDOperand, SDOperand> PromotedNodes;
Chris Lattner03c85462005-01-15 05:21:40 +000095
Chris Lattnerc7029802006-03-18 01:44:44 +000096 /// ExpandedNodes - For nodes that need to be expanded this map indicates
97 /// which which operands are the expanded version of the input. This allows
98 /// us to avoid expanding the same node more than once.
Roman Levenstein9cac5252008-04-16 16:15:27 +000099 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> > ExpandedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000100
Chris Lattnerc7029802006-03-18 01:44:44 +0000101 /// SplitNodes - For vector nodes that need to be split, this map indicates
102 /// which which operands are the split version of the input. This allows us
103 /// to avoid splitting the same node more than once.
104 std::map<SDOperand, std::pair<SDOperand, SDOperand> > SplitNodes;
105
Dan Gohman7f321562007-06-25 16:23:39 +0000106 /// ScalarizedNodes - For nodes that need to be converted from vector types to
107 /// scalar types, this contains the mapping of ones we have already
Chris Lattnerc7029802006-03-18 01:44:44 +0000108 /// processed to the result.
Dan Gohman7f321562007-06-25 16:23:39 +0000109 std::map<SDOperand, SDOperand> ScalarizedNodes;
Chris Lattnerc7029802006-03-18 01:44:44 +0000110
Chris Lattner8afc48e2005-01-07 22:28:47 +0000111 void AddLegalizedOperand(SDOperand From, SDOperand To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000112 LegalizedNodes.insert(std::make_pair(From, To));
113 // If someone requests legalization of the new node, return itself.
114 if (From != To)
115 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000116 }
Chris Lattner03c85462005-01-15 05:21:40 +0000117 void AddPromotedOperand(SDOperand From, SDOperand To) {
Chris Lattner40030bf2007-02-04 01:17:38 +0000118 bool isNew = PromotedNodes.insert(std::make_pair(From, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000119 assert(isNew && "Got into the map somehow?");
Chris Lattner69a889e2005-12-20 00:53:54 +0000120 // If someone requests legalization of the new node, return itself.
121 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000122 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000123
Chris Lattner3e928bb2005-01-07 07:47:09 +0000124public:
125
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000126 SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000127
Chris Lattner3e928bb2005-01-07 07:47:09 +0000128 /// getTypeAction - Return how we should legalize values of this type, either
129 /// it is already legal or we need to expand it into multiple registers of
130 /// smaller integer type, or we need to promote it to a larger type.
131 LegalizeAction getTypeAction(MVT::ValueType VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000132 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000133 }
134
135 /// isTypeLegal - Return true if this type is legal on this target.
136 ///
137 bool isTypeLegal(MVT::ValueType VT) const {
138 return getTypeAction(VT) == Legal;
139 }
140
Chris Lattner3e928bb2005-01-07 07:47:09 +0000141 void LegalizeDAG();
142
Chris Lattner456a93a2006-01-28 07:39:30 +0000143private:
Dan Gohman7f321562007-06-25 16:23:39 +0000144 /// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000145 /// appropriate for its type.
146 void HandleOp(SDOperand Op);
147
148 /// LegalizeOp - We know that the specified value has a legal type.
149 /// Recursively ensure that the operands have legal types, then return the
150 /// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000151 SDOperand LegalizeOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000152
Dan Gohman82669522007-10-11 23:57:53 +0000153 /// UnrollVectorOp - We know that the given vector has a legal type, however
154 /// the operation it performs is not legal and is an operation that we have
155 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
156 /// operating on each element individually.
157 SDOperand UnrollVectorOp(SDOperand O);
158
Chris Lattnerc7029802006-03-18 01:44:44 +0000159 /// PromoteOp - Given an operation that produces a value in an invalid type,
160 /// promote it to compute the value into a larger type. The produced value
161 /// will have the correct bits for the low portion of the register, but no
162 /// guarantee is made about the top bits: it may be zero, sign-extended, or
163 /// garbage.
Chris Lattner03c85462005-01-15 05:21:40 +0000164 SDOperand PromoteOp(SDOperand O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000165
Chris Lattnerc7029802006-03-18 01:44:44 +0000166 /// ExpandOp - Expand the specified SDOperand into its two component pieces
167 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
168 /// the LegalizeNodes map is filled in for any results that are not expanded,
169 /// the ExpandedNodes map is filled in for any results that are expanded, and
170 /// the Lo/Hi values are returned. This applies to integer types and Vector
171 /// types.
172 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
173
Dan Gohman7f321562007-06-25 16:23:39 +0000174 /// SplitVectorOp - Given an operand of vector type, break it down into
175 /// two smaller values.
Chris Lattnerc7029802006-03-18 01:44:44 +0000176 void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
177
Dan Gohman89b20c02007-06-27 14:06:22 +0000178 /// ScalarizeVectorOp - Given an operand of single-element vector type
179 /// (e.g. v1f32), convert it into the equivalent operation that returns a
180 /// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +0000181 SDOperand ScalarizeVectorOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000182
Chris Lattner4352cc92006-04-04 17:23:26 +0000183 /// isShuffleLegal - Return true if a vector shuffle is legal with the
184 /// specified mask and type. Targets can specify exactly which masks they
185 /// support and the code generator is tasked with not creating illegal masks.
186 ///
187 /// Note that this will also return true for shuffles that are promoted to a
188 /// different type.
189 ///
190 /// If this is a legal shuffle, this method returns the (possibly promoted)
191 /// build_vector Mask. If it's not a legal shuffle, it returns null.
192 SDNode *isShuffleLegal(MVT::ValueType VT, SDOperand Mask) const;
193
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000194 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000195 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000196
Nate Begeman750ac1b2006-02-01 07:19:44 +0000197 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
198
Duncan Sands460a14e2008-04-12 17:14:18 +0000199 SDOperand ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
Chris Lattner77e77a62005-01-21 06:05:23 +0000200 SDOperand &Hi);
201 SDOperand ExpandIntToFP(bool isSigned, MVT::ValueType DestTy,
202 SDOperand Source);
Chris Lattnercad063f2005-07-16 00:19:57 +0000203
Chris Lattner1401d152008-01-16 07:45:30 +0000204 SDOperand EmitStackConvert(SDOperand SrcOp, MVT::ValueType SlotVT,
205 MVT::ValueType DestVT);
Chris Lattnerce872152006-03-19 06:31:19 +0000206 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner4352cc92006-04-04 17:23:26 +0000207 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Jim Laskey6269ed12005-08-17 00:39:29 +0000208 SDOperand ExpandLegalINT_TO_FP(bool isSigned,
209 SDOperand LegalOp,
210 MVT::ValueType DestVT);
Nate Begeman5a8441e2005-07-16 02:02:34 +0000211 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT::ValueType DestVT,
212 bool isSigned);
Chris Lattner1618beb2005-07-29 00:11:56 +0000213 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT::ValueType DestVT,
214 bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000215
Chris Lattner456a93a2006-01-28 07:39:30 +0000216 SDOperand ExpandBSWAP(SDOperand Op);
217 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattnere34b3962005-01-19 04:19:40 +0000218 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
219 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000220 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
221 SDOperand &Lo, SDOperand &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000222
Dan Gohman7f321562007-06-25 16:23:39 +0000223 SDOperand ExpandEXTRACT_SUBVECTOR(SDOperand Op);
Chris Lattner4aab2f42006-04-02 05:06:04 +0000224 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000225};
226}
227
Chris Lattner4352cc92006-04-04 17:23:26 +0000228/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
229/// specified mask and type. Targets can specify exactly which masks they
230/// support and the code generator is tasked with not creating illegal masks.
231///
232/// Note that this will also return true for shuffles that are promoted to a
233/// different type.
234SDNode *SelectionDAGLegalize::isShuffleLegal(MVT::ValueType VT,
235 SDOperand Mask) const {
236 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
237 default: return 0;
238 case TargetLowering::Legal:
239 case TargetLowering::Custom:
240 break;
241 case TargetLowering::Promote: {
242 // If this is promoted to a different type, convert the shuffle mask and
243 // ask if it is legal in the promoted type!
244 MVT::ValueType NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
245
246 // If we changed # elements, change the shuffle mask.
247 unsigned NumEltsGrowth =
248 MVT::getVectorNumElements(NVT) / MVT::getVectorNumElements(VT);
249 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
250 if (NumEltsGrowth > 1) {
251 // Renumber the elements.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000252 SmallVector<SDOperand, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000253 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
254 SDOperand InOp = Mask.getOperand(i);
255 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
256 if (InOp.getOpcode() == ISD::UNDEF)
257 Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
258 else {
259 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
260 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32));
261 }
262 }
263 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000264 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000265 }
266 VT = NVT;
267 break;
268 }
269 }
270 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
271}
272
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000273SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
274 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
275 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000276 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000277 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000278}
279
Chris Lattnere10e6f72007-06-18 21:28:10 +0000280/// ComputeTopDownOrdering - Compute a top-down ordering of the dag, where Order
281/// contains all of a nodes operands before it contains the node.
282static void ComputeTopDownOrdering(SelectionDAG &DAG,
283 SmallVector<SDNode*, 64> &Order) {
284
285 DenseMap<SDNode*, unsigned> Visited;
286 std::vector<SDNode*> Worklist;
287 Worklist.reserve(128);
Chris Lattner32fca002005-10-06 01:20:27 +0000288
Chris Lattnere10e6f72007-06-18 21:28:10 +0000289 // Compute ordering from all of the leaves in the graphs, those (like the
290 // entry node) that have no operands.
291 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
292 E = DAG.allnodes_end(); I != E; ++I) {
293 if (I->getNumOperands() == 0) {
294 Visited[I] = 0 - 1U;
295 Worklist.push_back(I);
296 }
Chris Lattner32fca002005-10-06 01:20:27 +0000297 }
298
Chris Lattnere10e6f72007-06-18 21:28:10 +0000299 while (!Worklist.empty()) {
300 SDNode *N = Worklist.back();
301 Worklist.pop_back();
302
303 if (++Visited[N] != N->getNumOperands())
304 continue; // Haven't visited all operands yet
305
306 Order.push_back(N);
307
308 // Now that we have N in, add anything that uses it if all of their operands
309 // are now done.
310 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
311 UI != E; ++UI)
Roman Levensteindc1adac2008-04-07 10:06:32 +0000312 Worklist.push_back(UI->getUser());
Chris Lattnere10e6f72007-06-18 21:28:10 +0000313 }
314
315 assert(Order.size() == Visited.size() &&
316 Order.size() ==
317 (unsigned)std::distance(DAG.allnodes_begin(), DAG.allnodes_end()) &&
318 "Error: DAG is cyclic!");
Chris Lattner32fca002005-10-06 01:20:27 +0000319}
320
Chris Lattner1618beb2005-07-29 00:11:56 +0000321
Chris Lattner3e928bb2005-01-07 07:47:09 +0000322void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000323 LastCALLSEQ_END = DAG.getEntryNode();
324 IsLegalizingCall = false;
325
Chris Lattnerab510a72005-10-02 17:49:46 +0000326 // The legalize process is inherently a bottom-up recursive process (users
327 // legalize their uses before themselves). Given infinite stack space, we
328 // could just start legalizing on the root and traverse the whole graph. In
329 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000330 // blocks. To avoid this problem, compute an ordering of the nodes where each
331 // node is only legalized after all of its operands are legalized.
Chris Lattner0ed44172007-02-04 01:20:02 +0000332 SmallVector<SDNode*, 64> Order;
Chris Lattnere10e6f72007-06-18 21:28:10 +0000333 ComputeTopDownOrdering(DAG, Order);
Chris Lattnerab510a72005-10-02 17:49:46 +0000334
Chris Lattnerc7029802006-03-18 01:44:44 +0000335 for (unsigned i = 0, e = Order.size(); i != e; ++i)
336 HandleOp(SDOperand(Order[i], 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000337
338 // Finally, it's possible the root changed. Get the new root.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000339 SDOperand OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000340 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
341 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000342
343 ExpandedNodes.clear();
344 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000345 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000346 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000347 ScalarizedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000348
349 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000350 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000351}
352
Chris Lattner6831a812006-02-13 09:18:02 +0000353
354/// FindCallEndFromCallStart - Given a chained node that is part of a call
355/// sequence, find the CALLSEQ_END node that terminates the call sequence.
356static SDNode *FindCallEndFromCallStart(SDNode *Node) {
357 if (Node->getOpcode() == ISD::CALLSEQ_END)
358 return Node;
359 if (Node->use_empty())
360 return 0; // No CallSeqEnd
361
362 // The chain is usually at the end.
363 SDOperand TheChain(Node, Node->getNumValues()-1);
364 if (TheChain.getValueType() != MVT::Other) {
365 // Sometimes it's at the beginning.
366 TheChain = SDOperand(Node, 0);
367 if (TheChain.getValueType() != MVT::Other) {
368 // Otherwise, hunt for it.
369 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
370 if (Node->getValueType(i) == MVT::Other) {
371 TheChain = SDOperand(Node, i);
372 break;
373 }
374
375 // Otherwise, we walked into a node without a chain.
376 if (TheChain.getValueType() != MVT::Other)
377 return 0;
378 }
379 }
380
381 for (SDNode::use_iterator UI = Node->use_begin(),
382 E = Node->use_end(); UI != E; ++UI) {
383
384 // Make sure to only follow users of our token chain.
Roman Levensteindc1adac2008-04-07 10:06:32 +0000385 SDNode *User = UI->getUser();
Chris Lattner6831a812006-02-13 09:18:02 +0000386 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
387 if (User->getOperand(i) == TheChain)
388 if (SDNode *Result = FindCallEndFromCallStart(User))
389 return Result;
390 }
391 return 0;
392}
393
394/// FindCallStartFromCallEnd - Given a chained node that is part of a call
395/// sequence, find the CALLSEQ_START node that initiates the call sequence.
396static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
397 assert(Node && "Didn't find callseq_start for a call??");
398 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
399
400 assert(Node->getOperand(0).getValueType() == MVT::Other &&
401 "Node doesn't have a token chain argument!");
402 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
403}
404
405/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
406/// see if any uses can reach Dest. If no dest operands can get to dest,
407/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000408///
409/// Keep track of the nodes we fine that actually do lead to Dest in
410/// NodesLeadingTo. This avoids retraversing them exponential number of times.
411///
412bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000413 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000414 if (N == Dest) return true; // N certainly leads to Dest :)
415
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000416 // If we've already processed this node and it does lead to Dest, there is no
417 // need to reprocess it.
418 if (NodesLeadingTo.count(N)) return true;
419
Chris Lattner6831a812006-02-13 09:18:02 +0000420 // If the first result of this node has been already legalized, then it cannot
421 // reach N.
422 switch (getTypeAction(N->getValueType(0))) {
423 case Legal:
424 if (LegalizedNodes.count(SDOperand(N, 0))) return false;
425 break;
426 case Promote:
427 if (PromotedNodes.count(SDOperand(N, 0))) return false;
428 break;
429 case Expand:
430 if (ExpandedNodes.count(SDOperand(N, 0))) return false;
431 break;
432 }
433
434 // Okay, this node has not already been legalized. Check and legalize all
435 // operands. If none lead to Dest, then we can legalize this node.
436 bool OperandsLeadToDest = false;
437 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
438 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000439 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000440
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000441 if (OperandsLeadToDest) {
442 NodesLeadingTo.insert(N);
443 return true;
444 }
Chris Lattner6831a812006-02-13 09:18:02 +0000445
446 // Okay, this node looks safe, legalize it and return false.
Chris Lattner80edfb32006-04-17 22:10:08 +0000447 HandleOp(SDOperand(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000448 return false;
449}
450
Dan Gohman7f321562007-06-25 16:23:39 +0000451/// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000452/// appropriate for its type.
453void SelectionDAGLegalize::HandleOp(SDOperand Op) {
Dan Gohman7f321562007-06-25 16:23:39 +0000454 MVT::ValueType VT = Op.getValueType();
455 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000456 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000457 case Legal: (void)LegalizeOp(Op); break;
458 case Promote: (void)PromoteOp(Op); break;
Chris Lattnerc7029802006-03-18 01:44:44 +0000459 case Expand:
Dan Gohman7f321562007-06-25 16:23:39 +0000460 if (!MVT::isVector(VT)) {
461 // If this is an illegal scalar, expand it into its two component
462 // pieces.
Chris Lattnerc7029802006-03-18 01:44:44 +0000463 SDOperand X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000464 if (Op.getOpcode() == ISD::TargetConstant)
465 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000466 ExpandOp(Op, X, Y);
Dan Gohman7f321562007-06-25 16:23:39 +0000467 } else if (MVT::getVectorNumElements(VT) == 1) {
468 // If this is an illegal single element vector, convert it to a
469 // scalar operation.
470 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000471 } else {
Dan Gohman7f321562007-06-25 16:23:39 +0000472 // Otherwise, this is an illegal multiple element vector.
473 // Split it in half and legalize both parts.
474 SDOperand X, Y;
475 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000476 }
477 break;
478 }
479}
Chris Lattner6831a812006-02-13 09:18:02 +0000480
Evan Cheng9f877882006-12-13 20:57:08 +0000481/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
482/// a load from the constant pool.
483static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng279101e2006-12-12 22:19:28 +0000484 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000485 bool Extend = false;
486
487 // If a FP immediate is precise when represented as a float and if the
488 // target can do an extending load from float to double, we put it into
489 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000490 // double. This shrinks FP constants and canonicalizes them for targets where
491 // an FP extending load is the same cost as a normal load (such as on the x87
492 // fp stack or PPC FP unit).
Evan Cheng00495212006-12-12 21:32:44 +0000493 MVT::ValueType VT = CFP->getValueType(0);
Dale Johannesen118cd9d2007-09-16 16:51:49 +0000494 ConstantFP *LLVMC = ConstantFP::get(MVT::getTypeForValueType(VT),
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000495 CFP->getValueAPF());
Evan Cheng9f877882006-12-13 20:57:08 +0000496 if (!UseCP) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000497 if (VT!=MVT::f64 && VT!=MVT::f32)
498 assert(0 && "Invalid type expansion");
Dan Gohman6cf9b8a2008-03-11 00:11:06 +0000499 return DAG.getConstant(LLVMC->getValueAPF().convertToAPInt(),
Evan Chengef120572008-03-04 08:05:30 +0000500 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000501 }
502
Evan Chengef120572008-03-04 08:05:30 +0000503 MVT::ValueType OrigVT = VT;
504 MVT::ValueType SVT = VT;
505 while (SVT != MVT::f32) {
506 SVT = (unsigned)SVT - 1;
507 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
508 // Only do this if the target has a native EXTLOAD instruction from
509 // smaller type.
Evan Cheng6fd599f2008-03-05 01:30:59 +0000510 TLI.isLoadXLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000511 TLI.ShouldShrinkFPConstant(OrigVT)) {
Evan Chengef120572008-03-04 08:05:30 +0000512 const Type *SType = MVT::getTypeForValueType(SVT);
513 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
514 VT = SVT;
515 Extend = true;
516 }
Evan Cheng00495212006-12-12 21:32:44 +0000517 }
518
519 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Chengef120572008-03-04 08:05:30 +0000520 if (Extend)
521 return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000522 CPIdx, PseudoSourceValue::getConstantPool(),
Evan Chengef120572008-03-04 08:05:30 +0000523 0, VT);
524 return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx,
525 PseudoSourceValue::getConstantPool(), 0);
Evan Cheng00495212006-12-12 21:32:44 +0000526}
527
Chris Lattner6831a812006-02-13 09:18:02 +0000528
Evan Cheng912095b2007-01-04 21:56:39 +0000529/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
530/// operations.
531static
532SDOperand ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT::ValueType NVT,
533 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng068c5f42007-01-05 21:31:51 +0000534 MVT::ValueType VT = Node->getValueType(0);
Evan Cheng912095b2007-01-04 21:56:39 +0000535 MVT::ValueType SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000536 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
537 "fcopysign expansion only supported for f32 and f64");
Evan Cheng912095b2007-01-04 21:56:39 +0000538 MVT::ValueType SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000539
Evan Cheng912095b2007-01-04 21:56:39 +0000540 // First get the sign bit of second operand.
Evan Cheng068c5f42007-01-05 21:31:51 +0000541 SDOperand Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000542 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
543 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000544 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000545 SDOperand SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000546 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000547 // Shift right or sign-extend it if the two operands have different types.
548 int SizeDiff = MVT::getSizeInBits(SrcNVT) - MVT::getSizeInBits(NVT);
549 if (SizeDiff > 0) {
550 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
551 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
552 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
553 } else if (SizeDiff < 0)
554 SignBit = DAG.getNode(ISD::SIGN_EXTEND, NVT, SignBit);
Evan Cheng068c5f42007-01-05 21:31:51 +0000555
556 // Clear the sign bit of first operand.
557 SDOperand Mask2 = (VT == MVT::f64)
558 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
559 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
560 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Evan Cheng912095b2007-01-04 21:56:39 +0000561 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000562 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
563
564 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000565 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
566 return Result;
567}
568
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000569/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
570static
571SDOperand ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
572 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000573 SDOperand Chain = ST->getChain();
574 SDOperand Ptr = ST->getBasePtr();
575 SDOperand Val = ST->getValue();
576 MVT::ValueType VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000577 int Alignment = ST->getAlignment();
578 int SVOffset = ST->getSrcValueOffset();
Dale Johannesen8155d642008-02-27 22:36:00 +0000579 if (MVT::isFloatingPoint(ST->getMemoryVT()) ||
580 MVT::isVector(ST->getMemoryVT())) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000581 // Expand to a bitconvert of the value to the integer type of the
582 // same size, then a (misaligned) int store.
583 MVT::ValueType intVT;
Dale Johannesen3c8b59c2008-03-01 03:40:57 +0000584 if (MVT::is128BitVector(VT) || VT == MVT::ppcf128 || VT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000585 intVT = MVT::i128;
Dale Johannesen3c8b59c2008-03-01 03:40:57 +0000586 else if (MVT::is64BitVector(VT) || VT==MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000587 intVT = MVT::i64;
588 else if (VT==MVT::f32)
589 intVT = MVT::i32;
590 else
Dale Johannesencd9f1742008-02-28 18:36:51 +0000591 assert(0 && "Unaligned store of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000592
593 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
594 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
595 SVOffset, ST->isVolatile(), Alignment);
596 }
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000597 assert(MVT::isInteger(ST->getMemoryVT()) &&
Dale Johannesen8155d642008-02-27 22:36:00 +0000598 !MVT::isVector(ST->getMemoryVT()) &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000599 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000600 // Get the half-size VT
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000601 MVT::ValueType NewStoredVT = ST->getMemoryVT() - 1;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000602 int NumBits = MVT::getSizeInBits(NewStoredVT);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000603 int IncrementSize = NumBits / 8;
604
605 // Divide the stored value in two parts.
606 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
607 SDOperand Lo = Val;
608 SDOperand Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
609
610 // Store the two parts
611 SDOperand Store1, Store2;
612 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
613 ST->getSrcValue(), SVOffset, NewStoredVT,
614 ST->isVolatile(), Alignment);
615 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
616 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000617 Alignment = MinAlign(Alignment, IncrementSize);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000618 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
619 ST->getSrcValue(), SVOffset + IncrementSize,
620 NewStoredVT, ST->isVolatile(), Alignment);
621
622 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
623}
624
625/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
626static
627SDOperand ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
628 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000629 int SVOffset = LD->getSrcValueOffset();
630 SDOperand Chain = LD->getChain();
631 SDOperand Ptr = LD->getBasePtr();
632 MVT::ValueType VT = LD->getValueType(0);
Dan Gohmanb625f2f2008-01-30 00:15:11 +0000633 MVT::ValueType LoadedVT = LD->getMemoryVT();
Dale Johannesen8155d642008-02-27 22:36:00 +0000634 if (MVT::isFloatingPoint(VT) || MVT::isVector(VT)) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000635 // Expand to a (misaligned) integer load of the same size,
Dale Johannesen8155d642008-02-27 22:36:00 +0000636 // then bitconvert to floating point or vector.
Dale Johannesen907f28c2007-09-08 19:29:23 +0000637 MVT::ValueType intVT;
Dale Johannesen3c8b59c2008-03-01 03:40:57 +0000638 if (MVT::is128BitVector(LoadedVT) ||
639 LoadedVT == MVT::ppcf128 || LoadedVT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000640 intVT = MVT::i128;
Dale Johannesen3c8b59c2008-03-01 03:40:57 +0000641 else if (MVT::is64BitVector(LoadedVT) || LoadedVT == MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000642 intVT = MVT::i64;
Chris Lattnere400af82007-11-19 21:38:03 +0000643 else if (LoadedVT == MVT::f32)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000644 intVT = MVT::i32;
645 else
Dale Johannesen8155d642008-02-27 22:36:00 +0000646 assert(0 && "Unaligned load of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000647
648 SDOperand newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
649 SVOffset, LD->isVolatile(),
650 LD->getAlignment());
651 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
Dale Johannesen8155d642008-02-27 22:36:00 +0000652 if (MVT::isFloatingPoint(VT) && LoadedVT != VT)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000653 Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
654
655 SDOperand Ops[] = { Result, Chain };
656 return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
657 Ops, 2);
658 }
Dale Johannesen8155d642008-02-27 22:36:00 +0000659 assert(MVT::isInteger(LoadedVT) && !MVT::isVector(LoadedVT) &&
Chris Lattnere400af82007-11-19 21:38:03 +0000660 "Unaligned load of unsupported type.");
661
Dale Johannesen8155d642008-02-27 22:36:00 +0000662 // Compute the new VT that is half the size of the old one. This is an
663 // integer MVT.
Chris Lattnere400af82007-11-19 21:38:03 +0000664 unsigned NumBits = MVT::getSizeInBits(LoadedVT);
665 MVT::ValueType NewLoadedVT;
Dale Johannesen8155d642008-02-27 22:36:00 +0000666 NewLoadedVT = MVT::getIntegerType(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000667 NumBits >>= 1;
668
669 unsigned Alignment = LD->getAlignment();
670 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000671 ISD::LoadExtType HiExtType = LD->getExtensionType();
672
673 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
674 if (HiExtType == ISD::NON_EXTLOAD)
675 HiExtType = ISD::ZEXTLOAD;
676
677 // Load the value in two parts
678 SDOperand Lo, Hi;
679 if (TLI.isLittleEndian()) {
680 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
681 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
682 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
683 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
684 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
685 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000686 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000687 } else {
688 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
689 NewLoadedVT,LD->isVolatile(), Alignment);
690 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
691 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
692 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
693 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000694 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000695 }
696
697 // aggregate the two parts
698 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
699 SDOperand Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
700 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
701
702 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
703 Hi.getValue(1));
704
705 SDOperand Ops[] = { Result, TF };
706 return DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other), Ops, 2);
707}
Evan Cheng912095b2007-01-04 21:56:39 +0000708
Dan Gohman82669522007-10-11 23:57:53 +0000709/// UnrollVectorOp - We know that the given vector has a legal type, however
710/// the operation it performs is not legal and is an operation that we have
711/// no way of lowering. "Unroll" the vector, splitting out the scalars and
712/// operating on each element individually.
713SDOperand SelectionDAGLegalize::UnrollVectorOp(SDOperand Op) {
714 MVT::ValueType VT = Op.getValueType();
715 assert(isTypeLegal(VT) &&
716 "Caller should expand or promote operands that are not legal!");
717 assert(Op.Val->getNumValues() == 1 &&
718 "Can't unroll a vector with multiple results!");
719 unsigned NE = MVT::getVectorNumElements(VT);
720 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
721
722 SmallVector<SDOperand, 8> Scalars;
723 SmallVector<SDOperand, 4> Operands(Op.getNumOperands());
724 for (unsigned i = 0; i != NE; ++i) {
725 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
726 SDOperand Operand = Op.getOperand(j);
727 MVT::ValueType OperandVT = Operand.getValueType();
728 if (MVT::isVector(OperandVT)) {
729 // A vector operand; extract a single element.
730 MVT::ValueType OperandEltVT = MVT::getVectorElementType(OperandVT);
731 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
732 OperandEltVT,
733 Operand,
734 DAG.getConstant(i, MVT::i32));
735 } else {
736 // A scalar operand; just use it as is.
737 Operands[j] = Operand;
738 }
739 }
740 Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
741 &Operands[0], Operands.size()));
742 }
743
744 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
745}
746
Duncan Sands007f9842008-01-10 10:28:30 +0000747/// GetFPLibCall - Return the right libcall for the given floating point type.
748static RTLIB::Libcall GetFPLibCall(MVT::ValueType VT,
749 RTLIB::Libcall Call_F32,
750 RTLIB::Libcall Call_F64,
751 RTLIB::Libcall Call_F80,
752 RTLIB::Libcall Call_PPCF128) {
753 return
754 VT == MVT::f32 ? Call_F32 :
755 VT == MVT::f64 ? Call_F64 :
756 VT == MVT::f80 ? Call_F80 :
757 VT == MVT::ppcf128 ? Call_PPCF128 :
758 RTLIB::UNKNOWN_LIBCALL;
759}
760
Dan Gohmana3466152007-07-13 20:14:11 +0000761/// LegalizeOp - We know that the specified value has a legal type, and
762/// that its operands are legal. Now ensure that the operation itself
763/// is legal, recursively ensuring that the operands' operations remain
764/// legal.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000765SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000766 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
767 return Op;
768
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000769 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000770 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000771 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000772
Chris Lattner3e928bb2005-01-07 07:47:09 +0000773 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000774 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000775 if (Node->getNumValues() > 1) {
776 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000777 if (getTypeAction(Node->getValueType(i)) != Legal) {
778 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000779 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000780 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000781 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000782 }
783 }
784
Chris Lattner45982da2005-05-12 16:53:42 +0000785 // Note that LegalizeOp may be reentered even from single-use nodes, which
786 // means that we always must cache transformed nodes.
Roman Levenstein9cac5252008-04-16 16:15:27 +0000787 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000788 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000789
Nate Begeman9373a812005-08-10 20:51:12 +0000790 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000791 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000792 bool isCustom = false;
793
Chris Lattner3e928bb2005-01-07 07:47:09 +0000794 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000795 case ISD::FrameIndex:
796 case ISD::EntryToken:
797 case ISD::Register:
798 case ISD::BasicBlock:
799 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000800 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000801 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000802 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000803 case ISD::TargetConstantPool:
804 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000805 case ISD::TargetGlobalTLSAddress:
Chris Lattner948c1b12006-01-28 08:31:04 +0000806 case ISD::TargetExternalSymbol:
807 case ISD::VALUETYPE:
808 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +0000809 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +0000810 case ISD::STRING:
811 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +0000812 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +0000813 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +0000814 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +0000815 "This must be legal!");
816 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000817 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000818 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
819 // If this is a target node, legalize it by legalizing the operands then
820 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000821 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000822 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000823 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000824
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000825 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000826
827 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
828 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
829 return Result.getValue(Op.ResNo);
830 }
831 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000832#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +0000833 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000834#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000835 assert(0 && "Do not know how to legalize this operator!");
836 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +0000837 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000838 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000839 case ISD::GlobalTLSAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000840 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000841 case ISD::ConstantPool:
842 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000843 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
844 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000845 case TargetLowering::Custom:
846 Tmp1 = TLI.LowerOperation(Op, DAG);
847 if (Tmp1.Val) Result = Tmp1;
848 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000849 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000850 break;
851 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000852 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000853 case ISD::FRAMEADDR:
854 case ISD::RETURNADDR:
855 // The only option for these nodes is to custom lower them. If the target
856 // does not custom lower them, then return zero.
857 Tmp1 = TLI.LowerOperation(Op, DAG);
858 if (Tmp1.Val)
859 Result = Tmp1;
860 else
861 Result = DAG.getConstant(0, TLI.getPointerTy());
862 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000863 case ISD::FRAME_TO_ARGS_OFFSET: {
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000864 MVT::ValueType VT = Node->getValueType(0);
865 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
866 default: assert(0 && "This action is not supported yet!");
867 case TargetLowering::Custom:
868 Result = TLI.LowerOperation(Op, DAG);
869 if (Result.Val) break;
870 // Fall Thru
871 case TargetLowering::Legal:
872 Result = DAG.getConstant(0, VT);
873 break;
874 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000875 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000876 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000877 case ISD::EXCEPTIONADDR: {
878 Tmp1 = LegalizeOp(Node->getOperand(0));
879 MVT::ValueType VT = Node->getValueType(0);
880 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
881 default: assert(0 && "This action is not supported yet!");
882 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000883 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000884 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000885 }
886 break;
887 case TargetLowering::Custom:
888 Result = TLI.LowerOperation(Op, DAG);
889 if (Result.Val) break;
890 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000891 case TargetLowering::Legal: {
892 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp1 };
893 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
Duncan Sandsb027fa02007-12-31 18:35:50 +0000894 Ops, 2);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000895 break;
896 }
897 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000898 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000899 if (Result.Val->getNumValues() == 1) break;
900
901 assert(Result.Val->getNumValues() == 2 &&
902 "Cannot return more than two values!");
903
904 // Since we produced two values, make sure to remember that we
905 // legalized both of them.
906 Tmp1 = LegalizeOp(Result);
907 Tmp2 = LegalizeOp(Result.getValue(1));
908 AddLegalizedOperand(Op.getValue(0), Tmp1);
909 AddLegalizedOperand(Op.getValue(1), Tmp2);
910 return Op.ResNo ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +0000911 case ISD::EHSELECTION: {
912 Tmp1 = LegalizeOp(Node->getOperand(0));
913 Tmp2 = LegalizeOp(Node->getOperand(1));
914 MVT::ValueType VT = Node->getValueType(0);
915 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
916 default: assert(0 && "This action is not supported yet!");
917 case TargetLowering::Expand: {
918 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000919 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +0000920 }
921 break;
922 case TargetLowering::Custom:
923 Result = TLI.LowerOperation(Op, DAG);
924 if (Result.Val) break;
925 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000926 case TargetLowering::Legal: {
927 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp2 };
928 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
Duncan Sandsb027fa02007-12-31 18:35:50 +0000929 Ops, 2);
Jim Laskey8782d482007-02-28 20:43:58 +0000930 break;
931 }
932 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000933 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000934 if (Result.Val->getNumValues() == 1) break;
935
936 assert(Result.Val->getNumValues() == 2 &&
937 "Cannot return more than two values!");
938
939 // Since we produced two values, make sure to remember that we
940 // legalized both of them.
941 Tmp1 = LegalizeOp(Result);
942 Tmp2 = LegalizeOp(Result.getValue(1));
943 AddLegalizedOperand(Op.getValue(0), Tmp1);
944 AddLegalizedOperand(Op.getValue(1), Tmp2);
945 return Op.ResNo ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000946 case ISD::EH_RETURN: {
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000947 MVT::ValueType VT = Node->getValueType(0);
948 // The only "good" option for this node is to custom lower it.
949 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
950 default: assert(0 && "This action is not supported at all!");
951 case TargetLowering::Custom:
952 Result = TLI.LowerOperation(Op, DAG);
953 if (Result.Val) break;
954 // Fall Thru
955 case TargetLowering::Legal:
956 // Target does not know, how to lower this, lower to noop
957 Result = LegalizeOp(Node->getOperand(0));
958 break;
959 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000960 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000961 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000962 case ISD::AssertSext:
963 case ISD::AssertZext:
964 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000965 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000966 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000967 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000968 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +0000969 Result = Node->getOperand(Op.ResNo);
970 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000971 case ISD::CopyFromReg:
972 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000973 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000974 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000975 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000976 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000977 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000978 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000979 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000980 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
981 } else {
982 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
983 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000984 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
985 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000986 // Since CopyFromReg produces two values, make sure to remember that we
987 // legalized both of them.
988 AddLegalizedOperand(Op.getValue(0), Result);
989 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
990 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000991 case ISD::UNDEF: {
992 MVT::ValueType VT = Op.getValueType();
993 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000994 default: assert(0 && "This action is not supported yet!");
995 case TargetLowering::Expand:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000996 if (MVT::isInteger(VT))
997 Result = DAG.getConstant(0, VT);
998 else if (MVT::isFloatingPoint(VT))
Dale Johannesenf41db212007-09-26 17:26:49 +0000999 Result = DAG.getConstantFP(APFloat(APInt(MVT::getSizeInBits(VT), 0)),
1000 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001001 else
1002 assert(0 && "Unknown value type!");
1003 break;
Nate Begemanea19cd52005-04-02 00:41:14 +00001004 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001005 break;
1006 }
1007 break;
1008 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001009
Chris Lattner48b61a72006-03-28 00:40:33 +00001010 case ISD::INTRINSIC_W_CHAIN:
1011 case ISD::INTRINSIC_WO_CHAIN:
1012 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001013 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001014 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1015 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001016 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +00001017
1018 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +00001019 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001020 TargetLowering::Custom) {
1021 Tmp3 = TLI.LowerOperation(Result, DAG);
1022 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001023 }
1024
1025 if (Result.Val->getNumValues() == 1) break;
1026
1027 // Must have return value and chain result.
1028 assert(Result.Val->getNumValues() == 2 &&
1029 "Cannot return more than two values!");
1030
1031 // Since loads produce two values, make sure to remember that we
1032 // legalized both of them.
1033 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1034 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1035 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001036 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001037
1038 case ISD::LOCATION:
1039 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
1040 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1041
1042 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
1043 case TargetLowering::Promote:
1044 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001045 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001046 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001047 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Jim Laskey1ee29252007-01-26 14:34:52 +00001048 bool useLABEL = TLI.isOperationLegal(ISD::LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001049
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001050 if (MMI && (useDEBUG_LOC || useLABEL)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001051 const std::string &FName =
1052 cast<StringSDNode>(Node->getOperand(3))->getValue();
1053 const std::string &DirName =
1054 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001055 unsigned SrcFile = MMI->RecordSource(DirName, FName);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001056
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001057 SmallVector<SDOperand, 8> Ops;
Jim Laskeye81aecb2005-12-21 20:51:37 +00001058 Ops.push_back(Tmp1); // chain
Jim Laskeyabf6d172006-01-05 01:25:28 +00001059 SDOperand LineOp = Node->getOperand(1);
1060 SDOperand ColOp = Node->getOperand(2);
1061
1062 if (useDEBUG_LOC) {
1063 Ops.push_back(LineOp); // line #
1064 Ops.push_back(ColOp); // col #
1065 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001066 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001067 } else {
Jim Laskeyd0e58e32006-02-15 19:34:44 +00001068 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
1069 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Evan Chenga647c922008-02-01 02:05:57 +00001070 unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001071 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Evan Chengbb81d972008-01-31 09:59:15 +00001072 Ops.push_back(DAG.getConstant(0, MVT::i32)); // a debug label
1073 Result = DAG.getNode(ISD::LABEL, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001074 }
Jim Laskeye81aecb2005-12-21 20:51:37 +00001075 } else {
1076 Result = Tmp1; // chain
1077 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001078 break;
Chris Lattnere7736732005-12-18 23:54:29 +00001079 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001080 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +00001081 if (Tmp1 != Node->getOperand(0) ||
1082 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001083 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +00001084 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +00001085 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
1086 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1087 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1088 } else {
1089 // Otherwise promote them.
1090 Ops.push_back(PromoteOp(Node->getOperand(1)));
1091 Ops.push_back(PromoteOp(Node->getOperand(2)));
1092 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001093 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1094 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001095 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001096 }
1097 break;
1098 }
1099 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001100
1101 case ISD::DECLARE:
1102 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1103 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1104 default: assert(0 && "This action is not supported yet!");
1105 case TargetLowering::Legal:
1106 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1107 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1108 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1109 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1110 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001111 case TargetLowering::Expand:
1112 Result = LegalizeOp(Node->getOperand(0));
1113 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001114 }
1115 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001116
1117 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001118 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001119 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001120 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +00001121 case TargetLowering::Legal:
1122 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1123 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1124 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1125 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001126 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001127 break;
1128 }
1129 break;
1130
Jim Laskey1ee29252007-01-26 14:34:52 +00001131 case ISD::LABEL:
Evan Chengbb81d972008-01-31 09:59:15 +00001132 assert(Node->getNumOperands() == 3 && "Invalid LABEL node!");
Jim Laskey1ee29252007-01-26 14:34:52 +00001133 switch (TLI.getOperationAction(ISD::LABEL, MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001134 default: assert(0 && "This action is not supported yet!");
1135 case TargetLowering::Legal:
1136 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1137 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Evan Chengbb81d972008-01-31 09:59:15 +00001138 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the "flavor" operand.
1139 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001140 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001141 case TargetLowering::Expand:
1142 Result = LegalizeOp(Node->getOperand(0));
1143 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001144 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001145 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001146
Evan Cheng27b7db52008-03-08 00:58:38 +00001147 case ISD::PREFETCH:
1148 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1149 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1150 default: assert(0 && "This action is not supported yet!");
1151 case TargetLowering::Legal:
1152 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1153 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1154 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1155 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1156 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1157 break;
1158 case TargetLowering::Expand:
1159 // It's a noop.
1160 Result = LegalizeOp(Node->getOperand(0));
1161 break;
1162 }
1163 break;
1164
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001165 case ISD::MEMBARRIER: {
1166 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001167 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1168 default: assert(0 && "This action is not supported yet!");
1169 case TargetLowering::Legal: {
1170 SDOperand Ops[6];
1171 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001172 for (int x = 1; x < 6; ++x) {
1173 Ops[x] = Node->getOperand(x);
1174 if (!isTypeLegal(Ops[x].getValueType()))
1175 Ops[x] = PromoteOp(Ops[x]);
1176 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001177 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1178 break;
1179 }
1180 case TargetLowering::Expand:
1181 //There is no libgcc call for this op
1182 Result = Node->getOperand(0); // Noop
1183 break;
1184 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001185 break;
1186 }
1187
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001188 case ISD::ATOMIC_LCS:
1189 case ISD::ATOMIC_LAS:
1190 case ISD::ATOMIC_SWAP: {
1191 assert(((Node->getNumOperands() == 4 && Node->getOpcode() == ISD::ATOMIC_LCS) ||
1192 (Node->getNumOperands() == 3 && Node->getOpcode() == ISD::ATOMIC_LAS) ||
1193 (Node->getNumOperands() == 3 && Node->getOpcode() == ISD::ATOMIC_SWAP)) &&
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001194 "Invalid Atomic node!");
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001195 int num = Node->getOpcode() == ISD::ATOMIC_LCS ? 4 : 3;
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001196 SDOperand Ops[4];
1197 for (int x = 0; x < num; ++x)
1198 Ops[x] = LegalizeOp(Node->getOperand(x));
1199 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num);
1200
1201 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001202 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001203 case TargetLowering::Custom:
1204 Result = TLI.LowerOperation(Result, DAG);
1205 break;
1206 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001207 break;
1208 }
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001209 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1210 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1211 return Result.getValue(Op.ResNo);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001212 }
1213
Scott Michelc1513d22007-08-08 23:23:31 +00001214 case ISD::Constant: {
1215 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1216 unsigned opAction =
1217 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1218
Chris Lattner3e928bb2005-01-07 07:47:09 +00001219 // We know we don't need to expand constants here, constants only have one
1220 // value and we check that it is fine above.
1221
Scott Michelc1513d22007-08-08 23:23:31 +00001222 if (opAction == TargetLowering::Custom) {
1223 Tmp1 = TLI.LowerOperation(Result, DAG);
1224 if (Tmp1.Val)
1225 Result = Tmp1;
1226 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001227 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001228 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001229 case ISD::ConstantFP: {
1230 // Spill FP immediates to the constant pool if the target cannot directly
1231 // codegen them. Targets often have some immediate values that can be
1232 // efficiently generated into an FP register without a load. We explicitly
1233 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001234 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1235
Chris Lattner3181a772006-01-29 06:26:56 +00001236 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1237 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001238 case TargetLowering::Legal:
1239 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001240 case TargetLowering::Custom:
1241 Tmp3 = TLI.LowerOperation(Result, DAG);
1242 if (Tmp3.Val) {
1243 Result = Tmp3;
1244 break;
1245 }
1246 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001247 case TargetLowering::Expand: {
1248 // Check to see if this FP immediate is already legal.
1249 bool isLegal = false;
1250 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1251 E = TLI.legal_fpimm_end(); I != E; ++I) {
1252 if (CFP->isExactlyValue(*I)) {
1253 isLegal = true;
1254 break;
1255 }
1256 }
1257 // If this is a legal constant, turn it into a TargetConstantFP node.
1258 if (isLegal)
1259 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001260 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001261 }
Nate Begemane1795842008-02-14 08:57:00 +00001262 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001263 break;
1264 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001265 case ISD::TokenFactor:
1266 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001267 Tmp1 = LegalizeOp(Node->getOperand(0));
1268 Tmp2 = LegalizeOp(Node->getOperand(1));
1269 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1270 } else if (Node->getNumOperands() == 3) {
1271 Tmp1 = LegalizeOp(Node->getOperand(0));
1272 Tmp2 = LegalizeOp(Node->getOperand(1));
1273 Tmp3 = LegalizeOp(Node->getOperand(2));
1274 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001275 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001276 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001277 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001278 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1279 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001280 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001281 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001282 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001283
1284 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001285 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001286 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001287 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1288 assert(Tmp3.Val && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001289 // A call within a calling sequence must be legalized to something
1290 // other than the normal CALLSEQ_END. Violating this gets Legalize
1291 // into an infinite loop.
1292 assert ((!IsLegalizingCall ||
1293 Node->getOpcode() != ISD::CALL ||
1294 Tmp3.Val->getOpcode() != ISD::CALLSEQ_END) &&
1295 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001296
1297 // The number of incoming and outgoing values should match; unless the final
1298 // outgoing value is a flag.
1299 assert((Tmp3.Val->getNumValues() == Result.Val->getNumValues() ||
1300 (Tmp3.Val->getNumValues() == Result.Val->getNumValues() + 1 &&
1301 Tmp3.Val->getValueType(Tmp3.Val->getNumValues() - 1) ==
1302 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001303 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001304
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001305 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001306 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +00001307 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001308 if (Tmp3.Val->getValueType(i) == MVT::Flag)
1309 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001310 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +00001311 if (Op.ResNo == i)
1312 Tmp2 = Tmp1;
1313 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
1314 }
1315 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001316 case ISD::EXTRACT_SUBREG: {
1317 Tmp1 = LegalizeOp(Node->getOperand(0));
1318 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1319 assert(idx && "Operand must be a constant");
1320 Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1321 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1322 }
1323 break;
1324 case ISD::INSERT_SUBREG: {
1325 Tmp1 = LegalizeOp(Node->getOperand(0));
1326 Tmp2 = LegalizeOp(Node->getOperand(1));
1327 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1328 assert(idx && "Operand must be a constant");
1329 Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1330 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1331 }
1332 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001333 case ISD::BUILD_VECTOR:
1334 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001335 default: assert(0 && "This action is not supported yet!");
1336 case TargetLowering::Custom:
1337 Tmp3 = TLI.LowerOperation(Result, DAG);
1338 if (Tmp3.Val) {
1339 Result = Tmp3;
1340 break;
1341 }
1342 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001343 case TargetLowering::Expand:
1344 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +00001345 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001346 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001347 break;
1348 case ISD::INSERT_VECTOR_ELT:
1349 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001350 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001351
1352 // The type of the value to insert may not be legal, even though the vector
1353 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1354 // here.
1355 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1356 default: assert(0 && "Cannot expand insert element operand");
1357 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1358 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1359 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001360 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1361
1362 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1363 Node->getValueType(0))) {
1364 default: assert(0 && "This action is not supported yet!");
1365 case TargetLowering::Legal:
1366 break;
1367 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001368 Tmp4 = TLI.LowerOperation(Result, DAG);
1369 if (Tmp4.Val) {
1370 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001371 break;
1372 }
1373 // FALLTHROUGH
1374 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001375 // If the insert index is a constant, codegen this as a scalar_to_vector,
1376 // then a shuffle that inserts it into the right position in the vector.
1377 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001378 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1379 // match the element type of the vector being created.
1380 if (Tmp2.getValueType() ==
1381 MVT::getVectorElementType(Op.getValueType())) {
1382 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
1383 Tmp1.getValueType(), Tmp2);
1384
1385 unsigned NumElts = MVT::getVectorNumElements(Tmp1.getValueType());
1386 MVT::ValueType ShufMaskVT = MVT::getIntVectorWithNumElements(NumElts);
1387 MVT::ValueType ShufMaskEltVT = MVT::getVectorElementType(ShufMaskVT);
1388
1389 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1390 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1391 // elt 0 of the RHS.
1392 SmallVector<SDOperand, 8> ShufOps;
1393 for (unsigned i = 0; i != NumElts; ++i) {
1394 if (i != InsertPos->getValue())
1395 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1396 else
1397 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1398 }
1399 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
1400 &ShufOps[0], ShufOps.size());
1401
1402 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1403 Tmp1, ScVec, ShufMask);
1404 Result = LegalizeOp(Result);
1405 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001406 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001407 }
1408
Chris Lattner2332b9f2006-03-19 01:17:20 +00001409 // If the target doesn't support this, we have to spill the input vector
1410 // to a temporary stack slot, update the element, then reload it. This is
1411 // badness. We could also load the value into a vector register (either
1412 // with a "move to register" or "extload into register" instruction, then
1413 // permute it into place, if the idx is a constant and if the idx is
1414 // supported by the target.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001415 MVT::ValueType VT = Tmp1.getValueType();
Nate Begeman0325d902008-02-13 06:43:04 +00001416 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
Evan Chengf6bf87f2006-04-08 01:46:37 +00001417 MVT::ValueType IdxVT = Tmp3.getValueType();
1418 MVT::ValueType PtrVT = TLI.getPointerTy();
Chris Lattner85dd3be2007-10-15 17:48:57 +00001419 SDOperand StackPtr = DAG.CreateStackTemporary(VT);
Dan Gohman69de1932008-02-06 22:27:42 +00001420
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00001421 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr.Val);
Dan Gohman69de1932008-02-06 22:27:42 +00001422 int SPFI = StackPtrFI->getIndex();
1423
Evan Chengeb0b4612006-03-31 01:27:51 +00001424 // Store the vector.
Dan Gohman69de1932008-02-06 22:27:42 +00001425 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00001426 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00001427 SPFI);
Evan Chengeb0b4612006-03-31 01:27:51 +00001428
1429 // Truncate or zero extend offset to target pointer type.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001430 unsigned CastOpc = (IdxVT > PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
1431 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
Evan Chengeb0b4612006-03-31 01:27:51 +00001432 // Add the offset to the index.
Evan Chengf6bf87f2006-04-08 01:46:37 +00001433 unsigned EltSize = MVT::getSizeInBits(EltVT)/8;
1434 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
1435 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Evan Chengeb0b4612006-03-31 01:27:51 +00001436 // Store the scalar value.
Nate Begeman0325d902008-02-13 06:43:04 +00001437 Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2,
1438 PseudoSourceValue::getFixedStack(), SPFI, EltVT);
Evan Chengeb0b4612006-03-31 01:27:51 +00001439 // Load the updated vector.
Dan Gohman69de1932008-02-06 22:27:42 +00001440 Result = DAG.getLoad(VT, Ch, StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00001441 PseudoSourceValue::getFixedStack(), SPFI);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001442 break;
1443 }
1444 }
1445 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001446 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001447 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1448 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1449 break;
1450 }
1451
Chris Lattnerce872152006-03-19 06:31:19 +00001452 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1453 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1454 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1455 Node->getValueType(0))) {
1456 default: assert(0 && "This action is not supported yet!");
1457 case TargetLowering::Legal:
1458 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001459 case TargetLowering::Custom:
1460 Tmp3 = TLI.LowerOperation(Result, DAG);
1461 if (Tmp3.Val) {
1462 Result = Tmp3;
1463 break;
1464 }
1465 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001466 case TargetLowering::Expand:
1467 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001468 break;
1469 }
Chris Lattnerce872152006-03-19 06:31:19 +00001470 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001471 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001472 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1473 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1474 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1475
1476 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001477 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1478 default: assert(0 && "Unknown operation action!");
1479 case TargetLowering::Legal:
1480 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1481 "vector shuffle should not be created if not legal!");
1482 break;
1483 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001484 Tmp3 = TLI.LowerOperation(Result, DAG);
1485 if (Tmp3.Val) {
1486 Result = Tmp3;
1487 break;
1488 }
1489 // FALLTHROUGH
1490 case TargetLowering::Expand: {
1491 MVT::ValueType VT = Node->getValueType(0);
Dan Gohman51eaa862007-06-14 22:58:02 +00001492 MVT::ValueType EltVT = MVT::getVectorElementType(VT);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001493 MVT::ValueType PtrVT = TLI.getPointerTy();
1494 SDOperand Mask = Node->getOperand(2);
1495 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001496 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001497 for (unsigned i = 0; i != NumElems; ++i) {
1498 SDOperand Arg = Mask.getOperand(i);
1499 if (Arg.getOpcode() == ISD::UNDEF) {
1500 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1501 } else {
1502 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1503 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1504 if (Idx < NumElems)
1505 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1506 DAG.getConstant(Idx, PtrVT)));
1507 else
1508 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1509 DAG.getConstant(Idx - NumElems, PtrVT)));
1510 }
1511 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001512 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001513 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001514 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001515 case TargetLowering::Promote: {
1516 // Change base type to a different vector type.
1517 MVT::ValueType OVT = Node->getValueType(0);
1518 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
1519
1520 // Cast the two input vectors.
1521 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1522 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1523
1524 // Convert the shuffle mask to the right # elements.
1525 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1526 assert(Tmp3.Val && "Shuffle not legal?");
1527 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1528 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1529 break;
1530 }
Chris Lattner87100e02006-03-20 01:52:29 +00001531 }
1532 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001533
1534 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001535 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001536 Tmp2 = LegalizeOp(Node->getOperand(1));
1537 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001538 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001539 break;
1540
Dan Gohman7f321562007-06-25 16:23:39 +00001541 case ISD::EXTRACT_SUBVECTOR:
1542 Tmp1 = Node->getOperand(0);
1543 Tmp2 = LegalizeOp(Node->getOperand(1));
1544 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1545 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001546 break;
1547
Chris Lattner6831a812006-02-13 09:18:02 +00001548 case ISD::CALLSEQ_START: {
1549 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1550
1551 // Recursively Legalize all of the inputs of the call end that do not lead
1552 // to this call start. This ensures that any libcalls that need be inserted
1553 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001554 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001555 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001556 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1557 NodesLeadingTo);
1558 }
Chris Lattner6831a812006-02-13 09:18:02 +00001559
1560 // Now that we legalized all of the inputs (which may have inserted
1561 // libcalls) create the new CALLSEQ_START node.
1562 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1563
1564 // Merge in the last call, to ensure that this call start after the last
1565 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001566 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001567 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1568 Tmp1 = LegalizeOp(Tmp1);
1569 }
Chris Lattner6831a812006-02-13 09:18:02 +00001570
1571 // Do not try to legalize the target-specific arguments (#1+).
1572 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001573 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001574 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001575 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001576 }
1577
1578 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001579 AddLegalizedOperand(Op.getValue(0), Result);
1580 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1581 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1582
Chris Lattner6831a812006-02-13 09:18:02 +00001583 // Now that the callseq_start and all of the non-call nodes above this call
1584 // sequence have been legalized, legalize the call itself. During this
1585 // process, no libcalls can/will be inserted, guaranteeing that no calls
1586 // can overlap.
1587 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
1588 SDOperand InCallSEQ = LastCALLSEQ_END;
1589 // Note that we are selecting this call!
1590 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1591 IsLegalizingCall = true;
1592
1593 // Legalize the call, starting from the CALLSEQ_END.
1594 LegalizeOp(LastCALLSEQ_END);
1595 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1596 return Result;
1597 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001598 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001599 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1600 // will cause this node to be legalized as well as handling libcalls right.
1601 if (LastCALLSEQ_END.Val != Node) {
1602 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
Roman Levenstein9cac5252008-04-16 16:15:27 +00001603 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001604 assert(I != LegalizedNodes.end() &&
1605 "Legalizing the call start should have legalized this node!");
1606 return I->second;
1607 }
1608
1609 // Otherwise, the call start has been legalized and everything is going
1610 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001611 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001612 // Do not try to legalize the target-specific arguments (#1+), except for
1613 // an optional flag input.
1614 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1615 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001616 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001617 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001618 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001619 }
1620 } else {
1621 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1622 if (Tmp1 != Node->getOperand(0) ||
1623 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001624 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001625 Ops[0] = Tmp1;
1626 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001627 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001628 }
Chris Lattner6a542892006-01-24 05:48:21 +00001629 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001630 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001631 // This finishes up call legalization.
1632 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001633
1634 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1635 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1636 if (Node->getNumValues() == 2)
1637 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1638 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001639 case ISD::DYNAMIC_STACKALLOC: {
Evan Cheng61bbbab2007-08-16 23:50:06 +00001640 MVT::ValueType VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001641 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1642 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1643 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001644 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001645
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001646 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001647 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001648 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001649 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001650 case TargetLowering::Expand: {
1651 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1652 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1653 " not tell us which reg is the stack pointer!");
1654 SDOperand Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001655
1656 // Chain the dynamic stack allocation so that it doesn't modify the stack
1657 // pointer when other instructions are using the stack.
1658 Chain = DAG.getCALLSEQ_START(Chain,
1659 DAG.getConstant(0, TLI.getPointerTy()));
1660
Chris Lattner903d2782006-01-15 08:54:32 +00001661 SDOperand Size = Tmp2.getOperand(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001662 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, VT);
1663 Chain = SP.getValue(1);
1664 unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1665 unsigned StackAlign =
1666 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1667 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001668 SP = DAG.getNode(ISD::AND, VT, SP,
1669 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001670 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001671 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1672
1673 Tmp2 =
1674 DAG.getCALLSEQ_END(Chain,
1675 DAG.getConstant(0, TLI.getPointerTy()),
1676 DAG.getConstant(0, TLI.getPointerTy()),
1677 SDOperand());
1678
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001679 Tmp1 = LegalizeOp(Tmp1);
1680 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001681 break;
1682 }
1683 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001684 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1685 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001686 Tmp1 = LegalizeOp(Tmp3);
1687 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001688 }
Chris Lattner903d2782006-01-15 08:54:32 +00001689 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001690 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001691 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001692 }
Chris Lattner903d2782006-01-15 08:54:32 +00001693 // Since this op produce two values, make sure to remember that we
1694 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001695 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1696 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001697 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001698 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001699 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001700 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001701 bool Changed = false;
1702 // Legalize all of the operands of the inline asm, in case they are nodes
1703 // that need to be expanded or something. Note we skip the asm string and
1704 // all of the TargetConstant flags.
1705 SDOperand Op = LegalizeOp(Ops[0]);
1706 Changed = Op != Ops[0];
1707 Ops[0] = Op;
1708
1709 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1710 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1711 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1712 for (++i; NumVals; ++i, --NumVals) {
1713 SDOperand Op = LegalizeOp(Ops[i]);
1714 if (Op != Ops[i]) {
1715 Changed = true;
1716 Ops[i] = Op;
1717 }
1718 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001719 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001720
1721 if (HasInFlag) {
1722 Op = LegalizeOp(Ops.back());
1723 Changed |= Op != Ops.back();
1724 Ops.back() = Op;
1725 }
1726
1727 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001728 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001729
1730 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001731 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001732 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1733 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001734 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001735 case ISD::BR:
1736 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001737 // Ensure that libcalls are emitted before a branch.
1738 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1739 Tmp1 = LegalizeOp(Tmp1);
1740 LastCALLSEQ_END = DAG.getEntryNode();
1741
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001742 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001743 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001744 case ISD::BRIND:
1745 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1746 // Ensure that libcalls are emitted before a branch.
1747 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1748 Tmp1 = LegalizeOp(Tmp1);
1749 LastCALLSEQ_END = DAG.getEntryNode();
1750
1751 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1752 default: assert(0 && "Indirect target must be legal type (pointer)!");
1753 case Legal:
1754 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1755 break;
1756 }
1757 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1758 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001759 case ISD::BR_JT:
1760 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1761 // Ensure that libcalls are emitted before a branch.
1762 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1763 Tmp1 = LegalizeOp(Tmp1);
1764 LastCALLSEQ_END = DAG.getEntryNode();
1765
1766 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1767 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1768
1769 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1770 default: assert(0 && "This action is not supported yet!");
1771 case TargetLowering::Legal: break;
1772 case TargetLowering::Custom:
1773 Tmp1 = TLI.LowerOperation(Result, DAG);
1774 if (Tmp1.Val) Result = Tmp1;
1775 break;
1776 case TargetLowering::Expand: {
1777 SDOperand Chain = Result.getOperand(0);
1778 SDOperand Table = Result.getOperand(1);
1779 SDOperand Index = Result.getOperand(2);
1780
1781 MVT::ValueType PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001782 MachineFunction &MF = DAG.getMachineFunction();
1783 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001784 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1785 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001786
1787 SDOperand LD;
1788 switch (EntrySize) {
1789 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001790 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001791 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001792 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001793 PseudoSourceValue::getJumpTable(), 0); break;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001794 }
1795
Evan Chengcc415862007-11-09 01:32:10 +00001796 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001797 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001798 // For PIC, the sequence is:
1799 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00001800 // RelocBase can be JumpTable, GOT or some sort of global base.
1801 if (PTy != MVT::i32)
1802 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1803 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1804 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00001805 }
Evan Chengcc415862007-11-09 01:32:10 +00001806 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001807 }
1808 }
1809 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001810 case ISD::BRCOND:
1811 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001812 // Ensure that libcalls are emitted before a return.
1813 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1814 Tmp1 = LegalizeOp(Tmp1);
1815 LastCALLSEQ_END = DAG.getEntryNode();
1816
Chris Lattner47e92232005-01-18 19:27:06 +00001817 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1818 case Expand: assert(0 && "It's impossible to expand bools");
1819 case Legal:
1820 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1821 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001822 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00001823 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001824
1825 // The top bits of the promoted condition are not necessarily zero, ensure
1826 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001827 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001828 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001829 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerf9908172006-11-27 04:39:56 +00001830 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001831 break;
1832 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001833 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001834
1835 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001836 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001837
1838 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1839 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001840 case TargetLowering::Legal: break;
1841 case TargetLowering::Custom:
1842 Tmp1 = TLI.LowerOperation(Result, DAG);
1843 if (Tmp1.Val) Result = Tmp1;
1844 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001845 case TargetLowering::Expand:
1846 // Expand brcond's setcc into its constituent parts and create a BR_CC
1847 // Node.
1848 if (Tmp2.getOpcode() == ISD::SETCC) {
1849 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1850 Tmp2.getOperand(0), Tmp2.getOperand(1),
1851 Node->getOperand(2));
1852 } else {
1853 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1854 DAG.getCondCode(ISD::SETNE), Tmp2,
1855 DAG.getConstant(0, Tmp2.getValueType()),
1856 Node->getOperand(2));
1857 }
1858 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001859 }
1860 break;
1861 case ISD::BR_CC:
1862 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001863 // Ensure that libcalls are emitted before a branch.
1864 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1865 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001866 Tmp2 = Node->getOperand(2); // LHS
1867 Tmp3 = Node->getOperand(3); // RHS
1868 Tmp4 = Node->getOperand(1); // CC
1869
1870 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001871 LastCALLSEQ_END = DAG.getEntryNode();
1872
Nate Begeman750ac1b2006-02-01 07:19:44 +00001873 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1874 // the LHS is a legal SETCC itself. In this case, we need to compare
1875 // the result against zero to select between true and false values.
1876 if (Tmp3.Val == 0) {
1877 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1878 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001879 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001880
1881 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1882 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001883
Chris Lattner181b7a32005-12-17 23:46:46 +00001884 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1885 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001886 case TargetLowering::Legal: break;
1887 case TargetLowering::Custom:
1888 Tmp4 = TLI.LowerOperation(Result, DAG);
1889 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001890 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001891 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001892 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001893 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001894 LoadSDNode *LD = cast<LoadSDNode>(Node);
1895 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1896 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001897
Evan Cheng466685d2006-10-09 20:57:25 +00001898 ISD::LoadExtType ExtType = LD->getExtensionType();
1899 if (ExtType == ISD::NON_EXTLOAD) {
1900 MVT::ValueType VT = Node->getValueType(0);
1901 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1902 Tmp3 = Result.getValue(0);
1903 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001904
Evan Cheng466685d2006-10-09 20:57:25 +00001905 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1906 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001907 case TargetLowering::Legal:
1908 // If this is an unaligned load and the target doesn't support it,
1909 // expand it.
1910 if (!TLI.allowsUnalignedMemoryAccesses()) {
1911 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001912 getABITypeAlignment(MVT::getTypeForValueType(LD->getMemoryVT()));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001913 if (LD->getAlignment() < ABIAlignment){
1914 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1915 TLI);
1916 Tmp3 = Result.getOperand(0);
1917 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001918 Tmp3 = LegalizeOp(Tmp3);
1919 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001920 }
1921 }
1922 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001923 case TargetLowering::Custom:
1924 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1925 if (Tmp1.Val) {
1926 Tmp3 = LegalizeOp(Tmp1);
1927 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001928 }
Evan Cheng466685d2006-10-09 20:57:25 +00001929 break;
1930 case TargetLowering::Promote: {
1931 // Only promote a load of vector type to another.
1932 assert(MVT::isVector(VT) && "Cannot promote this load!");
1933 // Change base type to a different vector type.
1934 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
1935
1936 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001937 LD->getSrcValueOffset(),
1938 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001939 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1940 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001941 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001942 }
Evan Cheng466685d2006-10-09 20:57:25 +00001943 }
1944 // Since loads produce two values, make sure to remember that we
1945 // legalized both of them.
1946 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1947 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1948 return Op.ResNo ? Tmp4 : Tmp3;
1949 } else {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00001950 MVT::ValueType SrcVT = LD->getMemoryVT();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001951 unsigned SrcWidth = MVT::getSizeInBits(SrcVT);
1952 int SVOffset = LD->getSrcValueOffset();
1953 unsigned Alignment = LD->getAlignment();
1954 bool isVolatile = LD->isVolatile();
1955
1956 if (SrcWidth != MVT::getStoreSizeInBits(SrcVT) &&
1957 // Some targets pretend to have an i1 loading operation, and actually
1958 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1959 // bits are guaranteed to be zero; it helps the optimizers understand
1960 // that these bits are zero. It is also useful for EXTLOAD, since it
1961 // tells the optimizers that those bits are undefined. It would be
1962 // nice to have an effective generic way of getting these benefits...
1963 // Until such a way is found, don't insist on promoting i1 here.
1964 (SrcVT != MVT::i1 ||
1965 TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
1966 // Promote to a byte-sized load if not loading an integral number of
1967 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
1968 unsigned NewWidth = MVT::getStoreSizeInBits(SrcVT);
1969 MVT::ValueType NVT = MVT::getIntegerType(NewWidth);
1970 SDOperand Ch;
1971
1972 // The extra bits are guaranteed to be zero, since we stored them that
1973 // way. A zext load from NVT thus automatically gives zext from SrcVT.
1974
1975 ISD::LoadExtType NewExtType =
1976 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
1977
1978 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
1979 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
1980 NVT, isVolatile, Alignment);
1981
1982 Ch = Result.getValue(1); // The chain.
1983
1984 if (ExtType == ISD::SEXTLOAD)
1985 // Having the top bits zero doesn't help when sign extending.
1986 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
1987 Result, DAG.getValueType(SrcVT));
1988 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
1989 // All the top bits are guaranteed to be zero - inform the optimizers.
1990 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
1991 DAG.getValueType(SrcVT));
1992
1993 Tmp1 = LegalizeOp(Result);
1994 Tmp2 = LegalizeOp(Ch);
1995 } else if (SrcWidth & (SrcWidth - 1)) {
1996 // If not loading a power-of-2 number of bits, expand as two loads.
1997 assert(MVT::isExtendedVT(SrcVT) && !MVT::isVector(SrcVT) &&
1998 "Unsupported extload!");
1999 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2000 assert(RoundWidth < SrcWidth);
2001 unsigned ExtraWidth = SrcWidth - RoundWidth;
2002 assert(ExtraWidth < RoundWidth);
2003 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2004 "Load size not an integral number of bytes!");
2005 MVT::ValueType RoundVT = MVT::getIntegerType(RoundWidth);
2006 MVT::ValueType ExtraVT = MVT::getIntegerType(ExtraWidth);
2007 SDOperand Lo, Hi, Ch;
2008 unsigned IncrementSize;
2009
2010 if (TLI.isLittleEndian()) {
2011 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2012 // Load the bottom RoundWidth bits.
2013 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2014 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2015 Alignment);
2016
2017 // Load the remaining ExtraWidth bits.
2018 IncrementSize = RoundWidth / 8;
2019 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2020 DAG.getIntPtrConstant(IncrementSize));
2021 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2022 LD->getSrcValue(), SVOffset + IncrementSize,
2023 ExtraVT, isVolatile,
2024 MinAlign(Alignment, IncrementSize));
2025
2026 // Build a factor node to remember that this load is independent of the
2027 // other one.
2028 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2029 Hi.getValue(1));
2030
2031 // Move the top bits to the right place.
2032 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2033 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2034
2035 // Join the hi and lo parts.
2036 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002037 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002038 // Big endian - avoid unaligned loads.
2039 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2040 // Load the top RoundWidth bits.
2041 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2042 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2043 Alignment);
2044
2045 // Load the remaining ExtraWidth bits.
2046 IncrementSize = RoundWidth / 8;
2047 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2048 DAG.getIntPtrConstant(IncrementSize));
2049 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2050 LD->getSrcValue(), SVOffset + IncrementSize,
2051 ExtraVT, isVolatile,
2052 MinAlign(Alignment, IncrementSize));
2053
2054 // Build a factor node to remember that this load is independent of the
2055 // other one.
2056 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2057 Hi.getValue(1));
2058
2059 // Move the top bits to the right place.
2060 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2061 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2062
2063 // Join the hi and lo parts.
2064 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2065 }
2066
2067 Tmp1 = LegalizeOp(Result);
2068 Tmp2 = LegalizeOp(Ch);
2069 } else {
2070 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
2071 default: assert(0 && "This action is not supported yet!");
2072 case TargetLowering::Custom:
2073 isCustom = true;
2074 // FALLTHROUGH
2075 case TargetLowering::Legal:
2076 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2077 Tmp1 = Result.getValue(0);
2078 Tmp2 = Result.getValue(1);
2079
2080 if (isCustom) {
2081 Tmp3 = TLI.LowerOperation(Result, DAG);
2082 if (Tmp3.Val) {
2083 Tmp1 = LegalizeOp(Tmp3);
2084 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2085 }
2086 } else {
2087 // If this is an unaligned load and the target doesn't support it,
2088 // expand it.
2089 if (!TLI.allowsUnalignedMemoryAccesses()) {
2090 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002091 getABITypeAlignment(MVT::getTypeForValueType(LD->getMemoryVT()));
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002092 if (LD->getAlignment() < ABIAlignment){
2093 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
2094 TLI);
2095 Tmp1 = Result.getOperand(0);
2096 Tmp2 = Result.getOperand(1);
2097 Tmp1 = LegalizeOp(Tmp1);
2098 Tmp2 = LegalizeOp(Tmp2);
2099 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002100 }
2101 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002102 break;
2103 case TargetLowering::Expand:
2104 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2105 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
2106 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
2107 LD->getSrcValueOffset(),
2108 LD->isVolatile(), LD->getAlignment());
2109 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2110 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2111 Tmp2 = LegalizeOp(Load.getValue(1));
2112 break;
2113 }
2114 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2115 // Turn the unsupported load into an EXTLOAD followed by an explicit
2116 // zero/sign extend inreg.
2117 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2118 Tmp1, Tmp2, LD->getSrcValue(),
2119 LD->getSrcValueOffset(), SrcVT,
2120 LD->isVolatile(), LD->getAlignment());
2121 SDOperand ValRes;
2122 if (ExtType == ISD::SEXTLOAD)
2123 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2124 Result, DAG.getValueType(SrcVT));
2125 else
2126 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2127 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2128 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002129 break;
2130 }
Evan Cheng466685d2006-10-09 20:57:25 +00002131 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002132
Evan Cheng466685d2006-10-09 20:57:25 +00002133 // Since loads produce two values, make sure to remember that we legalized
2134 // both of them.
2135 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2136 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2137 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002138 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002139 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002140 case ISD::EXTRACT_ELEMENT: {
2141 MVT::ValueType OpTy = Node->getOperand(0).getValueType();
2142 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002143 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002144 case Legal:
2145 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
2146 // 1 -> Hi
2147 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
2148 DAG.getConstant(MVT::getSizeInBits(OpTy)/2,
2149 TLI.getShiftAmountTy()));
2150 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2151 } else {
2152 // 0 -> Lo
2153 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2154 Node->getOperand(0));
2155 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002156 break;
2157 case Expand:
2158 // Get both the low and high parts.
2159 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2160 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
2161 Result = Tmp2; // 1 -> Hi
2162 else
2163 Result = Tmp1; // 0 -> Lo
2164 break;
2165 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002166 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002167 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002168
2169 case ISD::CopyToReg:
2170 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002171
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002172 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002173 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002174 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002175 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002176 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002177 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002178 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002179 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002180 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002181 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002182 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2183 Tmp3);
2184 } else {
2185 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002186 }
2187
2188 // Since this produces two values, make sure to remember that we legalized
2189 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002190 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00002191 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002192 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002193 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002194 break;
2195
2196 case ISD::RET:
2197 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002198
2199 // Ensure that libcalls are emitted before a return.
2200 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2201 Tmp1 = LegalizeOp(Tmp1);
2202 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002203
Chris Lattner3e928bb2005-01-07 07:47:09 +00002204 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002205 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002206 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002207 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002208 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002209 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002210 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002211 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002212 case Expand:
Dan Gohman7f321562007-06-25 16:23:39 +00002213 if (!MVT::isVector(Tmp2.getValueType())) {
Chris Lattnerf87324e2006-04-11 01:31:51 +00002214 SDOperand Lo, Hi;
2215 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002216
2217 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002218 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002219 std::swap(Lo, Hi);
2220
Evan Cheng13acce32006-12-11 19:27:14 +00002221 if (Hi.Val)
2222 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2223 else
2224 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002225 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002226 } else {
2227 SDNode *InVal = Tmp2.Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002228 int InIx = Tmp2.ResNo;
2229 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(InIx));
2230 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(InIx));
Chris Lattnerf87324e2006-04-11 01:31:51 +00002231
Dan Gohman7f321562007-06-25 16:23:39 +00002232 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002233 // type. If so, convert to the vector type.
Chris Lattnerf87324e2006-04-11 01:31:51 +00002234 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002235 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002236 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002237 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002238 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002239 } else if (NumElems == 1) {
2240 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002241 Tmp2 = ScalarizeVectorOp(Tmp2);
2242 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002243 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002244
2245 // FIXME: Returns of gcc generic vectors smaller than a legal type
2246 // should be returned in integer registers!
2247
Chris Lattnerf87324e2006-04-11 01:31:51 +00002248 // The scalarized value type may not be legal, e.g. it might require
2249 // promotion or expansion. Relegalize the return.
2250 Result = LegalizeOp(Result);
2251 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002252 // FIXME: Returns of gcc generic vectors larger than a legal vector
2253 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00002254 SDOperand Lo, Hi;
2255 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00002256 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002257 Result = LegalizeOp(Result);
2258 }
2259 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002260 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002261 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002262 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002263 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002264 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002265 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002266 }
2267 break;
2268 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002269 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002270 break;
2271 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002272 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002273 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002274 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002275 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2276 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002277 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002278 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002279 break;
2280 case Expand: {
2281 SDOperand Lo, Hi;
Dan Gohman6595cb32007-06-27 16:08:04 +00002282 assert(!MVT::isExtendedVT(Node->getOperand(i).getValueType()) &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002283 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002284 ExpandOp(Node->getOperand(i), Lo, Hi);
2285 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002286 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00002287 if (Hi.Val) {
2288 NewValues.push_back(Hi);
2289 NewValues.push_back(Node->getOperand(i+1));
2290 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002291 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002292 }
2293 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002294 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002295 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002296
2297 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002298 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002299 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002300 Result = DAG.getNode(ISD::RET, MVT::Other,
2301 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002302 break;
2303 }
2304 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002305
Chris Lattner6862dbc2006-01-29 21:02:23 +00002306 if (Result.getOpcode() == ISD::RET) {
2307 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2308 default: assert(0 && "This action is not supported yet!");
2309 case TargetLowering::Legal: break;
2310 case TargetLowering::Custom:
2311 Tmp1 = TLI.LowerOperation(Result, DAG);
2312 if (Tmp1.Val) Result = Tmp1;
2313 break;
2314 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002315 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002316 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002317 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002318 StoreSDNode *ST = cast<StoreSDNode>(Node);
2319 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2320 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002321 int SVOffset = ST->getSrcValueOffset();
2322 unsigned Alignment = ST->getAlignment();
2323 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002324
Evan Cheng8b2794a2006-10-13 21:14:26 +00002325 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002326 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2327 // FIXME: We shouldn't do this for TargetConstantFP's.
2328 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2329 // to phase ordering between legalized code and the dag combiner. This
2330 // probably means that we need to integrate dag combiner and legalizer
2331 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002332 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002333 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002334 if (CFP->getValueType(0) == MVT::f32 &&
2335 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002336 Tmp3 = DAG.getConstant(CFP->getValueAPF().
2337 convertToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002338 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002339 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2340 SVOffset, isVolatile, Alignment);
2341 break;
2342 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002343 // If this target supports 64-bit registers, do a single 64-bit store.
2344 if (getTypeAction(MVT::i64) == Legal) {
2345 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002346 zextOrTrunc(64), MVT::i64);
Chris Lattner3cb93512007-10-15 05:46:06 +00002347 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2348 SVOffset, isVolatile, Alignment);
2349 break;
2350 } else if (getTypeAction(MVT::i32) == Legal) {
2351 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2352 // stores. If the target supports neither 32- nor 64-bits, this
2353 // xform is certainly not worth it.
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002354 const APInt &IntVal =CFP->getValueAPF().convertToAPInt();
2355 SDOperand Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2356 SDOperand Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002357 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002358
2359 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2360 SVOffset, isVolatile, Alignment);
2361 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002362 DAG.getIntPtrConstant(4));
Chris Lattner3cb93512007-10-15 05:46:06 +00002363 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002364 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002365
2366 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2367 break;
2368 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002369 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002370 }
2371
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002372 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002373 case Legal: {
2374 Tmp3 = LegalizeOp(ST->getValue());
2375 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2376 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002377
Evan Cheng8b2794a2006-10-13 21:14:26 +00002378 MVT::ValueType VT = Tmp3.getValueType();
2379 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2380 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002381 case TargetLowering::Legal:
2382 // If this is an unaligned store and the target doesn't support it,
2383 // expand it.
2384 if (!TLI.allowsUnalignedMemoryAccesses()) {
2385 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002386 getABITypeAlignment(MVT::getTypeForValueType(ST->getMemoryVT()));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002387 if (ST->getAlignment() < ABIAlignment)
2388 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2389 TLI);
2390 }
2391 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002392 case TargetLowering::Custom:
2393 Tmp1 = TLI.LowerOperation(Result, DAG);
2394 if (Tmp1.Val) Result = Tmp1;
2395 break;
2396 case TargetLowering::Promote:
2397 assert(MVT::isVector(VT) && "Unknown legal promote case!");
2398 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2399 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2400 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002401 ST->getSrcValue(), SVOffset, isVolatile,
2402 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002403 break;
2404 }
2405 break;
2406 }
2407 case Promote:
2408 // Truncate the value and store the result.
2409 Tmp3 = PromoteOp(ST->getValue());
2410 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002411 SVOffset, ST->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002412 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002413 break;
2414
2415 case Expand:
2416 unsigned IncrementSize = 0;
2417 SDOperand Lo, Hi;
2418
2419 // If this is a vector type, then we have to calculate the increment as
2420 // the product of the element size in bytes, and the number of elements
2421 // in the high half of the vector.
Dan Gohman7f321562007-06-25 16:23:39 +00002422 if (MVT::isVector(ST->getValue().getValueType())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002423 SDNode *InVal = ST->getValue().Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002424 int InIx = ST->getValue().ResNo;
Chris Lattner0bd48932008-01-17 07:00:52 +00002425 MVT::ValueType InVT = InVal->getValueType(InIx);
2426 unsigned NumElems = MVT::getVectorNumElements(InVT);
2427 MVT::ValueType EVT = MVT::getVectorElementType(InVT);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002428
Dan Gohman7f321562007-06-25 16:23:39 +00002429 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002430 // type. If so, convert to the vector type.
Evan Cheng8b2794a2006-10-13 21:14:26 +00002431 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002432 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002433 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002434 Tmp3 = LegalizeOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002435 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002436 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002437 Result = LegalizeOp(Result);
2438 break;
2439 } else if (NumElems == 1) {
2440 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002441 Tmp3 = ScalarizeVectorOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002442 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002443 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002444 // The scalarized value type may not be legal, e.g. it might require
2445 // promotion or expansion. Relegalize the scalar store.
2446 Result = LegalizeOp(Result);
2447 break;
2448 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002449 SplitVectorOp(ST->getValue(), Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00002450 IncrementSize = MVT::getVectorNumElements(Lo.Val->getValueType(0)) *
2451 MVT::getSizeInBits(EVT)/8;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002452 }
2453 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002454 ExpandOp(ST->getValue(), Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002455 IncrementSize = Hi.Val ? MVT::getSizeInBits(Hi.getValueType())/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002456
Duncan Sands0753fc12008-02-11 10:37:04 +00002457 if (TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002458 std::swap(Lo, Hi);
2459 }
2460
2461 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002462 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002463
2464 if (Hi.Val == NULL) {
2465 // Must be int <-> float one-to-one expansion.
2466 Result = Lo;
2467 break;
2468 }
2469
Evan Cheng8b2794a2006-10-13 21:14:26 +00002470 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002471 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002472 assert(isTypeLegal(Tmp2.getValueType()) &&
2473 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002474 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002475 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002476 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002477 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002478 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2479 break;
2480 }
2481 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002482 switch (getTypeAction(ST->getValue().getValueType())) {
2483 case Legal:
2484 Tmp3 = LegalizeOp(ST->getValue());
2485 break;
2486 case Promote:
2487 // We can promote the value, the truncstore will still take care of it.
2488 Tmp3 = PromoteOp(ST->getValue());
2489 break;
2490 case Expand:
2491 // Just store the low part. This may become a non-trunc store, so make
2492 // sure to use getTruncStore, not UpdateNodeOperands below.
2493 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2494 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2495 SVOffset, MVT::i8, isVolatile, Alignment);
2496 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002497
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002498 MVT::ValueType StVT = ST->getMemoryVT();
Duncan Sands7e857202008-01-22 07:17:34 +00002499 unsigned StWidth = MVT::getSizeInBits(StVT);
2500
2501 if (StWidth != MVT::getStoreSizeInBits(StVT)) {
2502 // Promote to a byte-sized store with upper bits zero if not
2503 // storing an integral number of bytes. For example, promote
2504 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
2505 MVT::ValueType NVT = MVT::getIntegerType(MVT::getStoreSizeInBits(StVT));
2506 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2507 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2508 SVOffset, NVT, isVolatile, Alignment);
2509 } else if (StWidth & (StWidth - 1)) {
2510 // If not storing a power-of-2 number of bits, expand as two stores.
2511 assert(MVT::isExtendedVT(StVT) && !MVT::isVector(StVT) &&
2512 "Unsupported truncstore!");
2513 unsigned RoundWidth = 1 << Log2_32(StWidth);
2514 assert(RoundWidth < StWidth);
2515 unsigned ExtraWidth = StWidth - RoundWidth;
2516 assert(ExtraWidth < RoundWidth);
2517 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2518 "Store size not an integral number of bytes!");
2519 MVT::ValueType RoundVT = MVT::getIntegerType(RoundWidth);
2520 MVT::ValueType ExtraVT = MVT::getIntegerType(ExtraWidth);
2521 SDOperand Lo, Hi;
2522 unsigned IncrementSize;
2523
2524 if (TLI.isLittleEndian()) {
2525 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2526 // Store the bottom RoundWidth bits.
2527 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2528 SVOffset, RoundVT,
2529 isVolatile, Alignment);
2530
2531 // Store the remaining ExtraWidth bits.
2532 IncrementSize = RoundWidth / 8;
2533 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2534 DAG.getIntPtrConstant(IncrementSize));
2535 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2536 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2537 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2538 SVOffset + IncrementSize, ExtraVT, isVolatile,
2539 MinAlign(Alignment, IncrementSize));
2540 } else {
2541 // Big endian - avoid unaligned stores.
2542 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2543 // Store the top RoundWidth bits.
2544 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2545 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2546 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2547 RoundVT, isVolatile, Alignment);
2548
2549 // Store the remaining ExtraWidth bits.
2550 IncrementSize = RoundWidth / 8;
2551 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2552 DAG.getIntPtrConstant(IncrementSize));
2553 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2554 SVOffset + IncrementSize, ExtraVT, isVolatile,
2555 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002556 }
Duncan Sands7e857202008-01-22 07:17:34 +00002557
2558 // The order of the stores doesn't matter.
2559 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2560 } else {
2561 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2562 Tmp2 != ST->getBasePtr())
2563 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2564 ST->getOffset());
2565
2566 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2567 default: assert(0 && "This action is not supported yet!");
2568 case TargetLowering::Legal:
2569 // If this is an unaligned store and the target doesn't support it,
2570 // expand it.
2571 if (!TLI.allowsUnalignedMemoryAccesses()) {
2572 unsigned ABIAlignment = TLI.getTargetData()->
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002573 getABITypeAlignment(MVT::getTypeForValueType(ST->getMemoryVT()));
Duncan Sands7e857202008-01-22 07:17:34 +00002574 if (ST->getAlignment() < ABIAlignment)
2575 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2576 TLI);
2577 }
2578 break;
2579 case TargetLowering::Custom:
2580 Result = TLI.LowerOperation(Result, DAG);
2581 break;
2582 case Expand:
2583 // TRUNCSTORE:i16 i32 -> STORE i16
2584 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2585 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2586 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2587 isVolatile, Alignment);
2588 break;
2589 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002590 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002591 }
2592 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002593 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002594 case ISD::PCMARKER:
2595 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002596 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002597 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002598 case ISD::STACKSAVE:
2599 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002600 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2601 Tmp1 = Result.getValue(0);
2602 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002603
Chris Lattner140d53c2006-01-13 02:50:02 +00002604 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2605 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002606 case TargetLowering::Legal: break;
2607 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002608 Tmp3 = TLI.LowerOperation(Result, DAG);
2609 if (Tmp3.Val) {
2610 Tmp1 = LegalizeOp(Tmp3);
2611 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002612 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002613 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002614 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002615 // Expand to CopyFromReg if the target set
2616 // StackPointerRegisterToSaveRestore.
2617 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002618 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002619 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002620 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002621 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002622 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2623 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002624 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002625 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002626 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002627
2628 // Since stacksave produce two values, make sure to remember that we
2629 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002630 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2631 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2632 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002633
Chris Lattner140d53c2006-01-13 02:50:02 +00002634 case ISD::STACKRESTORE:
2635 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2636 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002637 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002638
2639 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2640 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002641 case TargetLowering::Legal: break;
2642 case TargetLowering::Custom:
2643 Tmp1 = TLI.LowerOperation(Result, DAG);
2644 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002645 break;
2646 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002647 // Expand to CopyToReg if the target set
2648 // StackPointerRegisterToSaveRestore.
2649 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2650 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2651 } else {
2652 Result = Tmp1;
2653 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002654 break;
2655 }
2656 break;
2657
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002658 case ISD::READCYCLECOUNTER:
2659 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002660 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002661 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2662 Node->getValueType(0))) {
2663 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002664 case TargetLowering::Legal:
2665 Tmp1 = Result.getValue(0);
2666 Tmp2 = Result.getValue(1);
2667 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002668 case TargetLowering::Custom:
2669 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002670 Tmp1 = LegalizeOp(Result.getValue(0));
2671 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002672 break;
2673 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002674
2675 // Since rdcc produce two values, make sure to remember that we legalized
2676 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002677 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2678 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002679 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002680
Chris Lattner2ee743f2005-01-14 22:08:15 +00002681 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002682 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2683 case Expand: assert(0 && "It's impossible to expand bools");
2684 case Legal:
2685 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2686 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002687 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002688 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002689 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002690 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002691 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002692 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerb6c80602006-11-28 01:03:30 +00002693 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002694 break;
2695 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002696 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002697 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002698 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002699
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002700 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002701
Nate Begemanb942a3d2005-08-23 04:29:48 +00002702 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002703 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002704 case TargetLowering::Legal: break;
2705 case TargetLowering::Custom: {
2706 Tmp1 = TLI.LowerOperation(Result, DAG);
2707 if (Tmp1.Val) Result = Tmp1;
2708 break;
2709 }
Nate Begeman9373a812005-08-10 20:51:12 +00002710 case TargetLowering::Expand:
2711 if (Tmp1.getOpcode() == ISD::SETCC) {
2712 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2713 Tmp2, Tmp3,
2714 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2715 } else {
2716 Result = DAG.getSelectCC(Tmp1,
2717 DAG.getConstant(0, Tmp1.getValueType()),
2718 Tmp2, Tmp3, ISD::SETNE);
2719 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002720 break;
2721 case TargetLowering::Promote: {
2722 MVT::ValueType NVT =
2723 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2724 unsigned ExtOp, TruncOp;
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002725 if (MVT::isVector(Tmp2.getValueType())) {
2726 ExtOp = ISD::BIT_CONVERT;
2727 TruncOp = ISD::BIT_CONVERT;
2728 } else if (MVT::isInteger(Tmp2.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002729 ExtOp = ISD::ANY_EXTEND;
2730 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002731 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002732 ExtOp = ISD::FP_EXTEND;
2733 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002734 }
2735 // Promote each of the values to the new type.
2736 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2737 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2738 // Perform the larger operation, then round down.
2739 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002740 if (TruncOp != ISD::FP_ROUND)
2741 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2742 else
2743 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2744 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002745 break;
2746 }
2747 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002748 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002749 case ISD::SELECT_CC: {
2750 Tmp1 = Node->getOperand(0); // LHS
2751 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002752 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2753 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00002754 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002755
Nate Begeman750ac1b2006-02-01 07:19:44 +00002756 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2757
2758 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2759 // the LHS is a legal SETCC itself. In this case, we need to compare
2760 // the result against zero to select between true and false values.
2761 if (Tmp2.Val == 0) {
2762 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2763 CC = DAG.getCondCode(ISD::SETNE);
2764 }
2765 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2766
2767 // Everything is legal, see if we should expand this op or something.
2768 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2769 default: assert(0 && "This action is not supported yet!");
2770 case TargetLowering::Legal: break;
2771 case TargetLowering::Custom:
2772 Tmp1 = TLI.LowerOperation(Result, DAG);
2773 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002774 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002775 }
2776 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002777 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002778 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002779 Tmp1 = Node->getOperand(0);
2780 Tmp2 = Node->getOperand(1);
2781 Tmp3 = Node->getOperand(2);
2782 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2783
2784 // If we had to Expand the SetCC operands into a SELECT node, then it may
2785 // not always be possible to return a true LHS & RHS. In this case, just
2786 // return the value we legalized, returned in the LHS
2787 if (Tmp2.Val == 0) {
2788 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002789 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002790 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002791
Chris Lattner73e142f2006-01-30 22:43:50 +00002792 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002793 default: assert(0 && "Cannot handle this action for SETCC yet!");
2794 case TargetLowering::Custom:
2795 isCustom = true;
2796 // FALLTHROUGH.
2797 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002798 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002799 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002800 Tmp4 = TLI.LowerOperation(Result, DAG);
2801 if (Tmp4.Val) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002802 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002803 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002804 case TargetLowering::Promote: {
2805 // First step, figure out the appropriate operation to use.
2806 // Allow SETCC to not be supported for all legal data types
2807 // Mostly this targets FP
2808 MVT::ValueType NewInTy = Node->getOperand(0).getValueType();
Chris Lattner00755df2007-02-04 00:27:56 +00002809 MVT::ValueType OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002810
2811 // Scan for the appropriate larger type to use.
2812 while (1) {
2813 NewInTy = (MVT::ValueType)(NewInTy+1);
2814
2815 assert(MVT::isInteger(NewInTy) == MVT::isInteger(OldVT) &&
2816 "Fell off of the edge of the integer world");
2817 assert(MVT::isFloatingPoint(NewInTy) == MVT::isFloatingPoint(OldVT) &&
2818 "Fell off of the edge of the floating point world");
2819
2820 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002821 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002822 break;
2823 }
2824 if (MVT::isInteger(NewInTy))
2825 assert(0 && "Cannot promote Legal Integer SETCC yet");
2826 else {
2827 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2828 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2829 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002830 Tmp1 = LegalizeOp(Tmp1);
2831 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002832 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002833 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002834 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002835 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002836 case TargetLowering::Expand:
2837 // Expand a setcc node into a select_cc of the same condition, lhs, and
2838 // rhs that selects between const 1 (true) and const 0 (false).
2839 MVT::ValueType VT = Node->getValueType(0);
2840 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2841 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002842 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002843 break;
2844 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002845 break;
Chris Lattner52d08bd2005-05-09 20:23:03 +00002846
Chris Lattner5b359c62005-04-02 04:00:59 +00002847 case ISD::SHL_PARTS:
2848 case ISD::SRA_PARTS:
2849 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002850 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002851 bool Changed = false;
2852 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2853 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2854 Changed |= Ops.back() != Node->getOperand(i);
2855 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002856 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002857 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002858
Evan Cheng05a2d562006-01-09 18:31:59 +00002859 switch (TLI.getOperationAction(Node->getOpcode(),
2860 Node->getValueType(0))) {
2861 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002862 case TargetLowering::Legal: break;
2863 case TargetLowering::Custom:
2864 Tmp1 = TLI.LowerOperation(Result, DAG);
2865 if (Tmp1.Val) {
2866 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002867 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002868 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002869 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2870 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002871 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002872 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002873 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002874 return RetVal;
2875 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002876 break;
2877 }
2878
Chris Lattner2c8086f2005-04-02 05:00:07 +00002879 // Since these produce multiple values, make sure to remember that we
2880 // legalized all of them.
2881 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2882 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2883 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002884 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002885
2886 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002887 case ISD::ADD:
2888 case ISD::SUB:
2889 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002890 case ISD::MULHS:
2891 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002892 case ISD::UDIV:
2893 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002894 case ISD::AND:
2895 case ISD::OR:
2896 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002897 case ISD::SHL:
2898 case ISD::SRL:
2899 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002900 case ISD::FADD:
2901 case ISD::FSUB:
2902 case ISD::FMUL:
2903 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00002904 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002905 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002906 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2907 case Expand: assert(0 && "Not possible");
2908 case Legal:
2909 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2910 break;
2911 case Promote:
2912 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2913 break;
2914 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002915
2916 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002917
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002918 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002919 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002920 case TargetLowering::Legal: break;
2921 case TargetLowering::Custom:
2922 Tmp1 = TLI.LowerOperation(Result, DAG);
2923 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002924 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002925 case TargetLowering::Expand: {
Dan Gohman525178c2007-10-08 18:33:35 +00002926 MVT::ValueType VT = Op.getValueType();
2927
2928 // See if multiply or divide can be lowered using two-result operations.
2929 SDVTList VTs = DAG.getVTList(VT, VT);
2930 if (Node->getOpcode() == ISD::MUL) {
2931 // We just need the low half of the multiply; try both the signed
2932 // and unsigned forms. If the target supports both SMUL_LOHI and
2933 // UMUL_LOHI, form a preference by checking which forms of plain
2934 // MULH it supports.
2935 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2936 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2937 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2938 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2939 unsigned OpToUse = 0;
2940 if (HasSMUL_LOHI && !HasMULHS) {
2941 OpToUse = ISD::SMUL_LOHI;
2942 } else if (HasUMUL_LOHI && !HasMULHU) {
2943 OpToUse = ISD::UMUL_LOHI;
2944 } else if (HasSMUL_LOHI) {
2945 OpToUse = ISD::SMUL_LOHI;
2946 } else if (HasUMUL_LOHI) {
2947 OpToUse = ISD::UMUL_LOHI;
2948 }
2949 if (OpToUse) {
2950 Result = SDOperand(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0);
2951 break;
2952 }
2953 }
2954 if (Node->getOpcode() == ISD::MULHS &&
2955 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
2956 Result = SDOperand(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
2957 break;
2958 }
2959 if (Node->getOpcode() == ISD::MULHU &&
2960 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
2961 Result = SDOperand(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
2962 break;
2963 }
2964 if (Node->getOpcode() == ISD::SDIV &&
2965 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
2966 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0);
2967 break;
2968 }
2969 if (Node->getOpcode() == ISD::UDIV &&
2970 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
2971 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0);
2972 break;
2973 }
2974
Dan Gohman82669522007-10-11 23:57:53 +00002975 // Check to see if we have a libcall for this operator.
2976 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
2977 bool isSigned = false;
2978 switch (Node->getOpcode()) {
2979 case ISD::UDIV:
2980 case ISD::SDIV:
2981 if (VT == MVT::i32) {
2982 LC = Node->getOpcode() == ISD::UDIV
Evan Cheng56966222007-01-12 02:11:51 +00002983 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00002984 isSigned = Node->getOpcode() == ISD::SDIV;
2985 }
2986 break;
2987 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00002988 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
2989 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00002990 break;
2991 default: break;
2992 }
2993 if (LC != RTLIB::UNKNOWN_LIBCALL) {
2994 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00002995 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00002996 break;
2997 }
2998
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002999 assert(MVT::isVector(Node->getValueType(0)) &&
3000 "Cannot expand this binary operator!");
3001 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003002 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003003 break;
3004 }
Evan Chengcc987612006-04-12 21:20:24 +00003005 case TargetLowering::Promote: {
3006 switch (Node->getOpcode()) {
3007 default: assert(0 && "Do not know how to promote this BinOp!");
3008 case ISD::AND:
3009 case ISD::OR:
3010 case ISD::XOR: {
3011 MVT::ValueType OVT = Node->getValueType(0);
3012 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3013 assert(MVT::isVector(OVT) && "Cannot promote this BinOp!");
3014 // Bit convert each of the values to the new type.
3015 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3016 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3017 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3018 // Bit convert the result back the original type.
3019 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3020 break;
3021 }
3022 }
3023 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003024 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003025 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003026
Dan Gohmane14ea862007-10-05 14:17:22 +00003027 case ISD::SMUL_LOHI:
3028 case ISD::UMUL_LOHI:
3029 case ISD::SDIVREM:
3030 case ISD::UDIVREM:
3031 // These nodes will only be produced by target-specific lowering, so
3032 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003033 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003034 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003035
3036 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3037 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3038 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003039 break;
3040
Chris Lattnera09f8482006-03-05 05:09:38 +00003041 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3042 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3043 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3044 case Expand: assert(0 && "Not possible");
3045 case Legal:
3046 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3047 break;
3048 case Promote:
3049 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3050 break;
3051 }
3052
3053 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3054
3055 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3056 default: assert(0 && "Operation not supported");
3057 case TargetLowering::Custom:
3058 Tmp1 = TLI.LowerOperation(Result, DAG);
3059 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003060 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003061 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003062 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003063 // If this target supports fabs/fneg natively and select is cheap,
3064 // do this efficiently.
3065 if (!TLI.isSelectExpensive() &&
3066 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3067 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003068 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003069 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003070 // Get the sign bit of the RHS.
3071 MVT::ValueType IVT =
3072 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
3073 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003074 SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003075 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3076 // Get the absolute value of the result.
3077 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
3078 // Select between the nabs and abs value based on the sign bit of
3079 // the input.
3080 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3081 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3082 AbsVal),
3083 AbsVal);
3084 Result = LegalizeOp(Result);
3085 break;
3086 }
3087
3088 // Otherwise, do bitwise ops!
Evan Cheng912095b2007-01-04 21:56:39 +00003089 MVT::ValueType NVT =
3090 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3091 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3092 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3093 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003094 break;
3095 }
Evan Cheng912095b2007-01-04 21:56:39 +00003096 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003097 break;
3098
Nate Begeman551bf3f2006-02-17 05:43:56 +00003099 case ISD::ADDC:
3100 case ISD::SUBC:
3101 Tmp1 = LegalizeOp(Node->getOperand(0));
3102 Tmp2 = LegalizeOp(Node->getOperand(1));
3103 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3104 // Since this produces two values, make sure to remember that we legalized
3105 // both of them.
3106 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3107 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3108 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003109
Nate Begeman551bf3f2006-02-17 05:43:56 +00003110 case ISD::ADDE:
3111 case ISD::SUBE:
3112 Tmp1 = LegalizeOp(Node->getOperand(0));
3113 Tmp2 = LegalizeOp(Node->getOperand(1));
3114 Tmp3 = LegalizeOp(Node->getOperand(2));
3115 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3116 // Since this produces two values, make sure to remember that we legalized
3117 // both of them.
3118 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3119 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3120 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00003121
Nate Begeman419f8b62005-10-18 00:27:41 +00003122 case ISD::BUILD_PAIR: {
3123 MVT::ValueType PairTy = Node->getValueType(0);
3124 // TODO: handle the case where the Lo and Hi operands are not of legal type
3125 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3126 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3127 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003128 case TargetLowering::Promote:
3129 case TargetLowering::Custom:
3130 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003131 case TargetLowering::Legal:
3132 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3133 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3134 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003135 case TargetLowering::Expand:
3136 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3137 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3138 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
3139 DAG.getConstant(MVT::getSizeInBits(PairTy)/2,
3140 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00003141 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003142 break;
3143 }
3144 break;
3145 }
3146
Nate Begemanc105e192005-04-06 00:23:54 +00003147 case ISD::UREM:
3148 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003149 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003150 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3151 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003152
Nate Begemanc105e192005-04-06 00:23:54 +00003153 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003154 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3155 case TargetLowering::Custom:
3156 isCustom = true;
3157 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003158 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003159 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003160 if (isCustom) {
3161 Tmp1 = TLI.LowerOperation(Result, DAG);
3162 if (Tmp1.Val) Result = Tmp1;
3163 }
Nate Begemanc105e192005-04-06 00:23:54 +00003164 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003165 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003166 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003167 bool isSigned = DivOpc == ISD::SDIV;
Dan Gohman525178c2007-10-08 18:33:35 +00003168 MVT::ValueType VT = Node->getValueType(0);
3169
3170 // See if remainder can be lowered using two-result operations.
3171 SDVTList VTs = DAG.getVTList(VT, VT);
3172 if (Node->getOpcode() == ISD::SREM &&
3173 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3174 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3175 break;
3176 }
3177 if (Node->getOpcode() == ISD::UREM &&
3178 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3179 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3180 break;
3181 }
3182
3183 if (MVT::isInteger(VT)) {
3184 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003185 TargetLowering::Legal) {
3186 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00003187 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003188 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3189 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Dan Gohman80176312007-11-05 23:35:22 +00003190 } else if (MVT::isVector(VT)) {
3191 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003192 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003193 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003194 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003195 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3196 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003197 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003198 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003199 }
Dan Gohman0d974262007-11-06 22:11:54 +00003200 } else {
3201 assert(MVT::isFloatingPoint(VT) &&
3202 "remainder op must have integer or floating-point type");
Dan Gohman80176312007-11-05 23:35:22 +00003203 if (MVT::isVector(VT)) {
3204 Result = LegalizeOp(UnrollVectorOp(Op));
3205 } else {
3206 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003207 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3208 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman80176312007-11-05 23:35:22 +00003209 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003210 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003211 }
Nate Begemanc105e192005-04-06 00:23:54 +00003212 }
3213 break;
3214 }
Dan Gohman525178c2007-10-08 18:33:35 +00003215 }
Nate Begemanc105e192005-04-06 00:23:54 +00003216 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003217 case ISD::VAARG: {
3218 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3219 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3220
Chris Lattner5c62f332006-01-28 07:42:08 +00003221 MVT::ValueType VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003222 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3223 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003224 case TargetLowering::Custom:
3225 isCustom = true;
3226 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003227 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003228 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3229 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003230 Tmp1 = Result.getValue(1);
3231
3232 if (isCustom) {
3233 Tmp2 = TLI.LowerOperation(Result, DAG);
3234 if (Tmp2.Val) {
3235 Result = LegalizeOp(Tmp2);
3236 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3237 }
3238 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003239 break;
3240 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003241 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
3242 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003243 // Increment the pointer, VAList, to the next vaarg
3244 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
3245 DAG.getConstant(MVT::getSizeInBits(VT)/8,
3246 TLI.getPointerTy()));
3247 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00003248 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003249 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003250 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003251 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003252 Result = LegalizeOp(Result);
3253 break;
3254 }
3255 }
3256 // Since VAARG produces two values, make sure to remember that we
3257 // legalized both of them.
3258 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00003259 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3260 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003261 }
3262
3263 case ISD::VACOPY:
3264 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3265 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3266 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3267
3268 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3269 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003270 case TargetLowering::Custom:
3271 isCustom = true;
3272 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003273 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003274 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3275 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003276 if (isCustom) {
3277 Tmp1 = TLI.LowerOperation(Result, DAG);
3278 if (Tmp1.Val) Result = Tmp1;
3279 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003280 break;
3281 case TargetLowering::Expand:
3282 // This defaults to loading a pointer from the input and storing it to the
3283 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003284 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3285 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
3286 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VD, 0);
3287 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VS, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003288 break;
3289 }
3290 break;
3291
3292 case ISD::VAEND:
3293 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3294 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3295
3296 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3297 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003298 case TargetLowering::Custom:
3299 isCustom = true;
3300 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003301 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003302 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003303 if (isCustom) {
3304 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
3305 if (Tmp1.Val) Result = Tmp1;
3306 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003307 break;
3308 case TargetLowering::Expand:
3309 Result = Tmp1; // Default to a no-op, return the chain
3310 break;
3311 }
3312 break;
3313
3314 case ISD::VASTART:
3315 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3316 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3317
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003318 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3319
Nate Begemanacc398c2006-01-25 18:21:52 +00003320 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3321 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003322 case TargetLowering::Legal: break;
3323 case TargetLowering::Custom:
3324 Tmp1 = TLI.LowerOperation(Result, DAG);
3325 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003326 break;
3327 }
3328 break;
3329
Nate Begeman35ef9132006-01-11 21:21:00 +00003330 case ISD::ROTL:
3331 case ISD::ROTR:
3332 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3333 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003334 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003335 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3336 default:
3337 assert(0 && "ROTL/ROTR legalize operation not supported");
3338 break;
3339 case TargetLowering::Legal:
3340 break;
3341 case TargetLowering::Custom:
3342 Tmp1 = TLI.LowerOperation(Result, DAG);
3343 if (Tmp1.Val) Result = Tmp1;
3344 break;
3345 case TargetLowering::Promote:
3346 assert(0 && "Do not know how to promote ROTL/ROTR");
3347 break;
3348 case TargetLowering::Expand:
3349 assert(0 && "Do not know how to expand ROTL/ROTR");
3350 break;
3351 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003352 break;
3353
Nate Begemand88fc032006-01-14 03:14:10 +00003354 case ISD::BSWAP:
3355 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3356 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003357 case TargetLowering::Custom:
3358 assert(0 && "Cannot custom legalize this yet!");
3359 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003360 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003361 break;
3362 case TargetLowering::Promote: {
3363 MVT::ValueType OVT = Tmp1.getValueType();
3364 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Dan Gohmanb55757e2007-05-18 17:52:13 +00003365 unsigned DiffBits = MVT::getSizeInBits(NVT) - MVT::getSizeInBits(OVT);
Nate Begemand88fc032006-01-14 03:14:10 +00003366
Chris Lattner456a93a2006-01-28 07:39:30 +00003367 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3368 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3369 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3370 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3371 break;
3372 }
3373 case TargetLowering::Expand:
3374 Result = ExpandBSWAP(Tmp1);
3375 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003376 }
3377 break;
3378
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003379 case ISD::CTPOP:
3380 case ISD::CTTZ:
3381 case ISD::CTLZ:
3382 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3383 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003384 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003385 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003386 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003387 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003388 TargetLowering::Custom) {
3389 Tmp1 = TLI.LowerOperation(Result, DAG);
3390 if (Tmp1.Val) {
3391 Result = Tmp1;
3392 }
Scott Michel910b66d2007-07-30 21:00:31 +00003393 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003394 break;
3395 case TargetLowering::Promote: {
3396 MVT::ValueType OVT = Tmp1.getValueType();
3397 MVT::ValueType NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003398
3399 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003400 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3401 // Perform the larger operation, then subtract if needed.
3402 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003403 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003404 case ISD::CTPOP:
3405 Result = Tmp1;
3406 break;
3407 case ISD::CTTZ:
3408 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00003409 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003410 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003411 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003412 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Scott Michel910b66d2007-07-30 21:00:31 +00003413 DAG.getConstant(MVT::getSizeInBits(OVT),NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003414 break;
3415 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003416 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003417 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00003418 DAG.getConstant(MVT::getSizeInBits(NVT) -
3419 MVT::getSizeInBits(OVT), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003420 break;
3421 }
3422 break;
3423 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003424 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003425 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003426 break;
3427 }
3428 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003429
Chris Lattner2c8086f2005-04-02 05:00:07 +00003430 // Unary operators
3431 case ISD::FABS:
3432 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003433 case ISD::FSQRT:
3434 case ISD::FSIN:
3435 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003436 Tmp1 = LegalizeOp(Node->getOperand(0));
3437 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003438 case TargetLowering::Promote:
3439 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003440 isCustom = true;
3441 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003442 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003443 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003444 if (isCustom) {
3445 Tmp1 = TLI.LowerOperation(Result, DAG);
3446 if (Tmp1.Val) Result = Tmp1;
3447 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003448 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003449 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003450 switch (Node->getOpcode()) {
3451 default: assert(0 && "Unreachable!");
3452 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003453 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3454 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003455 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003456 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003457 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003458 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
3459 MVT::ValueType VT = Node->getValueType(0);
3460 Tmp2 = DAG.getConstantFP(0.0, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003461 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00003462 ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003463 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3464 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003465 break;
3466 }
3467 case ISD::FSQRT:
3468 case ISD::FSIN:
3469 case ISD::FCOS: {
3470 MVT::ValueType VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003471
3472 // Expand unsupported unary vector operators by unrolling them.
3473 if (MVT::isVector(VT)) {
3474 Result = LegalizeOp(UnrollVectorOp(Op));
3475 break;
3476 }
3477
Evan Cheng56966222007-01-12 02:11:51 +00003478 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003479 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003480 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003481 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3482 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003483 break;
3484 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003485 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3486 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003487 break;
3488 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003489 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3490 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003491 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003492 default: assert(0 && "Unreachable!");
3493 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00003494 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003495 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003496 break;
3497 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003498 }
3499 break;
3500 }
3501 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003502 case ISD::FPOWI: {
Dan Gohman82669522007-10-11 23:57:53 +00003503 MVT::ValueType VT = Node->getValueType(0);
3504
3505 // Expand unsupported unary vector operators by unrolling them.
3506 if (MVT::isVector(VT)) {
3507 Result = LegalizeOp(UnrollVectorOp(Op));
3508 break;
3509 }
3510
3511 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003512 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3513 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003514 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003515 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003516 break;
3517 }
Chris Lattner35481892005-12-23 00:16:34 +00003518 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003519 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003520 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3521 Node->getValueType(0));
Dan Gohman7f321562007-06-25 16:23:39 +00003522 } else if (MVT::isVector(Op.getOperand(0).getValueType())) {
3523 // The input has to be a vector type, we have to either scalarize it, pack
3524 // it, or convert it based on whether the input vector type is legal.
3525 SDNode *InVal = Node->getOperand(0).Val;
Dale Johannesene5269622007-10-20 00:07:52 +00003526 int InIx = Node->getOperand(0).ResNo;
3527 unsigned NumElems = MVT::getVectorNumElements(InVal->getValueType(InIx));
3528 MVT::ValueType EVT = MVT::getVectorElementType(InVal->getValueType(InIx));
Dan Gohman7f321562007-06-25 16:23:39 +00003529
3530 // Figure out if there is a simple type corresponding to this Vector
3531 // type. If so, convert to the vector type.
3532 MVT::ValueType TVT = MVT::getVectorType(EVT, NumElems);
3533 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003534 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003535 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3536 LegalizeOp(Node->getOperand(0)));
3537 break;
3538 } else if (NumElems == 1) {
3539 // Turn this into a bit convert of the scalar input.
3540 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3541 ScalarizeVectorOp(Node->getOperand(0)));
3542 break;
3543 } else {
3544 // FIXME: UNIMP! Store then reload
3545 assert(0 && "Cast from unsupported vector type not implemented yet!");
3546 }
Chris Lattner67993f72006-01-23 07:30:46 +00003547 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003548 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3549 Node->getOperand(0).getValueType())) {
3550 default: assert(0 && "Unknown operation action!");
3551 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003552 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3553 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003554 break;
3555 case TargetLowering::Legal:
3556 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003557 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003558 break;
3559 }
3560 }
3561 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003562
Chris Lattner2c8086f2005-04-02 05:00:07 +00003563 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003564 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003565 case ISD::UINT_TO_FP: {
3566 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003567 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3568 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003569 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003570 Node->getOperand(0).getValueType())) {
3571 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003572 case TargetLowering::Custom:
3573 isCustom = true;
3574 // FALLTHROUGH
3575 case TargetLowering::Legal:
3576 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003577 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003578 if (isCustom) {
3579 Tmp1 = TLI.LowerOperation(Result, DAG);
3580 if (Tmp1.Val) Result = Tmp1;
3581 }
3582 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003583 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00003584 Result = ExpandLegalINT_TO_FP(isSigned,
3585 LegalizeOp(Node->getOperand(0)),
3586 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003587 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003588 case TargetLowering::Promote:
3589 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
3590 Node->getValueType(0),
3591 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003592 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00003593 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003594 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00003595 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003596 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
3597 Node->getValueType(0), Node->getOperand(0));
3598 break;
3599 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003600 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003601 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003602 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
3603 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003604 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003605 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
3606 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003607 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003608 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3609 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003610 break;
3611 }
3612 break;
3613 }
3614 case ISD::TRUNCATE:
3615 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3616 case Legal:
3617 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003618 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003619 break;
3620 case Expand:
3621 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3622
3623 // Since the result is legal, we should just be able to truncate the low
3624 // part of the source.
3625 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3626 break;
3627 case Promote:
3628 Result = PromoteOp(Node->getOperand(0));
3629 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3630 break;
3631 }
3632 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003633
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003634 case ISD::FP_TO_SINT:
3635 case ISD::FP_TO_UINT:
3636 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3637 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003638 Tmp1 = LegalizeOp(Node->getOperand(0));
3639
Chris Lattner1618beb2005-07-29 00:11:56 +00003640 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3641 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003642 case TargetLowering::Custom:
3643 isCustom = true;
3644 // FALLTHROUGH
3645 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003646 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003647 if (isCustom) {
3648 Tmp1 = TLI.LowerOperation(Result, DAG);
3649 if (Tmp1.Val) Result = Tmp1;
3650 }
3651 break;
3652 case TargetLowering::Promote:
3653 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3654 Node->getOpcode() == ISD::FP_TO_SINT);
3655 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003656 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003657 if (Node->getOpcode() == ISD::FP_TO_UINT) {
3658 SDOperand True, False;
3659 MVT::ValueType VT = Node->getOperand(0).getValueType();
3660 MVT::ValueType NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00003661 const uint64_t zero[] = {0, 0};
3662 APFloat apf = APFloat(APInt(MVT::getSizeInBits(VT), 2, zero));
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003663 APInt x = APInt::getSignBit(MVT::getSizeInBits(NVT));
3664 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00003665 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003666 Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
Nate Begemand2558e32005-08-14 01:20:53 +00003667 Node->getOperand(0), Tmp2, ISD::SETLT);
3668 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3669 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003670 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003671 Tmp2));
3672 False = DAG.getNode(ISD::XOR, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003673 DAG.getConstant(x, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003674 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3675 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003676 } else {
3677 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3678 }
3679 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003680 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003681 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003682 case Expand: {
Evan Cheng6af00d52006-12-13 01:57:55 +00003683 MVT::ValueType VT = Op.getValueType();
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003684 MVT::ValueType OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003685 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003686 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003687 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3688 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3689 Node->getOperand(0), DAG.getValueType(MVT::f64));
3690 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3691 DAG.getIntPtrConstant(1));
3692 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3693 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003694 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3695 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3696 Tmp2 = DAG.getConstantFP(apf, OVT);
3697 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3698 // FIXME: generated code sucks.
3699 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3700 DAG.getNode(ISD::ADD, MVT::i32,
3701 DAG.getNode(ISD::FP_TO_SINT, VT,
3702 DAG.getNode(ISD::FSUB, OVT,
3703 Node->getOperand(0), Tmp2)),
3704 DAG.getConstant(0x80000000, MVT::i32)),
3705 DAG.getNode(ISD::FP_TO_SINT, VT,
3706 Node->getOperand(0)),
3707 DAG.getCondCode(ISD::SETGE));
3708 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003709 break;
3710 }
Dan Gohmana2e94852008-03-10 23:03:31 +00003711 // Convert f32 / f64 to i32 / i64 / i128.
Evan Cheng56966222007-01-12 02:11:51 +00003712 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng6af00d52006-12-13 01:57:55 +00003713 switch (Node->getOpcode()) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003714 case ISD::FP_TO_SINT: {
Dan Gohmana2e94852008-03-10 23:03:31 +00003715 if (VT == MVT::i32) {
3716 if (OVT == MVT::f32)
3717 LC = RTLIB::FPTOSINT_F32_I32;
3718 else if (OVT == MVT::f64)
3719 LC = RTLIB::FPTOSINT_F64_I32;
3720 else
3721 assert(0 && "Unexpected i32-to-fp conversion!");
3722 } else if (VT == MVT::i64) {
3723 if (OVT == MVT::f32)
3724 LC = RTLIB::FPTOSINT_F32_I64;
3725 else if (OVT == MVT::f64)
3726 LC = RTLIB::FPTOSINT_F64_I64;
3727 else if (OVT == MVT::f80)
3728 LC = RTLIB::FPTOSINT_F80_I64;
3729 else if (OVT == MVT::ppcf128)
3730 LC = RTLIB::FPTOSINT_PPCF128_I64;
3731 else
3732 assert(0 && "Unexpected i64-to-fp conversion!");
3733 } else if (VT == MVT::i128) {
3734 if (OVT == MVT::f32)
3735 LC = RTLIB::FPTOSINT_F32_I128;
3736 else if (OVT == MVT::f64)
3737 LC = RTLIB::FPTOSINT_F64_I128;
3738 else if (OVT == MVT::f80)
3739 LC = RTLIB::FPTOSINT_F80_I128;
3740 else if (OVT == MVT::ppcf128)
3741 LC = RTLIB::FPTOSINT_PPCF128_I128;
3742 else
3743 assert(0 && "Unexpected i128-to-fp conversion!");
3744 } else {
3745 assert(0 && "Unexpectd int-to-fp conversion!");
Dale Johannesen73328d12007-09-19 23:55:34 +00003746 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003747 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003748 }
3749 case ISD::FP_TO_UINT: {
Dan Gohmana2e94852008-03-10 23:03:31 +00003750 if (VT == MVT::i32) {
3751 if (OVT == MVT::f32)
3752 LC = RTLIB::FPTOUINT_F32_I32;
3753 else if (OVT == MVT::f64)
3754 LC = RTLIB::FPTOUINT_F64_I32;
3755 else if (OVT == MVT::f80)
3756 LC = RTLIB::FPTOUINT_F80_I32;
3757 else
3758 assert(0 && "Unexpected i32-to-fp conversion!");
3759 } else if (VT == MVT::i64) {
3760 if (OVT == MVT::f32)
3761 LC = RTLIB::FPTOUINT_F32_I64;
3762 else if (OVT == MVT::f64)
3763 LC = RTLIB::FPTOUINT_F64_I64;
3764 else if (OVT == MVT::f80)
3765 LC = RTLIB::FPTOUINT_F80_I64;
3766 else if (OVT == MVT::ppcf128)
3767 LC = RTLIB::FPTOUINT_PPCF128_I64;
3768 else
3769 assert(0 && "Unexpected i64-to-fp conversion!");
3770 } else if (VT == MVT::i128) {
3771 if (OVT == MVT::f32)
3772 LC = RTLIB::FPTOUINT_F32_I128;
3773 else if (OVT == MVT::f64)
3774 LC = RTLIB::FPTOUINT_F64_I128;
3775 else if (OVT == MVT::f80)
3776 LC = RTLIB::FPTOUINT_F80_I128;
3777 else if (OVT == MVT::ppcf128)
3778 LC = RTLIB::FPTOUINT_PPCF128_I128;
3779 else
3780 assert(0 && "Unexpected i128-to-fp conversion!");
3781 } else {
3782 assert(0 && "Unexpectd int-to-fp conversion!");
Dale Johannesen73328d12007-09-19 23:55:34 +00003783 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003784 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003785 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003786 default: assert(0 && "Unreachable!");
3787 }
3788 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003789 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003790 break;
3791 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003792 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003793 Tmp1 = PromoteOp(Node->getOperand(0));
3794 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3795 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003796 break;
3797 }
3798 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003799
Chris Lattnerf2670a82008-01-16 06:57:07 +00003800 case ISD::FP_EXTEND: {
Chris Lattner0bd48932008-01-17 07:00:52 +00003801 MVT::ValueType DstVT = Op.getValueType();
3802 MVT::ValueType SrcVT = Op.getOperand(0).getValueType();
3803 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3804 // The only other way we can lower this is to turn it into a STORE,
3805 // LOAD pair, targetting a temporary location (a stack slot).
3806 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3807 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00003808 }
3809 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3810 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3811 case Legal:
3812 Tmp1 = LegalizeOp(Node->getOperand(0));
3813 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3814 break;
3815 case Promote:
3816 Tmp1 = PromoteOp(Node->getOperand(0));
3817 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3818 break;
3819 }
3820 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003821 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003822 case ISD::FP_ROUND: {
Chris Lattner0bd48932008-01-17 07:00:52 +00003823 MVT::ValueType DstVT = Op.getValueType();
3824 MVT::ValueType SrcVT = Op.getOperand(0).getValueType();
3825 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3826 if (SrcVT == MVT::ppcf128) {
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003827 SDOperand Lo;
3828 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003829 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003830 if (DstVT!=MVT::f64)
3831 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00003832 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00003833 }
Chris Lattner0bd48932008-01-17 07:00:52 +00003834 // The only other way we can lower this is to turn it into a STORE,
3835 // LOAD pair, targetting a temporary location (a stack slot).
3836 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3837 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00003838 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00003839 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3840 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3841 case Legal:
3842 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003843 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003844 break;
3845 case Promote:
3846 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003847 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3848 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003849 break;
3850 }
3851 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003852 }
Chris Lattner13c78e22005-09-02 00:18:10 +00003853 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003854 case ISD::ZERO_EXTEND:
3855 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003856 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003857 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003858 case Legal:
3859 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel0123b7d2008-02-15 23:05:48 +00003860 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3861 TargetLowering::Custom) {
3862 Tmp2 = TLI.LowerOperation(Result, DAG);
3863 if (Tmp2.Val) {
3864 Tmp1 = Tmp2;
3865 }
3866 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003867 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003868 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003869 case Promote:
3870 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003871 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003872 Tmp1 = PromoteOp(Node->getOperand(0));
3873 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003874 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003875 case ISD::ZERO_EXTEND:
3876 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003877 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003878 Result = DAG.getZeroExtendInReg(Result,
3879 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003880 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003881 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003882 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003883 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003884 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003885 Result,
3886 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003887 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003888 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003889 }
3890 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003891 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003892 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003893 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00003894 MVT::ValueType ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003895
3896 // If this operation is not supported, convert it to a shl/shr or load/store
3897 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003898 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3899 default: assert(0 && "This action not supported for this op yet!");
3900 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003901 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003902 break;
3903 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003904 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003905 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003906 // NOTE: we could fall back on load/store here too for targets without
3907 // SAR. However, it is doubtful that any exist.
3908 unsigned BitsDiff = MVT::getSizeInBits(Node->getValueType(0)) -
3909 MVT::getSizeInBits(ExtraVT);
Chris Lattner27ff1122005-01-22 00:31:52 +00003910 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003911 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3912 Node->getOperand(0), ShiftCst);
3913 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3914 Result, ShiftCst);
3915 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003916 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003917 // EXTLOAD pair, targetting a temporary location (a stack slot).
3918
3919 // NOTE: there is a choice here between constantly creating new stack
3920 // slots and always reusing the same one. We currently always create
3921 // new ones, as reuse may inhibit scheduling.
Chris Lattnera66bb392008-01-16 07:51:34 +00003922 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3923 Node->getValueType(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00003924 } else {
3925 assert(0 && "Unknown op");
3926 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003927 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003928 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003929 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003930 }
Duncan Sands36397f52007-07-27 12:58:54 +00003931 case ISD::TRAMPOLINE: {
3932 SDOperand Ops[6];
3933 for (unsigned i = 0; i != 6; ++i)
3934 Ops[i] = LegalizeOp(Node->getOperand(i));
3935 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3936 // The only option for this node is to custom lower it.
3937 Result = TLI.LowerOperation(Result, DAG);
3938 assert(Result.Val && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00003939
3940 // Since trampoline produces two values, make sure to remember that we
3941 // legalized both of them.
3942 Tmp1 = LegalizeOp(Result.getValue(1));
3943 Result = LegalizeOp(Result);
3944 AddLegalizedOperand(SDOperand(Node, 0), Result);
3945 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3946 return Op.ResNo ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00003947 }
Dan Gohman1a024862008-01-31 00:41:03 +00003948 case ISD::FLT_ROUNDS_: {
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003949 MVT::ValueType VT = Node->getValueType(0);
3950 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3951 default: assert(0 && "This action not supported for this op yet!");
3952 case TargetLowering::Custom:
3953 Result = TLI.LowerOperation(Op, DAG);
3954 if (Result.Val) break;
3955 // Fall Thru
3956 case TargetLowering::Legal:
3957 // If this operation is not supported, lower it to constant 1
3958 Result = DAG.getConstant(1, VT);
3959 break;
3960 }
3961 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003962 case ISD::TRAP: {
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003963 MVT::ValueType VT = Node->getValueType(0);
3964 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3965 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00003966 case TargetLowering::Legal:
3967 Tmp1 = LegalizeOp(Node->getOperand(0));
3968 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3969 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003970 case TargetLowering::Custom:
3971 Result = TLI.LowerOperation(Op, DAG);
3972 if (Result.Val) break;
3973 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00003974 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003975 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00003976 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003977 TargetLowering::ArgListTy Args;
3978 std::pair<SDOperand,SDOperand> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00003979 TLI.LowerCallTo(Tmp1, Type::VoidTy,
3980 false, false, false, CallingConv::C, false,
Chris Lattner034f12e2008-01-15 22:09:33 +00003981 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
3982 Args, DAG);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003983 Result = CallResult.second;
3984 break;
3985 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003986 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003987 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00003988 }
Chris Lattner456a93a2006-01-28 07:39:30 +00003989
Chris Lattner4ddd2832006-04-08 04:13:17 +00003990 assert(Result.getValueType() == Op.getValueType() &&
3991 "Bad legalization!");
3992
Chris Lattner456a93a2006-01-28 07:39:30 +00003993 // Make sure that the generated code is itself legal.
3994 if (Result != Op)
3995 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003996
Chris Lattner45982da2005-05-12 16:53:42 +00003997 // Note that LegalizeOp may be reentered even from single-use nodes, which
3998 // means that we always must cache transformed nodes.
3999 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004000 return Result;
4001}
4002
Chris Lattner8b6fa222005-01-15 22:16:26 +00004003/// PromoteOp - Given an operation that produces a value in an invalid type,
4004/// promote it to compute the value into a larger type. The produced value will
4005/// have the correct bits for the low portion of the register, but no guarantee
4006/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00004007SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
4008 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00004009 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004010 assert(getTypeAction(VT) == Promote &&
4011 "Caller should expand or legalize operands that are not promotable!");
4012 assert(NVT > VT && MVT::isInteger(NVT) == MVT::isInteger(VT) &&
4013 "Cannot promote to smaller type!");
4014
Chris Lattner03c85462005-01-15 05:21:40 +00004015 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00004016 SDOperand Result;
4017 SDNode *Node = Op.Val;
4018
Roman Levenstein9cac5252008-04-16 16:15:27 +00004019 DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004020 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004021
Chris Lattner03c85462005-01-15 05:21:40 +00004022 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004023 case ISD::CopyFromReg:
4024 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004025 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004026#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004027 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004028#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004029 assert(0 && "Do not know how to promote this operator!");
4030 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004031 case ISD::UNDEF:
4032 Result = DAG.getNode(ISD::UNDEF, NVT);
4033 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004034 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004035 if (VT != MVT::i1)
4036 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4037 else
4038 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004039 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4040 break;
4041 case ISD::ConstantFP:
4042 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4043 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4044 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004045
Chris Lattner82fbfb62005-01-18 02:59:52 +00004046 case ISD::SETCC:
Scott Michel5b8f82e2008-03-10 15:42:14 +00004047 assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
Nate Begeman5922f562008-03-14 00:53:31 +00004048 && "SetCC type is not legal??");
Scott Michel5b8f82e2008-03-10 15:42:14 +00004049 Result = DAG.getNode(ISD::SETCC,
Nate Begeman5922f562008-03-14 00:53:31 +00004050 TLI.getSetCCResultType(Node->getOperand(0)),
4051 Node->getOperand(0), Node->getOperand(1),
4052 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004053 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00004054
Chris Lattner03c85462005-01-15 05:21:40 +00004055 case ISD::TRUNCATE:
4056 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4057 case Legal:
4058 Result = LegalizeOp(Node->getOperand(0));
4059 assert(Result.getValueType() >= NVT &&
4060 "This truncation doesn't make sense!");
4061 if (Result.getValueType() > NVT) // Truncate to NVT instead of VT
4062 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4063 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004064 case Promote:
4065 // The truncation is not required, because we don't guarantee anything
4066 // about high bits anyway.
4067 Result = PromoteOp(Node->getOperand(0));
4068 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004069 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004070 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4071 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00004072 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004073 }
4074 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004075 case ISD::SIGN_EXTEND:
4076 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004077 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004078 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4079 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4080 case Legal:
4081 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00004082 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004083 break;
4084 case Promote:
4085 // Promote the reg if it's smaller.
4086 Result = PromoteOp(Node->getOperand(0));
4087 // The high bits are not guaranteed to be anything. Insert an extend.
4088 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00004089 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004090 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004091 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00004092 Result = DAG.getZeroExtendInReg(Result,
4093 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004094 break;
4095 }
4096 break;
Chris Lattner35481892005-12-23 00:16:34 +00004097 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004098 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4099 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00004100 Result = PromoteOp(Result);
4101 break;
4102
Chris Lattner8b6fa222005-01-15 22:16:26 +00004103 case ISD::FP_EXTEND:
4104 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4105 case ISD::FP_ROUND:
4106 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4107 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4108 case Promote: assert(0 && "Unreachable with 2 FP types!");
4109 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004110 if (Node->getConstantOperandVal(1) == 0) {
4111 // Input is legal? Do an FP_ROUND_INREG.
4112 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4113 DAG.getValueType(VT));
4114 } else {
4115 // Just remove the truncate, it isn't affecting the value.
4116 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4117 Node->getOperand(1));
4118 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004119 break;
4120 }
4121 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004122 case ISD::SINT_TO_FP:
4123 case ISD::UINT_TO_FP:
4124 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4125 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004126 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00004127 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004128 break;
4129
4130 case Promote:
4131 Result = PromoteOp(Node->getOperand(0));
4132 if (Node->getOpcode() == ISD::SINT_TO_FP)
4133 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004134 Result,
4135 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004136 else
Chris Lattner23993562005-04-13 02:38:47 +00004137 Result = DAG.getZeroExtendInReg(Result,
4138 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004139 // No extra round required here.
4140 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004141 break;
4142 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004143 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4144 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00004145 // Round if we cannot tolerate excess precision.
4146 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004147 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4148 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004149 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004150 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004151 break;
4152
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004153 case ISD::SIGN_EXTEND_INREG:
4154 Result = PromoteOp(Node->getOperand(0));
4155 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4156 Node->getOperand(1));
4157 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004158 case ISD::FP_TO_SINT:
4159 case ISD::FP_TO_UINT:
4160 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4161 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004162 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004163 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004164 break;
4165 case Promote:
4166 // The input result is prerounded, so we don't have to do anything
4167 // special.
4168 Tmp1 = PromoteOp(Node->getOperand(0));
4169 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004170 }
Nate Begemand2558e32005-08-14 01:20:53 +00004171 // If we're promoting a UINT to a larger size, check to see if the new node
4172 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4173 // we can use that instead. This allows us to generate better code for
4174 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4175 // legal, such as PowerPC.
4176 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004177 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004178 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4179 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00004180 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4181 } else {
4182 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4183 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004184 break;
4185
Chris Lattner2c8086f2005-04-02 05:00:07 +00004186 case ISD::FABS:
4187 case ISD::FNEG:
4188 Tmp1 = PromoteOp(Node->getOperand(0));
4189 assert(Tmp1.getValueType() == NVT);
4190 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4191 // NOTE: we do not have to do any extra rounding here for
4192 // NoExcessFPPrecision, because we know the input will have the appropriate
4193 // precision, and these operations don't modify precision at all.
4194 break;
4195
Chris Lattnerda6ba872005-04-28 21:44:33 +00004196 case ISD::FSQRT:
4197 case ISD::FSIN:
4198 case ISD::FCOS:
4199 Tmp1 = PromoteOp(Node->getOperand(0));
4200 assert(Tmp1.getValueType() == NVT);
4201 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004202 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004203 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4204 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004205 break;
4206
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004207 case ISD::FPOWI: {
4208 // Promote f32 powi to f64 powi. Note that this could insert a libcall
4209 // directly as well, which may be better.
4210 Tmp1 = PromoteOp(Node->getOperand(0));
4211 assert(Tmp1.getValueType() == NVT);
4212 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
4213 if (NoExcessFPPrecision)
4214 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4215 DAG.getValueType(VT));
4216 break;
4217 }
4218
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004219 case ISD::ATOMIC_LCS: {
4220 Tmp2 = PromoteOp(Node->getOperand(2));
4221 Tmp3 = PromoteOp(Node->getOperand(3));
4222 Result = DAG.getAtomic(Node->getOpcode(), Node->getOperand(0),
4223 Node->getOperand(1), Tmp2, Tmp3,
4224 cast<AtomicSDNode>(Node)->getVT());
4225 // Remember that we legalized the chain.
4226 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4227 break;
4228 }
4229 case ISD::ATOMIC_LAS:
4230 case ISD::ATOMIC_SWAP: {
4231 Tmp2 = PromoteOp(Node->getOperand(2));
4232 Result = DAG.getAtomic(Node->getOpcode(), Node->getOperand(0),
4233 Node->getOperand(1), Tmp2,
4234 cast<AtomicSDNode>(Node)->getVT());
4235 // Remember that we legalized the chain.
4236 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4237 break;
4238 }
4239
Chris Lattner03c85462005-01-15 05:21:40 +00004240 case ISD::AND:
4241 case ISD::OR:
4242 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004243 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004244 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004245 case ISD::MUL:
4246 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004247 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004248 // that too is okay if they are integer operations.
4249 Tmp1 = PromoteOp(Node->getOperand(0));
4250 Tmp2 = PromoteOp(Node->getOperand(1));
4251 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4252 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004253 break;
4254 case ISD::FADD:
4255 case ISD::FSUB:
4256 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004257 Tmp1 = PromoteOp(Node->getOperand(0));
4258 Tmp2 = PromoteOp(Node->getOperand(1));
4259 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4260 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4261
4262 // Floating point operations will give excess precision that we may not be
4263 // able to tolerate. If we DO allow excess precision, just leave it,
4264 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004265 // FIXME: Why would we need to round FP ops more than integer ones?
4266 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004267 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004268 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4269 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004270 break;
4271
Chris Lattner8b6fa222005-01-15 22:16:26 +00004272 case ISD::SDIV:
4273 case ISD::SREM:
4274 // These operators require that their input be sign extended.
4275 Tmp1 = PromoteOp(Node->getOperand(0));
4276 Tmp2 = PromoteOp(Node->getOperand(1));
4277 if (MVT::isInteger(NVT)) {
Chris Lattner15e4b012005-07-10 00:07:11 +00004278 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4279 DAG.getValueType(VT));
4280 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4281 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004282 }
4283 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4284
4285 // Perform FP_ROUND: this is probably overly pessimistic.
4286 if (MVT::isFloatingPoint(NVT) && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004287 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4288 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004289 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004290 case ISD::FDIV:
4291 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004292 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004293 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004294 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004295 case Expand: assert(0 && "not implemented");
4296 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4297 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004298 }
4299 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004300 case Expand: assert(0 && "not implemented");
4301 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4302 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004303 }
Chris Lattner01b3d732005-09-28 22:28:18 +00004304 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4305
4306 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004307 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00004308 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4309 DAG.getValueType(VT));
4310 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004311
4312 case ISD::UDIV:
4313 case ISD::UREM:
4314 // These operators require that their input be zero extended.
4315 Tmp1 = PromoteOp(Node->getOperand(0));
4316 Tmp2 = PromoteOp(Node->getOperand(1));
4317 assert(MVT::isInteger(NVT) && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00004318 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4319 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004320 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4321 break;
4322
4323 case ISD::SHL:
4324 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00004325 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004326 break;
4327 case ISD::SRA:
4328 // The input value must be properly sign extended.
4329 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00004330 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4331 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00004332 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004333 break;
4334 case ISD::SRL:
4335 // The input value must be properly zero extended.
4336 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00004337 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004338 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004339 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004340
4341 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004342 Tmp1 = Node->getOperand(0); // Get the chain.
4343 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004344 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4345 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
4346 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
4347 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004348 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
4349 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004350 // Increment the pointer, VAList, to the next vaarg
4351 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
4352 DAG.getConstant(MVT::getSizeInBits(VT)/8,
4353 TLI.getPointerTy()));
4354 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00004355 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004356 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004357 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004358 }
4359 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004360 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004361 break;
4362
Evan Cheng466685d2006-10-09 20:57:25 +00004363 case ISD::LOAD: {
4364 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004365 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4366 ? ISD::EXTLOAD : LD->getExtensionType();
4367 Result = DAG.getExtLoad(ExtType, NVT,
4368 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004369 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004370 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004371 LD->isVolatile(),
4372 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004373 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004374 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004375 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004376 }
Chris Lattner03c85462005-01-15 05:21:40 +00004377 case ISD::SELECT:
Chris Lattner03c85462005-01-15 05:21:40 +00004378 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4379 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Chris Lattner456a93a2006-01-28 07:39:30 +00004380 Result = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004381 break;
Nate Begeman9373a812005-08-10 20:51:12 +00004382 case ISD::SELECT_CC:
4383 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4384 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4385 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004386 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004387 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004388 case ISD::BSWAP:
4389 Tmp1 = Node->getOperand(0);
4390 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4391 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4392 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004393 DAG.getConstant(MVT::getSizeInBits(NVT) -
4394 MVT::getSizeInBits(VT),
Nate Begemand88fc032006-01-14 03:14:10 +00004395 TLI.getShiftAmountTy()));
4396 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004397 case ISD::CTPOP:
4398 case ISD::CTTZ:
4399 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004400 // Zero extend the argument
4401 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004402 // Perform the larger operation, then subtract if needed.
4403 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004404 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004405 case ISD::CTPOP:
4406 Result = Tmp1;
4407 break;
4408 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004409 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004410 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004411 DAG.getConstant(MVT::getSizeInBits(NVT), NVT),
4412 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004413 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004414 DAG.getConstant(MVT::getSizeInBits(VT), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004415 break;
4416 case ISD::CTLZ:
4417 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004418 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Dan Gohmanb55757e2007-05-18 17:52:13 +00004419 DAG.getConstant(MVT::getSizeInBits(NVT) -
4420 MVT::getSizeInBits(VT), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004421 break;
4422 }
4423 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004424 case ISD::EXTRACT_SUBVECTOR:
4425 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004426 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004427 case ISD::EXTRACT_VECTOR_ELT:
4428 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4429 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004430 }
4431
4432 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004433
4434 // Make sure the result is itself legal.
4435 Result = LegalizeOp(Result);
4436
4437 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004438 AddPromotedOperand(Op, Result);
4439 return Result;
4440}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004441
Dan Gohman7f321562007-06-25 16:23:39 +00004442/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4443/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4444/// based on the vector type. The return type of this matches the element type
4445/// of the vector, which may not be legal for the target.
4446SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004447 // We know that operand #0 is the Vec vector. If the index is a constant
4448 // or if the invec is a supported hardware type, we can use it. Otherwise,
4449 // lower to a store then an indexed load.
4450 SDOperand Vec = Op.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004451 SDOperand Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00004452
Dan Gohmane40c7b02007-09-24 15:54:53 +00004453 MVT::ValueType TVT = Vec.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +00004454 unsigned NumElems = MVT::getVectorNumElements(TVT);
Chris Lattner15972212006-03-31 17:55:51 +00004455
Dan Gohman7f321562007-06-25 16:23:39 +00004456 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4457 default: assert(0 && "This action is not supported yet!");
4458 case TargetLowering::Custom: {
4459 Vec = LegalizeOp(Vec);
4460 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4461 SDOperand Tmp3 = TLI.LowerOperation(Op, DAG);
4462 if (Tmp3.Val)
4463 return Tmp3;
4464 break;
4465 }
4466 case TargetLowering::Legal:
4467 if (isTypeLegal(TVT)) {
4468 Vec = LegalizeOp(Vec);
4469 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004470 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004471 }
4472 break;
4473 case TargetLowering::Expand:
4474 break;
4475 }
4476
4477 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004478 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004479 Op = ScalarizeVectorOp(Vec);
4480 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00004481 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00004482 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Chris Lattner15972212006-03-31 17:55:51 +00004483 SDOperand Lo, Hi;
4484 SplitVectorOp(Vec, Lo, Hi);
Nate Begeman55030dc2008-01-29 02:24:00 +00004485 if (CIdx->getValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00004486 Vec = Lo;
4487 } else {
4488 Vec = Hi;
Nate Begeman55030dc2008-01-29 02:24:00 +00004489 Idx = DAG.getConstant(CIdx->getValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00004490 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00004491 }
Dan Gohman7f321562007-06-25 16:23:39 +00004492
Chris Lattner15972212006-03-31 17:55:51 +00004493 // It's now an extract from the appropriate high or low part. Recurse.
4494 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004495 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00004496 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004497 // Store the value to a temporary stack slot, then LOAD the scalar
4498 // element back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004499 SDOperand StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dan Gohman7f321562007-06-25 16:23:39 +00004500 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
4501
4502 // Add the offset to the index.
4503 unsigned EltSize = MVT::getSizeInBits(Op.getValueType())/8;
4504 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4505 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004506
4507 if (MVT::getSizeInBits(Idx.getValueType()) >
4508 MVT::getSizeInBits(TLI.getPointerTy()))
Chris Lattnerf185e672007-10-19 16:47:35 +00004509 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004510 else
Chris Lattnerf185e672007-10-19 16:47:35 +00004511 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004512
Dan Gohman7f321562007-06-25 16:23:39 +00004513 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4514
4515 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00004516 }
Dan Gohman7f321562007-06-25 16:23:39 +00004517 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00004518}
4519
Dan Gohman7f321562007-06-25 16:23:39 +00004520/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00004521/// we assume the operation can be split if it is not already legal.
Dan Gohman7f321562007-06-25 16:23:39 +00004522SDOperand SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDOperand Op) {
Dan Gohman65956352007-06-13 15:12:02 +00004523 // We know that operand #0 is the Vec vector. For now we assume the index
4524 // is a constant and that the extracted result is a supported hardware type.
4525 SDOperand Vec = Op.getOperand(0);
4526 SDOperand Idx = LegalizeOp(Op.getOperand(1));
4527
Dan Gohman7f321562007-06-25 16:23:39 +00004528 unsigned NumElems = MVT::getVectorNumElements(Vec.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00004529
4530 if (NumElems == MVT::getVectorNumElements(Op.getValueType())) {
4531 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004532 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00004533 }
4534
4535 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
4536 SDOperand Lo, Hi;
4537 SplitVectorOp(Vec, Lo, Hi);
4538 if (CIdx->getValue() < NumElems/2) {
4539 Vec = Lo;
4540 } else {
4541 Vec = Hi;
4542 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
4543 }
4544
4545 // It's now an extract from the appropriate high or low part. Recurse.
4546 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004547 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00004548}
4549
Nate Begeman750ac1b2006-02-01 07:19:44 +00004550/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4551/// with condition CC on the current target. This usually involves legalizing
4552/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4553/// there may be no choice but to create a new SetCC node to represent the
4554/// legalized value of setcc lhs, rhs. In this case, the value is returned in
4555/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
4556void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
4557 SDOperand &RHS,
4558 SDOperand &CC) {
Dale Johannesen638ccd52007-10-06 01:24:11 +00004559 SDOperand Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004560
4561 switch (getTypeAction(LHS.getValueType())) {
4562 case Legal:
4563 Tmp1 = LegalizeOp(LHS); // LHS
4564 Tmp2 = LegalizeOp(RHS); // RHS
4565 break;
4566 case Promote:
4567 Tmp1 = PromoteOp(LHS); // LHS
4568 Tmp2 = PromoteOp(RHS); // RHS
4569
4570 // If this is an FP compare, the operands have already been extended.
4571 if (MVT::isInteger(LHS.getValueType())) {
4572 MVT::ValueType VT = LHS.getValueType();
4573 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
4574
4575 // Otherwise, we have to insert explicit sign or zero extends. Note
4576 // that we could insert sign extends for ALL conditions, but zero extend
4577 // is cheaper on many machines (an AND instead of two shifts), so prefer
4578 // it.
4579 switch (cast<CondCodeSDNode>(CC)->get()) {
4580 default: assert(0 && "Unknown integer comparison!");
4581 case ISD::SETEQ:
4582 case ISD::SETNE:
4583 case ISD::SETUGE:
4584 case ISD::SETUGT:
4585 case ISD::SETULE:
4586 case ISD::SETULT:
4587 // ALL of these operations will work if we either sign or zero extend
4588 // the operands (including the unsigned comparisons!). Zero extend is
4589 // usually a simpler/cheaper operation, so prefer it.
4590 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4591 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4592 break;
4593 case ISD::SETGE:
4594 case ISD::SETGT:
4595 case ISD::SETLT:
4596 case ISD::SETLE:
4597 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4598 DAG.getValueType(VT));
4599 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4600 DAG.getValueType(VT));
4601 break;
4602 }
4603 }
4604 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004605 case Expand: {
4606 MVT::ValueType VT = LHS.getValueType();
4607 if (VT == MVT::f32 || VT == MVT::f64) {
4608 // Expand into one or more soft-fp libcall(s).
Evan Cheng56966222007-01-12 02:11:51 +00004609 RTLIB::Libcall LC1, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00004610 switch (cast<CondCodeSDNode>(CC)->get()) {
4611 case ISD::SETEQ:
4612 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00004613 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004614 break;
4615 case ISD::SETNE:
4616 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00004617 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004618 break;
4619 case ISD::SETGE:
4620 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00004621 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004622 break;
4623 case ISD::SETLT:
4624 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00004625 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004626 break;
4627 case ISD::SETLE:
4628 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00004629 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004630 break;
4631 case ISD::SETGT:
4632 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00004633 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004634 break;
4635 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00004636 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4637 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004638 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00004639 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004640 break;
4641 default:
Evan Cheng56966222007-01-12 02:11:51 +00004642 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004643 switch (cast<CondCodeSDNode>(CC)->get()) {
4644 case ISD::SETONE:
4645 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004646 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004647 // Fallthrough
4648 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004649 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004650 break;
4651 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004652 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004653 break;
4654 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004655 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004656 break;
4657 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004658 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004659 break;
Evan Cheng56966222007-01-12 02:11:51 +00004660 case ISD::SETUEQ:
4661 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004662 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004663 default: assert(0 && "Unsupported FP setcc!");
4664 }
4665 }
4666
4667 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00004668 Tmp1 = ExpandLibCall(LC1,
Reid Spencer47857812006-12-31 05:55:36 +00004669 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004670 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004671 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004672 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004673 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004674 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00004675 CC);
Duncan Sands460a14e2008-04-12 17:14:18 +00004676 LHS = ExpandLibCall(LC2,
4677 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004678 false /*sign irrelevant*/, Dummy);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004679 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004680 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004681 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4682 Tmp2 = SDOperand();
4683 }
4684 LHS = Tmp1;
4685 RHS = Tmp2;
4686 return;
4687 }
4688
Nate Begeman750ac1b2006-02-01 07:19:44 +00004689 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
4690 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004691 ExpandOp(RHS, RHSLo, RHSHi);
4692 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4693
4694 if (VT==MVT::ppcf128) {
4695 // FIXME: This generated code sucks. We want to generate
4696 // FCMP crN, hi1, hi2
4697 // BNE crN, L:
4698 // FCMP crN, lo1, lo2
4699 // The following can be improved, but not that much.
Scott Michel5b8f82e2008-03-10 15:42:14 +00004700 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETEQ);
4701 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004702 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004703 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETNE);
4704 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004705 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4706 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
4707 Tmp2 = SDOperand();
4708 break;
4709 }
4710
4711 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004712 case ISD::SETEQ:
4713 case ISD::SETNE:
4714 if (RHSLo == RHSHi)
4715 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4716 if (RHSCST->isAllOnesValue()) {
4717 // Comparison to -1.
4718 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4719 Tmp2 = RHSLo;
4720 break;
4721 }
4722
4723 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4724 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4725 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4726 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4727 break;
4728 default:
4729 // If this is a comparison of the sign bit, just look at the top part.
4730 // X > -1, x < 0
4731 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4732 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004733 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00004734 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4735 CST->isAllOnesValue())) { // X > -1
4736 Tmp1 = LHSHi;
4737 Tmp2 = RHSHi;
4738 break;
4739 }
4740
4741 // FIXME: This generated code sucks.
4742 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004743 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004744 default: assert(0 && "Unknown integer setcc!");
4745 case ISD::SETLT:
4746 case ISD::SETULT: LowCC = ISD::SETULT; break;
4747 case ISD::SETGT:
4748 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4749 case ISD::SETLE:
4750 case ISD::SETULE: LowCC = ISD::SETULE; break;
4751 case ISD::SETGE:
4752 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4753 }
4754
4755 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4756 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4757 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4758
4759 // NOTE: on targets without efficient SELECT of bools, we can always use
4760 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004761 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004762 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
Nate Begeman5922f562008-03-14 00:53:31 +00004763 LowCC, false, DagCombineInfo);
Evan Cheng2e677812007-02-08 22:16:19 +00004764 if (!Tmp1.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004765 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4766 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004767 CCCode, false, DagCombineInfo);
4768 if (!Tmp2.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004769 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004770 RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00004771
4772 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4773 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
Dan Gohman002e5d02008-03-13 22:13:53 +00004774 if ((Tmp1C && Tmp1C->isNullValue()) ||
4775 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00004776 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4777 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00004778 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00004779 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4780 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4781 // low part is known false, returns high part.
4782 // For LE / GE, if high part is known false, ignore the low part.
4783 // For LT / GT, if high part is known true, ignore the low part.
4784 Tmp1 = Tmp2;
4785 Tmp2 = SDOperand();
4786 } else {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004787 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004788 ISD::SETEQ, false, DagCombineInfo);
4789 if (!Result.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004790 Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004791 ISD::SETEQ);
Evan Cheng2e677812007-02-08 22:16:19 +00004792 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4793 Result, Tmp1, Tmp2));
4794 Tmp1 = Result;
4795 Tmp2 = SDOperand();
4796 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004797 }
4798 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004799 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004800 LHS = Tmp1;
4801 RHS = Tmp2;
4802}
4803
Chris Lattner1401d152008-01-16 07:45:30 +00004804/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4805/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4806/// a load from the stack slot to DestVT, extending it if needed.
4807/// The resultant code need not be legal.
4808SDOperand SelectionDAGLegalize::EmitStackConvert(SDOperand SrcOp,
4809 MVT::ValueType SlotVT,
4810 MVT::ValueType DestVT) {
Chris Lattner35481892005-12-23 00:16:34 +00004811 // Create the stack frame object.
Chris Lattner1401d152008-01-16 07:45:30 +00004812 SDOperand FIPtr = DAG.CreateStackTemporary(SlotVT);
4813
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004814 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004815 int SPFI = StackPtrFI->getIndex();
4816
Chris Lattner1401d152008-01-16 07:45:30 +00004817 unsigned SrcSize = MVT::getSizeInBits(SrcOp.getValueType());
4818 unsigned SlotSize = MVT::getSizeInBits(SlotVT);
4819 unsigned DestSize = MVT::getSizeInBits(DestVT);
Chris Lattner35481892005-12-23 00:16:34 +00004820
Chris Lattner1401d152008-01-16 07:45:30 +00004821 // Emit a store to the stack slot. Use a truncstore if the input value is
4822 // later than DestVT.
4823 SDOperand Store;
4824 if (SrcSize > SlotSize)
Dan Gohman69de1932008-02-06 22:27:42 +00004825 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004826 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00004827 SPFI, SlotVT);
Chris Lattner1401d152008-01-16 07:45:30 +00004828 else {
4829 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman69de1932008-02-06 22:27:42 +00004830 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004831 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00004832 SPFI, SlotVT);
Chris Lattner1401d152008-01-16 07:45:30 +00004833 }
4834
Chris Lattner35481892005-12-23 00:16:34 +00004835 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00004836 if (SlotSize == DestSize)
4837 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
4838
4839 assert(SlotSize < DestSize && "Unknown extension!");
4840 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT);
Chris Lattner35481892005-12-23 00:16:34 +00004841}
4842
Chris Lattner4352cc92006-04-04 17:23:26 +00004843SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
4844 // Create a vector sized/aligned stack slot, store the value to element #0,
4845 // then load the whole vector back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004846 SDOperand StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00004847
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004848 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004849 int SPFI = StackPtrFI->getIndex();
4850
Evan Cheng786225a2006-10-05 23:01:46 +00004851 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004852 PseudoSourceValue::getFixedStack(), SPFI);
Dan Gohman69de1932008-02-06 22:27:42 +00004853 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004854 PseudoSourceValue::getFixedStack(), SPFI);
Chris Lattner4352cc92006-04-04 17:23:26 +00004855}
4856
4857
Chris Lattnerce872152006-03-19 06:31:19 +00004858/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004859/// support the operation, but do support the resultant vector type.
Chris Lattnerce872152006-03-19 06:31:19 +00004860SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
4861
4862 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004863 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004864 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004865 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00004866 SDOperand SplatValue = Node->getOperand(0);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004867
4868 // FIXME: it would be far nicer to change this into map<SDOperand,uint64_t>
4869 // and use a bitmask instead of a list of elements.
Evan Cheng033e6812006-03-24 01:17:21 +00004870 std::map<SDOperand, std::vector<unsigned> > Values;
4871 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004872 bool isConstant = true;
4873 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4874 SplatValue.getOpcode() != ISD::UNDEF)
4875 isConstant = false;
4876
Evan Cheng033e6812006-03-24 01:17:21 +00004877 for (unsigned i = 1; i < NumElems; ++i) {
4878 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004879 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004880 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004881 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004882 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00004883 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004884
4885 // If this isn't a constant element or an undef, we can't use a constant
4886 // pool load.
4887 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4888 V.getOpcode() != ISD::UNDEF)
4889 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004890 }
4891
4892 if (isOnlyLowElement) {
4893 // If the low element is an undef too, then this whole things is an undef.
4894 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4895 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4896 // Otherwise, turn this into a scalar_to_vector node.
4897 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4898 Node->getOperand(0));
4899 }
4900
Chris Lattner2eb86532006-03-24 07:29:17 +00004901 // If all elements are constants, create a load from the constant pool.
4902 if (isConstant) {
4903 MVT::ValueType VT = Node->getValueType(0);
4904 const Type *OpNTy =
4905 MVT::getTypeForValueType(Node->getOperand(0).getValueType());
4906 std::vector<Constant*> CV;
4907 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4908 if (ConstantFPSDNode *V =
4909 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dale Johannesenf04afdb2007-08-30 00:23:21 +00004910 CV.push_back(ConstantFP::get(OpNTy, V->getValueAPF()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004911 } else if (ConstantSDNode *V =
4912 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Reid Spencerb83eb642006-10-20 07:07:24 +00004913 CV.push_back(ConstantInt::get(OpNTy, V->getValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004914 } else {
4915 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
4916 CV.push_back(UndefValue::get(OpNTy));
4917 }
4918 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00004919 Constant *CP = ConstantVector::get(CV);
Chris Lattner2eb86532006-03-24 07:29:17 +00004920 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman69de1932008-02-06 22:27:42 +00004921 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00004922 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004923 }
4924
Chris Lattner87100e02006-03-20 01:52:29 +00004925 if (SplatValue.Val) { // Splat of one value?
4926 // Build the shuffle constant vector: <0, 0, 0, 0>
4927 MVT::ValueType MaskVT =
Evan Cheng033e6812006-03-24 01:17:21 +00004928 MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman51eaa862007-06-14 22:58:02 +00004929 SDOperand Zero = DAG.getConstant(0, MVT::getVectorElementType(MaskVT));
Evan Cheng033e6812006-03-24 01:17:21 +00004930 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004931 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4932 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00004933
4934 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004935 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00004936 // Get the splatted value into the low element of a vector register.
4937 SDOperand LowValVec =
4938 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
4939
4940 // Return shuffle(LowValVec, undef, <0,0,0,0>)
4941 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
4942 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
4943 SplatMask);
4944 }
4945 }
4946
Evan Cheng033e6812006-03-24 01:17:21 +00004947 // If there are only two unique elements, we may be able to turn this into a
4948 // vector shuffle.
4949 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004950 // Get the two values in deterministic order.
4951 SDOperand Val1 = Node->getOperand(1);
4952 SDOperand Val2;
4953 std::map<SDOperand, std::vector<unsigned> >::iterator MI = Values.begin();
4954 if (MI->first != Val1)
4955 Val2 = MI->first;
4956 else
4957 Val2 = (++MI)->first;
4958
4959 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
4960 // vector shuffle has the undef vector on the RHS.
4961 if (Val1.getOpcode() == ISD::UNDEF)
4962 std::swap(Val1, Val2);
4963
Evan Cheng033e6812006-03-24 01:17:21 +00004964 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004965 MVT::ValueType MaskVT = MVT::getIntVectorWithNumElements(NumElems);
4966 MVT::ValueType MaskEltVT = MVT::getVectorElementType(MaskVT);
Evan Cheng033e6812006-03-24 01:17:21 +00004967 std::vector<SDOperand> MaskVec(NumElems);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004968
4969 // Set elements of the shuffle mask for Val1.
4970 std::vector<unsigned> &Val1Elts = Values[Val1];
4971 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
4972 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
4973
4974 // Set elements of the shuffle mask for Val2.
4975 std::vector<unsigned> &Val2Elts = Values[Val2];
4976 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
4977 if (Val2.getOpcode() != ISD::UNDEF)
4978 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
4979 else
4980 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
4981
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004982 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4983 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00004984
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004985 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004986 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
4987 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004988 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
4989 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
4990 SDOperand Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng033e6812006-03-24 01:17:21 +00004991
4992 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004993 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Evan Cheng033e6812006-03-24 01:17:21 +00004994 }
4995 }
Chris Lattnerce872152006-03-19 06:31:19 +00004996
4997 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
4998 // aligned object on the stack, store each element into it, then load
4999 // the result as a vector.
5000 MVT::ValueType VT = Node->getValueType(0);
5001 // Create the stack frame object.
Chris Lattner85dd3be2007-10-15 17:48:57 +00005002 SDOperand FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005003
5004 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005005 SmallVector<SDOperand, 8> Stores;
Chris Lattnerce872152006-03-19 06:31:19 +00005006 unsigned TypeByteSize =
5007 MVT::getSizeInBits(Node->getOperand(0).getValueType())/8;
Chris Lattnerce872152006-03-19 06:31:19 +00005008 // Store (in the right endianness) the elements to memory.
5009 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5010 // Ignore undef elements.
5011 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5012
Chris Lattner841c8822006-03-22 01:46:54 +00005013 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00005014
5015 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
5016 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5017
Evan Cheng786225a2006-10-05 23:01:46 +00005018 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00005019 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00005020 }
5021
5022 SDOperand StoreChain;
5023 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005024 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5025 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005026 else
5027 StoreChain = DAG.getEntryNode();
5028
5029 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00005030 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005031}
5032
Chris Lattner5b359c62005-04-02 04:00:59 +00005033void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
5034 SDOperand Op, SDOperand Amt,
5035 SDOperand &Lo, SDOperand &Hi) {
5036 // Expand the subcomponents.
5037 SDOperand LHSL, LHSH;
5038 ExpandOp(Op, LHSL, LHSH);
5039
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005040 SDOperand Ops[] = { LHSL, LHSH, Amt };
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00005041 MVT::ValueType VT = LHSL.getValueType();
5042 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005043 Hi = Lo.getValue(1);
5044}
5045
5046
Chris Lattnere34b3962005-01-19 04:19:40 +00005047/// ExpandShift - Try to find a clever way to expand this shift operation out to
5048/// smaller elements. If we can't find a way that is more efficient than a
5049/// libcall on this target, return false. Otherwise, return true with the
5050/// low-parts expanded into Lo and Hi.
5051bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
5052 SDOperand &Lo, SDOperand &Hi) {
5053 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5054 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005055
Chris Lattnere34b3962005-01-19 04:19:40 +00005056 MVT::ValueType NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005057 SDOperand ShAmt = LegalizeOp(Amt);
5058 MVT::ValueType ShTy = ShAmt.getValueType();
Dan Gohman91dc17b2008-02-20 16:57:27 +00005059 unsigned ShBits = MVT::getSizeInBits(ShTy);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005060 unsigned VTBits = MVT::getSizeInBits(Op.getValueType());
5061 unsigned NVTBits = MVT::getSizeInBits(NVT);
5062
Chris Lattner7a3c8552007-10-14 20:35:12 +00005063 // Handle the case when Amt is an immediate.
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005064 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
5065 unsigned Cst = CN->getValue();
5066 // Expand the incoming operand to be shifted, so that we have its parts
5067 SDOperand InL, InH;
5068 ExpandOp(Op, InL, InH);
5069 switch(Opc) {
5070 case ISD::SHL:
5071 if (Cst > VTBits) {
5072 Lo = DAG.getConstant(0, NVT);
5073 Hi = DAG.getConstant(0, NVT);
5074 } else if (Cst > NVTBits) {
5075 Lo = DAG.getConstant(0, NVT);
5076 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005077 } else if (Cst == NVTBits) {
5078 Lo = DAG.getConstant(0, NVT);
5079 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005080 } else {
5081 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5082 Hi = DAG.getNode(ISD::OR, NVT,
5083 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5084 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5085 }
5086 return true;
5087 case ISD::SRL:
5088 if (Cst > VTBits) {
5089 Lo = DAG.getConstant(0, NVT);
5090 Hi = DAG.getConstant(0, NVT);
5091 } else if (Cst > NVTBits) {
5092 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5093 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005094 } else if (Cst == NVTBits) {
5095 Lo = InH;
5096 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005097 } else {
5098 Lo = DAG.getNode(ISD::OR, NVT,
5099 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5100 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5101 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5102 }
5103 return true;
5104 case ISD::SRA:
5105 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005106 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005107 DAG.getConstant(NVTBits-1, ShTy));
5108 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005109 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005110 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005111 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005112 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005113 } else if (Cst == NVTBits) {
5114 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00005115 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005116 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005117 } else {
5118 Lo = DAG.getNode(ISD::OR, NVT,
5119 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5120 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5121 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5122 }
5123 return true;
5124 }
5125 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005126
5127 // Okay, the shift amount isn't constant. However, if we can tell that it is
5128 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005129 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5130 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005131 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005132
Dan Gohman9e255b72008-02-22 01:12:31 +00005133 // If we know that if any of the high bits of the shift amount are one, then
5134 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005135 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005136 // Mask out the high bit, which we know is set.
5137 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005138 DAG.getConstant(~Mask, Amt.getValueType()));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005139
5140 // Expand the incoming operand to be shifted, so that we have its parts
5141 SDOperand InL, InH;
5142 ExpandOp(Op, InL, InH);
5143 switch(Opc) {
5144 case ISD::SHL:
5145 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5146 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5147 return true;
5148 case ISD::SRL:
5149 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5150 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5151 return true;
5152 case ISD::SRA:
5153 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5154 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5155 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5156 return true;
5157 }
5158 }
5159
Dan Gohman9e255b72008-02-22 01:12:31 +00005160 // If we know that the high bits of the shift amount are all zero, then we can
5161 // do this as a couple of simple shifts.
5162 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005163 // Compute 32-amt.
5164 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
5165 DAG.getConstant(NVTBits, Amt.getValueType()),
5166 Amt);
5167
5168 // Expand the incoming operand to be shifted, so that we have its parts
5169 SDOperand InL, InH;
5170 ExpandOp(Op, InL, InH);
5171 switch(Opc) {
5172 case ISD::SHL:
5173 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5174 Hi = DAG.getNode(ISD::OR, NVT,
5175 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5176 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5177 return true;
5178 case ISD::SRL:
5179 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5180 Lo = DAG.getNode(ISD::OR, NVT,
5181 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5182 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5183 return true;
5184 case ISD::SRA:
5185 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5186 Lo = DAG.getNode(ISD::OR, NVT,
5187 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5188 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5189 return true;
5190 }
5191 }
5192
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005193 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005194}
Chris Lattner77e77a62005-01-21 06:05:23 +00005195
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005196
Chris Lattner77e77a62005-01-21 06:05:23 +00005197// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5198// does not fit into a register, return the lo part and set the hi part to the
5199// by-reg argument. If it does fit into a single register, return the result
5200// and leave the Hi part unset.
Duncan Sands460a14e2008-04-12 17:14:18 +00005201SDOperand SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Reid Spencer47857812006-12-31 05:55:36 +00005202 bool isSigned, SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005203 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5204 // The input chain to this libcall is the entry node of the function.
5205 // Legalizing the call will automatically add the previous call to the
5206 // dependence.
5207 SDOperand InChain = DAG.getEntryNode();
5208
Chris Lattner77e77a62005-01-21 06:05:23 +00005209 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005210 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005211 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5212 MVT::ValueType ArgVT = Node->getOperand(i).getValueType();
5213 const Type *ArgTy = MVT::getTypeForValueType(ArgVT);
Reid Spencer47857812006-12-31 05:55:36 +00005214 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005215 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005216 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005217 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005218 }
Duncan Sands460a14e2008-04-12 17:14:18 +00005219 SDOperand Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
5220 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005221
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005222 // Splice the libcall in wherever FindInputOutputChains tells us to.
Chris Lattner77e77a62005-01-21 06:05:23 +00005223 const Type *RetTy = MVT::getTypeForValueType(Node->getValueType(0));
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005224 std::pair<SDOperand,SDOperand> CallInfo =
Duncan Sands00fee652008-02-14 17:28:50 +00005225 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, CallingConv::C,
5226 false, Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005227
Chris Lattner6831a812006-02-13 09:18:02 +00005228 // Legalize the call sequence, starting with the chain. This will advance
5229 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5230 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5231 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00005232 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005233 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005234 default: assert(0 && "Unknown thing");
5235 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005236 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005237 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005238 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005239 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005240 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005241 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005242 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005243}
5244
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005245
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005246/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5247///
Chris Lattner77e77a62005-01-21 06:05:23 +00005248SDOperand SelectionDAGLegalize::
5249ExpandIntToFP(bool isSigned, MVT::ValueType DestTy, SDOperand Source) {
Dan Gohmand91446d2008-03-05 01:08:17 +00005250 MVT::ValueType SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005251 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005252
Evan Cheng9845eb52008-04-01 02:18:22 +00005253 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5254 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005255 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005256 // incoming integer is set. To handle this, we dynamically test to see if
5257 // it is set, and, if so, add a fudge factor.
Dan Gohman034f60e2008-03-11 01:59:03 +00005258 SDOperand Hi;
5259 if (ExpandSource) {
5260 SDOperand Lo;
5261 ExpandOp(Source, Lo, Hi);
5262 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5263 } else {
5264 // The comparison for the sign bit will use the entire operand.
5265 Hi = Source;
5266 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005267
Chris Lattner66de05b2005-05-13 04:45:13 +00005268 // If this is unsigned, and not supported, first perform the conversion to
5269 // signed, then adjust the result if the sign bit is set.
Dan Gohman034f60e2008-03-11 01:59:03 +00005270 SDOperand SignedConv = ExpandIntToFP(true, DestTy, Source);
Chris Lattner66de05b2005-05-13 04:45:13 +00005271
Scott Michel5b8f82e2008-03-10 15:42:14 +00005272 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005273 DAG.getConstant(0, Hi.getValueType()),
5274 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005275 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005276 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5277 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005278 uint64_t FF = 0x5f800000ULL;
5279 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohman34bc1782008-03-05 02:07:31 +00005280 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005281
Chris Lattner5839bf22005-08-26 17:15:30 +00005282 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00005283 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5284 SDOperand FudgeInReg;
5285 if (DestTy == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005286 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005287 PseudoSourceValue::getConstantPool(), 0);
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005288 else if (MVT::getSizeInBits(DestTy) > MVT::getSizeInBits(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005289 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005290 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005291 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005292 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005293 MVT::f32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005294 else
5295 assert(0 && "Unexpected conversion");
5296
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005297 MVT::ValueType SCVT = SignedConv.getValueType();
5298 if (SCVT != DestTy) {
5299 // Destination type needs to be expanded as well. The FADD now we are
5300 // constructing will be expanded into a libcall.
5301 if (MVT::getSizeInBits(SCVT) != MVT::getSizeInBits(DestTy)) {
Dan Gohmand91446d2008-03-05 01:08:17 +00005302 assert(MVT::getSizeInBits(SCVT) * 2 == MVT::getSizeInBits(DestTy));
5303 SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005304 SignedConv, SignedConv.getValue(1));
5305 }
5306 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5307 }
Chris Lattner473a9902005-09-29 06:44:39 +00005308 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005309 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005310
Chris Lattnera88a2602005-05-14 05:33:54 +00005311 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00005312 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00005313 default: assert(0 && "This action not implemented for this operation!");
5314 case TargetLowering::Legal:
5315 case TargetLowering::Expand:
5316 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005317 case TargetLowering::Custom: {
5318 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
5319 Source), DAG);
5320 if (NV.Val)
5321 return LegalizeOp(NV);
5322 break; // The target decided this was legal after all
5323 }
Chris Lattnera88a2602005-05-14 05:33:54 +00005324 }
5325
Chris Lattner13689e22005-05-12 07:00:44 +00005326 // Expand the source, then glue it back together for the call. We must expand
5327 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00005328 if (ExpandSource) {
5329 SDOperand SrcLo, SrcHi;
5330 ExpandOp(Source, SrcLo, SrcHi);
5331 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5332 }
Chris Lattner13689e22005-05-12 07:00:44 +00005333
Evan Cheng56966222007-01-12 02:11:51 +00005334 RTLIB::Libcall LC;
Evan Cheng110cf482008-04-01 01:50:16 +00005335 if (SourceVT == MVT::i32) {
5336 if (DestTy == MVT::f32)
Evan Chengdb45d1c2008-04-01 02:00:09 +00005337 LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32;
Evan Cheng110cf482008-04-01 01:50:16 +00005338 else {
5339 assert(DestTy == MVT::f64 && "Unknown fp value type!");
5340 LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64;
5341 }
5342 } else if (SourceVT == MVT::i64) {
Dan Gohmand91446d2008-03-05 01:08:17 +00005343 if (DestTy == MVT::f32)
5344 LC = RTLIB::SINTTOFP_I64_F32;
Dan Gohman034f60e2008-03-11 01:59:03 +00005345 else if (DestTy == MVT::f64)
Dan Gohmand91446d2008-03-05 01:08:17 +00005346 LC = RTLIB::SINTTOFP_I64_F64;
Dan Gohman034f60e2008-03-11 01:59:03 +00005347 else if (DestTy == MVT::f80)
5348 LC = RTLIB::SINTTOFP_I64_F80;
5349 else {
5350 assert(DestTy == MVT::ppcf128 && "Unknown fp value type!");
5351 LC = RTLIB::SINTTOFP_I64_PPCF128;
Dan Gohmand91446d2008-03-05 01:08:17 +00005352 }
5353 } else if (SourceVT == MVT::i128) {
5354 if (DestTy == MVT::f32)
5355 LC = RTLIB::SINTTOFP_I128_F32;
5356 else if (DestTy == MVT::f64)
5357 LC = RTLIB::SINTTOFP_I128_F64;
5358 else if (DestTy == MVT::f80)
5359 LC = RTLIB::SINTTOFP_I128_F80;
5360 else {
5361 assert(DestTy == MVT::ppcf128 && "Unknown fp value type!");
5362 LC = RTLIB::SINTTOFP_I128_PPCF128;
5363 }
5364 } else {
5365 assert(0 && "Unknown int value type");
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005366 }
Chris Lattner6831a812006-02-13 09:18:02 +00005367
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005368 assert(TLI.getLibcallName(LC) && "Don't know how to expand this SINT_TO_FP!");
Chris Lattner6831a812006-02-13 09:18:02 +00005369 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
Dan Gohmana2e94852008-03-10 23:03:31 +00005370 SDOperand HiPart;
Duncan Sands460a14e2008-04-12 17:14:18 +00005371 SDOperand Result = ExpandLibCall(LC, Source.Val, isSigned, HiPart);
Evan Cheng110cf482008-04-01 01:50:16 +00005372 if (Result.getValueType() != DestTy && HiPart.Val)
Dan Gohmana2e94852008-03-10 23:03:31 +00005373 Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5374 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005375}
Misha Brukmanedf128a2005-04-21 22:36:52 +00005376
Chris Lattner22cde6a2006-01-28 08:25:58 +00005377/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5378/// INT_TO_FP operation of the specified operand when the target requests that
5379/// we expand it. At this point, we know that the result and operand types are
5380/// legal for the target.
5381SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5382 SDOperand Op0,
5383 MVT::ValueType DestVT) {
5384 if (Op0.getValueType() == MVT::i32) {
5385 // simple 32-bit [signed|unsigned] integer to float/double expansion
5386
Chris Lattner23594d42008-01-16 07:03:22 +00005387 // Get the stack frame index of a 8 byte buffer.
5388 SDOperand StackSlot = DAG.CreateStackTemporary(MVT::f64);
5389
Chris Lattner22cde6a2006-01-28 08:25:58 +00005390 // word offset constant for Hi/Lo address computation
5391 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
5392 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00005393 SDOperand Hi = StackSlot;
5394 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
5395 if (TLI.isLittleEndian())
5396 std::swap(Hi, Lo);
5397
Chris Lattner22cde6a2006-01-28 08:25:58 +00005398 // if signed map to unsigned space
5399 SDOperand Op0Mapped;
5400 if (isSigned) {
5401 // constant used to invert sign bit (signed to unsigned mapping)
5402 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
5403 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5404 } else {
5405 Op0Mapped = Op0;
5406 }
5407 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00005408 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005409 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005410 // initial hi portion of constructed double
5411 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
5412 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00005413 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005414 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00005415 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005416 // FP constant to bias correct the final result
5417 SDOperand Bias = DAG.getConstantFP(isSigned ?
5418 BitsToDouble(0x4330000080000000ULL)
5419 : BitsToDouble(0x4330000000000000ULL),
5420 MVT::f64);
5421 // subtract the bias
5422 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
5423 // final result
5424 SDOperand Result;
5425 // handle final rounding
5426 if (DestVT == MVT::f64) {
5427 // do nothing
5428 Result = Sub;
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005429 } else if (MVT::getSizeInBits(DestVT) < MVT::getSizeInBits(MVT::f64)) {
Chris Lattner0bd48932008-01-17 07:00:52 +00005430 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5431 DAG.getIntPtrConstant(0));
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005432 } else if (MVT::getSizeInBits(DestVT) > MVT::getSizeInBits(MVT::f64)) {
5433 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005434 }
5435 return Result;
5436 }
5437 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
5438 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
5439
Scott Michel5b8f82e2008-03-10 15:42:14 +00005440 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005441 DAG.getConstant(0, Op0.getValueType()),
5442 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005443 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005444 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5445 SignSet, Four, Zero);
5446
5447 // If the sign bit of the integer is set, the large number will be treated
5448 // as a negative number. To counteract this, the dynamic code adds an
5449 // offset depending on the data type.
5450 uint64_t FF;
5451 switch (Op0.getValueType()) {
5452 default: assert(0 && "Unsupported integer type!");
5453 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5454 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5455 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5456 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5457 }
5458 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005459 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005460
5461 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
5462 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5463 SDOperand FudgeInReg;
5464 if (DestVT == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005465 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005466 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005467 else {
Dan Gohman69de1932008-02-06 22:27:42 +00005468 FudgeInReg =
5469 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5470 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005471 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005472 MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00005473 }
5474
5475 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5476}
5477
5478/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5479/// *INT_TO_FP operation of the specified operand when the target requests that
5480/// we promote it. At this point, we know that the result and operand types are
5481/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5482/// operation that takes a larger input.
5483SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
5484 MVT::ValueType DestVT,
5485 bool isSigned) {
5486 // First step, figure out the appropriate *INT_TO_FP operation to use.
5487 MVT::ValueType NewInTy = LegalOp.getValueType();
5488
5489 unsigned OpToUse = 0;
5490
5491 // Scan for the appropriate larger type to use.
5492 while (1) {
5493 NewInTy = (MVT::ValueType)(NewInTy+1);
5494 assert(MVT::isInteger(NewInTy) && "Ran out of possibilities!");
5495
5496 // If the target supports SINT_TO_FP of this type, use it.
5497 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5498 default: break;
5499 case TargetLowering::Legal:
5500 if (!TLI.isTypeLegal(NewInTy))
5501 break; // Can't use this datatype.
5502 // FALL THROUGH.
5503 case TargetLowering::Custom:
5504 OpToUse = ISD::SINT_TO_FP;
5505 break;
5506 }
5507 if (OpToUse) break;
5508 if (isSigned) continue;
5509
5510 // If the target supports UINT_TO_FP of this type, use it.
5511 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5512 default: break;
5513 case TargetLowering::Legal:
5514 if (!TLI.isTypeLegal(NewInTy))
5515 break; // Can't use this datatype.
5516 // FALL THROUGH.
5517 case TargetLowering::Custom:
5518 OpToUse = ISD::UINT_TO_FP;
5519 break;
5520 }
5521 if (OpToUse) break;
5522
5523 // Otherwise, try a larger type.
5524 }
5525
5526 // Okay, we found the operation and type to use. Zero extend our input to the
5527 // desired type then run the operation on it.
5528 return DAG.getNode(OpToUse, DestVT,
5529 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5530 NewInTy, LegalOp));
5531}
5532
5533/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5534/// FP_TO_*INT operation of the specified operand when the target requests that
5535/// we promote it. At this point, we know that the result and operand types are
5536/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5537/// operation that returns a larger result.
5538SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
5539 MVT::ValueType DestVT,
5540 bool isSigned) {
5541 // First step, figure out the appropriate FP_TO*INT operation to use.
5542 MVT::ValueType NewOutTy = DestVT;
5543
5544 unsigned OpToUse = 0;
5545
5546 // Scan for the appropriate larger type to use.
5547 while (1) {
5548 NewOutTy = (MVT::ValueType)(NewOutTy+1);
5549 assert(MVT::isInteger(NewOutTy) && "Ran out of possibilities!");
5550
5551 // If the target supports FP_TO_SINT returning this type, use it.
5552 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5553 default: break;
5554 case TargetLowering::Legal:
5555 if (!TLI.isTypeLegal(NewOutTy))
5556 break; // Can't use this datatype.
5557 // FALL THROUGH.
5558 case TargetLowering::Custom:
5559 OpToUse = ISD::FP_TO_SINT;
5560 break;
5561 }
5562 if (OpToUse) break;
5563
5564 // If the target supports FP_TO_UINT of this type, use it.
5565 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5566 default: break;
5567 case TargetLowering::Legal:
5568 if (!TLI.isTypeLegal(NewOutTy))
5569 break; // Can't use this datatype.
5570 // FALL THROUGH.
5571 case TargetLowering::Custom:
5572 OpToUse = ISD::FP_TO_UINT;
5573 break;
5574 }
5575 if (OpToUse) break;
5576
5577 // Otherwise, try a larger type.
5578 }
5579
Chris Lattner27a6c732007-11-24 07:07:01 +00005580
5581 // Okay, we found the operation and type to use.
5582 SDOperand Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
5583
5584 // If the operation produces an invalid type, it must be custom lowered. Use
5585 // the target lowering hooks to expand it. Just keep the low part of the
5586 // expanded operation, we know that we're truncating anyway.
5587 if (getTypeAction(NewOutTy) == Expand) {
5588 Operation = SDOperand(TLI.ExpandOperationResult(Operation.Val, DAG), 0);
5589 assert(Operation.Val && "Didn't return anything");
5590 }
5591
5592 // Truncate the result of the extended FP_TO_*INT operation to the desired
5593 // size.
5594 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005595}
5596
5597/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5598///
5599SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
5600 MVT::ValueType VT = Op.getValueType();
5601 MVT::ValueType SHVT = TLI.getShiftAmountTy();
5602 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
5603 switch (VT) {
5604 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5605 case MVT::i16:
5606 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5607 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5608 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5609 case MVT::i32:
5610 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5611 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5612 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5613 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5614 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5615 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5616 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5617 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5618 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5619 case MVT::i64:
5620 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5621 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5622 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5623 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5624 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5625 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5626 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5627 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5628 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5629 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5630 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5631 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5632 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5633 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5634 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5635 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5636 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5637 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5638 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5639 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5640 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5641 }
5642}
5643
5644/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5645///
5646SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
5647 switch (Opc) {
5648 default: assert(0 && "Cannot expand this yet!");
5649 case ISD::CTPOP: {
5650 static const uint64_t mask[6] = {
5651 0x5555555555555555ULL, 0x3333333333333333ULL,
5652 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5653 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5654 };
5655 MVT::ValueType VT = Op.getValueType();
5656 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00005657 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005658 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5659 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
5660 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
5661 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5662 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5663 DAG.getNode(ISD::AND, VT,
5664 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5665 }
5666 return Op;
5667 }
5668 case ISD::CTLZ: {
5669 // for now, we do this:
5670 // x = x | (x >> 1);
5671 // x = x | (x >> 2);
5672 // ...
5673 // x = x | (x >>16);
5674 // x = x | (x >>32); // for 64-bit input
5675 // return popcount(~x);
5676 //
5677 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
5678 MVT::ValueType VT = Op.getValueType();
5679 MVT::ValueType ShVT = TLI.getShiftAmountTy();
Dan Gohmanb55757e2007-05-18 17:52:13 +00005680 unsigned len = MVT::getSizeInBits(VT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005681 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5682 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5683 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5684 }
5685 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5686 return DAG.getNode(ISD::CTPOP, VT, Op);
5687 }
5688 case ISD::CTTZ: {
5689 // for now, we use: { return popcount(~x & (x - 1)); }
5690 // unless the target has ctlz but not ctpop, in which case we use:
5691 // { return 32 - nlz(~x & (x-1)); }
5692 // see also http://www.hackersdelight.org/HDcode/ntz.cc
5693 MVT::ValueType VT = Op.getValueType();
5694 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
5695 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
5696 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5697 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5698 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5699 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5700 TLI.isOperationLegal(ISD::CTLZ, VT))
5701 return DAG.getNode(ISD::SUB, VT,
Dan Gohmanb55757e2007-05-18 17:52:13 +00005702 DAG.getConstant(MVT::getSizeInBits(VT), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005703 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5704 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5705 }
5706 }
5707}
Chris Lattnere34b3962005-01-19 04:19:40 +00005708
Chris Lattner3e928bb2005-01-07 07:47:09 +00005709/// ExpandOp - Expand the specified SDOperand into its two component pieces
5710/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5711/// LegalizeNodes map is filled in for any results that are not expanded, the
5712/// ExpandedNodes map is filled in for any results that are expanded, and the
5713/// Lo/Hi values are returned.
5714void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
5715 MVT::ValueType VT = Op.getValueType();
Chris Lattner71c42a02005-01-16 01:11:45 +00005716 MVT::ValueType NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005717 SDNode *Node = Op.Val;
5718 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00005719 assert(((MVT::isInteger(NVT) && NVT < VT) || MVT::isFloatingPoint(VT) ||
Dan Gohman7f321562007-06-25 16:23:39 +00005720 MVT::isVector(VT)) &&
Chris Lattner3e928bb2005-01-07 07:47:09 +00005721 "Cannot expand to FP value or to larger int value!");
5722
Chris Lattner6fdcb252005-09-02 20:32:45 +00005723 // See if we already expanded it.
Roman Levenstein9cac5252008-04-16 16:15:27 +00005724 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00005725 = ExpandedNodes.find(Op);
5726 if (I != ExpandedNodes.end()) {
5727 Lo = I->second.first;
5728 Hi = I->second.second;
5729 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005730 }
5731
Chris Lattner3e928bb2005-01-07 07:47:09 +00005732 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005733 case ISD::CopyFromReg:
5734 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005735 case ISD::FP_ROUND_INREG:
5736 if (VT == MVT::ppcf128 &&
5737 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5738 TargetLowering::Custom) {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005739 SDOperand SrcLo, SrcHi, Src;
5740 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5741 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
5742 SDOperand Result = TLI.LowerOperation(
5743 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005744 assert(Result.Val->getOpcode() == ISD::BUILD_PAIR);
5745 Lo = Result.Val->getOperand(0);
5746 Hi = Result.Val->getOperand(1);
5747 break;
5748 }
5749 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00005750 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005751#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005752 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005753#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00005754 assert(0 && "Do not know how to expand this operator!");
5755 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00005756 case ISD::EXTRACT_ELEMENT:
5757 ExpandOp(Node->getOperand(0), Lo, Hi);
5758 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
5759 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00005760 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00005761 case ISD::EXTRACT_VECTOR_ELT:
5762 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5763 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5764 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5765 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005766 case ISD::UNDEF:
Evan Chengaa975c12006-12-16 02:20:50 +00005767 NVT = TLI.getTypeToExpandTo(VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005768 Lo = DAG.getNode(ISD::UNDEF, NVT);
5769 Hi = DAG.getNode(ISD::UNDEF, NVT);
5770 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005771 case ISD::Constant: {
Dan Gohman050f5502008-03-03 22:20:46 +00005772 unsigned NVTBits = MVT::getSizeInBits(NVT);
5773 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5774 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5775 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005776 break;
5777 }
Evan Cheng00495212006-12-12 21:32:44 +00005778 case ISD::ConstantFP: {
5779 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00005780 if (CFP->getValueType(0) == MVT::ppcf128) {
5781 APInt api = CFP->getValueAPF().convertToAPInt();
5782 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5783 MVT::f64);
5784 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5785 MVT::f64);
5786 break;
5787 }
Evan Cheng279101e2006-12-12 22:19:28 +00005788 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005789 if (getTypeAction(Lo.getValueType()) == Expand)
5790 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005791 break;
5792 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005793 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005794 // Return the operands.
5795 Lo = Node->getOperand(0);
5796 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005797 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005798
5799 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00005800 if (Node->getNumValues() == 1) {
5801 ExpandOp(Op.getOperand(0), Lo, Hi);
5802 break;
5803 }
Chris Lattner27a6c732007-11-24 07:07:01 +00005804 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
5805 assert(Op.ResNo == 0 && Node->getNumValues() == 2 &&
5806 Op.getValue(1).getValueType() == MVT::Other &&
5807 "unhandled MERGE_VALUES");
5808 ExpandOp(Op.getOperand(0), Lo, Hi);
5809 // Remember that we legalized the chain.
5810 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5811 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005812
5813 case ISD::SIGN_EXTEND_INREG:
5814 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005815 // sext_inreg the low part if needed.
5816 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5817
5818 // The high part gets the sign extension from the lo-part. This handles
5819 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005820 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5821 DAG.getConstant(MVT::getSizeInBits(NVT)-1,
5822 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005823 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005824
Nate Begemand88fc032006-01-14 03:14:10 +00005825 case ISD::BSWAP: {
5826 ExpandOp(Node->getOperand(0), Lo, Hi);
5827 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
5828 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5829 Lo = TempLo;
5830 break;
5831 }
5832
Chris Lattneredb1add2005-05-11 04:51:16 +00005833 case ISD::CTPOP:
5834 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005835 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5836 DAG.getNode(ISD::CTPOP, NVT, Lo),
5837 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005838 Hi = DAG.getConstant(0, NVT);
5839 break;
5840
Chris Lattner39a8f332005-05-12 19:05:01 +00005841 case ISD::CTLZ: {
5842 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005843 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005844 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5845 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Scott Michel5b8f82e2008-03-10 15:42:14 +00005846 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005847 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005848 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
5849 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5850
5851 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5852 Hi = DAG.getConstant(0, NVT);
5853 break;
5854 }
5855
5856 case ISD::CTTZ: {
5857 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005858 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005859 SDOperand BitsC = DAG.getConstant(MVT::getSizeInBits(NVT), NVT);
5860 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Scott Michel5b8f82e2008-03-10 15:42:14 +00005861 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005862 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005863 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
5864 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5865
5866 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5867 Hi = DAG.getConstant(0, NVT);
5868 break;
5869 }
Chris Lattneredb1add2005-05-11 04:51:16 +00005870
Nate Begemanacc398c2006-01-25 18:21:52 +00005871 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005872 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5873 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00005874 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5875 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5876
5877 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005878 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00005879 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00005880 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00005881 std::swap(Lo, Hi);
5882 break;
5883 }
5884
Chris Lattner3e928bb2005-01-07 07:47:09 +00005885 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00005886 LoadSDNode *LD = cast<LoadSDNode>(Node);
5887 SDOperand Ch = LD->getChain(); // Legalize the chain.
5888 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
5889 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005890 int SVOffset = LD->getSrcValueOffset();
5891 unsigned Alignment = LD->getAlignment();
5892 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005893
Evan Cheng466685d2006-10-09 20:57:25 +00005894 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005895 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5896 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00005897 if (VT == MVT::f32 || VT == MVT::f64) {
5898 // f32->i32 or f64->i64 one to one expansion.
5899 // Remember that we legalized the chain.
5900 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00005901 // Recursively expand the new load.
5902 if (getTypeAction(NVT) == Expand)
5903 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005904 break;
5905 }
Chris Lattnerec39a452005-01-19 18:02:17 +00005906
Evan Cheng466685d2006-10-09 20:57:25 +00005907 // Increment the pointer to the other half.
5908 unsigned IncrementSize = MVT::getSizeInBits(Lo.getValueType())/8;
5909 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00005910 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00005911 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00005912 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005913 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5914 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00005915
Evan Cheng466685d2006-10-09 20:57:25 +00005916 // Build a factor node to remember that this load is independent of the
5917 // other one.
5918 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5919 Hi.getValue(1));
5920
5921 // Remember that we legalized the chain.
5922 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00005923 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00005924 std::swap(Lo, Hi);
5925 } else {
Dan Gohmanb625f2f2008-01-30 00:15:11 +00005926 MVT::ValueType EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00005927
Dale Johannesenb6210fc2007-10-19 20:29:00 +00005928 if ((VT == MVT::f64 && EVT == MVT::f32) ||
5929 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00005930 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
5931 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005932 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00005933 // Remember that we legalized the chain.
5934 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
5935 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
5936 break;
5937 }
Evan Cheng466685d2006-10-09 20:57:25 +00005938
5939 if (EVT == NVT)
5940 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005941 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005942 else
5943 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005944 SVOffset, EVT, isVolatile,
5945 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005946
5947 // Remember that we legalized the chain.
5948 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
5949
5950 if (ExtType == ISD::SEXTLOAD) {
5951 // The high part is obtained by SRA'ing all but one of the bits of the
5952 // lo part.
5953 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
5954 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5955 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
5956 } else if (ExtType == ISD::ZEXTLOAD) {
5957 // The high part is just a zero.
5958 Hi = DAG.getConstant(0, NVT);
5959 } else /* if (ExtType == ISD::EXTLOAD) */ {
5960 // The high part is undefined.
5961 Hi = DAG.getNode(ISD::UNDEF, NVT);
5962 }
5963 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005964 break;
5965 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005966 case ISD::AND:
5967 case ISD::OR:
5968 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
5969 SDOperand LL, LH, RL, RH;
5970 ExpandOp(Node->getOperand(0), LL, LH);
5971 ExpandOp(Node->getOperand(1), RL, RH);
5972 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
5973 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
5974 break;
5975 }
5976 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00005977 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005978 ExpandOp(Node->getOperand(1), LL, LH);
5979 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00005980 if (getTypeAction(NVT) == Expand)
5981 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00005982 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00005983 if (VT != MVT::f32)
5984 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005985 break;
5986 }
Nate Begeman9373a812005-08-10 20:51:12 +00005987 case ISD::SELECT_CC: {
5988 SDOperand TL, TH, FL, FH;
5989 ExpandOp(Node->getOperand(2), TL, TH);
5990 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00005991 if (getTypeAction(NVT) == Expand)
5992 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00005993 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5994 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00005995 if (VT != MVT::f32)
5996 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5997 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00005998 break;
5999 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006000 case ISD::ANY_EXTEND:
6001 // The low part is any extension of the input (which degenerates to a copy).
6002 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
6003 // The high part is undefined.
6004 Hi = DAG.getNode(ISD::UNDEF, NVT);
6005 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006006 case ISD::SIGN_EXTEND: {
6007 // The low part is just a sign extension of the input (which degenerates to
6008 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006009 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006010
Chris Lattner3e928bb2005-01-07 07:47:09 +00006011 // The high part is obtained by SRA'ing all but one of the bits of the lo
6012 // part.
Chris Lattner2dad4542005-01-12 18:19:52 +00006013 unsigned LoSize = MVT::getSizeInBits(Lo.getValueType());
Chris Lattner8137c9e2006-01-28 05:07:51 +00006014 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6015 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006016 break;
6017 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006018 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006019 // The low part is just a zero extension of the input (which degenerates to
6020 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006021 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006022
Chris Lattner3e928bb2005-01-07 07:47:09 +00006023 // The high part is just a zero.
6024 Hi = DAG.getConstant(0, NVT);
6025 break;
Chris Lattner35481892005-12-23 00:16:34 +00006026
Chris Lattner4c948eb2007-02-13 23:55:16 +00006027 case ISD::TRUNCATE: {
6028 // The input value must be larger than this value. Expand *it*.
6029 SDOperand NewLo;
6030 ExpandOp(Node->getOperand(0), NewLo, Hi);
6031
6032 // The low part is now either the right size, or it is closer. If not the
6033 // right size, make an illegal truncate so we recursively expand it.
6034 if (NewLo.getValueType() != Node->getValueType(0))
6035 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6036 ExpandOp(NewLo, Lo, Hi);
6037 break;
6038 }
6039
Chris Lattner35481892005-12-23 00:16:34 +00006040 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006041 SDOperand Tmp;
6042 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6043 // If the target wants to, allow it to lower this itself.
6044 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6045 case Expand: assert(0 && "cannot expand FP!");
6046 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6047 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6048 }
6049 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6050 }
6051
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006052 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006053 if (VT == MVT::f32 || VT == MVT::f64) {
6054 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006055 if (getTypeAction(NVT) == Expand)
6056 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006057 break;
6058 }
6059
6060 // If source operand will be expanded to the same type as VT, i.e.
6061 // i64 <- f64, i32 <- f32, expand the source operand instead.
6062 MVT::ValueType VT0 = Node->getOperand(0).getValueType();
6063 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6064 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006065 break;
6066 }
6067
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006068 // Turn this into a load/store pair by default.
6069 if (Tmp.Val == 0)
Chris Lattner1401d152008-01-16 07:45:30 +00006070 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006071
Chris Lattner35481892005-12-23 00:16:34 +00006072 ExpandOp(Tmp, Lo, Hi);
6073 break;
6074 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006075
Chris Lattner27a6c732007-11-24 07:07:01 +00006076 case ISD::READCYCLECOUNTER: {
Chris Lattner308575b2005-11-20 22:56:56 +00006077 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6078 TargetLowering::Custom &&
6079 "Must custom expand ReadCycleCounter");
Chris Lattner27a6c732007-11-24 07:07:01 +00006080 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6081 assert(Tmp.Val && "Node must be custom expanded!");
6082 ExpandOp(Tmp.getValue(0), Lo, Hi);
Chris Lattner308575b2005-11-20 22:56:56 +00006083 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006084 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006085 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006086 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006087
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006088 case ISD::ATOMIC_LCS: {
6089 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6090 assert(Tmp.Val && "Node must be custom expanded!");
6091 ExpandOp(Tmp.getValue(0), Lo, Hi);
6092 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
6093 LegalizeOp(Tmp.getValue(1)));
6094 break;
6095 }
6096
6097
6098
Chris Lattner4e6c7462005-01-08 19:27:05 +00006099 // These operators cannot be expanded directly, emit them as calls to
6100 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006101 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006102 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00006103 SDOperand Op;
6104 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6105 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006106 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6107 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006108 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006109
Chris Lattnerf20d1832005-07-30 01:40:57 +00006110 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6111
Chris Lattner80a3e942005-07-29 00:33:32 +00006112 // Now that the custom expander is done, expand the result, which is still
6113 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00006114 if (Op.Val) {
6115 ExpandOp(Op, Lo, Hi);
6116 break;
6117 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006118 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006119
Dale Johannesen161e8972007-10-05 20:04:43 +00006120 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmana2e94852008-03-10 23:03:31 +00006121 if (VT == MVT::i64) {
6122 if (Node->getOperand(0).getValueType() == MVT::f32)
6123 LC = RTLIB::FPTOSINT_F32_I64;
6124 else if (Node->getOperand(0).getValueType() == MVT::f64)
6125 LC = RTLIB::FPTOSINT_F64_I64;
6126 else if (Node->getOperand(0).getValueType() == MVT::f80)
6127 LC = RTLIB::FPTOSINT_F80_I64;
6128 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6129 LC = RTLIB::FPTOSINT_PPCF128_I64;
Duncan Sands460a14e2008-04-12 17:14:18 +00006130 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006131 } else if (VT == MVT::i128) {
6132 if (Node->getOperand(0).getValueType() == MVT::f32)
6133 LC = RTLIB::FPTOSINT_F32_I128;
6134 else if (Node->getOperand(0).getValueType() == MVT::f64)
6135 LC = RTLIB::FPTOSINT_F64_I128;
6136 else if (Node->getOperand(0).getValueType() == MVT::f80)
6137 LC = RTLIB::FPTOSINT_F80_I128;
6138 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6139 LC = RTLIB::FPTOSINT_PPCF128_I128;
Duncan Sands460a14e2008-04-12 17:14:18 +00006140 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006141 } else {
6142 assert(0 && "Unexpected uint-to-fp conversion!");
6143 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006144 break;
Evan Cheng56966222007-01-12 02:11:51 +00006145 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006146
Evan Cheng56966222007-01-12 02:11:51 +00006147 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006148 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006149 SDOperand Op;
6150 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6151 case Expand: assert(0 && "cannot expand FP!");
6152 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6153 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6154 }
6155
6156 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6157
6158 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00006159 if (Op.Val) {
6160 ExpandOp(Op, Lo, Hi);
6161 break;
6162 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006163 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006164
Evan Chengdaccea182007-10-05 01:09:32 +00006165 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmana2e94852008-03-10 23:03:31 +00006166 if (VT == MVT::i64) {
6167 if (Node->getOperand(0).getValueType() == MVT::f32)
6168 LC = RTLIB::FPTOUINT_F32_I64;
6169 else if (Node->getOperand(0).getValueType() == MVT::f64)
6170 LC = RTLIB::FPTOUINT_F64_I64;
6171 else if (Node->getOperand(0).getValueType() == MVT::f80)
6172 LC = RTLIB::FPTOUINT_F80_I64;
6173 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6174 LC = RTLIB::FPTOUINT_PPCF128_I64;
Duncan Sands460a14e2008-04-12 17:14:18 +00006175 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006176 } else if (VT == MVT::i128) {
6177 if (Node->getOperand(0).getValueType() == MVT::f32)
6178 LC = RTLIB::FPTOUINT_F32_I128;
6179 else if (Node->getOperand(0).getValueType() == MVT::f64)
6180 LC = RTLIB::FPTOUINT_F64_I128;
6181 else if (Node->getOperand(0).getValueType() == MVT::f80)
6182 LC = RTLIB::FPTOUINT_F80_I128;
6183 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6184 LC = RTLIB::FPTOUINT_PPCF128_I128;
Duncan Sands460a14e2008-04-12 17:14:18 +00006185 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006186 } else {
6187 assert(0 && "Unexpected uint-to-fp conversion!");
6188 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006189 break;
Evan Cheng56966222007-01-12 02:11:51 +00006190 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006191
Evan Cheng05a2d562006-01-09 18:31:59 +00006192 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006193 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006194 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006195 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006196 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006197 Op = TLI.LowerOperation(Op, DAG);
6198 if (Op.Val) {
6199 // Now that the custom expander is done, expand the result, which is
6200 // still VT.
6201 ExpandOp(Op, Lo, Hi);
6202 break;
6203 }
6204 }
6205
Chris Lattner79980b02006-09-13 03:50:39 +00006206 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6207 // this X << 1 as X+X.
6208 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman002e5d02008-03-13 22:13:53 +00006209 if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
Chris Lattner79980b02006-09-13 03:50:39 +00006210 TLI.isOperationLegal(ISD::ADDE, NVT)) {
6211 SDOperand LoOps[2], HiOps[3];
6212 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6213 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6214 LoOps[1] = LoOps[0];
6215 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6216
6217 HiOps[1] = HiOps[0];
6218 HiOps[2] = Lo.getValue(1);
6219 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6220 break;
6221 }
6222 }
6223
Chris Lattnere34b3962005-01-19 04:19:40 +00006224 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006225 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006226 break;
Chris Lattner47599822005-04-02 03:38:53 +00006227
6228 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006229 TargetLowering::LegalizeAction Action =
6230 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6231 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6232 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006233 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006234 break;
6235 }
6236
Chris Lattnere34b3962005-01-19 04:19:40 +00006237 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006238 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006239 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006240 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006241
Evan Cheng05a2d562006-01-09 18:31:59 +00006242 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006243 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006244 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006245 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006246 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006247 Op = TLI.LowerOperation(Op, DAG);
6248 if (Op.Val) {
6249 // Now that the custom expander is done, expand the result, which is
6250 // still VT.
6251 ExpandOp(Op, Lo, Hi);
6252 break;
6253 }
6254 }
6255
Chris Lattnere34b3962005-01-19 04:19:40 +00006256 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006257 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006258 break;
Chris Lattner47599822005-04-02 03:38:53 +00006259
6260 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006261 TargetLowering::LegalizeAction Action =
6262 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6263 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6264 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006265 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006266 break;
6267 }
6268
Chris Lattnere34b3962005-01-19 04:19:40 +00006269 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006270 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006271 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006272 }
6273
6274 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006275 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006276 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006277 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006278 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006279 Op = TLI.LowerOperation(Op, DAG);
6280 if (Op.Val) {
6281 // Now that the custom expander is done, expand the result, which is
6282 // still VT.
6283 ExpandOp(Op, Lo, Hi);
6284 break;
6285 }
6286 }
6287
Chris Lattnere34b3962005-01-19 04:19:40 +00006288 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006289 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006290 break;
Chris Lattner47599822005-04-02 03:38:53 +00006291
6292 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006293 TargetLowering::LegalizeAction Action =
6294 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6295 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6296 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006297 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006298 break;
6299 }
6300
Chris Lattnere34b3962005-01-19 04:19:40 +00006301 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006302 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006303 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006304 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006305
Misha Brukmanedf128a2005-04-21 22:36:52 +00006306 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006307 case ISD::SUB: {
6308 // If the target wants to custom expand this, let them.
6309 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6310 TargetLowering::Custom) {
6311 Op = TLI.LowerOperation(Op, DAG);
6312 if (Op.Val) {
6313 ExpandOp(Op, Lo, Hi);
6314 break;
6315 }
6316 }
6317
6318 // Expand the subcomponents.
6319 SDOperand LHSL, LHSH, RHSL, RHSH;
6320 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6321 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00006322 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6323 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006324 LoOps[0] = LHSL;
6325 LoOps[1] = RHSL;
6326 HiOps[0] = LHSH;
6327 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006328 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00006329 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006330 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006331 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006332 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00006333 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006334 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006335 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006336 }
Chris Lattner84f67882005-01-20 18:52:28 +00006337 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006338 }
Chris Lattnerb429f732007-05-17 18:15:41 +00006339
6340 case ISD::ADDC:
6341 case ISD::SUBC: {
6342 // Expand the subcomponents.
6343 SDOperand LHSL, LHSH, RHSL, RHSH;
6344 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6345 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6346 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6347 SDOperand LoOps[2] = { LHSL, RHSL };
6348 SDOperand HiOps[3] = { LHSH, RHSH };
6349
6350 if (Node->getOpcode() == ISD::ADDC) {
6351 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6352 HiOps[2] = Lo.getValue(1);
6353 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6354 } else {
6355 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6356 HiOps[2] = Lo.getValue(1);
6357 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6358 }
6359 // Remember that we legalized the flag.
6360 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6361 break;
6362 }
6363 case ISD::ADDE:
6364 case ISD::SUBE: {
6365 // Expand the subcomponents.
6366 SDOperand LHSL, LHSH, RHSL, RHSH;
6367 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6368 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6369 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6370 SDOperand LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6371 SDOperand HiOps[3] = { LHSH, RHSH };
6372
6373 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6374 HiOps[2] = Lo.getValue(1);
6375 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6376
6377 // Remember that we legalized the flag.
6378 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6379 break;
6380 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006381 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006382 // If the target wants to custom expand this, let them.
6383 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00006384 SDOperand New = TLI.LowerOperation(Op, DAG);
6385 if (New.Val) {
6386 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006387 break;
6388 }
6389 }
6390
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006391 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6392 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00006393 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6394 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6395 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Nate Begemanc7c16572005-04-11 03:01:51 +00006396 SDOperand LL, LH, RL, RH;
6397 ExpandOp(Node->getOperand(0), LL, LH);
6398 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006399 unsigned OuterBitSize = Op.getValueSizeInBits();
6400 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00006401 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6402 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00006403 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6404 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6405 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00006406 // The inputs are both zero-extended.
6407 if (HasUMUL_LOHI) {
6408 // We can emit a umul_lohi.
6409 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6410 Hi = SDOperand(Lo.Val, 1);
6411 break;
6412 }
6413 if (HasMULHU) {
6414 // We can emit a mulhu+mul.
6415 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6416 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6417 break;
6418 }
Dan Gohman525178c2007-10-08 18:33:35 +00006419 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006420 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00006421 // The input values are both sign-extended.
6422 if (HasSMUL_LOHI) {
6423 // We can emit a smul_lohi.
6424 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6425 Hi = SDOperand(Lo.Val, 1);
6426 break;
6427 }
6428 if (HasMULHS) {
6429 // We can emit a mulhs+mul.
6430 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6431 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6432 break;
6433 }
6434 }
6435 if (HasUMUL_LOHI) {
6436 // Lo,Hi = umul LHS, RHS.
6437 SDOperand UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
6438 DAG.getVTList(NVT, NVT), LL, RL);
6439 Lo = UMulLOHI;
6440 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00006441 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6442 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6443 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6444 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00006445 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00006446 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00006447 if (HasMULHU) {
6448 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6449 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6450 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6451 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6452 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6453 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6454 break;
6455 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006456 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006457
Dan Gohman525178c2007-10-08 18:33:35 +00006458 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006459 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00006460 break;
6461 }
Evan Cheng56966222007-01-12 02:11:51 +00006462 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006463 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006464 break;
6465 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006466 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006467 break;
6468 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006469 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006470 break;
6471 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006472 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006473 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00006474
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006475 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00006476 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6477 RTLIB::ADD_F64,
6478 RTLIB::ADD_F80,
6479 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006480 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006481 break;
6482 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00006483 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6484 RTLIB::SUB_F64,
6485 RTLIB::SUB_F80,
6486 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006487 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006488 break;
6489 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00006490 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6491 RTLIB::MUL_F64,
6492 RTLIB::MUL_F80,
6493 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006494 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006495 break;
6496 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006497 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6498 RTLIB::DIV_F64,
6499 RTLIB::DIV_F80,
6500 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006501 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006502 break;
6503 case ISD::FP_EXTEND:
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006504 if (VT == MVT::ppcf128) {
6505 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6506 Node->getOperand(0).getValueType()==MVT::f64);
6507 const uint64_t zero = 0;
6508 if (Node->getOperand(0).getValueType()==MVT::f32)
6509 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6510 else
6511 Hi = Node->getOperand(0);
6512 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6513 break;
6514 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006515 Lo = ExpandLibCall(RTLIB::FPEXT_F32_F64, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006516 break;
6517 case ISD::FP_ROUND:
Duncan Sands460a14e2008-04-12 17:14:18 +00006518 Lo = ExpandLibCall(RTLIB::FPROUND_F64_F32, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006519 break;
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006520 case ISD::FPOWI:
Duncan Sands460a14e2008-04-12 17:14:18 +00006521 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::POWI_F32,
6522 RTLIB::POWI_F64,
6523 RTLIB::POWI_F80,
6524 RTLIB::POWI_PPCF128),
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006525 Node, false, Hi);
6526 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006527 case ISD::FSQRT:
6528 case ISD::FSIN:
6529 case ISD::FCOS: {
Evan Cheng56966222007-01-12 02:11:51 +00006530 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006531 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00006532 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00006533 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6534 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006535 break;
6536 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00006537 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6538 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006539 break;
6540 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00006541 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6542 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006543 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006544 default: assert(0 && "Unreachable!");
6545 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006546 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00006547 break;
6548 }
Evan Cheng966bf242006-12-16 00:52:40 +00006549 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006550 if (VT == MVT::ppcf128) {
6551 SDOperand Tmp;
6552 ExpandOp(Node->getOperand(0), Lo, Tmp);
6553 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6554 // lo = hi==fabs(hi) ? lo : -lo;
6555 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6556 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6557 DAG.getCondCode(ISD::SETEQ));
6558 break;
6559 }
Evan Cheng966bf242006-12-16 00:52:40 +00006560 SDOperand Mask = (VT == MVT::f64)
6561 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6562 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6563 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6564 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6565 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6566 if (getTypeAction(NVT) == Expand)
6567 ExpandOp(Lo, Lo, Hi);
6568 break;
6569 }
6570 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006571 if (VT == MVT::ppcf128) {
6572 ExpandOp(Node->getOperand(0), Lo, Hi);
6573 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6574 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6575 break;
6576 }
Evan Cheng966bf242006-12-16 00:52:40 +00006577 SDOperand Mask = (VT == MVT::f64)
6578 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6579 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6580 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6581 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6582 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6583 if (getTypeAction(NVT) == Expand)
6584 ExpandOp(Lo, Lo, Hi);
6585 break;
6586 }
Evan Cheng912095b2007-01-04 21:56:39 +00006587 case ISD::FCOPYSIGN: {
6588 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6589 if (getTypeAction(NVT) == Expand)
6590 ExpandOp(Lo, Lo, Hi);
6591 break;
6592 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006593 case ISD::SINT_TO_FP:
6594 case ISD::UINT_TO_FP: {
6595 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
6596 MVT::ValueType SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00006597
6598 // Promote the operand if needed. Do this before checking for
6599 // ppcf128 so conversions of i16 and i8 work.
6600 if (getTypeAction(SrcVT) == Promote) {
6601 SDOperand Tmp = PromoteOp(Node->getOperand(0));
6602 Tmp = isSigned
6603 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6604 DAG.getValueType(SrcVT))
6605 : DAG.getZeroExtendInReg(Tmp, SrcVT);
6606 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
6607 SrcVT = Node->getOperand(0).getValueType();
6608 }
6609
Dan Gohmana2e94852008-03-10 23:03:31 +00006610 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006611 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006612 if (isSigned) {
6613 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6614 Node->getOperand(0)));
6615 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6616 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006617 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006618 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6619 Node->getOperand(0)));
6620 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6621 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00006622 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006623 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6624 DAG.getConstant(0, MVT::i32),
6625 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6626 DAG.getConstantFP(
6627 APFloat(APInt(128, 2, TwoE32)),
6628 MVT::ppcf128)),
6629 Hi,
6630 DAG.getCondCode(ISD::SETLT)),
6631 Lo, Hi);
6632 }
6633 break;
6634 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00006635 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6636 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006637 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen6e63e092007-10-12 17:52:03 +00006638 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6639 Lo, Hi);
6640 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6641 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6642 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6643 DAG.getConstant(0, MVT::i64),
6644 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6645 DAG.getConstantFP(
6646 APFloat(APInt(128, 2, TwoE64)),
6647 MVT::ppcf128)),
6648 Hi,
6649 DAG.getCondCode(ISD::SETLT)),
6650 Lo, Hi);
6651 break;
6652 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006653
Dan Gohmana2e94852008-03-10 23:03:31 +00006654 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6655 Node->getOperand(0));
Evan Cheng110cf482008-04-01 01:50:16 +00006656 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00006657 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00006658 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00006659 break;
6660 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00006661 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006662
Chris Lattner83397362005-12-21 18:02:52 +00006663 // Make sure the resultant values have been legalized themselves, unless this
6664 // is a type that requires multi-step expansion.
6665 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6666 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00006667 if (Hi.Val)
6668 // Don't legalize the high part if it is expanded to a single node.
6669 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00006670 }
Evan Cheng05a2d562006-01-09 18:31:59 +00006671
6672 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00006673 bool isNew = ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi)));
Evan Cheng05a2d562006-01-09 18:31:59 +00006674 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006675}
6676
Dan Gohman7f321562007-06-25 16:23:39 +00006677/// SplitVectorOp - Given an operand of vector type, break it down into
6678/// two smaller values, still of vector type.
Chris Lattnerc7029802006-03-18 01:44:44 +00006679void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
6680 SDOperand &Hi) {
Dan Gohman7f321562007-06-25 16:23:39 +00006681 assert(MVT::isVector(Op.getValueType()) && "Cannot split non-vector type!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006682 SDNode *Node = Op.Val;
Dan Gohmane40c7b02007-09-24 15:54:53 +00006683 unsigned NumElements = MVT::getVectorNumElements(Op.getValueType());
Chris Lattnerc7029802006-03-18 01:44:44 +00006684 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00006685
Dan Gohmane40c7b02007-09-24 15:54:53 +00006686 MVT::ValueType NewEltVT = MVT::getVectorElementType(Op.getValueType());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006687
6688 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6689 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6690
6691 MVT::ValueType NewVT_Lo = MVT::getVectorType(NewEltVT, NewNumElts_Lo);
6692 MVT::ValueType NewVT_Hi = MVT::getVectorType(NewEltVT, NewNumElts_Hi);
6693
Chris Lattnerc7029802006-03-18 01:44:44 +00006694 // See if we already split it.
6695 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
6696 = SplitNodes.find(Op);
6697 if (I != SplitNodes.end()) {
6698 Lo = I->second.first;
6699 Hi = I->second.second;
6700 return;
6701 }
6702
6703 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006704 default:
6705#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006706 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006707#endif
6708 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00006709 case ISD::UNDEF:
6710 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6711 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6712 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006713 case ISD::BUILD_PAIR:
6714 Lo = Node->getOperand(0);
6715 Hi = Node->getOperand(1);
6716 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00006717 case ISD::INSERT_VECTOR_ELT: {
6718 SplitVectorOp(Node->getOperand(0), Lo, Hi);
6719 unsigned Index = cast<ConstantSDNode>(Node->getOperand(2))->getValue();
6720 SDOperand ScalarOp = Node->getOperand(1);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006721 if (Index < NewNumElts_Lo)
6722 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
Nate Begeman5922f562008-03-14 00:53:31 +00006723 DAG.getIntPtrConstant(Index));
Dan Gohman9fe46622007-09-28 23:53:40 +00006724 else
Nate Begeman5db1afb2007-11-15 21:15:26 +00006725 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
Nate Begeman5922f562008-03-14 00:53:31 +00006726 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
Dan Gohman9fe46622007-09-28 23:53:40 +00006727 break;
6728 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00006729 case ISD::VECTOR_SHUFFLE: {
6730 // Build the low part.
6731 SDOperand Mask = Node->getOperand(2);
6732 SmallVector<SDOperand, 8> Ops;
6733 MVT::ValueType PtrVT = TLI.getPointerTy();
6734
6735 // Insert all of the elements from the input that are needed. We use
6736 // buildvector of extractelement here because the input vectors will have
6737 // to be legalized, so this makes the code simpler.
6738 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Nate Begeman5922f562008-03-14 00:53:31 +00006739 SDOperand IdxNode = Mask.getOperand(i);
6740 if (IdxNode.getOpcode() == ISD::UNDEF) {
6741 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6742 continue;
6743 }
6744 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006745 SDOperand InVec = Node->getOperand(0);
6746 if (Idx >= NumElements) {
6747 InVec = Node->getOperand(1);
6748 Idx -= NumElements;
6749 }
6750 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6751 DAG.getConstant(Idx, PtrVT)));
6752 }
6753 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6754 Ops.clear();
6755
6756 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Nate Begeman5922f562008-03-14 00:53:31 +00006757 SDOperand IdxNode = Mask.getOperand(i);
6758 if (IdxNode.getOpcode() == ISD::UNDEF) {
6759 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6760 continue;
6761 }
6762 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006763 SDOperand InVec = Node->getOperand(0);
6764 if (Idx >= NumElements) {
6765 InVec = Node->getOperand(1);
6766 Idx -= NumElements;
6767 }
6768 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6769 DAG.getConstant(Idx, PtrVT)));
6770 }
6771 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6772 break;
6773 }
Dan Gohman7f321562007-06-25 16:23:39 +00006774 case ISD::BUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006775 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00006776 Node->op_begin()+NewNumElts_Lo);
6777 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006778
Nate Begeman5db1afb2007-11-15 21:15:26 +00006779 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00006780 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006781 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006782 break;
6783 }
Dan Gohman7f321562007-06-25 16:23:39 +00006784 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00006785 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00006786 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6787 if (NewNumSubvectors == 1) {
6788 Lo = Node->getOperand(0);
6789 Hi = Node->getOperand(1);
6790 } else {
6791 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
6792 Node->op_begin()+NewNumSubvectors);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006793 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00006794
Dan Gohman7f321562007-06-25 16:23:39 +00006795 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumSubvectors,
6796 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006797 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00006798 }
Dan Gohman65956352007-06-13 15:12:02 +00006799 break;
6800 }
Dan Gohmanc6230962007-10-17 14:48:28 +00006801 case ISD::SELECT: {
6802 SDOperand Cond = Node->getOperand(0);
6803
6804 SDOperand LL, LH, RL, RH;
6805 SplitVectorOp(Node->getOperand(1), LL, LH);
6806 SplitVectorOp(Node->getOperand(2), RL, RH);
6807
6808 if (MVT::isVector(Cond.getValueType())) {
6809 // Handle a vector merge.
6810 SDOperand CL, CH;
6811 SplitVectorOp(Cond, CL, CH);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006812 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6813 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006814 } else {
6815 // Handle a simple select with vector operands.
Nate Begeman5db1afb2007-11-15 21:15:26 +00006816 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6817 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006818 }
6819 break;
6820 }
Dan Gohman7f321562007-06-25 16:23:39 +00006821 case ISD::ADD:
6822 case ISD::SUB:
6823 case ISD::MUL:
6824 case ISD::FADD:
6825 case ISD::FSUB:
6826 case ISD::FMUL:
6827 case ISD::SDIV:
6828 case ISD::UDIV:
6829 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00006830 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006831 case ISD::AND:
6832 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00006833 case ISD::XOR:
6834 case ISD::UREM:
6835 case ISD::SREM:
6836 case ISD::FREM: {
Chris Lattnerc7029802006-03-18 01:44:44 +00006837 SDOperand LL, LH, RL, RH;
6838 SplitVectorOp(Node->getOperand(0), LL, LH);
6839 SplitVectorOp(Node->getOperand(1), RL, RH);
6840
Nate Begeman5db1afb2007-11-15 21:15:26 +00006841 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
6842 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00006843 break;
6844 }
Dan Gohman82669522007-10-11 23:57:53 +00006845 case ISD::FPOWI: {
6846 SDOperand L, H;
6847 SplitVectorOp(Node->getOperand(0), L, H);
6848
Nate Begeman5db1afb2007-11-15 21:15:26 +00006849 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
6850 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00006851 break;
6852 }
6853 case ISD::CTTZ:
6854 case ISD::CTLZ:
6855 case ISD::CTPOP:
6856 case ISD::FNEG:
6857 case ISD::FABS:
6858 case ISD::FSQRT:
6859 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00006860 case ISD::FCOS:
6861 case ISD::FP_TO_SINT:
6862 case ISD::FP_TO_UINT:
6863 case ISD::SINT_TO_FP:
6864 case ISD::UINT_TO_FP: {
Dan Gohman82669522007-10-11 23:57:53 +00006865 SDOperand L, H;
6866 SplitVectorOp(Node->getOperand(0), L, H);
6867
Nate Begeman5db1afb2007-11-15 21:15:26 +00006868 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
6869 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00006870 break;
6871 }
Dan Gohman7f321562007-06-25 16:23:39 +00006872 case ISD::LOAD: {
6873 LoadSDNode *LD = cast<LoadSDNode>(Node);
6874 SDOperand Ch = LD->getChain();
6875 SDOperand Ptr = LD->getBasePtr();
6876 const Value *SV = LD->getSrcValue();
6877 int SVOffset = LD->getSrcValueOffset();
6878 unsigned Alignment = LD->getAlignment();
6879 bool isVolatile = LD->isVolatile();
6880
Nate Begeman5db1afb2007-11-15 21:15:26 +00006881 Lo = DAG.getLoad(NewVT_Lo, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
6882 unsigned IncrementSize = NewNumElts_Lo * MVT::getSizeInBits(NewEltVT)/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00006883 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006884 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006885 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006886 Alignment = MinAlign(Alignment, IncrementSize);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006887 Hi = DAG.getLoad(NewVT_Hi, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00006888
6889 // Build a factor node to remember that this load is independent of the
6890 // other one.
6891 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
6892 Hi.getValue(1));
6893
6894 // Remember that we legalized the chain.
6895 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00006896 break;
6897 }
Dan Gohman7f321562007-06-25 16:23:39 +00006898 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00006899 // We know the result is a vector. The input may be either a vector or a
6900 // scalar value.
Dan Gohman10a7aa62007-06-29 00:09:08 +00006901 SDOperand InOp = Node->getOperand(0);
6902 if (!MVT::isVector(InOp.getValueType()) ||
6903 MVT::getVectorNumElements(InOp.getValueType()) == 1) {
6904 // The input is a scalar or single-element vector.
6905 // Lower to a store/load so that it can be split.
6906 // FIXME: this could be improved probably.
Chris Lattner85dd3be2007-10-15 17:48:57 +00006907 SDOperand Ptr = DAG.CreateStackTemporary(InOp.getValueType());
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00006908 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(Ptr.Val);
Chris Lattner7692eb42006-03-23 21:16:34 +00006909
Evan Cheng786225a2006-10-05 23:01:46 +00006910 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00006911 InOp, Ptr,
Dan Gohman3069b872008-02-07 18:41:25 +00006912 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00006913 FI->getIndex());
6914 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohman3069b872008-02-07 18:41:25 +00006915 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00006916 FI->getIndex());
Chris Lattner7692eb42006-03-23 21:16:34 +00006917 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00006918 // Split the vector and convert each of the pieces now.
6919 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006920 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
6921 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00006922 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00006923 }
Chris Lattnerc7029802006-03-18 01:44:44 +00006924 }
6925
6926 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00006927 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00006928 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00006929 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00006930}
6931
6932
Dan Gohman89b20c02007-06-27 14:06:22 +00006933/// ScalarizeVectorOp - Given an operand of single-element vector type
6934/// (e.g. v1f32), convert it into the equivalent operation that returns a
6935/// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +00006936SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) {
6937 assert(MVT::isVector(Op.getValueType()) &&
6938 "Bad ScalarizeVectorOp invocation!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006939 SDNode *Node = Op.Val;
Dan Gohman7f321562007-06-25 16:23:39 +00006940 MVT::ValueType NewVT = MVT::getVectorElementType(Op.getValueType());
6941 assert(MVT::getVectorNumElements(Op.getValueType()) == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00006942
Dan Gohman7f321562007-06-25 16:23:39 +00006943 // See if we already scalarized it.
6944 std::map<SDOperand, SDOperand>::iterator I = ScalarizedNodes.find(Op);
6945 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00006946
6947 SDOperand Result;
6948 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00006949 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006950#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006951 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006952#endif
Dan Gohman7f321562007-06-25 16:23:39 +00006953 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
6954 case ISD::ADD:
6955 case ISD::FADD:
6956 case ISD::SUB:
6957 case ISD::FSUB:
6958 case ISD::MUL:
6959 case ISD::FMUL:
6960 case ISD::SDIV:
6961 case ISD::UDIV:
6962 case ISD::FDIV:
6963 case ISD::SREM:
6964 case ISD::UREM:
6965 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00006966 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006967 case ISD::AND:
6968 case ISD::OR:
6969 case ISD::XOR:
6970 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00006971 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00006972 ScalarizeVectorOp(Node->getOperand(0)),
6973 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00006974 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006975 case ISD::FNEG:
6976 case ISD::FABS:
6977 case ISD::FSQRT:
6978 case ISD::FSIN:
6979 case ISD::FCOS:
6980 Result = DAG.getNode(Node->getOpcode(),
6981 NewVT,
6982 ScalarizeVectorOp(Node->getOperand(0)));
6983 break;
Dan Gohman9e04c822007-10-12 14:13:46 +00006984 case ISD::FPOWI:
6985 Result = DAG.getNode(Node->getOpcode(),
6986 NewVT,
6987 ScalarizeVectorOp(Node->getOperand(0)),
6988 Node->getOperand(1));
6989 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006990 case ISD::LOAD: {
6991 LoadSDNode *LD = cast<LoadSDNode>(Node);
6992 SDOperand Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
6993 SDOperand Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00006994
Dan Gohman7f321562007-06-25 16:23:39 +00006995 const Value *SV = LD->getSrcValue();
6996 int SVOffset = LD->getSrcValueOffset();
6997 Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset,
6998 LD->isVolatile(), LD->getAlignment());
6999
Chris Lattnerc7029802006-03-18 01:44:44 +00007000 // Remember that we legalized the chain.
7001 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7002 break;
7003 }
Dan Gohman7f321562007-06-25 16:23:39 +00007004 case ISD::BUILD_VECTOR:
7005 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007006 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007007 case ISD::INSERT_VECTOR_ELT:
7008 // Returning the inserted scalar element.
7009 Result = Node->getOperand(1);
7010 break;
7011 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007012 assert(Node->getOperand(0).getValueType() == NewVT &&
7013 "Concat of non-legal vectors not yet supported!");
7014 Result = Node->getOperand(0);
7015 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007016 case ISD::VECTOR_SHUFFLE: {
7017 // Figure out if the scalar is the LHS or RHS and return it.
7018 SDOperand EltNum = Node->getOperand(2).getOperand(0);
7019 if (cast<ConstantSDNode>(EltNum)->getValue())
7020 Result = ScalarizeVectorOp(Node->getOperand(1));
7021 else
7022 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007023 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007024 }
7025 case ISD::EXTRACT_SUBVECTOR:
7026 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00007027 assert(Result.getValueType() == NewVT);
7028 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007029 case ISD::BIT_CONVERT:
7030 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op.getOperand(0));
Chris Lattner5b2316e2006-03-28 20:24:43 +00007031 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007032 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007033 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007034 ScalarizeVectorOp(Op.getOperand(1)),
7035 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007036 break;
Chris Lattnerc7029802006-03-18 01:44:44 +00007037 }
7038
7039 if (TLI.isTypeLegal(NewVT))
7040 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007041 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7042 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007043 return Result;
7044}
7045
Chris Lattner3e928bb2005-01-07 07:47:09 +00007046
7047// SelectionDAG::Legalize - This is the entry point for the file.
7048//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00007049void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00007050 if (ViewLegalizeDAGs) viewGraph();
7051
Chris Lattner3e928bb2005-01-07 07:47:09 +00007052 /// run - This is the main entry point to this class.
7053 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00007054 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00007055}
7056