blob: 87bb1dbf1420d726705ed40ac057a729e76cd935 [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.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000131 LegalizeAction getTypeAction(MVT 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 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000137 bool isTypeLegal(MVT VT) const {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000138 return getTypeAction(VT) == Legal;
139 }
140
Chris Lattner3e928bb2005-01-07 07:47:09 +0000141 void LegalizeDAG();
142
Chris Lattner456a93a2006-01-28 07:39:30 +0000143private:
Dan Gohman7f321562007-06-25 16:23:39 +0000144 /// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000145 /// appropriate for its type.
146 void HandleOp(SDOperand Op);
147
148 /// LegalizeOp - We know that the specified value has a legal type.
149 /// Recursively ensure that the operands have legal types, then return the
150 /// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000151 SDOperand LegalizeOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000152
Dan Gohman82669522007-10-11 23:57:53 +0000153 /// UnrollVectorOp - We know that the given vector has a legal type, however
154 /// the operation it performs is not legal and is an operation that we have
155 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
156 /// operating on each element individually.
157 SDOperand UnrollVectorOp(SDOperand O);
Nate Begeman68679912008-04-25 18:07:40 +0000158
159 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
160 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
161 /// is necessary to spill the vector being inserted into to memory, perform
162 /// the insert there, and then read the result back.
163 SDOperand PerformInsertVectorEltInMemory(SDOperand Vec, SDOperand Val,
164 SDOperand Idx);
Dan Gohman82669522007-10-11 23:57:53 +0000165
Chris Lattnerc7029802006-03-18 01:44:44 +0000166 /// PromoteOp - Given an operation that produces a value in an invalid type,
167 /// promote it to compute the value into a larger type. The produced value
168 /// will have the correct bits for the low portion of the register, but no
169 /// guarantee is made about the top bits: it may be zero, sign-extended, or
170 /// garbage.
Chris Lattner03c85462005-01-15 05:21:40 +0000171 SDOperand PromoteOp(SDOperand O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000172
Chris Lattnerc7029802006-03-18 01:44:44 +0000173 /// ExpandOp - Expand the specified SDOperand into its two component pieces
174 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
175 /// the LegalizeNodes map is filled in for any results that are not expanded,
176 /// the ExpandedNodes map is filled in for any results that are expanded, and
177 /// the Lo/Hi values are returned. This applies to integer types and Vector
178 /// types.
179 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
180
Dan Gohman7f321562007-06-25 16:23:39 +0000181 /// SplitVectorOp - Given an operand of vector type, break it down into
182 /// two smaller values.
Chris Lattnerc7029802006-03-18 01:44:44 +0000183 void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
184
Dan Gohman89b20c02007-06-27 14:06:22 +0000185 /// ScalarizeVectorOp - Given an operand of single-element vector type
186 /// (e.g. v1f32), convert it into the equivalent operation that returns a
187 /// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +0000188 SDOperand ScalarizeVectorOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000189
Chris Lattner4352cc92006-04-04 17:23:26 +0000190 /// isShuffleLegal - Return true if a vector shuffle is legal with the
191 /// specified mask and type. Targets can specify exactly which masks they
192 /// support and the code generator is tasked with not creating illegal masks.
193 ///
194 /// Note that this will also return true for shuffles that are promoted to a
195 /// different type.
196 ///
197 /// If this is a legal shuffle, this method returns the (possibly promoted)
198 /// build_vector Mask. If it's not a legal shuffle, it returns null.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000199 SDNode *isShuffleLegal(MVT VT, SDOperand Mask) const;
Chris Lattner4352cc92006-04-04 17:23:26 +0000200
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000201 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000202 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000203
Nate Begeman750ac1b2006-02-01 07:19:44 +0000204 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
205
Duncan Sands460a14e2008-04-12 17:14:18 +0000206 SDOperand ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
Chris Lattner77e77a62005-01-21 06:05:23 +0000207 SDOperand &Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000208 SDOperand ExpandIntToFP(bool isSigned, MVT DestTy, SDOperand Source);
Chris Lattnercad063f2005-07-16 00:19:57 +0000209
Duncan Sands83ec4b62008-06-06 12:08:01 +0000210 SDOperand EmitStackConvert(SDOperand SrcOp, MVT SlotVT, MVT DestVT);
Chris Lattnerce872152006-03-19 06:31:19 +0000211 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner4352cc92006-04-04 17:23:26 +0000212 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000213 SDOperand ExpandLegalINT_TO_FP(bool isSigned, SDOperand LegalOp, MVT DestVT);
214 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT DestVT, bool isSigned);
215 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT DestVT, bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000216
Chris Lattner456a93a2006-01-28 07:39:30 +0000217 SDOperand ExpandBSWAP(SDOperand Op);
218 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattnere34b3962005-01-19 04:19:40 +0000219 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
220 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000221 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
222 SDOperand &Lo, SDOperand &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000223
Dan Gohman7f321562007-06-25 16:23:39 +0000224 SDOperand ExpandEXTRACT_SUBVECTOR(SDOperand Op);
Chris Lattner4aab2f42006-04-02 05:06:04 +0000225 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000226};
227}
228
Chris Lattner4352cc92006-04-04 17:23:26 +0000229/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
230/// specified mask and type. Targets can specify exactly which masks they
231/// support and the code generator is tasked with not creating illegal masks.
232///
233/// Note that this will also return true for shuffles that are promoted to a
234/// different type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000235SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDOperand Mask) const {
Chris Lattner4352cc92006-04-04 17:23:26 +0000236 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!
Duncan Sands83ec4b62008-06-06 12:08:01 +0000244 MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
Chris Lattner4352cc92006-04-04 17:23:26 +0000245
246 // If we changed # elements, change the shuffle mask.
247 unsigned NumEltsGrowth =
Duncan Sands83ec4b62008-06-06 12:08:01 +0000248 NVT.getVectorNumElements() / VT.getVectorNumElements();
Chris Lattner4352cc92006-04-04 17:23:26 +0000249 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) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000454 MVT VT = Op.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000455 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:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000460 if (!VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +0000461 // 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);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000467 } else if (VT.getVectorNumElements() == 1) {
Dan Gohman7f321562007-06-25 16:23:39 +0000468 // 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).
Duncan Sands83ec4b62008-06-06 12:08:01 +0000493 MVT VT = CFP->getValueType(0);
Chris Lattner02a260a2008-04-20 00:41:09 +0000494 ConstantFP *LLVMC = ConstantFP::get(CFP->getValueAPF());
Evan Cheng9f877882006-12-13 20:57:08 +0000495 if (!UseCP) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000496 if (VT!=MVT::f64 && VT!=MVT::f32)
497 assert(0 && "Invalid type expansion");
Dan Gohman6cf9b8a2008-03-11 00:11:06 +0000498 return DAG.getConstant(LLVMC->getValueAPF().convertToAPInt(),
Evan Chengef120572008-03-04 08:05:30 +0000499 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000500 }
501
Duncan Sands83ec4b62008-06-06 12:08:01 +0000502 MVT OrigVT = VT;
503 MVT SVT = VT;
Evan Chengef120572008-03-04 08:05:30 +0000504 while (SVT != MVT::f32) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000505 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Chengef120572008-03-04 08:05:30 +0000506 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
507 // Only do this if the target has a native EXTLOAD instruction from
508 // smaller type.
Evan Cheng6fd599f2008-03-05 01:30:59 +0000509 TLI.isLoadXLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000510 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000511 const Type *SType = SVT.getTypeForMVT();
Evan Chengef120572008-03-04 08:05:30 +0000512 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
513 VT = SVT;
514 Extend = true;
515 }
Evan Cheng00495212006-12-12 21:32:44 +0000516 }
517
518 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Chengef120572008-03-04 08:05:30 +0000519 if (Extend)
520 return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000521 CPIdx, PseudoSourceValue::getConstantPool(),
Evan Chengef120572008-03-04 08:05:30 +0000522 0, VT);
523 return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx,
524 PseudoSourceValue::getConstantPool(), 0);
Evan Cheng00495212006-12-12 21:32:44 +0000525}
526
Chris Lattner6831a812006-02-13 09:18:02 +0000527
Evan Cheng912095b2007-01-04 21:56:39 +0000528/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
529/// operations.
530static
Duncan Sands83ec4b62008-06-06 12:08:01 +0000531SDOperand ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
Evan Cheng912095b2007-01-04 21:56:39 +0000532 SelectionDAG &DAG, TargetLowering &TLI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000533 MVT VT = Node->getValueType(0);
534 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000535 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
536 "fcopysign expansion only supported for f32 and f64");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000537 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000538
Evan Cheng912095b2007-01-04 21:56:39 +0000539 // First get the sign bit of second operand.
Evan Cheng068c5f42007-01-05 21:31:51 +0000540 SDOperand Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000541 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
542 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000543 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000544 SDOperand SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000545 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000546 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000547 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Evan Cheng912095b2007-01-04 21:56:39 +0000548 if (SizeDiff > 0) {
549 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
550 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
551 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
552 } else if (SizeDiff < 0)
553 SignBit = DAG.getNode(ISD::SIGN_EXTEND, NVT, SignBit);
Evan Cheng068c5f42007-01-05 21:31:51 +0000554
555 // Clear the sign bit of first operand.
556 SDOperand Mask2 = (VT == MVT::f64)
557 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
558 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
559 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Evan Cheng912095b2007-01-04 21:56:39 +0000560 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000561 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
562
563 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000564 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
565 return Result;
566}
567
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000568/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
569static
570SDOperand ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
571 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000572 SDOperand Chain = ST->getChain();
573 SDOperand Ptr = ST->getBasePtr();
574 SDOperand Val = ST->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000575 MVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000576 int Alignment = ST->getAlignment();
577 int SVOffset = ST->getSrcValueOffset();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000578 if (ST->getMemoryVT().isFloatingPoint() ||
579 ST->getMemoryVT().isVector()) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000580 // Expand to a bitconvert of the value to the integer type of the
581 // same size, then a (misaligned) int store.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000582 MVT intVT;
583 if (VT.is128BitVector() || VT == MVT::ppcf128 || VT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000584 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000585 else if (VT.is64BitVector() || VT==MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000586 intVT = MVT::i64;
587 else if (VT==MVT::f32)
588 intVT = MVT::i32;
589 else
Dale Johannesencd9f1742008-02-28 18:36:51 +0000590 assert(0 && "Unaligned store of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000591
592 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
593 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
594 SVOffset, ST->isVolatile(), Alignment);
595 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000596 assert(ST->getMemoryVT().isInteger() &&
597 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000598 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000599 // Get the half-size VT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000600 MVT NewStoredVT =
601 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
602 int NumBits = NewStoredVT.getSizeInBits();
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();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000632 MVT VT = LD->getValueType(0);
633 MVT LoadedVT = LD->getMemoryVT();
634 if (VT.isFloatingPoint() || VT.isVector()) {
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.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000637 MVT intVT;
638 if (LoadedVT.is128BitVector() ||
Dale Johannesen3c8b59c2008-03-01 03:40:57 +0000639 LoadedVT == MVT::ppcf128 || LoadedVT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000640 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000641 else if (LoadedVT.is64BitVector() || 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);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000652 if (VT.isFloatingPoint() && 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 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000659 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
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.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000664 unsigned NumBits = LoadedVT.getSizeInBits();
665 MVT NewLoadedVT;
666 NewLoadedVT = MVT::getIntegerVT(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) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000714 MVT VT = Op.getValueType();
Dan Gohman82669522007-10-11 23:57:53 +0000715 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!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000719 unsigned NE = VT.getVectorNumElements();
720 MVT EltVT = VT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000721
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);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000727 MVT OperandVT = Operand.getValueType();
728 if (OperandVT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +0000729 // A vector operand; extract a single element.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000730 MVT OperandEltVT = OperandVT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000731 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.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000748static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands007f9842008-01-10 10:28:30 +0000749 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
Nate Begeman68679912008-04-25 18:07:40 +0000761/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
762/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
763/// is necessary to spill the vector being inserted into to memory, perform
764/// the insert there, and then read the result back.
765SDOperand SelectionDAGLegalize::
766PerformInsertVectorEltInMemory(SDOperand Vec, SDOperand Val, SDOperand Idx) {
767 SDOperand Tmp1 = Vec;
768 SDOperand Tmp2 = Val;
769 SDOperand Tmp3 = Idx;
770
771 // If the target doesn't support this, we have to spill the input vector
772 // to a temporary stack slot, update the element, then reload it. This is
773 // badness. We could also load the value into a vector register (either
774 // with a "move to register" or "extload into register" instruction, then
775 // permute it into place, if the idx is a constant and if the idx is
776 // supported by the target.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000777 MVT VT = Tmp1.getValueType();
778 MVT EltVT = VT.getVectorElementType();
779 MVT IdxVT = Tmp3.getValueType();
780 MVT PtrVT = TLI.getPointerTy();
Nate Begeman68679912008-04-25 18:07:40 +0000781 SDOperand StackPtr = DAG.CreateStackTemporary(VT);
782
783 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr.Val);
784 int SPFI = StackPtrFI->getIndex();
785
786 // Store the vector.
787 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr,
788 PseudoSourceValue::getFixedStack(),
789 SPFI);
790
791 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000792 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Nate Begeman68679912008-04-25 18:07:40 +0000793 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
794 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000795 unsigned EltSize = EltVT.getSizeInBits()/8;
Nate Begeman68679912008-04-25 18:07:40 +0000796 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
797 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
798 // Store the scalar value.
799 Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2,
800 PseudoSourceValue::getFixedStack(), SPFI, EltVT);
801 // Load the updated vector.
802 return DAG.getLoad(VT, Ch, StackPtr, PseudoSourceValue::getFixedStack(),SPFI);
803}
804
Dan Gohmana3466152007-07-13 20:14:11 +0000805/// LegalizeOp - We know that the specified value has a legal type, and
806/// that its operands are legal. Now ensure that the operation itself
807/// is legal, recursively ensuring that the operands' operations remain
808/// legal.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000809SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000810 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
811 return Op;
812
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000813 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000814 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000815 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000816
Chris Lattner3e928bb2005-01-07 07:47:09 +0000817 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000818 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000819 if (Node->getNumValues() > 1) {
820 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000821 if (getTypeAction(Node->getValueType(i)) != Legal) {
822 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000823 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000824 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000825 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000826 }
827 }
828
Chris Lattner45982da2005-05-12 16:53:42 +0000829 // Note that LegalizeOp may be reentered even from single-use nodes, which
830 // means that we always must cache transformed nodes.
Roman Levenstein9cac5252008-04-16 16:15:27 +0000831 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000832 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000833
Nate Begeman9373a812005-08-10 20:51:12 +0000834 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000835 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000836 bool isCustom = false;
837
Chris Lattner3e928bb2005-01-07 07:47:09 +0000838 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000839 case ISD::FrameIndex:
840 case ISD::EntryToken:
841 case ISD::Register:
842 case ISD::BasicBlock:
843 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000844 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000845 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000846 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000847 case ISD::TargetConstantPool:
848 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000849 case ISD::TargetGlobalTLSAddress:
Chris Lattner948c1b12006-01-28 08:31:04 +0000850 case ISD::TargetExternalSymbol:
851 case ISD::VALUETYPE:
852 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +0000853 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +0000854 case ISD::STRING:
855 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +0000856 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +0000857 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +0000858 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +0000859 "This must be legal!");
860 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000861 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000862 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
863 // If this is a target node, legalize it by legalizing the operands then
864 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000865 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000866 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000867 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000868
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000869 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000870
871 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
872 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
873 return Result.getValue(Op.ResNo);
874 }
875 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000876#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +0000877 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000878#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000879 assert(0 && "Do not know how to legalize this operator!");
880 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +0000881 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000882 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000883 case ISD::GlobalTLSAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000884 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000885 case ISD::ConstantPool:
886 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000887 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
888 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000889 case TargetLowering::Custom:
890 Tmp1 = TLI.LowerOperation(Op, DAG);
891 if (Tmp1.Val) Result = Tmp1;
892 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000893 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000894 break;
895 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000896 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000897 case ISD::FRAMEADDR:
898 case ISD::RETURNADDR:
899 // The only option for these nodes is to custom lower them. If the target
900 // does not custom lower them, then return zero.
901 Tmp1 = TLI.LowerOperation(Op, DAG);
902 if (Tmp1.Val)
903 Result = Tmp1;
904 else
905 Result = DAG.getConstant(0, TLI.getPointerTy());
906 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000907 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000908 MVT VT = Node->getValueType(0);
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000909 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
910 default: assert(0 && "This action is not supported yet!");
911 case TargetLowering::Custom:
912 Result = TLI.LowerOperation(Op, DAG);
913 if (Result.Val) break;
914 // Fall Thru
915 case TargetLowering::Legal:
916 Result = DAG.getConstant(0, VT);
917 break;
918 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000919 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000920 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000921 case ISD::EXCEPTIONADDR: {
922 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000923 MVT VT = Node->getValueType(0);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000924 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
925 default: assert(0 && "This action is not supported yet!");
926 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000927 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000928 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000929 }
930 break;
931 case TargetLowering::Custom:
932 Result = TLI.LowerOperation(Op, DAG);
933 if (Result.Val) break;
934 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000935 case TargetLowering::Legal: {
936 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp1 };
937 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
Duncan Sandsb027fa02007-12-31 18:35:50 +0000938 Ops, 2);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000939 break;
940 }
941 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000942 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000943 if (Result.Val->getNumValues() == 1) break;
944
945 assert(Result.Val->getNumValues() == 2 &&
946 "Cannot return more than two values!");
947
948 // Since we produced two values, make sure to remember that we
949 // legalized both of them.
950 Tmp1 = LegalizeOp(Result);
951 Tmp2 = LegalizeOp(Result.getValue(1));
952 AddLegalizedOperand(Op.getValue(0), Tmp1);
953 AddLegalizedOperand(Op.getValue(1), Tmp2);
954 return Op.ResNo ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +0000955 case ISD::EHSELECTION: {
956 Tmp1 = LegalizeOp(Node->getOperand(0));
957 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000958 MVT VT = Node->getValueType(0);
Jim Laskey8782d482007-02-28 20:43:58 +0000959 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
960 default: assert(0 && "This action is not supported yet!");
961 case TargetLowering::Expand: {
962 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000963 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +0000964 }
965 break;
966 case TargetLowering::Custom:
967 Result = TLI.LowerOperation(Op, DAG);
968 if (Result.Val) break;
969 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000970 case TargetLowering::Legal: {
971 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp2 };
972 Result = DAG.getNode(ISD::MERGE_VALUES, DAG.getVTList(VT, MVT::Other),
Duncan Sandsb027fa02007-12-31 18:35:50 +0000973 Ops, 2);
Jim Laskey8782d482007-02-28 20:43:58 +0000974 break;
975 }
976 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000977 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000978 if (Result.Val->getNumValues() == 1) break;
979
980 assert(Result.Val->getNumValues() == 2 &&
981 "Cannot return more than two values!");
982
983 // Since we produced two values, make sure to remember that we
984 // legalized both of them.
985 Tmp1 = LegalizeOp(Result);
986 Tmp2 = LegalizeOp(Result.getValue(1));
987 AddLegalizedOperand(Op.getValue(0), Tmp1);
988 AddLegalizedOperand(Op.getValue(1), Tmp2);
989 return Op.ResNo ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000990 case ISD::EH_RETURN: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000991 MVT VT = Node->getValueType(0);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000992 // The only "good" option for this node is to custom lower it.
993 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
994 default: assert(0 && "This action is not supported at all!");
995 case TargetLowering::Custom:
996 Result = TLI.LowerOperation(Op, DAG);
997 if (Result.Val) break;
998 // Fall Thru
999 case TargetLowering::Legal:
1000 // Target does not know, how to lower this, lower to noop
1001 Result = LegalizeOp(Node->getOperand(0));
1002 break;
1003 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001004 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001005 break;
Chris Lattner08951a32005-09-02 01:15:01 +00001006 case ISD::AssertSext:
1007 case ISD::AssertZext:
1008 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001009 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +00001010 break;
Chris Lattner308575b2005-11-20 22:56:56 +00001011 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001012 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +00001013 Result = Node->getOperand(Op.ResNo);
1014 break;
Chris Lattner69a52152005-01-14 22:38:01 +00001015 case ISD::CopyFromReg:
1016 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001017 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001018 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001019 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +00001020 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001021 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001022 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001023 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001024 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1025 } else {
1026 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1027 }
Chris Lattner7310fb12005-12-18 15:27:43 +00001028 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1029 }
Chris Lattner13c184d2005-01-28 06:27:38 +00001030 // Since CopyFromReg produces two values, make sure to remember that we
1031 // legalized both of them.
1032 AddLegalizedOperand(Op.getValue(0), Result);
1033 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1034 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001035 case ISD::UNDEF: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001036 MVT VT = Op.getValueType();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001037 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +00001038 default: assert(0 && "This action is not supported yet!");
1039 case TargetLowering::Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001040 if (VT.isInteger())
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001041 Result = DAG.getConstant(0, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001042 else if (VT.isFloatingPoint())
1043 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf41db212007-09-26 17:26:49 +00001044 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001045 else
1046 assert(0 && "Unknown value type!");
1047 break;
Nate Begemanea19cd52005-04-02 00:41:14 +00001048 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001049 break;
1050 }
1051 break;
1052 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001053
Chris Lattner48b61a72006-03-28 00:40:33 +00001054 case ISD::INTRINSIC_W_CHAIN:
1055 case ISD::INTRINSIC_WO_CHAIN:
1056 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001057 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001058 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1059 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001060 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +00001061
1062 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +00001063 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001064 TargetLowering::Custom) {
1065 Tmp3 = TLI.LowerOperation(Result, DAG);
1066 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001067 }
1068
1069 if (Result.Val->getNumValues() == 1) break;
1070
1071 // Must have return value and chain result.
1072 assert(Result.Val->getNumValues() == 2 &&
1073 "Cannot return more than two values!");
1074
1075 // Since loads produce two values, make sure to remember that we
1076 // legalized both of them.
1077 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1078 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1079 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001080 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001081
1082 case ISD::LOCATION:
1083 assert(Node->getNumOperands() == 5 && "Invalid LOCATION node!");
1084 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1085
1086 switch (TLI.getOperationAction(ISD::LOCATION, MVT::Other)) {
1087 case TargetLowering::Promote:
1088 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001089 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001090 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001091 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Jim Laskey1ee29252007-01-26 14:34:52 +00001092 bool useLABEL = TLI.isOperationLegal(ISD::LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001093
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001094 if (MMI && (useDEBUG_LOC || useLABEL)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001095 const std::string &FName =
1096 cast<StringSDNode>(Node->getOperand(3))->getValue();
1097 const std::string &DirName =
1098 cast<StringSDNode>(Node->getOperand(4))->getValue();
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001099 unsigned SrcFile = MMI->RecordSource(DirName, FName);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001100
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001101 SmallVector<SDOperand, 8> Ops;
Jim Laskeye81aecb2005-12-21 20:51:37 +00001102 Ops.push_back(Tmp1); // chain
Jim Laskeyabf6d172006-01-05 01:25:28 +00001103 SDOperand LineOp = Node->getOperand(1);
1104 SDOperand ColOp = Node->getOperand(2);
1105
1106 if (useDEBUG_LOC) {
1107 Ops.push_back(LineOp); // line #
1108 Ops.push_back(ColOp); // col #
1109 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001110 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001111 } else {
Jim Laskeyd0e58e32006-02-15 19:34:44 +00001112 unsigned Line = cast<ConstantSDNode>(LineOp)->getValue();
1113 unsigned Col = cast<ConstantSDNode>(ColOp)->getValue();
Evan Chenga647c922008-02-01 02:05:57 +00001114 unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001115 Ops.push_back(DAG.getConstant(ID, MVT::i32));
Evan Chengbb81d972008-01-31 09:59:15 +00001116 Ops.push_back(DAG.getConstant(0, MVT::i32)); // a debug label
1117 Result = DAG.getNode(ISD::LABEL, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001118 }
Jim Laskeye81aecb2005-12-21 20:51:37 +00001119 } else {
1120 Result = Tmp1; // chain
1121 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001122 break;
Chris Lattnere7736732005-12-18 23:54:29 +00001123 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001124 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +00001125 if (Tmp1 != Node->getOperand(0) ||
1126 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001127 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +00001128 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +00001129 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
1130 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1131 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1132 } else {
1133 // Otherwise promote them.
1134 Ops.push_back(PromoteOp(Node->getOperand(1)));
1135 Ops.push_back(PromoteOp(Node->getOperand(2)));
1136 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001137 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1138 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001139 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001140 }
1141 break;
1142 }
1143 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001144
1145 case ISD::DECLARE:
1146 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1147 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1148 default: assert(0 && "This action is not supported yet!");
1149 case TargetLowering::Legal:
1150 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1151 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1152 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1153 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1154 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001155 case TargetLowering::Expand:
1156 Result = LegalizeOp(Node->getOperand(0));
1157 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001158 }
1159 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001160
1161 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001162 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001163 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001164 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +00001165 case TargetLowering::Legal:
1166 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1167 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1168 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1169 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001170 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001171 break;
1172 }
1173 break;
1174
Jim Laskey1ee29252007-01-26 14:34:52 +00001175 case ISD::LABEL:
Evan Chengbb81d972008-01-31 09:59:15 +00001176 assert(Node->getNumOperands() == 3 && "Invalid LABEL node!");
Jim Laskey1ee29252007-01-26 14:34:52 +00001177 switch (TLI.getOperationAction(ISD::LABEL, MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001178 default: assert(0 && "This action is not supported yet!");
1179 case TargetLowering::Legal:
1180 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1181 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the label id.
Evan Chengbb81d972008-01-31 09:59:15 +00001182 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the "flavor" operand.
1183 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001184 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001185 case TargetLowering::Expand:
1186 Result = LegalizeOp(Node->getOperand(0));
1187 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001188 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001189 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001190
Evan Cheng27b7db52008-03-08 00:58:38 +00001191 case ISD::PREFETCH:
1192 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1193 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1194 default: assert(0 && "This action is not supported yet!");
1195 case TargetLowering::Legal:
1196 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1197 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1198 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1199 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1200 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1201 break;
1202 case TargetLowering::Expand:
1203 // It's a noop.
1204 Result = LegalizeOp(Node->getOperand(0));
1205 break;
1206 }
1207 break;
1208
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001209 case ISD::MEMBARRIER: {
1210 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001211 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1212 default: assert(0 && "This action is not supported yet!");
1213 case TargetLowering::Legal: {
1214 SDOperand Ops[6];
1215 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001216 for (int x = 1; x < 6; ++x) {
1217 Ops[x] = Node->getOperand(x);
1218 if (!isTypeLegal(Ops[x].getValueType()))
1219 Ops[x] = PromoteOp(Ops[x]);
1220 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001221 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1222 break;
1223 }
1224 case TargetLowering::Expand:
1225 //There is no libgcc call for this op
1226 Result = Node->getOperand(0); // Noop
1227 break;
1228 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001229 break;
1230 }
1231
Mon P Wang63307c32008-05-05 19:05:59 +00001232 case ISD::ATOMIC_LCS: {
1233 unsigned int num_operands = 4;
1234 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001235 SDOperand Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001236 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001237 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001238 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1239
1240 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1241 default: assert(0 && "This action is not supported yet!");
1242 case TargetLowering::Custom:
1243 Result = TLI.LowerOperation(Result, DAG);
1244 break;
1245 case TargetLowering::Legal:
1246 break;
1247 }
1248 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1249 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1250 return Result.getValue(Op.ResNo);
1251 }
1252 case ISD::ATOMIC_LAS:
1253 case ISD::ATOMIC_LSS:
1254 case ISD::ATOMIC_LOAD_AND:
1255 case ISD::ATOMIC_LOAD_OR:
1256 case ISD::ATOMIC_LOAD_XOR:
Andrew Lenharth507a58a2008-06-14 05:48:15 +00001257 case ISD::ATOMIC_LOAD_NAND:
Mon P Wang63307c32008-05-05 19:05:59 +00001258 case ISD::ATOMIC_LOAD_MIN:
1259 case ISD::ATOMIC_LOAD_MAX:
1260 case ISD::ATOMIC_LOAD_UMIN:
1261 case ISD::ATOMIC_LOAD_UMAX:
1262 case ISD::ATOMIC_SWAP: {
1263 unsigned int num_operands = 3;
1264 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
1265 SDOperand Ops[3];
1266 for (unsigned int x = 0; x < num_operands; ++x)
1267 Ops[x] = LegalizeOp(Node->getOperand(x));
1268 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001269
1270 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001271 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001272 case TargetLowering::Custom:
1273 Result = TLI.LowerOperation(Result, DAG);
1274 break;
Mon P Wang63307c32008-05-05 19:05:59 +00001275 case TargetLowering::Expand:
1276 Result = SDOperand(TLI.ExpandOperationResult(Op.Val, DAG),0);
1277 break;
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001278 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001279 break;
1280 }
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001281 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1282 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1283 return Result.getValue(Op.ResNo);
Mon P Wang63307c32008-05-05 19:05:59 +00001284 }
Scott Michelc1513d22007-08-08 23:23:31 +00001285 case ISD::Constant: {
1286 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1287 unsigned opAction =
1288 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1289
Chris Lattner3e928bb2005-01-07 07:47:09 +00001290 // We know we don't need to expand constants here, constants only have one
1291 // value and we check that it is fine above.
1292
Scott Michelc1513d22007-08-08 23:23:31 +00001293 if (opAction == TargetLowering::Custom) {
1294 Tmp1 = TLI.LowerOperation(Result, DAG);
1295 if (Tmp1.Val)
1296 Result = Tmp1;
1297 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001298 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001299 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001300 case ISD::ConstantFP: {
1301 // Spill FP immediates to the constant pool if the target cannot directly
1302 // codegen them. Targets often have some immediate values that can be
1303 // efficiently generated into an FP register without a load. We explicitly
1304 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001305 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1306
Chris Lattner3181a772006-01-29 06:26:56 +00001307 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1308 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001309 case TargetLowering::Legal:
1310 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001311 case TargetLowering::Custom:
1312 Tmp3 = TLI.LowerOperation(Result, DAG);
1313 if (Tmp3.Val) {
1314 Result = Tmp3;
1315 break;
1316 }
1317 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001318 case TargetLowering::Expand: {
1319 // Check to see if this FP immediate is already legal.
1320 bool isLegal = false;
1321 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1322 E = TLI.legal_fpimm_end(); I != E; ++I) {
1323 if (CFP->isExactlyValue(*I)) {
1324 isLegal = true;
1325 break;
1326 }
1327 }
1328 // If this is a legal constant, turn it into a TargetConstantFP node.
1329 if (isLegal)
1330 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001331 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001332 }
Nate Begemane1795842008-02-14 08:57:00 +00001333 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001334 break;
1335 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001336 case ISD::TokenFactor:
1337 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001338 Tmp1 = LegalizeOp(Node->getOperand(0));
1339 Tmp2 = LegalizeOp(Node->getOperand(1));
1340 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1341 } else if (Node->getNumOperands() == 3) {
1342 Tmp1 = LegalizeOp(Node->getOperand(0));
1343 Tmp2 = LegalizeOp(Node->getOperand(1));
1344 Tmp3 = LegalizeOp(Node->getOperand(2));
1345 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001346 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001347 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001348 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001349 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1350 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001351 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001352 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001353 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001354
1355 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001356 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001357 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001358 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1359 assert(Tmp3.Val && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001360 // A call within a calling sequence must be legalized to something
1361 // other than the normal CALLSEQ_END. Violating this gets Legalize
1362 // into an infinite loop.
1363 assert ((!IsLegalizingCall ||
1364 Node->getOpcode() != ISD::CALL ||
1365 Tmp3.Val->getOpcode() != ISD::CALLSEQ_END) &&
1366 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001367
1368 // The number of incoming and outgoing values should match; unless the final
1369 // outgoing value is a flag.
1370 assert((Tmp3.Val->getNumValues() == Result.Val->getNumValues() ||
1371 (Tmp3.Val->getNumValues() == Result.Val->getNumValues() + 1 &&
1372 Tmp3.Val->getValueType(Tmp3.Val->getNumValues() - 1) ==
1373 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001374 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001375
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001376 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001377 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +00001378 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001379 if (Tmp3.Val->getValueType(i) == MVT::Flag)
1380 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001381 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +00001382 if (Op.ResNo == i)
1383 Tmp2 = Tmp1;
1384 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
1385 }
1386 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001387 case ISD::EXTRACT_SUBREG: {
1388 Tmp1 = LegalizeOp(Node->getOperand(0));
1389 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1390 assert(idx && "Operand must be a constant");
1391 Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1392 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1393 }
1394 break;
1395 case ISD::INSERT_SUBREG: {
1396 Tmp1 = LegalizeOp(Node->getOperand(0));
1397 Tmp2 = LegalizeOp(Node->getOperand(1));
1398 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1399 assert(idx && "Operand must be a constant");
1400 Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1401 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1402 }
1403 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001404 case ISD::BUILD_VECTOR:
1405 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001406 default: assert(0 && "This action is not supported yet!");
1407 case TargetLowering::Custom:
1408 Tmp3 = TLI.LowerOperation(Result, DAG);
1409 if (Tmp3.Val) {
1410 Result = Tmp3;
1411 break;
1412 }
1413 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001414 case TargetLowering::Expand:
1415 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +00001416 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001417 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001418 break;
1419 case ISD::INSERT_VECTOR_ELT:
1420 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001421 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001422
1423 // The type of the value to insert may not be legal, even though the vector
1424 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1425 // here.
1426 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1427 default: assert(0 && "Cannot expand insert element operand");
1428 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1429 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1430 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001431 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1432
1433 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1434 Node->getValueType(0))) {
1435 default: assert(0 && "This action is not supported yet!");
1436 case TargetLowering::Legal:
1437 break;
1438 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001439 Tmp4 = TLI.LowerOperation(Result, DAG);
1440 if (Tmp4.Val) {
1441 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001442 break;
1443 }
1444 // FALLTHROUGH
1445 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001446 // If the insert index is a constant, codegen this as a scalar_to_vector,
1447 // then a shuffle that inserts it into the right position in the vector.
1448 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001449 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1450 // match the element type of the vector being created.
1451 if (Tmp2.getValueType() ==
Duncan Sands83ec4b62008-06-06 12:08:01 +00001452 Op.getValueType().getVectorElementType()) {
Nate Begeman0325d902008-02-13 06:43:04 +00001453 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
1454 Tmp1.getValueType(), Tmp2);
1455
Duncan Sands83ec4b62008-06-06 12:08:01 +00001456 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1457 MVT ShufMaskVT =
1458 MVT::getIntVectorWithNumElements(NumElts);
1459 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Nate Begeman0325d902008-02-13 06:43:04 +00001460
1461 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1462 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1463 // elt 0 of the RHS.
1464 SmallVector<SDOperand, 8> ShufOps;
1465 for (unsigned i = 0; i != NumElts; ++i) {
1466 if (i != InsertPos->getValue())
1467 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1468 else
1469 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1470 }
1471 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
1472 &ShufOps[0], ShufOps.size());
1473
1474 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1475 Tmp1, ScVec, ShufMask);
1476 Result = LegalizeOp(Result);
1477 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001478 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001479 }
Nate Begeman68679912008-04-25 18:07:40 +00001480 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001481 break;
1482 }
1483 }
1484 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001485 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001486 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1487 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1488 break;
1489 }
1490
Chris Lattnerce872152006-03-19 06:31:19 +00001491 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1492 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1493 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1494 Node->getValueType(0))) {
1495 default: assert(0 && "This action is not supported yet!");
1496 case TargetLowering::Legal:
1497 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001498 case TargetLowering::Custom:
1499 Tmp3 = TLI.LowerOperation(Result, DAG);
1500 if (Tmp3.Val) {
1501 Result = Tmp3;
1502 break;
1503 }
1504 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001505 case TargetLowering::Expand:
1506 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001507 break;
1508 }
Chris Lattnerce872152006-03-19 06:31:19 +00001509 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001510 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001511 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1512 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1513 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1514
1515 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001516 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1517 default: assert(0 && "Unknown operation action!");
1518 case TargetLowering::Legal:
1519 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1520 "vector shuffle should not be created if not legal!");
1521 break;
1522 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001523 Tmp3 = TLI.LowerOperation(Result, DAG);
1524 if (Tmp3.Val) {
1525 Result = Tmp3;
1526 break;
1527 }
1528 // FALLTHROUGH
1529 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001530 MVT VT = Node->getValueType(0);
1531 MVT EltVT = VT.getVectorElementType();
1532 MVT PtrVT = TLI.getPointerTy();
Evan Cheng18dd6d02006-04-05 06:07:11 +00001533 SDOperand Mask = Node->getOperand(2);
1534 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001535 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001536 for (unsigned i = 0; i != NumElems; ++i) {
1537 SDOperand Arg = Mask.getOperand(i);
1538 if (Arg.getOpcode() == ISD::UNDEF) {
1539 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1540 } else {
1541 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1542 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1543 if (Idx < NumElems)
1544 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1545 DAG.getConstant(Idx, PtrVT)));
1546 else
1547 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1548 DAG.getConstant(Idx - NumElems, PtrVT)));
1549 }
1550 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001551 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001552 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001553 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001554 case TargetLowering::Promote: {
1555 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001556 MVT OVT = Node->getValueType(0);
1557 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001558
1559 // Cast the two input vectors.
1560 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1561 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1562
1563 // Convert the shuffle mask to the right # elements.
1564 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1565 assert(Tmp3.Val && "Shuffle not legal?");
1566 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1567 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1568 break;
1569 }
Chris Lattner87100e02006-03-20 01:52:29 +00001570 }
1571 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001572
1573 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001574 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001575 Tmp2 = LegalizeOp(Node->getOperand(1));
1576 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001577 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001578 break;
1579
Dan Gohman7f321562007-06-25 16:23:39 +00001580 case ISD::EXTRACT_SUBVECTOR:
1581 Tmp1 = Node->getOperand(0);
1582 Tmp2 = LegalizeOp(Node->getOperand(1));
1583 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1584 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001585 break;
1586
Chris Lattner6831a812006-02-13 09:18:02 +00001587 case ISD::CALLSEQ_START: {
1588 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1589
1590 // Recursively Legalize all of the inputs of the call end that do not lead
1591 // to this call start. This ensures that any libcalls that need be inserted
1592 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001593 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001594 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001595 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1596 NodesLeadingTo);
1597 }
Chris Lattner6831a812006-02-13 09:18:02 +00001598
1599 // Now that we legalized all of the inputs (which may have inserted
1600 // libcalls) create the new CALLSEQ_START node.
1601 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1602
1603 // Merge in the last call, to ensure that this call start after the last
1604 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001605 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001606 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1607 Tmp1 = LegalizeOp(Tmp1);
1608 }
Chris Lattner6831a812006-02-13 09:18:02 +00001609
1610 // Do not try to legalize the target-specific arguments (#1+).
1611 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001612 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001613 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001614 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001615 }
1616
1617 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001618 AddLegalizedOperand(Op.getValue(0), Result);
1619 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1620 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1621
Chris Lattner6831a812006-02-13 09:18:02 +00001622 // Now that the callseq_start and all of the non-call nodes above this call
1623 // sequence have been legalized, legalize the call itself. During this
1624 // process, no libcalls can/will be inserted, guaranteeing that no calls
1625 // can overlap.
1626 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001627 // Note that we are selecting this call!
1628 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1629 IsLegalizingCall = true;
1630
1631 // Legalize the call, starting from the CALLSEQ_END.
1632 LegalizeOp(LastCALLSEQ_END);
1633 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1634 return Result;
1635 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001636 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001637 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1638 // will cause this node to be legalized as well as handling libcalls right.
1639 if (LastCALLSEQ_END.Val != Node) {
1640 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
Roman Levenstein9cac5252008-04-16 16:15:27 +00001641 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001642 assert(I != LegalizedNodes.end() &&
1643 "Legalizing the call start should have legalized this node!");
1644 return I->second;
1645 }
1646
1647 // Otherwise, the call start has been legalized and everything is going
1648 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001649 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001650 // Do not try to legalize the target-specific arguments (#1+), except for
1651 // an optional flag input.
1652 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1653 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001654 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001655 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001656 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001657 }
1658 } else {
1659 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1660 if (Tmp1 != Node->getOperand(0) ||
1661 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001662 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001663 Ops[0] = Tmp1;
1664 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001665 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001666 }
Chris Lattner6a542892006-01-24 05:48:21 +00001667 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001668 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001669 // This finishes up call legalization.
1670 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001671
1672 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1673 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1674 if (Node->getNumValues() == 2)
1675 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1676 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001677 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001678 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001679 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1680 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1681 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001682 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001683
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001684 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001685 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001686 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001687 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001688 case TargetLowering::Expand: {
1689 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1690 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1691 " not tell us which reg is the stack pointer!");
1692 SDOperand Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001693
1694 // Chain the dynamic stack allocation so that it doesn't modify the stack
1695 // pointer when other instructions are using the stack.
1696 Chain = DAG.getCALLSEQ_START(Chain,
1697 DAG.getConstant(0, TLI.getPointerTy()));
1698
Chris Lattner903d2782006-01-15 08:54:32 +00001699 SDOperand Size = Tmp2.getOperand(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001700 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, VT);
1701 Chain = SP.getValue(1);
1702 unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1703 unsigned StackAlign =
1704 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1705 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001706 SP = DAG.getNode(ISD::AND, VT, SP,
1707 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001708 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001709 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1710
1711 Tmp2 =
1712 DAG.getCALLSEQ_END(Chain,
1713 DAG.getConstant(0, TLI.getPointerTy()),
1714 DAG.getConstant(0, TLI.getPointerTy()),
1715 SDOperand());
1716
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001717 Tmp1 = LegalizeOp(Tmp1);
1718 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001719 break;
1720 }
1721 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001722 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1723 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001724 Tmp1 = LegalizeOp(Tmp3);
1725 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001726 }
Chris Lattner903d2782006-01-15 08:54:32 +00001727 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001728 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001729 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001730 }
Chris Lattner903d2782006-01-15 08:54:32 +00001731 // Since this op produce two values, make sure to remember that we
1732 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001733 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1734 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001735 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001736 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001737 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001738 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001739 bool Changed = false;
1740 // Legalize all of the operands of the inline asm, in case they are nodes
1741 // that need to be expanded or something. Note we skip the asm string and
1742 // all of the TargetConstant flags.
1743 SDOperand Op = LegalizeOp(Ops[0]);
1744 Changed = Op != Ops[0];
1745 Ops[0] = Op;
1746
1747 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1748 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1749 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1750 for (++i; NumVals; ++i, --NumVals) {
1751 SDOperand Op = LegalizeOp(Ops[i]);
1752 if (Op != Ops[i]) {
1753 Changed = true;
1754 Ops[i] = Op;
1755 }
1756 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001757 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001758
1759 if (HasInFlag) {
1760 Op = LegalizeOp(Ops.back());
1761 Changed |= Op != Ops.back();
1762 Ops.back() = Op;
1763 }
1764
1765 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001766 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001767
1768 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001769 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001770 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1771 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001772 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001773 case ISD::BR:
1774 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001775 // Ensure that libcalls are emitted before a branch.
1776 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1777 Tmp1 = LegalizeOp(Tmp1);
1778 LastCALLSEQ_END = DAG.getEntryNode();
1779
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001780 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001781 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001782 case ISD::BRIND:
1783 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1784 // Ensure that libcalls are emitted before a branch.
1785 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1786 Tmp1 = LegalizeOp(Tmp1);
1787 LastCALLSEQ_END = DAG.getEntryNode();
1788
1789 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1790 default: assert(0 && "Indirect target must be legal type (pointer)!");
1791 case Legal:
1792 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1793 break;
1794 }
1795 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1796 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001797 case ISD::BR_JT:
1798 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1799 // Ensure that libcalls are emitted before a branch.
1800 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1801 Tmp1 = LegalizeOp(Tmp1);
1802 LastCALLSEQ_END = DAG.getEntryNode();
1803
1804 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1805 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1806
1807 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1808 default: assert(0 && "This action is not supported yet!");
1809 case TargetLowering::Legal: break;
1810 case TargetLowering::Custom:
1811 Tmp1 = TLI.LowerOperation(Result, DAG);
1812 if (Tmp1.Val) Result = Tmp1;
1813 break;
1814 case TargetLowering::Expand: {
1815 SDOperand Chain = Result.getOperand(0);
1816 SDOperand Table = Result.getOperand(1);
1817 SDOperand Index = Result.getOperand(2);
1818
Duncan Sands83ec4b62008-06-06 12:08:01 +00001819 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001820 MachineFunction &MF = DAG.getMachineFunction();
1821 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001822 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1823 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001824
1825 SDOperand LD;
1826 switch (EntrySize) {
1827 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001828 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001829 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001830 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001831 PseudoSourceValue::getJumpTable(), 0); break;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001832 }
1833
Evan Chengcc415862007-11-09 01:32:10 +00001834 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001835 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001836 // For PIC, the sequence is:
1837 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00001838 // RelocBase can be JumpTable, GOT or some sort of global base.
1839 if (PTy != MVT::i32)
1840 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1841 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1842 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00001843 }
Evan Chengcc415862007-11-09 01:32:10 +00001844 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001845 }
1846 }
1847 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001848 case ISD::BRCOND:
1849 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001850 // Ensure that libcalls are emitted before a return.
1851 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1852 Tmp1 = LegalizeOp(Tmp1);
1853 LastCALLSEQ_END = DAG.getEntryNode();
1854
Chris Lattner47e92232005-01-18 19:27:06 +00001855 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1856 case Expand: assert(0 && "It's impossible to expand bools");
1857 case Legal:
1858 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1859 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001860 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00001861 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001862
1863 // The top bits of the promoted condition are not necessarily zero, ensure
1864 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001865 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001866 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001867 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerf9908172006-11-27 04:39:56 +00001868 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001869 break;
1870 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001871 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001872
1873 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001874 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001875
1876 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1877 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001878 case TargetLowering::Legal: break;
1879 case TargetLowering::Custom:
1880 Tmp1 = TLI.LowerOperation(Result, DAG);
1881 if (Tmp1.Val) Result = Tmp1;
1882 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001883 case TargetLowering::Expand:
1884 // Expand brcond's setcc into its constituent parts and create a BR_CC
1885 // Node.
1886 if (Tmp2.getOpcode() == ISD::SETCC) {
1887 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1888 Tmp2.getOperand(0), Tmp2.getOperand(1),
1889 Node->getOperand(2));
1890 } else {
1891 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1892 DAG.getCondCode(ISD::SETNE), Tmp2,
1893 DAG.getConstant(0, Tmp2.getValueType()),
1894 Node->getOperand(2));
1895 }
1896 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001897 }
1898 break;
1899 case ISD::BR_CC:
1900 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001901 // Ensure that libcalls are emitted before a branch.
1902 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1903 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001904 Tmp2 = Node->getOperand(2); // LHS
1905 Tmp3 = Node->getOperand(3); // RHS
1906 Tmp4 = Node->getOperand(1); // CC
1907
1908 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001909 LastCALLSEQ_END = DAG.getEntryNode();
1910
Nate Begeman750ac1b2006-02-01 07:19:44 +00001911 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1912 // the LHS is a legal SETCC itself. In this case, we need to compare
1913 // the result against zero to select between true and false values.
1914 if (Tmp3.Val == 0) {
1915 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1916 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001917 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001918
1919 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1920 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001921
Chris Lattner181b7a32005-12-17 23:46:46 +00001922 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1923 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001924 case TargetLowering::Legal: break;
1925 case TargetLowering::Custom:
1926 Tmp4 = TLI.LowerOperation(Result, DAG);
1927 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001928 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001929 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001930 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001931 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001932 LoadSDNode *LD = cast<LoadSDNode>(Node);
1933 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1934 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001935
Evan Cheng466685d2006-10-09 20:57:25 +00001936 ISD::LoadExtType ExtType = LD->getExtensionType();
1937 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001938 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00001939 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1940 Tmp3 = Result.getValue(0);
1941 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001942
Evan Cheng466685d2006-10-09 20:57:25 +00001943 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1944 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001945 case TargetLowering::Legal:
1946 // If this is an unaligned load and the target doesn't support it,
1947 // expand it.
1948 if (!TLI.allowsUnalignedMemoryAccesses()) {
1949 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00001950 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001951 if (LD->getAlignment() < ABIAlignment){
1952 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1953 TLI);
1954 Tmp3 = Result.getOperand(0);
1955 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001956 Tmp3 = LegalizeOp(Tmp3);
1957 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001958 }
1959 }
1960 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001961 case TargetLowering::Custom:
1962 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1963 if (Tmp1.Val) {
1964 Tmp3 = LegalizeOp(Tmp1);
1965 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001966 }
Evan Cheng466685d2006-10-09 20:57:25 +00001967 break;
1968 case TargetLowering::Promote: {
1969 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001970 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00001971 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001972 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00001973
1974 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001975 LD->getSrcValueOffset(),
1976 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001977 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1978 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001979 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001980 }
Evan Cheng466685d2006-10-09 20:57:25 +00001981 }
1982 // Since loads produce two values, make sure to remember that we
1983 // legalized both of them.
1984 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1985 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1986 return Op.ResNo ? Tmp4 : Tmp3;
1987 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001988 MVT SrcVT = LD->getMemoryVT();
1989 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001990 int SVOffset = LD->getSrcValueOffset();
1991 unsigned Alignment = LD->getAlignment();
1992 bool isVolatile = LD->isVolatile();
1993
Duncan Sands83ec4b62008-06-06 12:08:01 +00001994 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001995 // Some targets pretend to have an i1 loading operation, and actually
1996 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1997 // bits are guaranteed to be zero; it helps the optimizers understand
1998 // that these bits are zero. It is also useful for EXTLOAD, since it
1999 // tells the optimizers that those bits are undefined. It would be
2000 // nice to have an effective generic way of getting these benefits...
2001 // Until such a way is found, don't insist on promoting i1 here.
2002 (SrcVT != MVT::i1 ||
2003 TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
2004 // Promote to a byte-sized load if not loading an integral number of
2005 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002006 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2007 MVT NVT = MVT::getIntegerVT(NewWidth);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002008 SDOperand Ch;
2009
2010 // The extra bits are guaranteed to be zero, since we stored them that
2011 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2012
2013 ISD::LoadExtType NewExtType =
2014 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2015
2016 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
2017 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2018 NVT, isVolatile, Alignment);
2019
2020 Ch = Result.getValue(1); // The chain.
2021
2022 if (ExtType == ISD::SEXTLOAD)
2023 // Having the top bits zero doesn't help when sign extending.
2024 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2025 Result, DAG.getValueType(SrcVT));
2026 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2027 // All the top bits are guaranteed to be zero - inform the optimizers.
2028 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2029 DAG.getValueType(SrcVT));
2030
2031 Tmp1 = LegalizeOp(Result);
2032 Tmp2 = LegalizeOp(Ch);
2033 } else if (SrcWidth & (SrcWidth - 1)) {
2034 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002035 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002036 "Unsupported extload!");
2037 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2038 assert(RoundWidth < SrcWidth);
2039 unsigned ExtraWidth = SrcWidth - RoundWidth;
2040 assert(ExtraWidth < RoundWidth);
2041 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2042 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002043 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2044 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002045 SDOperand Lo, Hi, Ch;
2046 unsigned IncrementSize;
2047
2048 if (TLI.isLittleEndian()) {
2049 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2050 // Load the bottom RoundWidth bits.
2051 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2052 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2053 Alignment);
2054
2055 // Load the remaining ExtraWidth bits.
2056 IncrementSize = RoundWidth / 8;
2057 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2058 DAG.getIntPtrConstant(IncrementSize));
2059 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2060 LD->getSrcValue(), SVOffset + IncrementSize,
2061 ExtraVT, isVolatile,
2062 MinAlign(Alignment, IncrementSize));
2063
2064 // Build a factor node to remember that this load is independent of the
2065 // other one.
2066 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2067 Hi.getValue(1));
2068
2069 // Move the top bits to the right place.
2070 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2071 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2072
2073 // Join the hi and lo parts.
2074 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002075 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002076 // Big endian - avoid unaligned loads.
2077 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2078 // Load the top RoundWidth bits.
2079 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2080 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2081 Alignment);
2082
2083 // Load the remaining ExtraWidth bits.
2084 IncrementSize = RoundWidth / 8;
2085 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2086 DAG.getIntPtrConstant(IncrementSize));
2087 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2088 LD->getSrcValue(), SVOffset + IncrementSize,
2089 ExtraVT, isVolatile,
2090 MinAlign(Alignment, IncrementSize));
2091
2092 // Build a factor node to remember that this load is independent of the
2093 // other one.
2094 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2095 Hi.getValue(1));
2096
2097 // Move the top bits to the right place.
2098 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2099 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2100
2101 // Join the hi and lo parts.
2102 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2103 }
2104
2105 Tmp1 = LegalizeOp(Result);
2106 Tmp2 = LegalizeOp(Ch);
2107 } else {
2108 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
2109 default: assert(0 && "This action is not supported yet!");
2110 case TargetLowering::Custom:
2111 isCustom = true;
2112 // FALLTHROUGH
2113 case TargetLowering::Legal:
2114 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2115 Tmp1 = Result.getValue(0);
2116 Tmp2 = Result.getValue(1);
2117
2118 if (isCustom) {
2119 Tmp3 = TLI.LowerOperation(Result, DAG);
2120 if (Tmp3.Val) {
2121 Tmp1 = LegalizeOp(Tmp3);
2122 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2123 }
2124 } else {
2125 // If this is an unaligned load and the target doesn't support it,
2126 // expand it.
2127 if (!TLI.allowsUnalignedMemoryAccesses()) {
2128 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002129 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002130 if (LD->getAlignment() < ABIAlignment){
2131 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
2132 TLI);
2133 Tmp1 = Result.getOperand(0);
2134 Tmp2 = Result.getOperand(1);
2135 Tmp1 = LegalizeOp(Tmp1);
2136 Tmp2 = LegalizeOp(Tmp2);
2137 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002138 }
2139 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002140 break;
2141 case TargetLowering::Expand:
2142 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2143 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
2144 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
2145 LD->getSrcValueOffset(),
2146 LD->isVolatile(), LD->getAlignment());
2147 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2148 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2149 Tmp2 = LegalizeOp(Load.getValue(1));
2150 break;
2151 }
2152 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2153 // Turn the unsupported load into an EXTLOAD followed by an explicit
2154 // zero/sign extend inreg.
2155 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2156 Tmp1, Tmp2, LD->getSrcValue(),
2157 LD->getSrcValueOffset(), SrcVT,
2158 LD->isVolatile(), LD->getAlignment());
2159 SDOperand ValRes;
2160 if (ExtType == ISD::SEXTLOAD)
2161 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2162 Result, DAG.getValueType(SrcVT));
2163 else
2164 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2165 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2166 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002167 break;
2168 }
Evan Cheng466685d2006-10-09 20:57:25 +00002169 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002170
Evan Cheng466685d2006-10-09 20:57:25 +00002171 // Since loads produce two values, make sure to remember that we legalized
2172 // both of them.
2173 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2174 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2175 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002176 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002177 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002178 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002179 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002180 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002181 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002182 case Legal:
2183 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
2184 // 1 -> Hi
2185 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002186 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002187 TLI.getShiftAmountTy()));
2188 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2189 } else {
2190 // 0 -> Lo
2191 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2192 Node->getOperand(0));
2193 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002194 break;
2195 case Expand:
2196 // Get both the low and high parts.
2197 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2198 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
2199 Result = Tmp2; // 1 -> Hi
2200 else
2201 Result = Tmp1; // 0 -> Lo
2202 break;
2203 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002204 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002205 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002206
2207 case ISD::CopyToReg:
2208 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002209
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002210 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002211 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002212 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002213 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002214 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002215 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002216 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002217 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002218 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002219 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002220 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2221 Tmp3);
2222 } else {
2223 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002224 }
2225
2226 // Since this produces two values, make sure to remember that we legalized
2227 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002228 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00002229 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002230 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002231 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002232 break;
2233
2234 case ISD::RET:
2235 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002236
2237 // Ensure that libcalls are emitted before a return.
2238 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2239 Tmp1 = LegalizeOp(Tmp1);
2240 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002241
Chris Lattner3e928bb2005-01-07 07:47:09 +00002242 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002243 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002244 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002245 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002246 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002247 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002248 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002249 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002250 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002251 if (!Tmp2.getValueType().isVector()) {
Chris Lattnerf87324e2006-04-11 01:31:51 +00002252 SDOperand Lo, Hi;
2253 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002254
2255 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002256 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002257 std::swap(Lo, Hi);
2258
Evan Cheng13acce32006-12-11 19:27:14 +00002259 if (Hi.Val)
2260 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2261 else
2262 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002263 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002264 } else {
2265 SDNode *InVal = Tmp2.Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002266 int InIx = Tmp2.ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002267 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2268 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002269
Dan Gohman7f321562007-06-25 16:23:39 +00002270 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002271 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002272 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002273 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002274 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002275 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002276 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002277 } else if (NumElems == 1) {
2278 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002279 Tmp2 = ScalarizeVectorOp(Tmp2);
2280 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002281 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002282
2283 // FIXME: Returns of gcc generic vectors smaller than a legal type
2284 // should be returned in integer registers!
2285
Chris Lattnerf87324e2006-04-11 01:31:51 +00002286 // The scalarized value type may not be legal, e.g. it might require
2287 // promotion or expansion. Relegalize the return.
2288 Result = LegalizeOp(Result);
2289 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002290 // FIXME: Returns of gcc generic vectors larger than a legal vector
2291 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00002292 SDOperand Lo, Hi;
2293 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00002294 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002295 Result = LegalizeOp(Result);
2296 }
2297 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002298 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002299 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002300 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002301 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002302 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002303 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002304 }
2305 break;
2306 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002307 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002308 break;
2309 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002310 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002311 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002312 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002313 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2314 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002315 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002316 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002317 break;
2318 case Expand: {
2319 SDOperand Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002320 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002321 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002322 ExpandOp(Node->getOperand(i), Lo, Hi);
2323 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002324 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00002325 if (Hi.Val) {
2326 NewValues.push_back(Hi);
2327 NewValues.push_back(Node->getOperand(i+1));
2328 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002329 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002330 }
2331 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002332 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002333 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002334
2335 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002336 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002337 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002338 Result = DAG.getNode(ISD::RET, MVT::Other,
2339 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002340 break;
2341 }
2342 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002343
Chris Lattner6862dbc2006-01-29 21:02:23 +00002344 if (Result.getOpcode() == ISD::RET) {
2345 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2346 default: assert(0 && "This action is not supported yet!");
2347 case TargetLowering::Legal: break;
2348 case TargetLowering::Custom:
2349 Tmp1 = TLI.LowerOperation(Result, DAG);
2350 if (Tmp1.Val) Result = Tmp1;
2351 break;
2352 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002353 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002354 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002355 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002356 StoreSDNode *ST = cast<StoreSDNode>(Node);
2357 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2358 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002359 int SVOffset = ST->getSrcValueOffset();
2360 unsigned Alignment = ST->getAlignment();
2361 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002362
Evan Cheng8b2794a2006-10-13 21:14:26 +00002363 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002364 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2365 // FIXME: We shouldn't do this for TargetConstantFP's.
2366 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2367 // to phase ordering between legalized code and the dag combiner. This
2368 // probably means that we need to integrate dag combiner and legalizer
2369 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002370 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002371 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002372 if (CFP->getValueType(0) == MVT::f32 &&
2373 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002374 Tmp3 = DAG.getConstant(CFP->getValueAPF().
2375 convertToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002376 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002377 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2378 SVOffset, isVolatile, Alignment);
2379 break;
2380 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002381 // If this target supports 64-bit registers, do a single 64-bit store.
2382 if (getTypeAction(MVT::i64) == Legal) {
2383 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002384 zextOrTrunc(64), MVT::i64);
Chris Lattner3cb93512007-10-15 05:46:06 +00002385 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2386 SVOffset, isVolatile, Alignment);
2387 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002388 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002389 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2390 // stores. If the target supports neither 32- nor 64-bits, this
2391 // xform is certainly not worth it.
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002392 const APInt &IntVal =CFP->getValueAPF().convertToAPInt();
2393 SDOperand Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2394 SDOperand Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002395 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002396
2397 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2398 SVOffset, isVolatile, Alignment);
2399 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002400 DAG.getIntPtrConstant(4));
Chris Lattner3cb93512007-10-15 05:46:06 +00002401 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002402 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002403
2404 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2405 break;
2406 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002407 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002408 }
2409
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002410 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002411 case Legal: {
2412 Tmp3 = LegalizeOp(ST->getValue());
2413 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2414 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002415
Duncan Sands83ec4b62008-06-06 12:08:01 +00002416 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002417 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2418 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002419 case TargetLowering::Legal:
2420 // If this is an unaligned store and the target doesn't support it,
2421 // expand it.
2422 if (!TLI.allowsUnalignedMemoryAccesses()) {
2423 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002424 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002425 if (ST->getAlignment() < ABIAlignment)
2426 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2427 TLI);
2428 }
2429 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002430 case TargetLowering::Custom:
2431 Tmp1 = TLI.LowerOperation(Result, DAG);
2432 if (Tmp1.Val) Result = Tmp1;
2433 break;
2434 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002435 assert(VT.isVector() && "Unknown legal promote case!");
Evan Cheng8b2794a2006-10-13 21:14:26 +00002436 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2437 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2438 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002439 ST->getSrcValue(), SVOffset, isVolatile,
2440 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002441 break;
2442 }
2443 break;
2444 }
2445 case Promote:
2446 // Truncate the value and store the result.
2447 Tmp3 = PromoteOp(ST->getValue());
2448 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002449 SVOffset, ST->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002450 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002451 break;
2452
2453 case Expand:
2454 unsigned IncrementSize = 0;
2455 SDOperand Lo, Hi;
2456
2457 // If this is a vector type, then we have to calculate the increment as
2458 // the product of the element size in bytes, and the number of elements
2459 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002460 if (ST->getValue().getValueType().isVector()) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002461 SDNode *InVal = ST->getValue().Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002462 int InIx = ST->getValue().ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002463 MVT InVT = InVal->getValueType(InIx);
2464 unsigned NumElems = InVT.getVectorNumElements();
2465 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002466
Dan Gohman7f321562007-06-25 16:23:39 +00002467 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002468 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002469 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002470 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002471 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002472 Tmp3 = LegalizeOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002473 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002474 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002475 Result = LegalizeOp(Result);
2476 break;
2477 } else if (NumElems == 1) {
2478 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002479 Tmp3 = ScalarizeVectorOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002480 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002481 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002482 // The scalarized value type may not be legal, e.g. it might require
2483 // promotion or expansion. Relegalize the scalar store.
2484 Result = LegalizeOp(Result);
2485 break;
2486 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002487 SplitVectorOp(ST->getValue(), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002488 IncrementSize = Lo.Val->getValueType(0).getVectorNumElements() *
2489 EVT.getSizeInBits()/8;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002490 }
2491 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002492 ExpandOp(ST->getValue(), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002493 IncrementSize = Hi.Val ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002494
Duncan Sands0753fc12008-02-11 10:37:04 +00002495 if (TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002496 std::swap(Lo, Hi);
2497 }
2498
2499 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002500 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002501
2502 if (Hi.Val == NULL) {
2503 // Must be int <-> float one-to-one expansion.
2504 Result = Lo;
2505 break;
2506 }
2507
Evan Cheng8b2794a2006-10-13 21:14:26 +00002508 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002509 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002510 assert(isTypeLegal(Tmp2.getValueType()) &&
2511 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002512 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002513 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002514 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002515 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002516 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2517 break;
2518 }
2519 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002520 switch (getTypeAction(ST->getValue().getValueType())) {
2521 case Legal:
2522 Tmp3 = LegalizeOp(ST->getValue());
2523 break;
2524 case Promote:
2525 // We can promote the value, the truncstore will still take care of it.
2526 Tmp3 = PromoteOp(ST->getValue());
2527 break;
2528 case Expand:
2529 // Just store the low part. This may become a non-trunc store, so make
2530 // sure to use getTruncStore, not UpdateNodeOperands below.
2531 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2532 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2533 SVOffset, MVT::i8, isVolatile, Alignment);
2534 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002535
Duncan Sands83ec4b62008-06-06 12:08:01 +00002536 MVT StVT = ST->getMemoryVT();
2537 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002538
Duncan Sands83ec4b62008-06-06 12:08:01 +00002539 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002540 // Promote to a byte-sized store with upper bits zero if not
2541 // storing an integral number of bytes. For example, promote
2542 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002543 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Duncan Sands7e857202008-01-22 07:17:34 +00002544 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2545 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2546 SVOffset, NVT, isVolatile, Alignment);
2547 } else if (StWidth & (StWidth - 1)) {
2548 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002549 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002550 "Unsupported truncstore!");
2551 unsigned RoundWidth = 1 << Log2_32(StWidth);
2552 assert(RoundWidth < StWidth);
2553 unsigned ExtraWidth = StWidth - RoundWidth;
2554 assert(ExtraWidth < RoundWidth);
2555 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2556 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002557 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2558 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Duncan Sands7e857202008-01-22 07:17:34 +00002559 SDOperand Lo, Hi;
2560 unsigned IncrementSize;
2561
2562 if (TLI.isLittleEndian()) {
2563 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2564 // Store the bottom RoundWidth bits.
2565 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2566 SVOffset, RoundVT,
2567 isVolatile, Alignment);
2568
2569 // Store the remaining ExtraWidth bits.
2570 IncrementSize = RoundWidth / 8;
2571 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2572 DAG.getIntPtrConstant(IncrementSize));
2573 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2574 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2575 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2576 SVOffset + IncrementSize, ExtraVT, isVolatile,
2577 MinAlign(Alignment, IncrementSize));
2578 } else {
2579 // Big endian - avoid unaligned stores.
2580 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2581 // Store the top RoundWidth bits.
2582 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2583 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2584 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2585 RoundVT, isVolatile, Alignment);
2586
2587 // Store the remaining ExtraWidth bits.
2588 IncrementSize = RoundWidth / 8;
2589 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2590 DAG.getIntPtrConstant(IncrementSize));
2591 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2592 SVOffset + IncrementSize, ExtraVT, isVolatile,
2593 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002594 }
Duncan Sands7e857202008-01-22 07:17:34 +00002595
2596 // The order of the stores doesn't matter.
2597 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2598 } else {
2599 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2600 Tmp2 != ST->getBasePtr())
2601 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2602 ST->getOffset());
2603
2604 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2605 default: assert(0 && "This action is not supported yet!");
2606 case TargetLowering::Legal:
2607 // If this is an unaligned store and the target doesn't support it,
2608 // expand it.
2609 if (!TLI.allowsUnalignedMemoryAccesses()) {
2610 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002611 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002612 if (ST->getAlignment() < ABIAlignment)
2613 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2614 TLI);
2615 }
2616 break;
2617 case TargetLowering::Custom:
2618 Result = TLI.LowerOperation(Result, DAG);
2619 break;
2620 case Expand:
2621 // TRUNCSTORE:i16 i32 -> STORE i16
2622 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2623 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2624 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2625 isVolatile, Alignment);
2626 break;
2627 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002628 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002629 }
2630 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002631 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002632 case ISD::PCMARKER:
2633 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002634 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002635 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002636 case ISD::STACKSAVE:
2637 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002638 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2639 Tmp1 = Result.getValue(0);
2640 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002641
Chris Lattner140d53c2006-01-13 02:50:02 +00002642 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2643 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002644 case TargetLowering::Legal: break;
2645 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002646 Tmp3 = TLI.LowerOperation(Result, DAG);
2647 if (Tmp3.Val) {
2648 Tmp1 = LegalizeOp(Tmp3);
2649 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002650 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002651 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002652 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002653 // Expand to CopyFromReg if the target set
2654 // StackPointerRegisterToSaveRestore.
2655 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002656 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002657 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002658 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002659 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002660 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2661 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002662 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002663 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002664 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002665
2666 // Since stacksave produce two values, make sure to remember that we
2667 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002668 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2669 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2670 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002671
Chris Lattner140d53c2006-01-13 02:50:02 +00002672 case ISD::STACKRESTORE:
2673 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2674 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002675 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002676
2677 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2678 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002679 case TargetLowering::Legal: break;
2680 case TargetLowering::Custom:
2681 Tmp1 = TLI.LowerOperation(Result, DAG);
2682 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002683 break;
2684 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002685 // Expand to CopyToReg if the target set
2686 // StackPointerRegisterToSaveRestore.
2687 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2688 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2689 } else {
2690 Result = Tmp1;
2691 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002692 break;
2693 }
2694 break;
2695
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002696 case ISD::READCYCLECOUNTER:
2697 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002698 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002699 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2700 Node->getValueType(0))) {
2701 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002702 case TargetLowering::Legal:
2703 Tmp1 = Result.getValue(0);
2704 Tmp2 = Result.getValue(1);
2705 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002706 case TargetLowering::Custom:
2707 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002708 Tmp1 = LegalizeOp(Result.getValue(0));
2709 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002710 break;
2711 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002712
2713 // Since rdcc produce two values, make sure to remember that we legalized
2714 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002715 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2716 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002717 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002718
Chris Lattner2ee743f2005-01-14 22:08:15 +00002719 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002720 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2721 case Expand: assert(0 && "It's impossible to expand bools");
2722 case Legal:
2723 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2724 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002725 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002726 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002727 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002728 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002729 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002730 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerb6c80602006-11-28 01:03:30 +00002731 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002732 break;
2733 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002734 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002735 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002736 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002737
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002738 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002739
Nate Begemanb942a3d2005-08-23 04:29:48 +00002740 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002741 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002742 case TargetLowering::Legal: break;
2743 case TargetLowering::Custom: {
2744 Tmp1 = TLI.LowerOperation(Result, DAG);
2745 if (Tmp1.Val) Result = Tmp1;
2746 break;
2747 }
Nate Begeman9373a812005-08-10 20:51:12 +00002748 case TargetLowering::Expand:
2749 if (Tmp1.getOpcode() == ISD::SETCC) {
2750 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2751 Tmp2, Tmp3,
2752 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2753 } else {
2754 Result = DAG.getSelectCC(Tmp1,
2755 DAG.getConstant(0, Tmp1.getValueType()),
2756 Tmp2, Tmp3, ISD::SETNE);
2757 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002758 break;
2759 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002760 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002761 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2762 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002763 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002764 ExtOp = ISD::BIT_CONVERT;
2765 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002766 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002767 ExtOp = ISD::ANY_EXTEND;
2768 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002769 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002770 ExtOp = ISD::FP_EXTEND;
2771 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002772 }
2773 // Promote each of the values to the new type.
2774 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2775 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2776 // Perform the larger operation, then round down.
2777 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002778 if (TruncOp != ISD::FP_ROUND)
2779 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2780 else
2781 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2782 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002783 break;
2784 }
2785 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002786 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002787 case ISD::SELECT_CC: {
2788 Tmp1 = Node->getOperand(0); // LHS
2789 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002790 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2791 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00002792 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002793
Nate Begeman750ac1b2006-02-01 07:19:44 +00002794 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2795
2796 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2797 // the LHS is a legal SETCC itself. In this case, we need to compare
2798 // the result against zero to select between true and false values.
2799 if (Tmp2.Val == 0) {
2800 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2801 CC = DAG.getCondCode(ISD::SETNE);
2802 }
2803 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2804
2805 // Everything is legal, see if we should expand this op or something.
2806 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2807 default: assert(0 && "This action is not supported yet!");
2808 case TargetLowering::Legal: break;
2809 case TargetLowering::Custom:
2810 Tmp1 = TLI.LowerOperation(Result, DAG);
2811 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002812 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002813 }
2814 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002815 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002816 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002817 Tmp1 = Node->getOperand(0);
2818 Tmp2 = Node->getOperand(1);
2819 Tmp3 = Node->getOperand(2);
2820 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2821
2822 // If we had to Expand the SetCC operands into a SELECT node, then it may
2823 // not always be possible to return a true LHS & RHS. In this case, just
2824 // return the value we legalized, returned in the LHS
2825 if (Tmp2.Val == 0) {
2826 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002827 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002828 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002829
Chris Lattner73e142f2006-01-30 22:43:50 +00002830 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002831 default: assert(0 && "Cannot handle this action for SETCC yet!");
2832 case TargetLowering::Custom:
2833 isCustom = true;
2834 // FALLTHROUGH.
2835 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002836 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002837 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002838 Tmp4 = TLI.LowerOperation(Result, DAG);
2839 if (Tmp4.Val) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002840 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002841 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002842 case TargetLowering::Promote: {
2843 // First step, figure out the appropriate operation to use.
2844 // Allow SETCC to not be supported for all legal data types
2845 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00002846 MVT NewInTy = Node->getOperand(0).getValueType();
2847 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002848
2849 // Scan for the appropriate larger type to use.
2850 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002851 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00002852
Duncan Sands83ec4b62008-06-06 12:08:01 +00002853 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002854 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002855 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002856 "Fell off of the edge of the floating point world");
2857
2858 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002859 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002860 break;
2861 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002862 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00002863 assert(0 && "Cannot promote Legal Integer SETCC yet");
2864 else {
2865 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2866 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2867 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002868 Tmp1 = LegalizeOp(Tmp1);
2869 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002870 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002871 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002872 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002873 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002874 case TargetLowering::Expand:
2875 // Expand a setcc node into a select_cc of the same condition, lhs, and
2876 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00002877 MVT VT = Node->getValueType(0);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002878 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2879 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002880 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002881 break;
2882 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002883 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00002884 case ISD::VSETCC: {
2885 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2886 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
2887 SDOperand CC = Node->getOperand(2);
2888
2889 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
2890
2891 // Everything is legal, see if we should expand this op or something.
2892 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
2893 default: assert(0 && "This action is not supported yet!");
2894 case TargetLowering::Legal: break;
2895 case TargetLowering::Custom:
2896 Tmp1 = TLI.LowerOperation(Result, DAG);
2897 if (Tmp1.Val) Result = Tmp1;
2898 break;
2899 }
2900 break;
2901 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002902
Chris Lattner5b359c62005-04-02 04:00:59 +00002903 case ISD::SHL_PARTS:
2904 case ISD::SRA_PARTS:
2905 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002906 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002907 bool Changed = false;
2908 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2909 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2910 Changed |= Ops.back() != Node->getOperand(i);
2911 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002912 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002913 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002914
Evan Cheng05a2d562006-01-09 18:31:59 +00002915 switch (TLI.getOperationAction(Node->getOpcode(),
2916 Node->getValueType(0))) {
2917 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002918 case TargetLowering::Legal: break;
2919 case TargetLowering::Custom:
2920 Tmp1 = TLI.LowerOperation(Result, DAG);
2921 if (Tmp1.Val) {
2922 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002923 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002924 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002925 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2926 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002927 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002928 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002929 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002930 return RetVal;
2931 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002932 break;
2933 }
2934
Chris Lattner2c8086f2005-04-02 05:00:07 +00002935 // Since these produce multiple values, make sure to remember that we
2936 // legalized all of them.
2937 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2938 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2939 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002940 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002941
2942 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002943 case ISD::ADD:
2944 case ISD::SUB:
2945 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002946 case ISD::MULHS:
2947 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002948 case ISD::UDIV:
2949 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002950 case ISD::AND:
2951 case ISD::OR:
2952 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002953 case ISD::SHL:
2954 case ISD::SRL:
2955 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002956 case ISD::FADD:
2957 case ISD::FSUB:
2958 case ISD::FMUL:
2959 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00002960 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002961 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002962 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2963 case Expand: assert(0 && "Not possible");
2964 case Legal:
2965 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2966 break;
2967 case Promote:
2968 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2969 break;
2970 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002971
2972 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002973
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002974 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002975 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002976 case TargetLowering::Legal: break;
2977 case TargetLowering::Custom:
2978 Tmp1 = TLI.LowerOperation(Result, DAG);
2979 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002980 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002981 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002982 MVT VT = Op.getValueType();
Dan Gohman525178c2007-10-08 18:33:35 +00002983
2984 // See if multiply or divide can be lowered using two-result operations.
2985 SDVTList VTs = DAG.getVTList(VT, VT);
2986 if (Node->getOpcode() == ISD::MUL) {
2987 // We just need the low half of the multiply; try both the signed
2988 // and unsigned forms. If the target supports both SMUL_LOHI and
2989 // UMUL_LOHI, form a preference by checking which forms of plain
2990 // MULH it supports.
2991 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2992 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2993 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2994 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2995 unsigned OpToUse = 0;
2996 if (HasSMUL_LOHI && !HasMULHS) {
2997 OpToUse = ISD::SMUL_LOHI;
2998 } else if (HasUMUL_LOHI && !HasMULHU) {
2999 OpToUse = ISD::UMUL_LOHI;
3000 } else if (HasSMUL_LOHI) {
3001 OpToUse = ISD::SMUL_LOHI;
3002 } else if (HasUMUL_LOHI) {
3003 OpToUse = ISD::UMUL_LOHI;
3004 }
3005 if (OpToUse) {
3006 Result = SDOperand(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0);
3007 break;
3008 }
3009 }
3010 if (Node->getOpcode() == ISD::MULHS &&
3011 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
3012 Result = SDOperand(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
3013 break;
3014 }
3015 if (Node->getOpcode() == ISD::MULHU &&
3016 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
3017 Result = SDOperand(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
3018 break;
3019 }
3020 if (Node->getOpcode() == ISD::SDIV &&
3021 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3022 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0);
3023 break;
3024 }
3025 if (Node->getOpcode() == ISD::UDIV &&
3026 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3027 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0);
3028 break;
3029 }
3030
Dan Gohman82669522007-10-11 23:57:53 +00003031 // Check to see if we have a libcall for this operator.
3032 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3033 bool isSigned = false;
3034 switch (Node->getOpcode()) {
3035 case ISD::UDIV:
3036 case ISD::SDIV:
3037 if (VT == MVT::i32) {
3038 LC = Node->getOpcode() == ISD::UDIV
Evan Cheng56966222007-01-12 02:11:51 +00003039 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003040 isSigned = Node->getOpcode() == ISD::SDIV;
3041 }
3042 break;
3043 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003044 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3045 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003046 break;
3047 default: break;
3048 }
3049 if (LC != RTLIB::UNKNOWN_LIBCALL) {
3050 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003051 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003052 break;
3053 }
3054
Duncan Sands83ec4b62008-06-06 12:08:01 +00003055 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003056 "Cannot expand this binary operator!");
3057 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003058 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003059 break;
3060 }
Evan Chengcc987612006-04-12 21:20:24 +00003061 case TargetLowering::Promote: {
3062 switch (Node->getOpcode()) {
3063 default: assert(0 && "Do not know how to promote this BinOp!");
3064 case ISD::AND:
3065 case ISD::OR:
3066 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003067 MVT OVT = Node->getValueType(0);
3068 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3069 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003070 // Bit convert each of the values to the new type.
3071 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3072 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3073 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3074 // Bit convert the result back the original type.
3075 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3076 break;
3077 }
3078 }
3079 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003080 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003081 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003082
Dan Gohmane14ea862007-10-05 14:17:22 +00003083 case ISD::SMUL_LOHI:
3084 case ISD::UMUL_LOHI:
3085 case ISD::SDIVREM:
3086 case ISD::UDIVREM:
3087 // These nodes will only be produced by target-specific lowering, so
3088 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003089 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003090 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003091
3092 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3093 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3094 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003095 break;
3096
Chris Lattnera09f8482006-03-05 05:09:38 +00003097 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3098 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3099 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3100 case Expand: assert(0 && "Not possible");
3101 case Legal:
3102 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3103 break;
3104 case Promote:
3105 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3106 break;
3107 }
3108
3109 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3110
3111 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3112 default: assert(0 && "Operation not supported");
3113 case TargetLowering::Custom:
3114 Tmp1 = TLI.LowerOperation(Result, DAG);
3115 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003116 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003117 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003118 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003119 // If this target supports fabs/fneg natively and select is cheap,
3120 // do this efficiently.
3121 if (!TLI.isSelectExpensive() &&
3122 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3123 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003124 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003125 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003126 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003127 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003128 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
3129 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003130 SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003131 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3132 // Get the absolute value of the result.
3133 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
3134 // Select between the nabs and abs value based on the sign bit of
3135 // the input.
3136 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3137 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3138 AbsVal),
3139 AbsVal);
3140 Result = LegalizeOp(Result);
3141 break;
3142 }
3143
3144 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003145 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003146 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3147 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3148 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3149 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003150 break;
3151 }
Evan Cheng912095b2007-01-04 21:56:39 +00003152 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003153 break;
3154
Nate Begeman551bf3f2006-02-17 05:43:56 +00003155 case ISD::ADDC:
3156 case ISD::SUBC:
3157 Tmp1 = LegalizeOp(Node->getOperand(0));
3158 Tmp2 = LegalizeOp(Node->getOperand(1));
3159 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3160 // Since this produces two values, make sure to remember that we legalized
3161 // both of them.
3162 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3163 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3164 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003165
Nate Begeman551bf3f2006-02-17 05:43:56 +00003166 case ISD::ADDE:
3167 case ISD::SUBE:
3168 Tmp1 = LegalizeOp(Node->getOperand(0));
3169 Tmp2 = LegalizeOp(Node->getOperand(1));
3170 Tmp3 = LegalizeOp(Node->getOperand(2));
3171 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3172 // Since this produces two values, make sure to remember that we legalized
3173 // both of them.
3174 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3175 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3176 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00003177
Nate Begeman419f8b62005-10-18 00:27:41 +00003178 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003179 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003180 // TODO: handle the case where the Lo and Hi operands are not of legal type
3181 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3182 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3183 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003184 case TargetLowering::Promote:
3185 case TargetLowering::Custom:
3186 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003187 case TargetLowering::Legal:
3188 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3189 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3190 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003191 case TargetLowering::Expand:
3192 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3193 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3194 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003195 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003196 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00003197 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003198 break;
3199 }
3200 break;
3201 }
3202
Nate Begemanc105e192005-04-06 00:23:54 +00003203 case ISD::UREM:
3204 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003205 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003206 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3207 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003208
Nate Begemanc105e192005-04-06 00:23:54 +00003209 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003210 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3211 case TargetLowering::Custom:
3212 isCustom = true;
3213 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003214 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003215 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003216 if (isCustom) {
3217 Tmp1 = TLI.LowerOperation(Result, DAG);
3218 if (Tmp1.Val) Result = Tmp1;
3219 }
Nate Begemanc105e192005-04-06 00:23:54 +00003220 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003221 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003222 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003223 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003224 MVT VT = Node->getValueType(0);
Dan Gohman525178c2007-10-08 18:33:35 +00003225
3226 // See if remainder can be lowered using two-result operations.
3227 SDVTList VTs = DAG.getVTList(VT, VT);
3228 if (Node->getOpcode() == ISD::SREM &&
3229 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3230 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3231 break;
3232 }
3233 if (Node->getOpcode() == ISD::UREM &&
3234 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3235 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3236 break;
3237 }
3238
Duncan Sands83ec4b62008-06-06 12:08:01 +00003239 if (VT.isInteger()) {
Dan Gohman525178c2007-10-08 18:33:35 +00003240 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003241 TargetLowering::Legal) {
3242 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00003243 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003244 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3245 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003246 } else if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003247 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003248 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003249 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003250 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003251 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3252 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003253 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003254 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003255 }
Dan Gohman0d974262007-11-06 22:11:54 +00003256 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003257 assert(VT.isFloatingPoint() &&
Dan Gohman0d974262007-11-06 22:11:54 +00003258 "remainder op must have integer or floating-point type");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003259 if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003260 Result = LegalizeOp(UnrollVectorOp(Op));
3261 } else {
3262 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003263 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3264 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman80176312007-11-05 23:35:22 +00003265 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003266 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003267 }
Nate Begemanc105e192005-04-06 00:23:54 +00003268 }
3269 break;
3270 }
Dan Gohman525178c2007-10-08 18:33:35 +00003271 }
Nate Begemanc105e192005-04-06 00:23:54 +00003272 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003273 case ISD::VAARG: {
3274 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3275 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3276
Duncan Sands83ec4b62008-06-06 12:08:01 +00003277 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003278 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3279 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003280 case TargetLowering::Custom:
3281 isCustom = true;
3282 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003283 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003284 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3285 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003286 Tmp1 = Result.getValue(1);
3287
3288 if (isCustom) {
3289 Tmp2 = TLI.LowerOperation(Result, DAG);
3290 if (Tmp2.Val) {
3291 Result = LegalizeOp(Tmp2);
3292 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3293 }
3294 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003295 break;
3296 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003297 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
3298 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003299 // Increment the pointer, VAList, to the next vaarg
3300 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003301 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begemanacc398c2006-01-25 18:21:52 +00003302 TLI.getPointerTy()));
3303 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00003304 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003305 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003306 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003307 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003308 Result = LegalizeOp(Result);
3309 break;
3310 }
3311 }
3312 // Since VAARG produces two values, make sure to remember that we
3313 // legalized both of them.
3314 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00003315 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3316 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003317 }
3318
3319 case ISD::VACOPY:
3320 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3321 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3322 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3323
3324 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3325 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003326 case TargetLowering::Custom:
3327 isCustom = true;
3328 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003329 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003330 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3331 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003332 if (isCustom) {
3333 Tmp1 = TLI.LowerOperation(Result, DAG);
3334 if (Tmp1.Val) Result = Tmp1;
3335 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003336 break;
3337 case TargetLowering::Expand:
3338 // This defaults to loading a pointer from the input and storing it to the
3339 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003340 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3341 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dan Gohman499c1bd2008-04-17 02:09:26 +00003342 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3343 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003344 break;
3345 }
3346 break;
3347
3348 case ISD::VAEND:
3349 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3350 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3351
3352 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3353 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003354 case TargetLowering::Custom:
3355 isCustom = true;
3356 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003357 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003358 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003359 if (isCustom) {
3360 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
3361 if (Tmp1.Val) Result = Tmp1;
3362 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003363 break;
3364 case TargetLowering::Expand:
3365 Result = Tmp1; // Default to a no-op, return the chain
3366 break;
3367 }
3368 break;
3369
3370 case ISD::VASTART:
3371 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3372 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3373
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003374 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3375
Nate Begemanacc398c2006-01-25 18:21:52 +00003376 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3377 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003378 case TargetLowering::Legal: break;
3379 case TargetLowering::Custom:
3380 Tmp1 = TLI.LowerOperation(Result, DAG);
3381 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003382 break;
3383 }
3384 break;
3385
Nate Begeman35ef9132006-01-11 21:21:00 +00003386 case ISD::ROTL:
3387 case ISD::ROTR:
3388 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3389 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003390 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003391 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3392 default:
3393 assert(0 && "ROTL/ROTR legalize operation not supported");
3394 break;
3395 case TargetLowering::Legal:
3396 break;
3397 case TargetLowering::Custom:
3398 Tmp1 = TLI.LowerOperation(Result, DAG);
3399 if (Tmp1.Val) Result = Tmp1;
3400 break;
3401 case TargetLowering::Promote:
3402 assert(0 && "Do not know how to promote ROTL/ROTR");
3403 break;
3404 case TargetLowering::Expand:
3405 assert(0 && "Do not know how to expand ROTL/ROTR");
3406 break;
3407 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003408 break;
3409
Nate Begemand88fc032006-01-14 03:14:10 +00003410 case ISD::BSWAP:
3411 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3412 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003413 case TargetLowering::Custom:
3414 assert(0 && "Cannot custom legalize this yet!");
3415 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003416 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003417 break;
3418 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003419 MVT OVT = Tmp1.getValueType();
3420 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3421 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003422
Chris Lattner456a93a2006-01-28 07:39:30 +00003423 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3424 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3425 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3426 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3427 break;
3428 }
3429 case TargetLowering::Expand:
3430 Result = ExpandBSWAP(Tmp1);
3431 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003432 }
3433 break;
3434
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003435 case ISD::CTPOP:
3436 case ISD::CTTZ:
3437 case ISD::CTLZ:
3438 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3439 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003440 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003441 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003442 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003443 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003444 TargetLowering::Custom) {
3445 Tmp1 = TLI.LowerOperation(Result, DAG);
3446 if (Tmp1.Val) {
3447 Result = Tmp1;
3448 }
Scott Michel910b66d2007-07-30 21:00:31 +00003449 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003450 break;
3451 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003452 MVT OVT = Tmp1.getValueType();
3453 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003454
3455 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003456 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3457 // Perform the larger operation, then subtract if needed.
3458 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003459 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003460 case ISD::CTPOP:
3461 Result = Tmp1;
3462 break;
3463 case ISD::CTTZ:
3464 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00003465 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003466 DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003467 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003468 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003469 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003470 break;
3471 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003472 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003473 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003474 DAG.getConstant(NVT.getSizeInBits() -
3475 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003476 break;
3477 }
3478 break;
3479 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003480 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003481 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003482 break;
3483 }
3484 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003485
Chris Lattner2c8086f2005-04-02 05:00:07 +00003486 // Unary operators
3487 case ISD::FABS:
3488 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003489 case ISD::FSQRT:
3490 case ISD::FSIN:
3491 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003492 Tmp1 = LegalizeOp(Node->getOperand(0));
3493 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003494 case TargetLowering::Promote:
3495 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003496 isCustom = true;
3497 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003498 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003499 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003500 if (isCustom) {
3501 Tmp1 = TLI.LowerOperation(Result, DAG);
3502 if (Tmp1.Val) Result = Tmp1;
3503 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003504 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003505 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003506 switch (Node->getOpcode()) {
3507 default: assert(0 && "Unreachable!");
3508 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003509 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3510 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003511 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003512 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003513 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003514 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003515 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003516 Tmp2 = DAG.getConstantFP(0.0, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003517 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00003518 ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003519 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3520 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003521 break;
3522 }
3523 case ISD::FSQRT:
3524 case ISD::FSIN:
3525 case ISD::FCOS: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003526 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003527
3528 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003529 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003530 Result = LegalizeOp(UnrollVectorOp(Op));
3531 break;
3532 }
3533
Evan Cheng56966222007-01-12 02:11:51 +00003534 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003535 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003536 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003537 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3538 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003539 break;
3540 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003541 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3542 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003543 break;
3544 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003545 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3546 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003547 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003548 default: assert(0 && "Unreachable!");
3549 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00003550 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003551 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003552 break;
3553 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003554 }
3555 break;
3556 }
3557 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003558 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003559 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003560
3561 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003562 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003563 Result = LegalizeOp(UnrollVectorOp(Op));
3564 break;
3565 }
3566
3567 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003568 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3569 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003570 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003571 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003572 break;
3573 }
Chris Lattner35481892005-12-23 00:16:34 +00003574 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003575 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003576 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3577 Node->getValueType(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003578 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003579 // The input has to be a vector type, we have to either scalarize it, pack
3580 // it, or convert it based on whether the input vector type is legal.
3581 SDNode *InVal = Node->getOperand(0).Val;
Dale Johannesene5269622007-10-20 00:07:52 +00003582 int InIx = Node->getOperand(0).ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003583 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3584 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohman7f321562007-06-25 16:23:39 +00003585
3586 // Figure out if there is a simple type corresponding to this Vector
3587 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003588 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00003589 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003590 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003591 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3592 LegalizeOp(Node->getOperand(0)));
3593 break;
3594 } else if (NumElems == 1) {
3595 // Turn this into a bit convert of the scalar input.
3596 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3597 ScalarizeVectorOp(Node->getOperand(0)));
3598 break;
3599 } else {
3600 // FIXME: UNIMP! Store then reload
3601 assert(0 && "Cast from unsupported vector type not implemented yet!");
3602 }
Chris Lattner67993f72006-01-23 07:30:46 +00003603 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003604 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3605 Node->getOperand(0).getValueType())) {
3606 default: assert(0 && "Unknown operation action!");
3607 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003608 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3609 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003610 break;
3611 case TargetLowering::Legal:
3612 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003613 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003614 break;
3615 }
3616 }
3617 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003618
Chris Lattner2c8086f2005-04-02 05:00:07 +00003619 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003620 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003621 case ISD::UINT_TO_FP: {
3622 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003623 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3624 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003625 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003626 Node->getOperand(0).getValueType())) {
3627 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003628 case TargetLowering::Custom:
3629 isCustom = true;
3630 // FALLTHROUGH
3631 case TargetLowering::Legal:
3632 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003633 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003634 if (isCustom) {
3635 Tmp1 = TLI.LowerOperation(Result, DAG);
3636 if (Tmp1.Val) Result = Tmp1;
3637 }
3638 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003639 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00003640 Result = ExpandLegalINT_TO_FP(isSigned,
3641 LegalizeOp(Node->getOperand(0)),
3642 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003643 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003644 case TargetLowering::Promote:
3645 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
3646 Node->getValueType(0),
3647 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003648 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00003649 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003650 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00003651 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003652 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
3653 Node->getValueType(0), Node->getOperand(0));
3654 break;
3655 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003656 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003657 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003658 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
3659 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003660 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003661 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
3662 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003663 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003664 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3665 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003666 break;
3667 }
3668 break;
3669 }
3670 case ISD::TRUNCATE:
3671 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3672 case Legal:
3673 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003674 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003675 break;
3676 case Expand:
3677 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3678
3679 // Since the result is legal, we should just be able to truncate the low
3680 // part of the source.
3681 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3682 break;
3683 case Promote:
3684 Result = PromoteOp(Node->getOperand(0));
3685 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3686 break;
3687 }
3688 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003689
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003690 case ISD::FP_TO_SINT:
3691 case ISD::FP_TO_UINT:
3692 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3693 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003694 Tmp1 = LegalizeOp(Node->getOperand(0));
3695
Chris Lattner1618beb2005-07-29 00:11:56 +00003696 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3697 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003698 case TargetLowering::Custom:
3699 isCustom = true;
3700 // FALLTHROUGH
3701 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003702 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003703 if (isCustom) {
3704 Tmp1 = TLI.LowerOperation(Result, DAG);
3705 if (Tmp1.Val) Result = Tmp1;
3706 }
3707 break;
3708 case TargetLowering::Promote:
3709 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3710 Node->getOpcode() == ISD::FP_TO_SINT);
3711 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003712 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003713 if (Node->getOpcode() == ISD::FP_TO_UINT) {
3714 SDOperand True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003715 MVT VT = Node->getOperand(0).getValueType();
3716 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00003717 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00003718 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
3719 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003720 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00003721 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003722 Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
Nate Begemand2558e32005-08-14 01:20:53 +00003723 Node->getOperand(0), Tmp2, ISD::SETLT);
3724 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3725 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003726 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003727 Tmp2));
3728 False = DAG.getNode(ISD::XOR, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003729 DAG.getConstant(x, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003730 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3731 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003732 } else {
3733 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3734 }
3735 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003736 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003737 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003738 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003739 MVT VT = Op.getValueType();
3740 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003741 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003742 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003743 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3744 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3745 Node->getOperand(0), DAG.getValueType(MVT::f64));
3746 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3747 DAG.getIntPtrConstant(1));
3748 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3749 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003750 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3751 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3752 Tmp2 = DAG.getConstantFP(apf, OVT);
3753 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3754 // FIXME: generated code sucks.
3755 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3756 DAG.getNode(ISD::ADD, MVT::i32,
3757 DAG.getNode(ISD::FP_TO_SINT, VT,
3758 DAG.getNode(ISD::FSUB, OVT,
3759 Node->getOperand(0), Tmp2)),
3760 DAG.getConstant(0x80000000, MVT::i32)),
3761 DAG.getNode(ISD::FP_TO_SINT, VT,
3762 Node->getOperand(0)),
3763 DAG.getCondCode(ISD::SETGE));
3764 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003765 break;
3766 }
Dan Gohmana2e94852008-03-10 23:03:31 +00003767 // Convert f32 / f64 to i32 / i64 / i128.
Evan Cheng56966222007-01-12 02:11:51 +00003768 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng6af00d52006-12-13 01:57:55 +00003769 switch (Node->getOpcode()) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003770 case ISD::FP_TO_SINT: {
Dan Gohmana2e94852008-03-10 23:03:31 +00003771 if (VT == MVT::i32) {
3772 if (OVT == MVT::f32)
3773 LC = RTLIB::FPTOSINT_F32_I32;
3774 else if (OVT == MVT::f64)
3775 LC = RTLIB::FPTOSINT_F64_I32;
3776 else
3777 assert(0 && "Unexpected i32-to-fp conversion!");
3778 } else if (VT == MVT::i64) {
3779 if (OVT == MVT::f32)
3780 LC = RTLIB::FPTOSINT_F32_I64;
3781 else if (OVT == MVT::f64)
3782 LC = RTLIB::FPTOSINT_F64_I64;
3783 else if (OVT == MVT::f80)
3784 LC = RTLIB::FPTOSINT_F80_I64;
3785 else if (OVT == MVT::ppcf128)
3786 LC = RTLIB::FPTOSINT_PPCF128_I64;
3787 else
3788 assert(0 && "Unexpected i64-to-fp conversion!");
3789 } else if (VT == MVT::i128) {
3790 if (OVT == MVT::f32)
3791 LC = RTLIB::FPTOSINT_F32_I128;
3792 else if (OVT == MVT::f64)
3793 LC = RTLIB::FPTOSINT_F64_I128;
3794 else if (OVT == MVT::f80)
3795 LC = RTLIB::FPTOSINT_F80_I128;
3796 else if (OVT == MVT::ppcf128)
3797 LC = RTLIB::FPTOSINT_PPCF128_I128;
3798 else
3799 assert(0 && "Unexpected i128-to-fp conversion!");
3800 } else {
3801 assert(0 && "Unexpectd int-to-fp conversion!");
Dale Johannesen73328d12007-09-19 23:55:34 +00003802 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003803 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003804 }
3805 case ISD::FP_TO_UINT: {
Dan Gohmana2e94852008-03-10 23:03:31 +00003806 if (VT == MVT::i32) {
3807 if (OVT == MVT::f32)
3808 LC = RTLIB::FPTOUINT_F32_I32;
3809 else if (OVT == MVT::f64)
3810 LC = RTLIB::FPTOUINT_F64_I32;
3811 else if (OVT == MVT::f80)
3812 LC = RTLIB::FPTOUINT_F80_I32;
3813 else
3814 assert(0 && "Unexpected i32-to-fp conversion!");
3815 } else if (VT == MVT::i64) {
3816 if (OVT == MVT::f32)
3817 LC = RTLIB::FPTOUINT_F32_I64;
3818 else if (OVT == MVT::f64)
3819 LC = RTLIB::FPTOUINT_F64_I64;
3820 else if (OVT == MVT::f80)
3821 LC = RTLIB::FPTOUINT_F80_I64;
3822 else if (OVT == MVT::ppcf128)
3823 LC = RTLIB::FPTOUINT_PPCF128_I64;
3824 else
3825 assert(0 && "Unexpected i64-to-fp conversion!");
3826 } else if (VT == MVT::i128) {
3827 if (OVT == MVT::f32)
3828 LC = RTLIB::FPTOUINT_F32_I128;
3829 else if (OVT == MVT::f64)
3830 LC = RTLIB::FPTOUINT_F64_I128;
3831 else if (OVT == MVT::f80)
3832 LC = RTLIB::FPTOUINT_F80_I128;
3833 else if (OVT == MVT::ppcf128)
3834 LC = RTLIB::FPTOUINT_PPCF128_I128;
3835 else
3836 assert(0 && "Unexpected i128-to-fp conversion!");
3837 } else {
3838 assert(0 && "Unexpectd int-to-fp conversion!");
Dale Johannesen73328d12007-09-19 23:55:34 +00003839 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003840 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003841 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003842 default: assert(0 && "Unreachable!");
3843 }
3844 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003845 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003846 break;
3847 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003848 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003849 Tmp1 = PromoteOp(Node->getOperand(0));
3850 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3851 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003852 break;
3853 }
3854 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003855
Chris Lattnerf2670a82008-01-16 06:57:07 +00003856 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003857 MVT DstVT = Op.getValueType();
3858 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003859 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3860 // The only other way we can lower this is to turn it into a STORE,
3861 // LOAD pair, targetting a temporary location (a stack slot).
3862 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3863 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00003864 }
3865 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3866 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3867 case Legal:
3868 Tmp1 = LegalizeOp(Node->getOperand(0));
3869 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3870 break;
3871 case Promote:
3872 Tmp1 = PromoteOp(Node->getOperand(0));
3873 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3874 break;
3875 }
3876 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003877 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003878 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003879 MVT DstVT = Op.getValueType();
3880 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003881 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3882 if (SrcVT == MVT::ppcf128) {
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003883 SDOperand Lo;
3884 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003885 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003886 if (DstVT!=MVT::f64)
3887 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00003888 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00003889 }
Chris Lattner0bd48932008-01-17 07:00:52 +00003890 // The only other way we can lower this is to turn it into a STORE,
3891 // LOAD pair, targetting a temporary location (a stack slot).
3892 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3893 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00003894 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00003895 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3896 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3897 case Legal:
3898 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003899 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003900 break;
3901 case Promote:
3902 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003903 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3904 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003905 break;
3906 }
3907 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003908 }
Chris Lattner13c78e22005-09-02 00:18:10 +00003909 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003910 case ISD::ZERO_EXTEND:
3911 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003912 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003913 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003914 case Legal:
3915 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00003916 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00003917 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3918 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00003919 Tmp1 = TLI.LowerOperation(Result, DAG);
3920 if (Tmp1.Val) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00003921 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003922 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003923 case Promote:
3924 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003925 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003926 Tmp1 = PromoteOp(Node->getOperand(0));
3927 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003928 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003929 case ISD::ZERO_EXTEND:
3930 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003931 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003932 Result = DAG.getZeroExtendInReg(Result,
3933 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003934 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003935 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003936 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003937 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003938 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003939 Result,
3940 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003941 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003942 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003943 }
3944 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003945 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003946 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003947 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003948 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003949
3950 // If this operation is not supported, convert it to a shl/shr or load/store
3951 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003952 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3953 default: assert(0 && "This action not supported for this op yet!");
3954 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003955 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003956 break;
3957 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003958 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003959 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003960 // NOTE: we could fall back on load/store here too for targets without
3961 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003962 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
3963 ExtraVT.getSizeInBits();
Chris Lattner27ff1122005-01-22 00:31:52 +00003964 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003965 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3966 Node->getOperand(0), ShiftCst);
3967 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3968 Result, ShiftCst);
3969 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003970 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003971 // EXTLOAD pair, targetting a temporary location (a stack slot).
3972
3973 // NOTE: there is a choice here between constantly creating new stack
3974 // slots and always reusing the same one. We currently always create
3975 // new ones, as reuse may inhibit scheduling.
Chris Lattnera66bb392008-01-16 07:51:34 +00003976 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3977 Node->getValueType(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00003978 } else {
3979 assert(0 && "Unknown op");
3980 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003981 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003982 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003983 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003984 }
Duncan Sands36397f52007-07-27 12:58:54 +00003985 case ISD::TRAMPOLINE: {
3986 SDOperand Ops[6];
3987 for (unsigned i = 0; i != 6; ++i)
3988 Ops[i] = LegalizeOp(Node->getOperand(i));
3989 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3990 // The only option for this node is to custom lower it.
3991 Result = TLI.LowerOperation(Result, DAG);
3992 assert(Result.Val && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00003993
3994 // Since trampoline produces two values, make sure to remember that we
3995 // legalized both of them.
3996 Tmp1 = LegalizeOp(Result.getValue(1));
3997 Result = LegalizeOp(Result);
3998 AddLegalizedOperand(SDOperand(Node, 0), Result);
3999 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
4000 return Op.ResNo ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00004001 }
Dan Gohman9c78a392008-05-14 00:43:10 +00004002 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004003 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004004 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4005 default: assert(0 && "This action not supported for this op yet!");
4006 case TargetLowering::Custom:
4007 Result = TLI.LowerOperation(Op, DAG);
4008 if (Result.Val) break;
4009 // Fall Thru
4010 case TargetLowering::Legal:
4011 // If this operation is not supported, lower it to constant 1
4012 Result = DAG.getConstant(1, VT);
4013 break;
4014 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00004015 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004016 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004017 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004018 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004019 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4020 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00004021 case TargetLowering::Legal:
4022 Tmp1 = LegalizeOp(Node->getOperand(0));
4023 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4024 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004025 case TargetLowering::Custom:
4026 Result = TLI.LowerOperation(Op, DAG);
4027 if (Result.Val) break;
4028 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00004029 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004030 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00004031 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004032 TargetLowering::ArgListTy Args;
4033 std::pair<SDOperand,SDOperand> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00004034 TLI.LowerCallTo(Tmp1, Type::VoidTy,
4035 false, false, false, CallingConv::C, false,
Chris Lattner034f12e2008-01-15 22:09:33 +00004036 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
4037 Args, DAG);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004038 Result = CallResult.second;
4039 break;
4040 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004041 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004042 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00004043 }
Chris Lattner456a93a2006-01-28 07:39:30 +00004044
Chris Lattner4ddd2832006-04-08 04:13:17 +00004045 assert(Result.getValueType() == Op.getValueType() &&
4046 "Bad legalization!");
4047
Chris Lattner456a93a2006-01-28 07:39:30 +00004048 // Make sure that the generated code is itself legal.
4049 if (Result != Op)
4050 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004051
Chris Lattner45982da2005-05-12 16:53:42 +00004052 // Note that LegalizeOp may be reentered even from single-use nodes, which
4053 // means that we always must cache transformed nodes.
4054 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004055 return Result;
4056}
4057
Chris Lattner8b6fa222005-01-15 22:16:26 +00004058/// PromoteOp - Given an operation that produces a value in an invalid type,
4059/// promote it to compute the value into a larger type. The produced value will
4060/// have the correct bits for the low portion of the register, but no guarantee
4061/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00004062SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004063 MVT VT = Op.getValueType();
4064 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004065 assert(getTypeAction(VT) == Promote &&
4066 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004067 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00004068 "Cannot promote to smaller type!");
4069
Chris Lattner03c85462005-01-15 05:21:40 +00004070 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00004071 SDOperand Result;
4072 SDNode *Node = Op.Val;
4073
Roman Levenstein9cac5252008-04-16 16:15:27 +00004074 DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004075 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004076
Chris Lattner03c85462005-01-15 05:21:40 +00004077 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004078 case ISD::CopyFromReg:
4079 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004080 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004081#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004082 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004083#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004084 assert(0 && "Do not know how to promote this operator!");
4085 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004086 case ISD::UNDEF:
4087 Result = DAG.getNode(ISD::UNDEF, NVT);
4088 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004089 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004090 if (VT != MVT::i1)
4091 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4092 else
4093 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004094 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4095 break;
4096 case ISD::ConstantFP:
4097 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4098 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4099 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004100
Chris Lattner82fbfb62005-01-18 02:59:52 +00004101 case ISD::SETCC:
Scott Michel5b8f82e2008-03-10 15:42:14 +00004102 assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
Nate Begeman5922f562008-03-14 00:53:31 +00004103 && "SetCC type is not legal??");
Scott Michel5b8f82e2008-03-10 15:42:14 +00004104 Result = DAG.getNode(ISD::SETCC,
Nate Begeman5922f562008-03-14 00:53:31 +00004105 TLI.getSetCCResultType(Node->getOperand(0)),
4106 Node->getOperand(0), Node->getOperand(1),
4107 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004108 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00004109
Chris Lattner03c85462005-01-15 05:21:40 +00004110 case ISD::TRUNCATE:
4111 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4112 case Legal:
4113 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004114 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004115 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004116 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Chris Lattner03c85462005-01-15 05:21:40 +00004117 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4118 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004119 case Promote:
4120 // The truncation is not required, because we don't guarantee anything
4121 // about high bits anyway.
4122 Result = PromoteOp(Node->getOperand(0));
4123 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004124 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004125 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4126 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00004127 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004128 }
4129 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004130 case ISD::SIGN_EXTEND:
4131 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004132 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004133 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4134 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4135 case Legal:
4136 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00004137 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004138 break;
4139 case Promote:
4140 // Promote the reg if it's smaller.
4141 Result = PromoteOp(Node->getOperand(0));
4142 // The high bits are not guaranteed to be anything. Insert an extend.
4143 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00004144 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004145 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004146 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00004147 Result = DAG.getZeroExtendInReg(Result,
4148 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004149 break;
4150 }
4151 break;
Chris Lattner35481892005-12-23 00:16:34 +00004152 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004153 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4154 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00004155 Result = PromoteOp(Result);
4156 break;
4157
Chris Lattner8b6fa222005-01-15 22:16:26 +00004158 case ISD::FP_EXTEND:
4159 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4160 case ISD::FP_ROUND:
4161 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4162 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4163 case Promote: assert(0 && "Unreachable with 2 FP types!");
4164 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004165 if (Node->getConstantOperandVal(1) == 0) {
4166 // Input is legal? Do an FP_ROUND_INREG.
4167 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4168 DAG.getValueType(VT));
4169 } else {
4170 // Just remove the truncate, it isn't affecting the value.
4171 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4172 Node->getOperand(1));
4173 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004174 break;
4175 }
4176 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004177 case ISD::SINT_TO_FP:
4178 case ISD::UINT_TO_FP:
4179 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4180 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004181 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00004182 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004183 break;
4184
4185 case Promote:
4186 Result = PromoteOp(Node->getOperand(0));
4187 if (Node->getOpcode() == ISD::SINT_TO_FP)
4188 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004189 Result,
4190 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004191 else
Chris Lattner23993562005-04-13 02:38:47 +00004192 Result = DAG.getZeroExtendInReg(Result,
4193 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004194 // No extra round required here.
4195 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004196 break;
4197 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004198 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4199 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00004200 // Round if we cannot tolerate excess precision.
4201 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004202 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4203 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004204 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004205 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004206 break;
4207
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004208 case ISD::SIGN_EXTEND_INREG:
4209 Result = PromoteOp(Node->getOperand(0));
4210 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4211 Node->getOperand(1));
4212 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004213 case ISD::FP_TO_SINT:
4214 case ISD::FP_TO_UINT:
4215 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4216 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004217 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004218 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004219 break;
4220 case Promote:
4221 // The input result is prerounded, so we don't have to do anything
4222 // special.
4223 Tmp1 = PromoteOp(Node->getOperand(0));
4224 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004225 }
Nate Begemand2558e32005-08-14 01:20:53 +00004226 // If we're promoting a UINT to a larger size, check to see if the new node
4227 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4228 // we can use that instead. This allows us to generate better code for
4229 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4230 // legal, such as PowerPC.
4231 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004232 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004233 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4234 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00004235 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4236 } else {
4237 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4238 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004239 break;
4240
Chris Lattner2c8086f2005-04-02 05:00:07 +00004241 case ISD::FABS:
4242 case ISD::FNEG:
4243 Tmp1 = PromoteOp(Node->getOperand(0));
4244 assert(Tmp1.getValueType() == NVT);
4245 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4246 // NOTE: we do not have to do any extra rounding here for
4247 // NoExcessFPPrecision, because we know the input will have the appropriate
4248 // precision, and these operations don't modify precision at all.
4249 break;
4250
Chris Lattnerda6ba872005-04-28 21:44:33 +00004251 case ISD::FSQRT:
4252 case ISD::FSIN:
4253 case ISD::FCOS:
4254 Tmp1 = PromoteOp(Node->getOperand(0));
4255 assert(Tmp1.getValueType() == NVT);
4256 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004257 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004258 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4259 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004260 break;
4261
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004262 case ISD::FPOWI: {
4263 // Promote f32 powi to f64 powi. Note that this could insert a libcall
4264 // directly as well, which may be better.
4265 Tmp1 = PromoteOp(Node->getOperand(0));
4266 assert(Tmp1.getValueType() == NVT);
4267 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
4268 if (NoExcessFPPrecision)
4269 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4270 DAG.getValueType(VT));
4271 break;
4272 }
4273
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004274 case ISD::ATOMIC_LCS: {
4275 Tmp2 = PromoteOp(Node->getOperand(2));
4276 Tmp3 = PromoteOp(Node->getOperand(3));
4277 Result = DAG.getAtomic(Node->getOpcode(), Node->getOperand(0),
4278 Node->getOperand(1), Tmp2, Tmp3,
4279 cast<AtomicSDNode>(Node)->getVT());
4280 // Remember that we legalized the chain.
4281 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4282 break;
4283 }
4284 case ISD::ATOMIC_LAS:
Mon P Wang63307c32008-05-05 19:05:59 +00004285 case ISD::ATOMIC_LSS:
4286 case ISD::ATOMIC_LOAD_AND:
4287 case ISD::ATOMIC_LOAD_OR:
4288 case ISD::ATOMIC_LOAD_XOR:
Andrew Lenharth507a58a2008-06-14 05:48:15 +00004289 case ISD::ATOMIC_LOAD_NAND:
Mon P Wang63307c32008-05-05 19:05:59 +00004290 case ISD::ATOMIC_LOAD_MIN:
4291 case ISD::ATOMIC_LOAD_MAX:
4292 case ISD::ATOMIC_LOAD_UMIN:
4293 case ISD::ATOMIC_LOAD_UMAX:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004294 case ISD::ATOMIC_SWAP: {
4295 Tmp2 = PromoteOp(Node->getOperand(2));
4296 Result = DAG.getAtomic(Node->getOpcode(), Node->getOperand(0),
4297 Node->getOperand(1), Tmp2,
4298 cast<AtomicSDNode>(Node)->getVT());
4299 // Remember that we legalized the chain.
4300 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4301 break;
4302 }
4303
Chris Lattner03c85462005-01-15 05:21:40 +00004304 case ISD::AND:
4305 case ISD::OR:
4306 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004307 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004308 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004309 case ISD::MUL:
4310 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004311 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004312 // that too is okay if they are integer operations.
4313 Tmp1 = PromoteOp(Node->getOperand(0));
4314 Tmp2 = PromoteOp(Node->getOperand(1));
4315 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4316 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004317 break;
4318 case ISD::FADD:
4319 case ISD::FSUB:
4320 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004321 Tmp1 = PromoteOp(Node->getOperand(0));
4322 Tmp2 = PromoteOp(Node->getOperand(1));
4323 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4324 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4325
4326 // Floating point operations will give excess precision that we may not be
4327 // able to tolerate. If we DO allow excess precision, just leave it,
4328 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004329 // FIXME: Why would we need to round FP ops more than integer ones?
4330 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004331 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004332 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4333 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004334 break;
4335
Chris Lattner8b6fa222005-01-15 22:16:26 +00004336 case ISD::SDIV:
4337 case ISD::SREM:
4338 // These operators require that their input be sign extended.
4339 Tmp1 = PromoteOp(Node->getOperand(0));
4340 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004341 if (NVT.isInteger()) {
Chris Lattner15e4b012005-07-10 00:07:11 +00004342 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4343 DAG.getValueType(VT));
4344 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4345 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004346 }
4347 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4348
4349 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004350 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004351 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4352 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004353 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004354 case ISD::FDIV:
4355 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004356 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004357 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004358 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004359 case Expand: assert(0 && "not implemented");
4360 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4361 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004362 }
4363 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004364 case Expand: assert(0 && "not implemented");
4365 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4366 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004367 }
Chris Lattner01b3d732005-09-28 22:28:18 +00004368 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4369
4370 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004371 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00004372 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4373 DAG.getValueType(VT));
4374 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004375
4376 case ISD::UDIV:
4377 case ISD::UREM:
4378 // These operators require that their input be zero extended.
4379 Tmp1 = PromoteOp(Node->getOperand(0));
4380 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004381 assert(NVT.isInteger() && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00004382 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4383 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004384 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4385 break;
4386
4387 case ISD::SHL:
4388 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00004389 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004390 break;
4391 case ISD::SRA:
4392 // The input value must be properly sign extended.
4393 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00004394 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4395 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00004396 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004397 break;
4398 case ISD::SRL:
4399 // The input value must be properly zero extended.
4400 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00004401 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004402 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004403 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004404
4405 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004406 Tmp1 = Node->getOperand(0); // Get the chain.
4407 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004408 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4409 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
4410 Result = TLI.CustomPromoteOperation(Tmp3, DAG);
4411 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004412 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
4413 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004414 // Increment the pointer, VAList, to the next vaarg
4415 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004416 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004417 TLI.getPointerTy()));
4418 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00004419 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004420 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004421 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004422 }
4423 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004424 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004425 break;
4426
Evan Cheng466685d2006-10-09 20:57:25 +00004427 case ISD::LOAD: {
4428 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004429 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4430 ? ISD::EXTLOAD : LD->getExtensionType();
4431 Result = DAG.getExtLoad(ExtType, NVT,
4432 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004433 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004434 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004435 LD->isVolatile(),
4436 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004437 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004438 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004439 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004440 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004441 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004442 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4443 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004444
Duncan Sands83ec4b62008-06-06 12:08:01 +00004445 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004446 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004447 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4448 // Ensure that the resulting node is at least the same size as the operands'
4449 // value types, because we cannot assume that TLI.getSetCCValueType() is
4450 // constant.
4451 Result = DAG.getNode(ISD::SELECT, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004452 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004453 }
Nate Begeman9373a812005-08-10 20:51:12 +00004454 case ISD::SELECT_CC:
4455 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4456 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4457 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004458 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004459 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004460 case ISD::BSWAP:
4461 Tmp1 = Node->getOperand(0);
4462 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4463 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4464 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004465 DAG.getConstant(NVT.getSizeInBits() -
4466 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004467 TLI.getShiftAmountTy()));
4468 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004469 case ISD::CTPOP:
4470 case ISD::CTTZ:
4471 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004472 // Zero extend the argument
4473 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004474 // Perform the larger operation, then subtract if needed.
4475 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004476 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004477 case ISD::CTPOP:
4478 Result = Tmp1;
4479 break;
4480 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004481 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004482 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004483 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004484 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004485 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004486 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004487 break;
4488 case ISD::CTLZ:
4489 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004490 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004491 DAG.getConstant(NVT.getSizeInBits() -
4492 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004493 break;
4494 }
4495 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004496 case ISD::EXTRACT_SUBVECTOR:
4497 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004498 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004499 case ISD::EXTRACT_VECTOR_ELT:
4500 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4501 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004502 }
4503
4504 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004505
4506 // Make sure the result is itself legal.
4507 Result = LegalizeOp(Result);
4508
4509 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004510 AddPromotedOperand(Op, Result);
4511 return Result;
4512}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004513
Dan Gohman7f321562007-06-25 16:23:39 +00004514/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4515/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4516/// based on the vector type. The return type of this matches the element type
4517/// of the vector, which may not be legal for the target.
4518SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004519 // We know that operand #0 is the Vec vector. If the index is a constant
4520 // or if the invec is a supported hardware type, we can use it. Otherwise,
4521 // lower to a store then an indexed load.
4522 SDOperand Vec = Op.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004523 SDOperand Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00004524
Duncan Sands83ec4b62008-06-06 12:08:01 +00004525 MVT TVT = Vec.getValueType();
4526 unsigned NumElems = TVT.getVectorNumElements();
Chris Lattner15972212006-03-31 17:55:51 +00004527
Dan Gohman7f321562007-06-25 16:23:39 +00004528 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4529 default: assert(0 && "This action is not supported yet!");
4530 case TargetLowering::Custom: {
4531 Vec = LegalizeOp(Vec);
4532 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4533 SDOperand Tmp3 = TLI.LowerOperation(Op, DAG);
4534 if (Tmp3.Val)
4535 return Tmp3;
4536 break;
4537 }
4538 case TargetLowering::Legal:
4539 if (isTypeLegal(TVT)) {
4540 Vec = LegalizeOp(Vec);
4541 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004542 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004543 }
4544 break;
4545 case TargetLowering::Expand:
4546 break;
4547 }
4548
4549 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004550 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004551 Op = ScalarizeVectorOp(Vec);
4552 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00004553 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00004554 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Chris Lattner15972212006-03-31 17:55:51 +00004555 SDOperand Lo, Hi;
4556 SplitVectorOp(Vec, Lo, Hi);
Nate Begeman55030dc2008-01-29 02:24:00 +00004557 if (CIdx->getValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00004558 Vec = Lo;
4559 } else {
4560 Vec = Hi;
Nate Begeman55030dc2008-01-29 02:24:00 +00004561 Idx = DAG.getConstant(CIdx->getValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00004562 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00004563 }
Dan Gohman7f321562007-06-25 16:23:39 +00004564
Chris Lattner15972212006-03-31 17:55:51 +00004565 // It's now an extract from the appropriate high or low part. Recurse.
4566 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004567 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00004568 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004569 // Store the value to a temporary stack slot, then LOAD the scalar
4570 // element back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004571 SDOperand StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dan Gohman7f321562007-06-25 16:23:39 +00004572 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
4573
4574 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004575 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dan Gohman7f321562007-06-25 16:23:39 +00004576 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4577 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004578
Duncan Sands8e4eb092008-06-08 20:54:56 +00004579 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Chris Lattnerf185e672007-10-19 16:47:35 +00004580 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004581 else
Chris Lattnerf185e672007-10-19 16:47:35 +00004582 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004583
Dan Gohman7f321562007-06-25 16:23:39 +00004584 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4585
4586 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00004587 }
Dan Gohman7f321562007-06-25 16:23:39 +00004588 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00004589}
4590
Dan Gohman7f321562007-06-25 16:23:39 +00004591/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00004592/// we assume the operation can be split if it is not already legal.
Dan Gohman7f321562007-06-25 16:23:39 +00004593SDOperand SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDOperand Op) {
Dan Gohman65956352007-06-13 15:12:02 +00004594 // We know that operand #0 is the Vec vector. For now we assume the index
4595 // is a constant and that the extracted result is a supported hardware type.
4596 SDOperand Vec = Op.getOperand(0);
4597 SDOperand Idx = LegalizeOp(Op.getOperand(1));
4598
Duncan Sands83ec4b62008-06-06 12:08:01 +00004599 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Dan Gohman65956352007-06-13 15:12:02 +00004600
Duncan Sands83ec4b62008-06-06 12:08:01 +00004601 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00004602 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004603 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00004604 }
4605
4606 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
4607 SDOperand Lo, Hi;
4608 SplitVectorOp(Vec, Lo, Hi);
4609 if (CIdx->getValue() < NumElems/2) {
4610 Vec = Lo;
4611 } else {
4612 Vec = Hi;
4613 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
4614 }
4615
4616 // It's now an extract from the appropriate high or low part. Recurse.
4617 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004618 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00004619}
4620
Nate Begeman750ac1b2006-02-01 07:19:44 +00004621/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4622/// with condition CC on the current target. This usually involves legalizing
4623/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4624/// there may be no choice but to create a new SetCC node to represent the
4625/// legalized value of setcc lhs, rhs. In this case, the value is returned in
4626/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
4627void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
4628 SDOperand &RHS,
4629 SDOperand &CC) {
Dale Johannesen638ccd52007-10-06 01:24:11 +00004630 SDOperand Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004631
4632 switch (getTypeAction(LHS.getValueType())) {
4633 case Legal:
4634 Tmp1 = LegalizeOp(LHS); // LHS
4635 Tmp2 = LegalizeOp(RHS); // RHS
4636 break;
4637 case Promote:
4638 Tmp1 = PromoteOp(LHS); // LHS
4639 Tmp2 = PromoteOp(RHS); // RHS
4640
4641 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004642 if (LHS.getValueType().isInteger()) {
4643 MVT VT = LHS.getValueType();
4644 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00004645
4646 // Otherwise, we have to insert explicit sign or zero extends. Note
4647 // that we could insert sign extends for ALL conditions, but zero extend
4648 // is cheaper on many machines (an AND instead of two shifts), so prefer
4649 // it.
4650 switch (cast<CondCodeSDNode>(CC)->get()) {
4651 default: assert(0 && "Unknown integer comparison!");
4652 case ISD::SETEQ:
4653 case ISD::SETNE:
4654 case ISD::SETUGE:
4655 case ISD::SETUGT:
4656 case ISD::SETULE:
4657 case ISD::SETULT:
4658 // ALL of these operations will work if we either sign or zero extend
4659 // the operands (including the unsigned comparisons!). Zero extend is
4660 // usually a simpler/cheaper operation, so prefer it.
4661 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4662 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4663 break;
4664 case ISD::SETGE:
4665 case ISD::SETGT:
4666 case ISD::SETLT:
4667 case ISD::SETLE:
4668 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4669 DAG.getValueType(VT));
4670 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4671 DAG.getValueType(VT));
4672 break;
4673 }
4674 }
4675 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004676 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004677 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00004678 if (VT == MVT::f32 || VT == MVT::f64) {
4679 // Expand into one or more soft-fp libcall(s).
Evan Cheng56966222007-01-12 02:11:51 +00004680 RTLIB::Libcall LC1, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00004681 switch (cast<CondCodeSDNode>(CC)->get()) {
4682 case ISD::SETEQ:
4683 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00004684 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004685 break;
4686 case ISD::SETNE:
4687 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00004688 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004689 break;
4690 case ISD::SETGE:
4691 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00004692 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004693 break;
4694 case ISD::SETLT:
4695 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00004696 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004697 break;
4698 case ISD::SETLE:
4699 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00004700 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004701 break;
4702 case ISD::SETGT:
4703 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00004704 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004705 break;
4706 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00004707 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4708 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004709 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00004710 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004711 break;
4712 default:
Evan Cheng56966222007-01-12 02:11:51 +00004713 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004714 switch (cast<CondCodeSDNode>(CC)->get()) {
4715 case ISD::SETONE:
4716 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004717 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004718 // Fallthrough
4719 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004720 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004721 break;
4722 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004723 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004724 break;
4725 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004726 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004727 break;
4728 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004729 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004730 break;
Evan Cheng56966222007-01-12 02:11:51 +00004731 case ISD::SETUEQ:
4732 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004733 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004734 default: assert(0 && "Unsupported FP setcc!");
4735 }
4736 }
4737
4738 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00004739 Tmp1 = ExpandLibCall(LC1,
Reid Spencer47857812006-12-31 05:55:36 +00004740 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004741 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004742 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004743 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004744 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004745 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00004746 CC);
Duncan Sands460a14e2008-04-12 17:14:18 +00004747 LHS = ExpandLibCall(LC2,
4748 DAG.getNode(ISD::MERGE_VALUES, VT, LHS, RHS).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004749 false /*sign irrelevant*/, Dummy);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004750 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004751 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004752 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4753 Tmp2 = SDOperand();
4754 }
4755 LHS = Tmp1;
4756 RHS = Tmp2;
4757 return;
4758 }
4759
Nate Begeman750ac1b2006-02-01 07:19:44 +00004760 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
4761 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004762 ExpandOp(RHS, RHSLo, RHSHi);
4763 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4764
4765 if (VT==MVT::ppcf128) {
4766 // FIXME: This generated code sucks. We want to generate
4767 // FCMP crN, hi1, hi2
4768 // BNE crN, L:
4769 // FCMP crN, lo1, lo2
4770 // The following can be improved, but not that much.
Scott Michel5b8f82e2008-03-10 15:42:14 +00004771 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETEQ);
4772 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004773 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004774 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETNE);
4775 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004776 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4777 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
4778 Tmp2 = SDOperand();
4779 break;
4780 }
4781
4782 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004783 case ISD::SETEQ:
4784 case ISD::SETNE:
4785 if (RHSLo == RHSHi)
4786 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4787 if (RHSCST->isAllOnesValue()) {
4788 // Comparison to -1.
4789 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4790 Tmp2 = RHSLo;
4791 break;
4792 }
4793
4794 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4795 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4796 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4797 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4798 break;
4799 default:
4800 // If this is a comparison of the sign bit, just look at the top part.
4801 // X > -1, x < 0
4802 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4803 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004804 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00004805 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4806 CST->isAllOnesValue())) { // X > -1
4807 Tmp1 = LHSHi;
4808 Tmp2 = RHSHi;
4809 break;
4810 }
4811
4812 // FIXME: This generated code sucks.
4813 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004814 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004815 default: assert(0 && "Unknown integer setcc!");
4816 case ISD::SETLT:
4817 case ISD::SETULT: LowCC = ISD::SETULT; break;
4818 case ISD::SETGT:
4819 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4820 case ISD::SETLE:
4821 case ISD::SETULE: LowCC = ISD::SETULE; break;
4822 case ISD::SETGE:
4823 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4824 }
4825
4826 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4827 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4828 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4829
4830 // NOTE: on targets without efficient SELECT of bools, we can always use
4831 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004832 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004833 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
Nate Begeman5922f562008-03-14 00:53:31 +00004834 LowCC, false, DagCombineInfo);
Evan Cheng2e677812007-02-08 22:16:19 +00004835 if (!Tmp1.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004836 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4837 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004838 CCCode, false, DagCombineInfo);
4839 if (!Tmp2.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004840 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004841 RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00004842
4843 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4844 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
Dan Gohman002e5d02008-03-13 22:13:53 +00004845 if ((Tmp1C && Tmp1C->isNullValue()) ||
4846 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00004847 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4848 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00004849 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00004850 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4851 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4852 // low part is known false, returns high part.
4853 // For LE / GE, if high part is known false, ignore the low part.
4854 // For LT / GT, if high part is known true, ignore the low part.
4855 Tmp1 = Tmp2;
4856 Tmp2 = SDOperand();
4857 } else {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004858 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004859 ISD::SETEQ, false, DagCombineInfo);
4860 if (!Result.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004861 Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004862 ISD::SETEQ);
Evan Cheng2e677812007-02-08 22:16:19 +00004863 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4864 Result, Tmp1, Tmp2));
4865 Tmp1 = Result;
4866 Tmp2 = SDOperand();
4867 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004868 }
4869 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004870 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004871 LHS = Tmp1;
4872 RHS = Tmp2;
4873}
4874
Chris Lattner1401d152008-01-16 07:45:30 +00004875/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4876/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4877/// a load from the stack slot to DestVT, extending it if needed.
4878/// The resultant code need not be legal.
4879SDOperand SelectionDAGLegalize::EmitStackConvert(SDOperand SrcOp,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004880 MVT SlotVT,
4881 MVT DestVT) {
Chris Lattner35481892005-12-23 00:16:34 +00004882 // Create the stack frame object.
Chris Lattner1401d152008-01-16 07:45:30 +00004883 SDOperand FIPtr = DAG.CreateStackTemporary(SlotVT);
4884
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004885 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004886 int SPFI = StackPtrFI->getIndex();
4887
Duncan Sands83ec4b62008-06-06 12:08:01 +00004888 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
4889 unsigned SlotSize = SlotVT.getSizeInBits();
4890 unsigned DestSize = DestVT.getSizeInBits();
Chris Lattner35481892005-12-23 00:16:34 +00004891
Chris Lattner1401d152008-01-16 07:45:30 +00004892 // Emit a store to the stack slot. Use a truncstore if the input value is
4893 // later than DestVT.
4894 SDOperand Store;
4895 if (SrcSize > SlotSize)
Dan Gohman69de1932008-02-06 22:27:42 +00004896 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004897 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00004898 SPFI, SlotVT);
Chris Lattner1401d152008-01-16 07:45:30 +00004899 else {
4900 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman69de1932008-02-06 22:27:42 +00004901 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004902 PseudoSourceValue::getFixedStack(),
Duncan Sands83ec4b62008-06-06 12:08:01 +00004903 SPFI);
Chris Lattner1401d152008-01-16 07:45:30 +00004904 }
4905
Chris Lattner35481892005-12-23 00:16:34 +00004906 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00004907 if (SlotSize == DestSize)
4908 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0);
4909
4910 assert(SlotSize < DestSize && "Unknown extension!");
4911 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT);
Chris Lattner35481892005-12-23 00:16:34 +00004912}
4913
Chris Lattner4352cc92006-04-04 17:23:26 +00004914SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
4915 // Create a vector sized/aligned stack slot, store the value to element #0,
4916 // then load the whole vector back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004917 SDOperand StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00004918
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004919 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004920 int SPFI = StackPtrFI->getIndex();
4921
Evan Cheng786225a2006-10-05 23:01:46 +00004922 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004923 PseudoSourceValue::getFixedStack(), SPFI);
Dan Gohman69de1932008-02-06 22:27:42 +00004924 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004925 PseudoSourceValue::getFixedStack(), SPFI);
Chris Lattner4352cc92006-04-04 17:23:26 +00004926}
4927
4928
Chris Lattnerce872152006-03-19 06:31:19 +00004929/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004930/// support the operation, but do support the resultant vector type.
Chris Lattnerce872152006-03-19 06:31:19 +00004931SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
4932
4933 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004934 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004935 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004936 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00004937 SDOperand SplatValue = Node->getOperand(0);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004938
4939 // FIXME: it would be far nicer to change this into map<SDOperand,uint64_t>
4940 // and use a bitmask instead of a list of elements.
Evan Cheng033e6812006-03-24 01:17:21 +00004941 std::map<SDOperand, std::vector<unsigned> > Values;
4942 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004943 bool isConstant = true;
4944 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4945 SplatValue.getOpcode() != ISD::UNDEF)
4946 isConstant = false;
4947
Evan Cheng033e6812006-03-24 01:17:21 +00004948 for (unsigned i = 1; i < NumElems; ++i) {
4949 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004950 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004951 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004952 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004953 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00004954 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004955
4956 // If this isn't a constant element or an undef, we can't use a constant
4957 // pool load.
4958 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4959 V.getOpcode() != ISD::UNDEF)
4960 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004961 }
4962
4963 if (isOnlyLowElement) {
4964 // If the low element is an undef too, then this whole things is an undef.
4965 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4966 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4967 // Otherwise, turn this into a scalar_to_vector node.
4968 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4969 Node->getOperand(0));
4970 }
4971
Chris Lattner2eb86532006-03-24 07:29:17 +00004972 // If all elements are constants, create a load from the constant pool.
4973 if (isConstant) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004974 MVT VT = Node->getValueType(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004975 std::vector<Constant*> CV;
4976 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4977 if (ConstantFPSDNode *V =
4978 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Chris Lattner02a260a2008-04-20 00:41:09 +00004979 CV.push_back(ConstantFP::get(V->getValueAPF()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004980 } else if (ConstantSDNode *V =
Chris Lattner02a260a2008-04-20 00:41:09 +00004981 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
4982 CV.push_back(ConstantInt::get(V->getAPIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004983 } else {
4984 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner02a260a2008-04-20 00:41:09 +00004985 const Type *OpNTy =
Duncan Sands83ec4b62008-06-06 12:08:01 +00004986 Node->getOperand(0).getValueType().getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00004987 CV.push_back(UndefValue::get(OpNTy));
4988 }
4989 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00004990 Constant *CP = ConstantVector::get(CV);
Chris Lattner2eb86532006-03-24 07:29:17 +00004991 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman69de1932008-02-06 22:27:42 +00004992 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00004993 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004994 }
4995
Chris Lattner87100e02006-03-20 01:52:29 +00004996 if (SplatValue.Val) { // Splat of one value?
4997 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands83ec4b62008-06-06 12:08:01 +00004998 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
4999 SDOperand Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
Evan Cheng033e6812006-03-24 01:17:21 +00005000 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005001 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
5002 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00005003
5004 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005005 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00005006 // Get the splatted value into the low element of a vector register.
5007 SDOperand LowValVec =
5008 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
5009
5010 // Return shuffle(LowValVec, undef, <0,0,0,0>)
5011 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
5012 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
5013 SplatMask);
5014 }
5015 }
5016
Evan Cheng033e6812006-03-24 01:17:21 +00005017 // If there are only two unique elements, we may be able to turn this into a
5018 // vector shuffle.
5019 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005020 // Get the two values in deterministic order.
5021 SDOperand Val1 = Node->getOperand(1);
5022 SDOperand Val2;
5023 std::map<SDOperand, std::vector<unsigned> >::iterator MI = Values.begin();
5024 if (MI->first != Val1)
5025 Val2 = MI->first;
5026 else
5027 Val2 = (++MI)->first;
5028
5029 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
5030 // vector shuffle has the undef vector on the RHS.
5031 if (Val1.getOpcode() == ISD::UNDEF)
5032 std::swap(Val1, Val2);
5033
Evan Cheng033e6812006-03-24 01:17:21 +00005034 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005035 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5036 MVT MaskEltVT = MaskVT.getVectorElementType();
Evan Cheng033e6812006-03-24 01:17:21 +00005037 std::vector<SDOperand> MaskVec(NumElems);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005038
5039 // Set elements of the shuffle mask for Val1.
5040 std::vector<unsigned> &Val1Elts = Values[Val1];
5041 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5042 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5043
5044 // Set elements of the shuffle mask for Val2.
5045 std::vector<unsigned> &Val2Elts = Values[Val2];
5046 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5047 if (Val2.getOpcode() != ISD::UNDEF)
5048 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5049 else
5050 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
5051
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005052 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
5053 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00005054
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005055 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005056 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
5057 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005058 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
5059 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
5060 SDOperand Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng033e6812006-03-24 01:17:21 +00005061
5062 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005063 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Evan Cheng033e6812006-03-24 01:17:21 +00005064 }
5065 }
Chris Lattnerce872152006-03-19 06:31:19 +00005066
5067 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5068 // aligned object on the stack, store each element into it, then load
5069 // the result as a vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005070 MVT VT = Node->getValueType(0);
Chris Lattnerce872152006-03-19 06:31:19 +00005071 // Create the stack frame object.
Chris Lattner85dd3be2007-10-15 17:48:57 +00005072 SDOperand FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005073
5074 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005075 SmallVector<SDOperand, 8> Stores;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005076 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Chris Lattnerce872152006-03-19 06:31:19 +00005077 // Store (in the right endianness) the elements to memory.
5078 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5079 // Ignore undef elements.
5080 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5081
Chris Lattner841c8822006-03-22 01:46:54 +00005082 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00005083
5084 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
5085 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5086
Evan Cheng786225a2006-10-05 23:01:46 +00005087 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00005088 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00005089 }
5090
5091 SDOperand StoreChain;
5092 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005093 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5094 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005095 else
5096 StoreChain = DAG.getEntryNode();
5097
5098 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00005099 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005100}
5101
Chris Lattner5b359c62005-04-02 04:00:59 +00005102void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
5103 SDOperand Op, SDOperand Amt,
5104 SDOperand &Lo, SDOperand &Hi) {
5105 // Expand the subcomponents.
5106 SDOperand LHSL, LHSH;
5107 ExpandOp(Op, LHSL, LHSH);
5108
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005109 SDOperand Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005110 MVT VT = LHSL.getValueType();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00005111 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005112 Hi = Lo.getValue(1);
5113}
5114
5115
Chris Lattnere34b3962005-01-19 04:19:40 +00005116/// ExpandShift - Try to find a clever way to expand this shift operation out to
5117/// smaller elements. If we can't find a way that is more efficient than a
5118/// libcall on this target, return false. Otherwise, return true with the
5119/// low-parts expanded into Lo and Hi.
5120bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
5121 SDOperand &Lo, SDOperand &Hi) {
5122 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5123 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005124
Duncan Sands83ec4b62008-06-06 12:08:01 +00005125 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005126 SDOperand ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005127 MVT ShTy = ShAmt.getValueType();
5128 unsigned ShBits = ShTy.getSizeInBits();
5129 unsigned VTBits = Op.getValueType().getSizeInBits();
5130 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005131
Chris Lattner7a3c8552007-10-14 20:35:12 +00005132 // Handle the case when Amt is an immediate.
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005133 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
5134 unsigned Cst = CN->getValue();
5135 // Expand the incoming operand to be shifted, so that we have its parts
5136 SDOperand InL, InH;
5137 ExpandOp(Op, InL, InH);
5138 switch(Opc) {
5139 case ISD::SHL:
5140 if (Cst > VTBits) {
5141 Lo = DAG.getConstant(0, NVT);
5142 Hi = DAG.getConstant(0, NVT);
5143 } else if (Cst > NVTBits) {
5144 Lo = DAG.getConstant(0, NVT);
5145 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005146 } else if (Cst == NVTBits) {
5147 Lo = DAG.getConstant(0, NVT);
5148 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005149 } else {
5150 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5151 Hi = DAG.getNode(ISD::OR, NVT,
5152 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5153 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5154 }
5155 return true;
5156 case ISD::SRL:
5157 if (Cst > VTBits) {
5158 Lo = DAG.getConstant(0, NVT);
5159 Hi = DAG.getConstant(0, NVT);
5160 } else if (Cst > NVTBits) {
5161 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5162 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005163 } else if (Cst == NVTBits) {
5164 Lo = InH;
5165 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005166 } else {
5167 Lo = DAG.getNode(ISD::OR, NVT,
5168 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5169 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5170 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5171 }
5172 return true;
5173 case ISD::SRA:
5174 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005175 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005176 DAG.getConstant(NVTBits-1, ShTy));
5177 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005178 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005179 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005180 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005181 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005182 } else if (Cst == NVTBits) {
5183 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00005184 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005185 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005186 } else {
5187 Lo = DAG.getNode(ISD::OR, NVT,
5188 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5189 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5190 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5191 }
5192 return true;
5193 }
5194 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005195
5196 // Okay, the shift amount isn't constant. However, if we can tell that it is
5197 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005198 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5199 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005200 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005201
Dan Gohman9e255b72008-02-22 01:12:31 +00005202 // If we know that if any of the high bits of the shift amount are one, then
5203 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005204 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005205 // Mask out the high bit, which we know is set.
5206 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005207 DAG.getConstant(~Mask, Amt.getValueType()));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005208
5209 // Expand the incoming operand to be shifted, so that we have its parts
5210 SDOperand InL, InH;
5211 ExpandOp(Op, InL, InH);
5212 switch(Opc) {
5213 case ISD::SHL:
5214 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5215 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5216 return true;
5217 case ISD::SRL:
5218 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5219 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5220 return true;
5221 case ISD::SRA:
5222 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5223 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5224 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5225 return true;
5226 }
5227 }
5228
Dan Gohman9e255b72008-02-22 01:12:31 +00005229 // If we know that the high bits of the shift amount are all zero, then we can
5230 // do this as a couple of simple shifts.
5231 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005232 // Compute 32-amt.
5233 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
5234 DAG.getConstant(NVTBits, Amt.getValueType()),
5235 Amt);
5236
5237 // Expand the incoming operand to be shifted, so that we have its parts
5238 SDOperand InL, InH;
5239 ExpandOp(Op, InL, InH);
5240 switch(Opc) {
5241 case ISD::SHL:
5242 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5243 Hi = DAG.getNode(ISD::OR, NVT,
5244 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5245 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5246 return true;
5247 case ISD::SRL:
5248 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5249 Lo = DAG.getNode(ISD::OR, NVT,
5250 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5251 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5252 return true;
5253 case ISD::SRA:
5254 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5255 Lo = DAG.getNode(ISD::OR, NVT,
5256 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5257 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5258 return true;
5259 }
5260 }
5261
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005262 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005263}
Chris Lattner77e77a62005-01-21 06:05:23 +00005264
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005265
Chris Lattner77e77a62005-01-21 06:05:23 +00005266// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5267// does not fit into a register, return the lo part and set the hi part to the
5268// by-reg argument. If it does fit into a single register, return the result
5269// and leave the Hi part unset.
Duncan Sands460a14e2008-04-12 17:14:18 +00005270SDOperand SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Reid Spencer47857812006-12-31 05:55:36 +00005271 bool isSigned, SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005272 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5273 // The input chain to this libcall is the entry node of the function.
5274 // Legalizing the call will automatically add the previous call to the
5275 // dependence.
5276 SDOperand InChain = DAG.getEntryNode();
5277
Chris Lattner77e77a62005-01-21 06:05:23 +00005278 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005279 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005280 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005281 MVT ArgVT = Node->getOperand(i).getValueType();
5282 const Type *ArgTy = ArgVT.getTypeForMVT();
Reid Spencer47857812006-12-31 05:55:36 +00005283 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005284 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005285 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005286 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005287 }
Duncan Sands460a14e2008-04-12 17:14:18 +00005288 SDOperand Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
5289 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005290
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005291 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005292 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005293 std::pair<SDOperand,SDOperand> CallInfo =
Duncan Sands00fee652008-02-14 17:28:50 +00005294 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, CallingConv::C,
5295 false, Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005296
Chris Lattner6831a812006-02-13 09:18:02 +00005297 // Legalize the call sequence, starting with the chain. This will advance
5298 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5299 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5300 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00005301 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005302 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005303 default: assert(0 && "Unknown thing");
5304 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005305 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005306 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005307 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005308 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005309 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005310 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005311 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005312}
5313
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005314
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005315/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5316///
Chris Lattner77e77a62005-01-21 06:05:23 +00005317SDOperand SelectionDAGLegalize::
Duncan Sands83ec4b62008-06-06 12:08:01 +00005318ExpandIntToFP(bool isSigned, MVT DestTy, SDOperand Source) {
5319 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005320 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005321
Evan Cheng9845eb52008-04-01 02:18:22 +00005322 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5323 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005324 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005325 // incoming integer is set. To handle this, we dynamically test to see if
5326 // it is set, and, if so, add a fudge factor.
Dan Gohman034f60e2008-03-11 01:59:03 +00005327 SDOperand Hi;
5328 if (ExpandSource) {
5329 SDOperand Lo;
5330 ExpandOp(Source, Lo, Hi);
5331 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5332 } else {
5333 // The comparison for the sign bit will use the entire operand.
5334 Hi = Source;
5335 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005336
Chris Lattner66de05b2005-05-13 04:45:13 +00005337 // If this is unsigned, and not supported, first perform the conversion to
5338 // signed, then adjust the result if the sign bit is set.
Dan Gohman034f60e2008-03-11 01:59:03 +00005339 SDOperand SignedConv = ExpandIntToFP(true, DestTy, Source);
Chris Lattner66de05b2005-05-13 04:45:13 +00005340
Scott Michel5b8f82e2008-03-10 15:42:14 +00005341 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005342 DAG.getConstant(0, Hi.getValueType()),
5343 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005344 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005345 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5346 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005347 uint64_t FF = 0x5f800000ULL;
5348 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohman34bc1782008-03-05 02:07:31 +00005349 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005350
Chris Lattner5839bf22005-08-26 17:15:30 +00005351 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00005352 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5353 SDOperand FudgeInReg;
5354 if (DestTy == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005355 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005356 PseudoSourceValue::getConstantPool(), 0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005357 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005358 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005359 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005360 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005361 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005362 MVT::f32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005363 else
5364 assert(0 && "Unexpected conversion");
5365
Duncan Sands83ec4b62008-06-06 12:08:01 +00005366 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005367 if (SCVT != DestTy) {
5368 // Destination type needs to be expanded as well. The FADD now we are
5369 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005370 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5371 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dan Gohmand91446d2008-03-05 01:08:17 +00005372 SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005373 SignedConv, SignedConv.getValue(1));
5374 }
5375 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5376 }
Chris Lattner473a9902005-09-29 06:44:39 +00005377 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005378 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005379
Chris Lattnera88a2602005-05-14 05:33:54 +00005380 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00005381 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00005382 default: assert(0 && "This action not implemented for this operation!");
5383 case TargetLowering::Legal:
5384 case TargetLowering::Expand:
5385 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005386 case TargetLowering::Custom: {
5387 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
5388 Source), DAG);
5389 if (NV.Val)
5390 return LegalizeOp(NV);
5391 break; // The target decided this was legal after all
5392 }
Chris Lattnera88a2602005-05-14 05:33:54 +00005393 }
5394
Chris Lattner13689e22005-05-12 07:00:44 +00005395 // Expand the source, then glue it back together for the call. We must expand
5396 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00005397 if (ExpandSource) {
5398 SDOperand SrcLo, SrcHi;
5399 ExpandOp(Source, SrcLo, SrcHi);
5400 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5401 }
Chris Lattner13689e22005-05-12 07:00:44 +00005402
Evan Cheng56966222007-01-12 02:11:51 +00005403 RTLIB::Libcall LC;
Evan Cheng110cf482008-04-01 01:50:16 +00005404 if (SourceVT == MVT::i32) {
5405 if (DestTy == MVT::f32)
Evan Chengdb45d1c2008-04-01 02:00:09 +00005406 LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32;
Evan Cheng110cf482008-04-01 01:50:16 +00005407 else {
5408 assert(DestTy == MVT::f64 && "Unknown fp value type!");
5409 LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64;
5410 }
5411 } else if (SourceVT == MVT::i64) {
Dan Gohmand91446d2008-03-05 01:08:17 +00005412 if (DestTy == MVT::f32)
5413 LC = RTLIB::SINTTOFP_I64_F32;
Dan Gohman034f60e2008-03-11 01:59:03 +00005414 else if (DestTy == MVT::f64)
Dan Gohmand91446d2008-03-05 01:08:17 +00005415 LC = RTLIB::SINTTOFP_I64_F64;
Dan Gohman034f60e2008-03-11 01:59:03 +00005416 else if (DestTy == MVT::f80)
5417 LC = RTLIB::SINTTOFP_I64_F80;
5418 else {
5419 assert(DestTy == MVT::ppcf128 && "Unknown fp value type!");
5420 LC = RTLIB::SINTTOFP_I64_PPCF128;
Dan Gohmand91446d2008-03-05 01:08:17 +00005421 }
5422 } else if (SourceVT == MVT::i128) {
5423 if (DestTy == MVT::f32)
5424 LC = RTLIB::SINTTOFP_I128_F32;
5425 else if (DestTy == MVT::f64)
5426 LC = RTLIB::SINTTOFP_I128_F64;
5427 else if (DestTy == MVT::f80)
5428 LC = RTLIB::SINTTOFP_I128_F80;
5429 else {
5430 assert(DestTy == MVT::ppcf128 && "Unknown fp value type!");
5431 LC = RTLIB::SINTTOFP_I128_PPCF128;
5432 }
5433 } else {
5434 assert(0 && "Unknown int value type");
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005435 }
Chris Lattner6831a812006-02-13 09:18:02 +00005436
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005437 assert(TLI.getLibcallName(LC) && "Don't know how to expand this SINT_TO_FP!");
Chris Lattner6831a812006-02-13 09:18:02 +00005438 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
Dan Gohmana2e94852008-03-10 23:03:31 +00005439 SDOperand HiPart;
Duncan Sands460a14e2008-04-12 17:14:18 +00005440 SDOperand Result = ExpandLibCall(LC, Source.Val, isSigned, HiPart);
Evan Cheng110cf482008-04-01 01:50:16 +00005441 if (Result.getValueType() != DestTy && HiPart.Val)
Dan Gohmana2e94852008-03-10 23:03:31 +00005442 Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5443 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005444}
Misha Brukmanedf128a2005-04-21 22:36:52 +00005445
Chris Lattner22cde6a2006-01-28 08:25:58 +00005446/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5447/// INT_TO_FP operation of the specified operand when the target requests that
5448/// we expand it. At this point, we know that the result and operand types are
5449/// legal for the target.
5450SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5451 SDOperand Op0,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005452 MVT DestVT) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005453 if (Op0.getValueType() == MVT::i32) {
5454 // simple 32-bit [signed|unsigned] integer to float/double expansion
5455
Chris Lattner23594d42008-01-16 07:03:22 +00005456 // Get the stack frame index of a 8 byte buffer.
5457 SDOperand StackSlot = DAG.CreateStackTemporary(MVT::f64);
5458
Chris Lattner22cde6a2006-01-28 08:25:58 +00005459 // word offset constant for Hi/Lo address computation
5460 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
5461 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00005462 SDOperand Hi = StackSlot;
5463 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
5464 if (TLI.isLittleEndian())
5465 std::swap(Hi, Lo);
5466
Chris Lattner22cde6a2006-01-28 08:25:58 +00005467 // if signed map to unsigned space
5468 SDOperand Op0Mapped;
5469 if (isSigned) {
5470 // constant used to invert sign bit (signed to unsigned mapping)
5471 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
5472 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5473 } else {
5474 Op0Mapped = Op0;
5475 }
5476 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00005477 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005478 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005479 // initial hi portion of constructed double
5480 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
5481 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00005482 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005483 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00005484 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005485 // FP constant to bias correct the final result
5486 SDOperand Bias = DAG.getConstantFP(isSigned ?
5487 BitsToDouble(0x4330000080000000ULL)
5488 : BitsToDouble(0x4330000000000000ULL),
5489 MVT::f64);
5490 // subtract the bias
5491 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
5492 // final result
5493 SDOperand Result;
5494 // handle final rounding
5495 if (DestVT == MVT::f64) {
5496 // do nothing
5497 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00005498 } else if (DestVT.bitsLT(MVT::f64)) {
Chris Lattner0bd48932008-01-17 07:00:52 +00005499 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5500 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005501 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005502 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005503 }
5504 return Result;
5505 }
5506 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
5507 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
5508
Scott Michel5b8f82e2008-03-10 15:42:14 +00005509 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005510 DAG.getConstant(0, Op0.getValueType()),
5511 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005512 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005513 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5514 SignSet, Four, Zero);
5515
5516 // If the sign bit of the integer is set, the large number will be treated
5517 // as a negative number. To counteract this, the dynamic code adds an
5518 // offset depending on the data type.
5519 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005520 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005521 default: assert(0 && "Unsupported integer type!");
5522 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5523 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5524 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5525 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5526 }
5527 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005528 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005529
5530 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
5531 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5532 SDOperand FudgeInReg;
5533 if (DestVT == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005534 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005535 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005536 else {
Dan Gohman69de1932008-02-06 22:27:42 +00005537 FudgeInReg =
5538 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5539 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005540 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005541 MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00005542 }
5543
5544 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5545}
5546
5547/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5548/// *INT_TO_FP operation of the specified operand when the target requests that
5549/// we promote it. At this point, we know that the result and operand types are
5550/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5551/// operation that takes a larger input.
5552SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005553 MVT DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005554 bool isSigned) {
5555 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005556 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005557
5558 unsigned OpToUse = 0;
5559
5560 // Scan for the appropriate larger type to use.
5561 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005562 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
5563 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005564
5565 // If the target supports SINT_TO_FP of this type, use it.
5566 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5567 default: break;
5568 case TargetLowering::Legal:
5569 if (!TLI.isTypeLegal(NewInTy))
5570 break; // Can't use this datatype.
5571 // FALL THROUGH.
5572 case TargetLowering::Custom:
5573 OpToUse = ISD::SINT_TO_FP;
5574 break;
5575 }
5576 if (OpToUse) break;
5577 if (isSigned) continue;
5578
5579 // If the target supports UINT_TO_FP of this type, use it.
5580 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5581 default: break;
5582 case TargetLowering::Legal:
5583 if (!TLI.isTypeLegal(NewInTy))
5584 break; // Can't use this datatype.
5585 // FALL THROUGH.
5586 case TargetLowering::Custom:
5587 OpToUse = ISD::UINT_TO_FP;
5588 break;
5589 }
5590 if (OpToUse) break;
5591
5592 // Otherwise, try a larger type.
5593 }
5594
5595 // Okay, we found the operation and type to use. Zero extend our input to the
5596 // desired type then run the operation on it.
5597 return DAG.getNode(OpToUse, DestVT,
5598 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5599 NewInTy, LegalOp));
5600}
5601
5602/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5603/// FP_TO_*INT operation of the specified operand when the target requests that
5604/// we promote it. At this point, we know that the result and operand types are
5605/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5606/// operation that returns a larger result.
5607SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005608 MVT DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005609 bool isSigned) {
5610 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005611 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005612
5613 unsigned OpToUse = 0;
5614
5615 // Scan for the appropriate larger type to use.
5616 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005617 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
5618 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005619
5620 // If the target supports FP_TO_SINT returning this type, use it.
5621 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5622 default: break;
5623 case TargetLowering::Legal:
5624 if (!TLI.isTypeLegal(NewOutTy))
5625 break; // Can't use this datatype.
5626 // FALL THROUGH.
5627 case TargetLowering::Custom:
5628 OpToUse = ISD::FP_TO_SINT;
5629 break;
5630 }
5631 if (OpToUse) break;
5632
5633 // If the target supports FP_TO_UINT of this type, use it.
5634 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5635 default: break;
5636 case TargetLowering::Legal:
5637 if (!TLI.isTypeLegal(NewOutTy))
5638 break; // Can't use this datatype.
5639 // FALL THROUGH.
5640 case TargetLowering::Custom:
5641 OpToUse = ISD::FP_TO_UINT;
5642 break;
5643 }
5644 if (OpToUse) break;
5645
5646 // Otherwise, try a larger type.
5647 }
5648
Chris Lattner27a6c732007-11-24 07:07:01 +00005649
5650 // Okay, we found the operation and type to use.
5651 SDOperand Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
5652
5653 // If the operation produces an invalid type, it must be custom lowered. Use
5654 // the target lowering hooks to expand it. Just keep the low part of the
5655 // expanded operation, we know that we're truncating anyway.
5656 if (getTypeAction(NewOutTy) == Expand) {
5657 Operation = SDOperand(TLI.ExpandOperationResult(Operation.Val, DAG), 0);
5658 assert(Operation.Val && "Didn't return anything");
5659 }
5660
5661 // Truncate the result of the extended FP_TO_*INT operation to the desired
5662 // size.
5663 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005664}
5665
5666/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5667///
5668SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005669 MVT VT = Op.getValueType();
5670 MVT SHVT = TLI.getShiftAmountTy();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005671 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005672 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005673 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5674 case MVT::i16:
5675 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5676 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5677 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5678 case MVT::i32:
5679 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5680 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5681 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5682 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5683 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5684 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5685 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5686 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5687 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5688 case MVT::i64:
5689 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5690 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5691 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5692 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5693 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5694 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5695 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5696 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5697 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5698 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5699 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5700 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5701 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5702 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5703 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5704 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5705 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5706 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5707 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5708 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5709 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5710 }
5711}
5712
5713/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5714///
5715SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
5716 switch (Opc) {
5717 default: assert(0 && "Cannot expand this yet!");
5718 case ISD::CTPOP: {
5719 static const uint64_t mask[6] = {
5720 0x5555555555555555ULL, 0x3333333333333333ULL,
5721 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5722 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5723 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005724 MVT VT = Op.getValueType();
5725 MVT ShVT = TLI.getShiftAmountTy();
5726 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005727 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5728 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
5729 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
5730 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5731 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5732 DAG.getNode(ISD::AND, VT,
5733 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5734 }
5735 return Op;
5736 }
5737 case ISD::CTLZ: {
5738 // for now, we do this:
5739 // x = x | (x >> 1);
5740 // x = x | (x >> 2);
5741 // ...
5742 // x = x | (x >>16);
5743 // x = x | (x >>32); // for 64-bit input
5744 // return popcount(~x);
5745 //
5746 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005747 MVT VT = Op.getValueType();
5748 MVT ShVT = TLI.getShiftAmountTy();
5749 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005750 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5751 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5752 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5753 }
5754 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5755 return DAG.getNode(ISD::CTPOP, VT, Op);
5756 }
5757 case ISD::CTTZ: {
5758 // for now, we use: { return popcount(~x & (x - 1)); }
5759 // unless the target has ctlz but not ctpop, in which case we use:
5760 // { return 32 - nlz(~x & (x-1)); }
5761 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005762 MVT VT = Op.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005763 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
5764 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
5765 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5766 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5767 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5768 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5769 TLI.isOperationLegal(ISD::CTLZ, VT))
5770 return DAG.getNode(ISD::SUB, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005771 DAG.getConstant(VT.getSizeInBits(), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005772 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5773 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5774 }
5775 }
5776}
Chris Lattnere34b3962005-01-19 04:19:40 +00005777
Chris Lattner3e928bb2005-01-07 07:47:09 +00005778/// ExpandOp - Expand the specified SDOperand into its two component pieces
5779/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5780/// LegalizeNodes map is filled in for any results that are not expanded, the
5781/// ExpandedNodes map is filled in for any results that are expanded, and the
5782/// Lo/Hi values are returned.
5783void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00005784 MVT VT = Op.getValueType();
5785 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005786 SDNode *Node = Op.Val;
5787 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00005788 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00005789 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00005790
Chris Lattner6fdcb252005-09-02 20:32:45 +00005791 // See if we already expanded it.
Roman Levenstein9cac5252008-04-16 16:15:27 +00005792 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00005793 = ExpandedNodes.find(Op);
5794 if (I != ExpandedNodes.end()) {
5795 Lo = I->second.first;
5796 Hi = I->second.second;
5797 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005798 }
5799
Chris Lattner3e928bb2005-01-07 07:47:09 +00005800 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005801 case ISD::CopyFromReg:
5802 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005803 case ISD::FP_ROUND_INREG:
5804 if (VT == MVT::ppcf128 &&
5805 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5806 TargetLowering::Custom) {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005807 SDOperand SrcLo, SrcHi, Src;
5808 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5809 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
5810 SDOperand Result = TLI.LowerOperation(
5811 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005812 assert(Result.Val->getOpcode() == ISD::BUILD_PAIR);
5813 Lo = Result.Val->getOperand(0);
5814 Hi = Result.Val->getOperand(1);
5815 break;
5816 }
5817 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00005818 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005819#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005820 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005821#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00005822 assert(0 && "Do not know how to expand this operator!");
5823 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00005824 case ISD::EXTRACT_ELEMENT:
5825 ExpandOp(Node->getOperand(0), Lo, Hi);
5826 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
5827 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00005828 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00005829 case ISD::EXTRACT_VECTOR_ELT:
5830 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5831 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5832 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5833 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005834 case ISD::UNDEF:
Evan Chengaa975c12006-12-16 02:20:50 +00005835 NVT = TLI.getTypeToExpandTo(VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005836 Lo = DAG.getNode(ISD::UNDEF, NVT);
5837 Hi = DAG.getNode(ISD::UNDEF, NVT);
5838 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005839 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005840 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00005841 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5842 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5843 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005844 break;
5845 }
Evan Cheng00495212006-12-12 21:32:44 +00005846 case ISD::ConstantFP: {
5847 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00005848 if (CFP->getValueType(0) == MVT::ppcf128) {
5849 APInt api = CFP->getValueAPF().convertToAPInt();
5850 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5851 MVT::f64);
5852 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5853 MVT::f64);
5854 break;
5855 }
Evan Cheng279101e2006-12-12 22:19:28 +00005856 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005857 if (getTypeAction(Lo.getValueType()) == Expand)
5858 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005859 break;
5860 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005861 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005862 // Return the operands.
5863 Lo = Node->getOperand(0);
5864 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005865 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005866
5867 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00005868 if (Node->getNumValues() == 1) {
5869 ExpandOp(Op.getOperand(0), Lo, Hi);
5870 break;
5871 }
Chris Lattner27a6c732007-11-24 07:07:01 +00005872 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
5873 assert(Op.ResNo == 0 && Node->getNumValues() == 2 &&
5874 Op.getValue(1).getValueType() == MVT::Other &&
5875 "unhandled MERGE_VALUES");
5876 ExpandOp(Op.getOperand(0), Lo, Hi);
5877 // Remember that we legalized the chain.
5878 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5879 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005880
5881 case ISD::SIGN_EXTEND_INREG:
5882 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005883 // sext_inreg the low part if needed.
5884 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5885
5886 // The high part gets the sign extension from the lo-part. This handles
5887 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005888 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005889 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00005890 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005891 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005892
Nate Begemand88fc032006-01-14 03:14:10 +00005893 case ISD::BSWAP: {
5894 ExpandOp(Node->getOperand(0), Lo, Hi);
5895 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
5896 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5897 Lo = TempLo;
5898 break;
5899 }
5900
Chris Lattneredb1add2005-05-11 04:51:16 +00005901 case ISD::CTPOP:
5902 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005903 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5904 DAG.getNode(ISD::CTPOP, NVT, Lo),
5905 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005906 Hi = DAG.getConstant(0, NVT);
5907 break;
5908
Chris Lattner39a8f332005-05-12 19:05:01 +00005909 case ISD::CTLZ: {
5910 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005911 ExpandOp(Node->getOperand(0), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005912 SDOperand BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Chris Lattner39a8f332005-05-12 19:05:01 +00005913 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Scott Michel5b8f82e2008-03-10 15:42:14 +00005914 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005915 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005916 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
5917 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5918
5919 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5920 Hi = DAG.getConstant(0, NVT);
5921 break;
5922 }
5923
5924 case ISD::CTTZ: {
5925 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005926 ExpandOp(Node->getOperand(0), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005927 SDOperand BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Chris Lattner39a8f332005-05-12 19:05:01 +00005928 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Scott Michel5b8f82e2008-03-10 15:42:14 +00005929 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005930 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005931 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
5932 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5933
5934 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5935 Hi = DAG.getConstant(0, NVT);
5936 break;
5937 }
Chris Lattneredb1add2005-05-11 04:51:16 +00005938
Nate Begemanacc398c2006-01-25 18:21:52 +00005939 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005940 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5941 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00005942 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5943 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5944
5945 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005946 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00005947 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00005948 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00005949 std::swap(Lo, Hi);
5950 break;
5951 }
5952
Chris Lattner3e928bb2005-01-07 07:47:09 +00005953 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00005954 LoadSDNode *LD = cast<LoadSDNode>(Node);
5955 SDOperand Ch = LD->getChain(); // Legalize the chain.
5956 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
5957 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005958 int SVOffset = LD->getSrcValueOffset();
5959 unsigned Alignment = LD->getAlignment();
5960 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005961
Evan Cheng466685d2006-10-09 20:57:25 +00005962 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005963 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5964 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00005965 if (VT == MVT::f32 || VT == MVT::f64) {
5966 // f32->i32 or f64->i64 one to one expansion.
5967 // Remember that we legalized the chain.
5968 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00005969 // Recursively expand the new load.
5970 if (getTypeAction(NVT) == Expand)
5971 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005972 break;
5973 }
Chris Lattnerec39a452005-01-19 18:02:17 +00005974
Evan Cheng466685d2006-10-09 20:57:25 +00005975 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005976 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Evan Cheng466685d2006-10-09 20:57:25 +00005977 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00005978 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00005979 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00005980 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005981 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5982 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00005983
Evan Cheng466685d2006-10-09 20:57:25 +00005984 // Build a factor node to remember that this load is independent of the
5985 // other one.
5986 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5987 Hi.getValue(1));
5988
5989 // Remember that we legalized the chain.
5990 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00005991 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00005992 std::swap(Lo, Hi);
5993 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005994 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00005995
Dale Johannesenb6210fc2007-10-19 20:29:00 +00005996 if ((VT == MVT::f64 && EVT == MVT::f32) ||
5997 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00005998 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
5999 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006000 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00006001 // Remember that we legalized the chain.
6002 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
6003 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
6004 break;
6005 }
Evan Cheng466685d2006-10-09 20:57:25 +00006006
6007 if (EVT == NVT)
6008 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006009 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006010 else
6011 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006012 SVOffset, EVT, isVolatile,
6013 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006014
6015 // Remember that we legalized the chain.
6016 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
6017
6018 if (ExtType == ISD::SEXTLOAD) {
6019 // The high part is obtained by SRA'ing all but one of the bits of the
6020 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006021 unsigned LoSize = Lo.getValueType().getSizeInBits();
Evan Cheng466685d2006-10-09 20:57:25 +00006022 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6023 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6024 } else if (ExtType == ISD::ZEXTLOAD) {
6025 // The high part is just a zero.
6026 Hi = DAG.getConstant(0, NVT);
6027 } else /* if (ExtType == ISD::EXTLOAD) */ {
6028 // The high part is undefined.
6029 Hi = DAG.getNode(ISD::UNDEF, NVT);
6030 }
6031 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006032 break;
6033 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006034 case ISD::AND:
6035 case ISD::OR:
6036 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
6037 SDOperand LL, LH, RL, RH;
6038 ExpandOp(Node->getOperand(0), LL, LH);
6039 ExpandOp(Node->getOperand(1), RL, RH);
6040 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
6041 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
6042 break;
6043 }
6044 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00006045 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006046 ExpandOp(Node->getOperand(1), LL, LH);
6047 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006048 if (getTypeAction(NVT) == Expand)
6049 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00006050 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006051 if (VT != MVT::f32)
6052 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006053 break;
6054 }
Nate Begeman9373a812005-08-10 20:51:12 +00006055 case ISD::SELECT_CC: {
6056 SDOperand TL, TH, FL, FH;
6057 ExpandOp(Node->getOperand(2), TL, TH);
6058 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006059 if (getTypeAction(NVT) == Expand)
6060 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00006061 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6062 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006063 if (VT != MVT::f32)
6064 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6065 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006066 break;
6067 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006068 case ISD::ANY_EXTEND:
6069 // The low part is any extension of the input (which degenerates to a copy).
6070 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
6071 // The high part is undefined.
6072 Hi = DAG.getNode(ISD::UNDEF, NVT);
6073 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006074 case ISD::SIGN_EXTEND: {
6075 // The low part is just a sign extension of the input (which degenerates to
6076 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006077 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006078
Chris Lattner3e928bb2005-01-07 07:47:09 +00006079 // The high part is obtained by SRA'ing all but one of the bits of the lo
6080 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006081 unsigned LoSize = Lo.getValueType().getSizeInBits();
Chris Lattner8137c9e2006-01-28 05:07:51 +00006082 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6083 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006084 break;
6085 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006086 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006087 // The low part is just a zero extension of the input (which degenerates to
6088 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006089 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006090
Chris Lattner3e928bb2005-01-07 07:47:09 +00006091 // The high part is just a zero.
6092 Hi = DAG.getConstant(0, NVT);
6093 break;
Chris Lattner35481892005-12-23 00:16:34 +00006094
Chris Lattner4c948eb2007-02-13 23:55:16 +00006095 case ISD::TRUNCATE: {
6096 // The input value must be larger than this value. Expand *it*.
6097 SDOperand NewLo;
6098 ExpandOp(Node->getOperand(0), NewLo, Hi);
6099
6100 // The low part is now either the right size, or it is closer. If not the
6101 // right size, make an illegal truncate so we recursively expand it.
6102 if (NewLo.getValueType() != Node->getValueType(0))
6103 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6104 ExpandOp(NewLo, Lo, Hi);
6105 break;
6106 }
6107
Chris Lattner35481892005-12-23 00:16:34 +00006108 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006109 SDOperand Tmp;
6110 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6111 // If the target wants to, allow it to lower this itself.
6112 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6113 case Expand: assert(0 && "cannot expand FP!");
6114 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6115 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6116 }
6117 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6118 }
6119
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006120 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006121 if (VT == MVT::f32 || VT == MVT::f64) {
6122 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006123 if (getTypeAction(NVT) == Expand)
6124 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006125 break;
6126 }
6127
6128 // If source operand will be expanded to the same type as VT, i.e.
6129 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006130 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006131 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6132 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006133 break;
6134 }
6135
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006136 // Turn this into a load/store pair by default.
6137 if (Tmp.Val == 0)
Chris Lattner1401d152008-01-16 07:45:30 +00006138 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006139
Chris Lattner35481892005-12-23 00:16:34 +00006140 ExpandOp(Tmp, Lo, Hi);
6141 break;
6142 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006143
Chris Lattner27a6c732007-11-24 07:07:01 +00006144 case ISD::READCYCLECOUNTER: {
Chris Lattner308575b2005-11-20 22:56:56 +00006145 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6146 TargetLowering::Custom &&
6147 "Must custom expand ReadCycleCounter");
Chris Lattner27a6c732007-11-24 07:07:01 +00006148 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6149 assert(Tmp.Val && "Node must be custom expanded!");
6150 ExpandOp(Tmp.getValue(0), Lo, Hi);
Chris Lattner308575b2005-11-20 22:56:56 +00006151 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006152 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006153 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006154 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006155
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006156 case ISD::ATOMIC_LCS: {
6157 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6158 assert(Tmp.Val && "Node must be custom expanded!");
6159 ExpandOp(Tmp.getValue(0), Lo, Hi);
6160 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
6161 LegalizeOp(Tmp.getValue(1)));
6162 break;
6163 }
6164
6165
6166
Chris Lattner4e6c7462005-01-08 19:27:05 +00006167 // These operators cannot be expanded directly, emit them as calls to
6168 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006169 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006170 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00006171 SDOperand Op;
6172 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6173 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006174 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6175 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006176 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006177
Chris Lattnerf20d1832005-07-30 01:40:57 +00006178 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6179
Chris Lattner80a3e942005-07-29 00:33:32 +00006180 // Now that the custom expander is done, expand the result, which is still
6181 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00006182 if (Op.Val) {
6183 ExpandOp(Op, Lo, Hi);
6184 break;
6185 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006186 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006187
Dale Johannesen161e8972007-10-05 20:04:43 +00006188 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmana2e94852008-03-10 23:03:31 +00006189 if (VT == MVT::i64) {
6190 if (Node->getOperand(0).getValueType() == MVT::f32)
6191 LC = RTLIB::FPTOSINT_F32_I64;
6192 else if (Node->getOperand(0).getValueType() == MVT::f64)
6193 LC = RTLIB::FPTOSINT_F64_I64;
6194 else if (Node->getOperand(0).getValueType() == MVT::f80)
6195 LC = RTLIB::FPTOSINT_F80_I64;
6196 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6197 LC = RTLIB::FPTOSINT_PPCF128_I64;
Duncan Sands460a14e2008-04-12 17:14:18 +00006198 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006199 } else if (VT == MVT::i128) {
6200 if (Node->getOperand(0).getValueType() == MVT::f32)
6201 LC = RTLIB::FPTOSINT_F32_I128;
6202 else if (Node->getOperand(0).getValueType() == MVT::f64)
6203 LC = RTLIB::FPTOSINT_F64_I128;
6204 else if (Node->getOperand(0).getValueType() == MVT::f80)
6205 LC = RTLIB::FPTOSINT_F80_I128;
6206 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6207 LC = RTLIB::FPTOSINT_PPCF128_I128;
Duncan Sands460a14e2008-04-12 17:14:18 +00006208 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006209 } else {
6210 assert(0 && "Unexpected uint-to-fp conversion!");
6211 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006212 break;
Evan Cheng56966222007-01-12 02:11:51 +00006213 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006214
Evan Cheng56966222007-01-12 02:11:51 +00006215 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006216 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006217 SDOperand Op;
6218 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6219 case Expand: assert(0 && "cannot expand FP!");
6220 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6221 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6222 }
6223
6224 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6225
6226 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00006227 if (Op.Val) {
6228 ExpandOp(Op, Lo, Hi);
6229 break;
6230 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006231 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006232
Evan Chengdaccea182007-10-05 01:09:32 +00006233 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmana2e94852008-03-10 23:03:31 +00006234 if (VT == MVT::i64) {
6235 if (Node->getOperand(0).getValueType() == MVT::f32)
6236 LC = RTLIB::FPTOUINT_F32_I64;
6237 else if (Node->getOperand(0).getValueType() == MVT::f64)
6238 LC = RTLIB::FPTOUINT_F64_I64;
6239 else if (Node->getOperand(0).getValueType() == MVT::f80)
6240 LC = RTLIB::FPTOUINT_F80_I64;
6241 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6242 LC = RTLIB::FPTOUINT_PPCF128_I64;
Duncan Sands460a14e2008-04-12 17:14:18 +00006243 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006244 } else if (VT == MVT::i128) {
6245 if (Node->getOperand(0).getValueType() == MVT::f32)
6246 LC = RTLIB::FPTOUINT_F32_I128;
6247 else if (Node->getOperand(0).getValueType() == MVT::f64)
6248 LC = RTLIB::FPTOUINT_F64_I128;
6249 else if (Node->getOperand(0).getValueType() == MVT::f80)
6250 LC = RTLIB::FPTOUINT_F80_I128;
6251 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6252 LC = RTLIB::FPTOUINT_PPCF128_I128;
Duncan Sands460a14e2008-04-12 17:14:18 +00006253 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006254 } else {
6255 assert(0 && "Unexpected uint-to-fp conversion!");
6256 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006257 break;
Evan Cheng56966222007-01-12 02:11:51 +00006258 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006259
Evan Cheng05a2d562006-01-09 18:31:59 +00006260 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006261 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006262 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006263 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006264 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006265 Op = TLI.LowerOperation(Op, DAG);
6266 if (Op.Val) {
6267 // Now that the custom expander is done, expand the result, which is
6268 // still VT.
6269 ExpandOp(Op, Lo, Hi);
6270 break;
6271 }
6272 }
6273
Chris Lattner79980b02006-09-13 03:50:39 +00006274 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6275 // this X << 1 as X+X.
6276 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman002e5d02008-03-13 22:13:53 +00006277 if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
Chris Lattner79980b02006-09-13 03:50:39 +00006278 TLI.isOperationLegal(ISD::ADDE, NVT)) {
6279 SDOperand LoOps[2], HiOps[3];
6280 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6281 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6282 LoOps[1] = LoOps[0];
6283 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6284
6285 HiOps[1] = HiOps[0];
6286 HiOps[2] = Lo.getValue(1);
6287 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6288 break;
6289 }
6290 }
6291
Chris Lattnere34b3962005-01-19 04:19:40 +00006292 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006293 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006294 break;
Chris Lattner47599822005-04-02 03:38:53 +00006295
6296 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006297 TargetLowering::LegalizeAction Action =
6298 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6299 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6300 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006301 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006302 break;
6303 }
6304
Chris Lattnere34b3962005-01-19 04:19:40 +00006305 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006306 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006307 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006308 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006309
Evan Cheng05a2d562006-01-09 18:31:59 +00006310 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006311 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006312 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006313 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006314 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006315 Op = TLI.LowerOperation(Op, DAG);
6316 if (Op.Val) {
6317 // Now that the custom expander is done, expand the result, which is
6318 // still VT.
6319 ExpandOp(Op, Lo, Hi);
6320 break;
6321 }
6322 }
6323
Chris Lattnere34b3962005-01-19 04:19:40 +00006324 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006325 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006326 break;
Chris Lattner47599822005-04-02 03:38:53 +00006327
6328 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006329 TargetLowering::LegalizeAction Action =
6330 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6331 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6332 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006333 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006334 break;
6335 }
6336
Chris Lattnere34b3962005-01-19 04:19:40 +00006337 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006338 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006339 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006340 }
6341
6342 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006343 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006344 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006345 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006346 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006347 Op = TLI.LowerOperation(Op, DAG);
6348 if (Op.Val) {
6349 // Now that the custom expander is done, expand the result, which is
6350 // still VT.
6351 ExpandOp(Op, Lo, Hi);
6352 break;
6353 }
6354 }
6355
Chris Lattnere34b3962005-01-19 04:19:40 +00006356 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006357 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006358 break;
Chris Lattner47599822005-04-02 03:38:53 +00006359
6360 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006361 TargetLowering::LegalizeAction Action =
6362 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6363 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6364 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006365 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006366 break;
6367 }
6368
Chris Lattnere34b3962005-01-19 04:19:40 +00006369 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006370 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006371 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006372 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006373
Misha Brukmanedf128a2005-04-21 22:36:52 +00006374 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006375 case ISD::SUB: {
6376 // If the target wants to custom expand this, let them.
6377 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6378 TargetLowering::Custom) {
6379 Op = TLI.LowerOperation(Op, DAG);
6380 if (Op.Val) {
6381 ExpandOp(Op, Lo, Hi);
6382 break;
6383 }
6384 }
6385
6386 // Expand the subcomponents.
6387 SDOperand LHSL, LHSH, RHSL, RHSH;
6388 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6389 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00006390 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6391 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006392 LoOps[0] = LHSL;
6393 LoOps[1] = RHSL;
6394 HiOps[0] = LHSH;
6395 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006396 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00006397 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006398 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006399 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006400 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00006401 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006402 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006403 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006404 }
Chris Lattner84f67882005-01-20 18:52:28 +00006405 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006406 }
Chris Lattnerb429f732007-05-17 18:15:41 +00006407
6408 case ISD::ADDC:
6409 case ISD::SUBC: {
6410 // Expand the subcomponents.
6411 SDOperand LHSL, LHSH, RHSL, RHSH;
6412 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6413 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6414 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6415 SDOperand LoOps[2] = { LHSL, RHSL };
6416 SDOperand HiOps[3] = { LHSH, RHSH };
6417
6418 if (Node->getOpcode() == ISD::ADDC) {
6419 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6420 HiOps[2] = Lo.getValue(1);
6421 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6422 } else {
6423 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6424 HiOps[2] = Lo.getValue(1);
6425 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6426 }
6427 // Remember that we legalized the flag.
6428 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6429 break;
6430 }
6431 case ISD::ADDE:
6432 case ISD::SUBE: {
6433 // Expand the subcomponents.
6434 SDOperand LHSL, LHSH, RHSL, RHSH;
6435 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6436 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6437 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6438 SDOperand LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6439 SDOperand HiOps[3] = { LHSH, RHSH };
6440
6441 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6442 HiOps[2] = Lo.getValue(1);
6443 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6444
6445 // Remember that we legalized the flag.
6446 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6447 break;
6448 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006449 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006450 // If the target wants to custom expand this, let them.
6451 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00006452 SDOperand New = TLI.LowerOperation(Op, DAG);
6453 if (New.Val) {
6454 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006455 break;
6456 }
6457 }
6458
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006459 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6460 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00006461 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6462 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6463 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Nate Begemanc7c16572005-04-11 03:01:51 +00006464 SDOperand LL, LH, RL, RH;
6465 ExpandOp(Node->getOperand(0), LL, LH);
6466 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006467 unsigned OuterBitSize = Op.getValueSizeInBits();
6468 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00006469 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6470 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00006471 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6472 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6473 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00006474 // The inputs are both zero-extended.
6475 if (HasUMUL_LOHI) {
6476 // We can emit a umul_lohi.
6477 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6478 Hi = SDOperand(Lo.Val, 1);
6479 break;
6480 }
6481 if (HasMULHU) {
6482 // We can emit a mulhu+mul.
6483 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6484 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6485 break;
6486 }
Dan Gohman525178c2007-10-08 18:33:35 +00006487 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006488 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00006489 // The input values are both sign-extended.
6490 if (HasSMUL_LOHI) {
6491 // We can emit a smul_lohi.
6492 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6493 Hi = SDOperand(Lo.Val, 1);
6494 break;
6495 }
6496 if (HasMULHS) {
6497 // We can emit a mulhs+mul.
6498 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6499 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6500 break;
6501 }
6502 }
6503 if (HasUMUL_LOHI) {
6504 // Lo,Hi = umul LHS, RHS.
6505 SDOperand UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
6506 DAG.getVTList(NVT, NVT), LL, RL);
6507 Lo = UMulLOHI;
6508 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00006509 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6510 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6511 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6512 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00006513 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00006514 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00006515 if (HasMULHU) {
6516 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6517 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6518 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6519 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6520 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6521 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6522 break;
6523 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006524 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006525
Dan Gohman525178c2007-10-08 18:33:35 +00006526 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006527 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00006528 break;
6529 }
Evan Cheng56966222007-01-12 02:11:51 +00006530 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006531 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006532 break;
6533 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006534 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006535 break;
6536 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006537 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006538 break;
6539 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006540 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006541 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00006542
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006543 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00006544 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6545 RTLIB::ADD_F64,
6546 RTLIB::ADD_F80,
6547 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006548 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006549 break;
6550 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00006551 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6552 RTLIB::SUB_F64,
6553 RTLIB::SUB_F80,
6554 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006555 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006556 break;
6557 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00006558 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6559 RTLIB::MUL_F64,
6560 RTLIB::MUL_F80,
6561 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006562 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006563 break;
6564 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006565 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6566 RTLIB::DIV_F64,
6567 RTLIB::DIV_F80,
6568 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006569 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006570 break;
6571 case ISD::FP_EXTEND:
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006572 if (VT == MVT::ppcf128) {
6573 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6574 Node->getOperand(0).getValueType()==MVT::f64);
6575 const uint64_t zero = 0;
6576 if (Node->getOperand(0).getValueType()==MVT::f32)
6577 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6578 else
6579 Hi = Node->getOperand(0);
6580 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6581 break;
6582 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006583 Lo = ExpandLibCall(RTLIB::FPEXT_F32_F64, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006584 break;
6585 case ISD::FP_ROUND:
Duncan Sands460a14e2008-04-12 17:14:18 +00006586 Lo = ExpandLibCall(RTLIB::FPROUND_F64_F32, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006587 break;
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006588 case ISD::FPOWI:
Duncan Sands460a14e2008-04-12 17:14:18 +00006589 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::POWI_F32,
6590 RTLIB::POWI_F64,
6591 RTLIB::POWI_F80,
6592 RTLIB::POWI_PPCF128),
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006593 Node, false, Hi);
6594 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006595 case ISD::FSQRT:
6596 case ISD::FSIN:
6597 case ISD::FCOS: {
Evan Cheng56966222007-01-12 02:11:51 +00006598 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006599 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00006600 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00006601 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6602 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006603 break;
6604 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00006605 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6606 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006607 break;
6608 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00006609 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6610 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006611 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006612 default: assert(0 && "Unreachable!");
6613 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006614 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00006615 break;
6616 }
Evan Cheng966bf242006-12-16 00:52:40 +00006617 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006618 if (VT == MVT::ppcf128) {
6619 SDOperand Tmp;
6620 ExpandOp(Node->getOperand(0), Lo, Tmp);
6621 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6622 // lo = hi==fabs(hi) ? lo : -lo;
6623 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6624 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6625 DAG.getCondCode(ISD::SETEQ));
6626 break;
6627 }
Evan Cheng966bf242006-12-16 00:52:40 +00006628 SDOperand Mask = (VT == MVT::f64)
6629 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6630 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6631 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6632 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6633 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6634 if (getTypeAction(NVT) == Expand)
6635 ExpandOp(Lo, Lo, Hi);
6636 break;
6637 }
6638 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006639 if (VT == MVT::ppcf128) {
6640 ExpandOp(Node->getOperand(0), Lo, Hi);
6641 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6642 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6643 break;
6644 }
Evan Cheng966bf242006-12-16 00:52:40 +00006645 SDOperand Mask = (VT == MVT::f64)
6646 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6647 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6648 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6649 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6650 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6651 if (getTypeAction(NVT) == Expand)
6652 ExpandOp(Lo, Lo, Hi);
6653 break;
6654 }
Evan Cheng912095b2007-01-04 21:56:39 +00006655 case ISD::FCOPYSIGN: {
6656 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6657 if (getTypeAction(NVT) == Expand)
6658 ExpandOp(Lo, Lo, Hi);
6659 break;
6660 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006661 case ISD::SINT_TO_FP:
6662 case ISD::UINT_TO_FP: {
6663 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006664 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00006665
6666 // Promote the operand if needed. Do this before checking for
6667 // ppcf128 so conversions of i16 and i8 work.
6668 if (getTypeAction(SrcVT) == Promote) {
6669 SDOperand Tmp = PromoteOp(Node->getOperand(0));
6670 Tmp = isSigned
6671 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6672 DAG.getValueType(SrcVT))
6673 : DAG.getZeroExtendInReg(Tmp, SrcVT);
6674 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
6675 SrcVT = Node->getOperand(0).getValueType();
6676 }
6677
Dan Gohmana2e94852008-03-10 23:03:31 +00006678 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006679 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006680 if (isSigned) {
6681 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6682 Node->getOperand(0)));
6683 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6684 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006685 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006686 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6687 Node->getOperand(0)));
6688 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6689 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00006690 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006691 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6692 DAG.getConstant(0, MVT::i32),
6693 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6694 DAG.getConstantFP(
6695 APFloat(APInt(128, 2, TwoE32)),
6696 MVT::ppcf128)),
6697 Hi,
6698 DAG.getCondCode(ISD::SETLT)),
6699 Lo, Hi);
6700 }
6701 break;
6702 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00006703 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6704 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006705 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen6e63e092007-10-12 17:52:03 +00006706 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6707 Lo, Hi);
6708 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6709 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6710 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6711 DAG.getConstant(0, MVT::i64),
6712 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6713 DAG.getConstantFP(
6714 APFloat(APInt(128, 2, TwoE64)),
6715 MVT::ppcf128)),
6716 Hi,
6717 DAG.getCondCode(ISD::SETLT)),
6718 Lo, Hi);
6719 break;
6720 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006721
Dan Gohmana2e94852008-03-10 23:03:31 +00006722 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6723 Node->getOperand(0));
Evan Cheng110cf482008-04-01 01:50:16 +00006724 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00006725 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00006726 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00006727 break;
6728 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00006729 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006730
Chris Lattner83397362005-12-21 18:02:52 +00006731 // Make sure the resultant values have been legalized themselves, unless this
6732 // is a type that requires multi-step expansion.
6733 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6734 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00006735 if (Hi.Val)
6736 // Don't legalize the high part if it is expanded to a single node.
6737 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00006738 }
Evan Cheng05a2d562006-01-09 18:31:59 +00006739
6740 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00006741 bool isNew = ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi)));
Evan Cheng05a2d562006-01-09 18:31:59 +00006742 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006743}
6744
Dan Gohman7f321562007-06-25 16:23:39 +00006745/// SplitVectorOp - Given an operand of vector type, break it down into
6746/// two smaller values, still of vector type.
Chris Lattnerc7029802006-03-18 01:44:44 +00006747void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
6748 SDOperand &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006749 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006750 SDNode *Node = Op.Val;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006751 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00006752 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00006753
Duncan Sands83ec4b62008-06-06 12:08:01 +00006754 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00006755
6756 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6757 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6758
Duncan Sands83ec4b62008-06-06 12:08:01 +00006759 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
6760 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006761
Chris Lattnerc7029802006-03-18 01:44:44 +00006762 // See if we already split it.
6763 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
6764 = SplitNodes.find(Op);
6765 if (I != SplitNodes.end()) {
6766 Lo = I->second.first;
6767 Hi = I->second.second;
6768 return;
6769 }
6770
6771 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006772 default:
6773#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006774 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006775#endif
6776 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00006777 case ISD::UNDEF:
6778 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6779 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6780 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006781 case ISD::BUILD_PAIR:
6782 Lo = Node->getOperand(0);
6783 Hi = Node->getOperand(1);
6784 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00006785 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00006786 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
6787 SplitVectorOp(Node->getOperand(0), Lo, Hi);
6788 unsigned Index = Idx->getValue();
6789 SDOperand ScalarOp = Node->getOperand(1);
6790 if (Index < NewNumElts_Lo)
6791 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
6792 DAG.getIntPtrConstant(Index));
6793 else
6794 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6795 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
6796 break;
6797 }
6798 SDOperand Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
6799 Node->getOperand(1),
6800 Node->getOperand(2));
6801 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00006802 break;
6803 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00006804 case ISD::VECTOR_SHUFFLE: {
6805 // Build the low part.
6806 SDOperand Mask = Node->getOperand(2);
6807 SmallVector<SDOperand, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006808 MVT PtrVT = TLI.getPointerTy();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006809
6810 // Insert all of the elements from the input that are needed. We use
6811 // buildvector of extractelement here because the input vectors will have
6812 // to be legalized, so this makes the code simpler.
6813 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Nate Begeman5922f562008-03-14 00:53:31 +00006814 SDOperand IdxNode = Mask.getOperand(i);
6815 if (IdxNode.getOpcode() == ISD::UNDEF) {
6816 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6817 continue;
6818 }
6819 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006820 SDOperand InVec = Node->getOperand(0);
6821 if (Idx >= NumElements) {
6822 InVec = Node->getOperand(1);
6823 Idx -= NumElements;
6824 }
6825 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6826 DAG.getConstant(Idx, PtrVT)));
6827 }
6828 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6829 Ops.clear();
6830
6831 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Nate Begeman5922f562008-03-14 00:53:31 +00006832 SDOperand IdxNode = Mask.getOperand(i);
6833 if (IdxNode.getOpcode() == ISD::UNDEF) {
6834 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6835 continue;
6836 }
6837 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006838 SDOperand InVec = Node->getOperand(0);
6839 if (Idx >= NumElements) {
6840 InVec = Node->getOperand(1);
6841 Idx -= NumElements;
6842 }
6843 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6844 DAG.getConstant(Idx, PtrVT)));
6845 }
6846 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6847 break;
6848 }
Dan Gohman7f321562007-06-25 16:23:39 +00006849 case ISD::BUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006850 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00006851 Node->op_begin()+NewNumElts_Lo);
6852 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006853
Nate Begeman5db1afb2007-11-15 21:15:26 +00006854 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00006855 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006856 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006857 break;
6858 }
Dan Gohman7f321562007-06-25 16:23:39 +00006859 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00006860 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00006861 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6862 if (NewNumSubvectors == 1) {
6863 Lo = Node->getOperand(0);
6864 Hi = Node->getOperand(1);
6865 } else {
6866 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
6867 Node->op_begin()+NewNumSubvectors);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006868 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00006869
Dan Gohman7f321562007-06-25 16:23:39 +00006870 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumSubvectors,
6871 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006872 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00006873 }
Dan Gohman65956352007-06-13 15:12:02 +00006874 break;
6875 }
Dan Gohmanc6230962007-10-17 14:48:28 +00006876 case ISD::SELECT: {
6877 SDOperand Cond = Node->getOperand(0);
6878
6879 SDOperand LL, LH, RL, RH;
6880 SplitVectorOp(Node->getOperand(1), LL, LH);
6881 SplitVectorOp(Node->getOperand(2), RL, RH);
6882
Duncan Sands83ec4b62008-06-06 12:08:01 +00006883 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00006884 // Handle a vector merge.
6885 SDOperand CL, CH;
6886 SplitVectorOp(Cond, CL, CH);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006887 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6888 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006889 } else {
6890 // Handle a simple select with vector operands.
Nate Begeman5db1afb2007-11-15 21:15:26 +00006891 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6892 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006893 }
6894 break;
6895 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00006896 case ISD::VSETCC: {
6897 SDOperand LL, LH, RL, RH;
6898 SplitVectorOp(Node->getOperand(0), LL, LH);
6899 SplitVectorOp(Node->getOperand(1), RL, RH);
6900 Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2));
6901 Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2));
6902 break;
6903 }
Dan Gohman7f321562007-06-25 16:23:39 +00006904 case ISD::ADD:
6905 case ISD::SUB:
6906 case ISD::MUL:
6907 case ISD::FADD:
6908 case ISD::FSUB:
6909 case ISD::FMUL:
6910 case ISD::SDIV:
6911 case ISD::UDIV:
6912 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00006913 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006914 case ISD::AND:
6915 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00006916 case ISD::XOR:
6917 case ISD::UREM:
6918 case ISD::SREM:
6919 case ISD::FREM: {
Chris Lattnerc7029802006-03-18 01:44:44 +00006920 SDOperand LL, LH, RL, RH;
6921 SplitVectorOp(Node->getOperand(0), LL, LH);
6922 SplitVectorOp(Node->getOperand(1), RL, RH);
6923
Nate Begeman5db1afb2007-11-15 21:15:26 +00006924 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
6925 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00006926 break;
6927 }
Dan Gohman82669522007-10-11 23:57:53 +00006928 case ISD::FPOWI: {
6929 SDOperand L, H;
6930 SplitVectorOp(Node->getOperand(0), L, H);
6931
Nate Begeman5db1afb2007-11-15 21:15:26 +00006932 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
6933 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00006934 break;
6935 }
6936 case ISD::CTTZ:
6937 case ISD::CTLZ:
6938 case ISD::CTPOP:
6939 case ISD::FNEG:
6940 case ISD::FABS:
6941 case ISD::FSQRT:
6942 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00006943 case ISD::FCOS:
6944 case ISD::FP_TO_SINT:
6945 case ISD::FP_TO_UINT:
6946 case ISD::SINT_TO_FP:
6947 case ISD::UINT_TO_FP: {
Dan Gohman82669522007-10-11 23:57:53 +00006948 SDOperand L, H;
6949 SplitVectorOp(Node->getOperand(0), L, H);
6950
Nate Begeman5db1afb2007-11-15 21:15:26 +00006951 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
6952 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00006953 break;
6954 }
Dan Gohman7f321562007-06-25 16:23:39 +00006955 case ISD::LOAD: {
6956 LoadSDNode *LD = cast<LoadSDNode>(Node);
6957 SDOperand Ch = LD->getChain();
6958 SDOperand Ptr = LD->getBasePtr();
6959 const Value *SV = LD->getSrcValue();
6960 int SVOffset = LD->getSrcValueOffset();
6961 unsigned Alignment = LD->getAlignment();
6962 bool isVolatile = LD->isVolatile();
6963
Nate Begeman5db1afb2007-11-15 21:15:26 +00006964 Lo = DAG.getLoad(NewVT_Lo, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006965 unsigned IncrementSize = NewNumElts_Lo * NewEltVT.getSizeInBits()/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00006966 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006967 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006968 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006969 Alignment = MinAlign(Alignment, IncrementSize);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006970 Hi = DAG.getLoad(NewVT_Hi, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00006971
6972 // Build a factor node to remember that this load is independent of the
6973 // other one.
6974 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
6975 Hi.getValue(1));
6976
6977 // Remember that we legalized the chain.
6978 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00006979 break;
6980 }
Dan Gohman7f321562007-06-25 16:23:39 +00006981 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00006982 // We know the result is a vector. The input may be either a vector or a
6983 // scalar value.
Dan Gohman10a7aa62007-06-29 00:09:08 +00006984 SDOperand InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006985 if (!InOp.getValueType().isVector() ||
6986 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00006987 // The input is a scalar or single-element vector.
6988 // Lower to a store/load so that it can be split.
6989 // FIXME: this could be improved probably.
Chris Lattner85dd3be2007-10-15 17:48:57 +00006990 SDOperand Ptr = DAG.CreateStackTemporary(InOp.getValueType());
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00006991 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(Ptr.Val);
Chris Lattner7692eb42006-03-23 21:16:34 +00006992
Evan Cheng786225a2006-10-05 23:01:46 +00006993 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00006994 InOp, Ptr,
Dan Gohman3069b872008-02-07 18:41:25 +00006995 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00006996 FI->getIndex());
6997 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohman3069b872008-02-07 18:41:25 +00006998 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00006999 FI->getIndex());
Chris Lattner7692eb42006-03-23 21:16:34 +00007000 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007001 // Split the vector and convert each of the pieces now.
7002 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007003 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
7004 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007005 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007006 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007007 }
7008
7009 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00007010 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007011 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007012 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007013}
7014
7015
Dan Gohman89b20c02007-06-27 14:06:22 +00007016/// ScalarizeVectorOp - Given an operand of single-element vector type
7017/// (e.g. v1f32), convert it into the equivalent operation that returns a
7018/// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +00007019SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007020 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Chris Lattnerc7029802006-03-18 01:44:44 +00007021 SDNode *Node = Op.Val;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007022 MVT NewVT = Op.getValueType().getVectorElementType();
7023 assert(Op.getValueType().getVectorNumElements() == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00007024
Dan Gohman7f321562007-06-25 16:23:39 +00007025 // See if we already scalarized it.
7026 std::map<SDOperand, SDOperand>::iterator I = ScalarizedNodes.find(Op);
7027 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00007028
7029 SDOperand Result;
7030 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00007031 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007032#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007033 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007034#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007035 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7036 case ISD::ADD:
7037 case ISD::FADD:
7038 case ISD::SUB:
7039 case ISD::FSUB:
7040 case ISD::MUL:
7041 case ISD::FMUL:
7042 case ISD::SDIV:
7043 case ISD::UDIV:
7044 case ISD::FDIV:
7045 case ISD::SREM:
7046 case ISD::UREM:
7047 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007048 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007049 case ISD::AND:
7050 case ISD::OR:
7051 case ISD::XOR:
7052 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00007053 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007054 ScalarizeVectorOp(Node->getOperand(0)),
7055 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007056 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007057 case ISD::FNEG:
7058 case ISD::FABS:
7059 case ISD::FSQRT:
7060 case ISD::FSIN:
7061 case ISD::FCOS:
7062 Result = DAG.getNode(Node->getOpcode(),
7063 NewVT,
7064 ScalarizeVectorOp(Node->getOperand(0)));
7065 break;
Dan Gohman9e04c822007-10-12 14:13:46 +00007066 case ISD::FPOWI:
7067 Result = DAG.getNode(Node->getOpcode(),
7068 NewVT,
7069 ScalarizeVectorOp(Node->getOperand(0)),
7070 Node->getOperand(1));
7071 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007072 case ISD::LOAD: {
7073 LoadSDNode *LD = cast<LoadSDNode>(Node);
7074 SDOperand Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7075 SDOperand Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00007076
Dan Gohman7f321562007-06-25 16:23:39 +00007077 const Value *SV = LD->getSrcValue();
7078 int SVOffset = LD->getSrcValueOffset();
7079 Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset,
7080 LD->isVolatile(), LD->getAlignment());
7081
Chris Lattnerc7029802006-03-18 01:44:44 +00007082 // Remember that we legalized the chain.
7083 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7084 break;
7085 }
Dan Gohman7f321562007-06-25 16:23:39 +00007086 case ISD::BUILD_VECTOR:
7087 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007088 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007089 case ISD::INSERT_VECTOR_ELT:
7090 // Returning the inserted scalar element.
7091 Result = Node->getOperand(1);
7092 break;
7093 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007094 assert(Node->getOperand(0).getValueType() == NewVT &&
7095 "Concat of non-legal vectors not yet supported!");
7096 Result = Node->getOperand(0);
7097 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007098 case ISD::VECTOR_SHUFFLE: {
7099 // Figure out if the scalar is the LHS or RHS and return it.
7100 SDOperand EltNum = Node->getOperand(2).getOperand(0);
7101 if (cast<ConstantSDNode>(EltNum)->getValue())
7102 Result = ScalarizeVectorOp(Node->getOperand(1));
7103 else
7104 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007105 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007106 }
7107 case ISD::EXTRACT_SUBVECTOR:
7108 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00007109 assert(Result.getValueType() == NewVT);
7110 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007111 case ISD::BIT_CONVERT: {
7112 SDOperand Op0 = Op.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007113 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007114 Op0 = ScalarizeVectorOp(Op0);
7115 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007116 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007117 }
Dan Gohman7f321562007-06-25 16:23:39 +00007118 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007119 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007120 ScalarizeVectorOp(Op.getOperand(1)),
7121 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007122 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007123 case ISD::VSETCC: {
7124 SDOperand Op0 = ScalarizeVectorOp(Op.getOperand(0));
7125 SDOperand Op1 = ScalarizeVectorOp(Op.getOperand(1));
7126 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0), Op0, Op1,
7127 Op.getOperand(2));
7128 Result = DAG.getNode(ISD::SELECT, NewVT, Result,
7129 DAG.getConstant(-1ULL, NewVT),
7130 DAG.getConstant(0ULL, NewVT));
7131 break;
7132 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007133 }
7134
7135 if (TLI.isTypeLegal(NewVT))
7136 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007137 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7138 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007139 return Result;
7140}
7141
Chris Lattner3e928bb2005-01-07 07:47:09 +00007142
7143// SelectionDAG::Legalize - This is the entry point for the file.
7144//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00007145void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00007146 if (ViewLegalizeDAGs) viewGraph();
7147
Chris Lattner3e928bb2005-01-07 07:47:09 +00007148 /// run - This is the main entry point to this class.
7149 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00007150 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00007151}
7152