blob: a3f268f63c81545545e24d75667208991d750305 [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) {
Dan Gohman6b345ee2008-07-07 17:46:23 +0000118 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
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:
Dan Gohman1002c022008-07-07 18:00:37 +0000125 explicit SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000126
Chris Lattner3e928bb2005-01-07 07:47:09 +0000127 /// getTypeAction - Return how we should legalize values of this type, either
128 /// it is already legal or we need to expand it into multiple registers of
129 /// smaller integer type, or we need to promote it to a larger type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000130 LegalizeAction getTypeAction(MVT VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000131 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000132 }
133
134 /// isTypeLegal - Return true if this type is legal on this target.
135 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000136 bool isTypeLegal(MVT VT) const {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000137 return getTypeAction(VT) == Legal;
138 }
139
Chris Lattner3e928bb2005-01-07 07:47:09 +0000140 void LegalizeDAG();
141
Chris Lattner456a93a2006-01-28 07:39:30 +0000142private:
Dan Gohman7f321562007-06-25 16:23:39 +0000143 /// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000144 /// appropriate for its type.
145 void HandleOp(SDOperand Op);
146
147 /// LegalizeOp - We know that the specified value has a legal type.
148 /// Recursively ensure that the operands have legal types, then return the
149 /// result.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000150 SDOperand LegalizeOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000151
Dan Gohman82669522007-10-11 23:57:53 +0000152 /// UnrollVectorOp - We know that the given vector has a legal type, however
153 /// the operation it performs is not legal and is an operation that we have
154 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
155 /// operating on each element individually.
156 SDOperand UnrollVectorOp(SDOperand O);
Nate Begeman68679912008-04-25 18:07:40 +0000157
158 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
159 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
160 /// is necessary to spill the vector being inserted into to memory, perform
161 /// the insert there, and then read the result back.
162 SDOperand PerformInsertVectorEltInMemory(SDOperand Vec, SDOperand Val,
163 SDOperand Idx);
Dan Gohman82669522007-10-11 23:57:53 +0000164
Chris Lattnerc7029802006-03-18 01:44:44 +0000165 /// PromoteOp - Given an operation that produces a value in an invalid type,
166 /// promote it to compute the value into a larger type. The produced value
167 /// will have the correct bits for the low portion of the register, but no
168 /// guarantee is made about the top bits: it may be zero, sign-extended, or
169 /// garbage.
Chris Lattner03c85462005-01-15 05:21:40 +0000170 SDOperand PromoteOp(SDOperand O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000171
Chris Lattnerc7029802006-03-18 01:44:44 +0000172 /// ExpandOp - Expand the specified SDOperand into its two component pieces
173 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
174 /// the LegalizeNodes map is filled in for any results that are not expanded,
175 /// the ExpandedNodes map is filled in for any results that are expanded, and
176 /// the Lo/Hi values are returned. This applies to integer types and Vector
177 /// types.
178 void ExpandOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
179
Dan Gohman7f321562007-06-25 16:23:39 +0000180 /// SplitVectorOp - Given an operand of vector type, break it down into
181 /// two smaller values.
Chris Lattnerc7029802006-03-18 01:44:44 +0000182 void SplitVectorOp(SDOperand O, SDOperand &Lo, SDOperand &Hi);
183
Dan Gohman89b20c02007-06-27 14:06:22 +0000184 /// ScalarizeVectorOp - Given an operand of single-element vector type
185 /// (e.g. v1f32), convert it into the equivalent operation that returns a
186 /// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +0000187 SDOperand ScalarizeVectorOp(SDOperand O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000188
Chris Lattner4352cc92006-04-04 17:23:26 +0000189 /// isShuffleLegal - Return true if a vector shuffle is legal with the
190 /// specified mask and type. Targets can specify exactly which masks they
191 /// support and the code generator is tasked with not creating illegal masks.
192 ///
193 /// Note that this will also return true for shuffles that are promoted to a
194 /// different type.
195 ///
196 /// If this is a legal shuffle, this method returns the (possibly promoted)
197 /// build_vector Mask. If it's not a legal shuffle, it returns null.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000198 SDNode *isShuffleLegal(MVT VT, SDOperand Mask) const;
Chris Lattner4352cc92006-04-04 17:23:26 +0000199
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000200 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000201 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000202
Nate Begeman750ac1b2006-02-01 07:19:44 +0000203 void LegalizeSetCCOperands(SDOperand &LHS, SDOperand &RHS, SDOperand &CC);
204
Duncan Sands460a14e2008-04-12 17:14:18 +0000205 SDOperand ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
Chris Lattner77e77a62005-01-21 06:05:23 +0000206 SDOperand &Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000207 SDOperand ExpandIntToFP(bool isSigned, MVT DestTy, SDOperand Source);
Chris Lattnercad063f2005-07-16 00:19:57 +0000208
Duncan Sands83ec4b62008-06-06 12:08:01 +0000209 SDOperand EmitStackConvert(SDOperand SrcOp, MVT SlotVT, MVT DestVT);
Chris Lattnerce872152006-03-19 06:31:19 +0000210 SDOperand ExpandBUILD_VECTOR(SDNode *Node);
Chris Lattner4352cc92006-04-04 17:23:26 +0000211 SDOperand ExpandSCALAR_TO_VECTOR(SDNode *Node);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000212 SDOperand ExpandLegalINT_TO_FP(bool isSigned, SDOperand LegalOp, MVT DestVT);
213 SDOperand PromoteLegalINT_TO_FP(SDOperand LegalOp, MVT DestVT, bool isSigned);
214 SDOperand PromoteLegalFP_TO_INT(SDOperand LegalOp, MVT DestVT, bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000215
Chris Lattner456a93a2006-01-28 07:39:30 +0000216 SDOperand ExpandBSWAP(SDOperand Op);
217 SDOperand ExpandBitCount(unsigned Opc, SDOperand Op);
Chris Lattnere34b3962005-01-19 04:19:40 +0000218 bool ExpandShift(unsigned Opc, SDOperand Op, SDOperand Amt,
219 SDOperand &Lo, SDOperand &Hi);
Chris Lattner5b359c62005-04-02 04:00:59 +0000220 void ExpandShiftParts(unsigned NodeOp, SDOperand Op, SDOperand Amt,
221 SDOperand &Lo, SDOperand &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000222
Dan Gohman7f321562007-06-25 16:23:39 +0000223 SDOperand ExpandEXTRACT_SUBVECTOR(SDOperand Op);
Chris Lattner4aab2f42006-04-02 05:06:04 +0000224 SDOperand ExpandEXTRACT_VECTOR_ELT(SDOperand Op);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000225};
226}
227
Chris Lattner4352cc92006-04-04 17:23:26 +0000228/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
229/// specified mask and type. Targets can specify exactly which masks they
230/// support and the code generator is tasked with not creating illegal masks.
231///
232/// Note that this will also return true for shuffles that are promoted to a
233/// different type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000234SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDOperand Mask) const {
Chris Lattner4352cc92006-04-04 17:23:26 +0000235 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
236 default: return 0;
237 case TargetLowering::Legal:
238 case TargetLowering::Custom:
239 break;
240 case TargetLowering::Promote: {
241 // If this is promoted to a different type, convert the shuffle mask and
242 // ask if it is legal in the promoted type!
Duncan Sands83ec4b62008-06-06 12:08:01 +0000243 MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
Chris Lattner4352cc92006-04-04 17:23:26 +0000244
245 // If we changed # elements, change the shuffle mask.
246 unsigned NumEltsGrowth =
Duncan Sands83ec4b62008-06-06 12:08:01 +0000247 NVT.getVectorNumElements() / VT.getVectorNumElements();
Chris Lattner4352cc92006-04-04 17:23:26 +0000248 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
249 if (NumEltsGrowth > 1) {
250 // Renumber the elements.
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000251 SmallVector<SDOperand, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000252 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
253 SDOperand InOp = Mask.getOperand(i);
254 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
255 if (InOp.getOpcode() == ISD::UNDEF)
256 Ops.push_back(DAG.getNode(ISD::UNDEF, MVT::i32));
257 else {
258 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
259 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, MVT::i32));
260 }
261 }
262 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000263 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000264 }
265 VT = NVT;
266 break;
267 }
268 }
269 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
270}
271
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000272SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
273 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
274 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000275 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000276 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000277}
278
Chris Lattnere10e6f72007-06-18 21:28:10 +0000279/// ComputeTopDownOrdering - Compute a top-down ordering of the dag, where Order
280/// contains all of a nodes operands before it contains the node.
281static void ComputeTopDownOrdering(SelectionDAG &DAG,
282 SmallVector<SDNode*, 64> &Order) {
283
284 DenseMap<SDNode*, unsigned> Visited;
285 std::vector<SDNode*> Worklist;
286 Worklist.reserve(128);
Chris Lattner32fca002005-10-06 01:20:27 +0000287
Chris Lattnere10e6f72007-06-18 21:28:10 +0000288 // Compute ordering from all of the leaves in the graphs, those (like the
289 // entry node) that have no operands.
290 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
291 E = DAG.allnodes_end(); I != E; ++I) {
292 if (I->getNumOperands() == 0) {
293 Visited[I] = 0 - 1U;
294 Worklist.push_back(I);
295 }
Chris Lattner32fca002005-10-06 01:20:27 +0000296 }
297
Chris Lattnere10e6f72007-06-18 21:28:10 +0000298 while (!Worklist.empty()) {
299 SDNode *N = Worklist.back();
300 Worklist.pop_back();
301
302 if (++Visited[N] != N->getNumOperands())
303 continue; // Haven't visited all operands yet
304
305 Order.push_back(N);
306
307 // Now that we have N in, add anything that uses it if all of their operands
308 // are now done.
309 for (SDNode::use_iterator UI = N->use_begin(), E = N->use_end();
310 UI != E; ++UI)
Roman Levensteindc1adac2008-04-07 10:06:32 +0000311 Worklist.push_back(UI->getUser());
Chris Lattnere10e6f72007-06-18 21:28:10 +0000312 }
313
314 assert(Order.size() == Visited.size() &&
Dan Gohman3461cc92008-06-20 17:15:19 +0000315 Order.size() == DAG.allnodes_size() &&
Chris Lattnere10e6f72007-06-18 21:28:10 +0000316 "Error: DAG is cyclic!");
Chris Lattner32fca002005-10-06 01:20:27 +0000317}
318
Chris Lattner1618beb2005-07-29 00:11:56 +0000319
Chris Lattner3e928bb2005-01-07 07:47:09 +0000320void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000321 LastCALLSEQ_END = DAG.getEntryNode();
322 IsLegalizingCall = false;
323
Chris Lattnerab510a72005-10-02 17:49:46 +0000324 // The legalize process is inherently a bottom-up recursive process (users
325 // legalize their uses before themselves). Given infinite stack space, we
326 // could just start legalizing on the root and traverse the whole graph. In
327 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000328 // blocks. To avoid this problem, compute an ordering of the nodes where each
329 // node is only legalized after all of its operands are legalized.
Chris Lattner0ed44172007-02-04 01:20:02 +0000330 SmallVector<SDNode*, 64> Order;
Chris Lattnere10e6f72007-06-18 21:28:10 +0000331 ComputeTopDownOrdering(DAG, Order);
Chris Lattnerab510a72005-10-02 17:49:46 +0000332
Chris Lattnerc7029802006-03-18 01:44:44 +0000333 for (unsigned i = 0, e = Order.size(); i != e; ++i)
334 HandleOp(SDOperand(Order[i], 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000335
336 // Finally, it's possible the root changed. Get the new root.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000337 SDOperand OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000338 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
339 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000340
341 ExpandedNodes.clear();
342 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000343 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000344 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000345 ScalarizedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000346
347 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000348 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000349}
350
Chris Lattner6831a812006-02-13 09:18:02 +0000351
352/// FindCallEndFromCallStart - Given a chained node that is part of a call
353/// sequence, find the CALLSEQ_END node that terminates the call sequence.
354static SDNode *FindCallEndFromCallStart(SDNode *Node) {
355 if (Node->getOpcode() == ISD::CALLSEQ_END)
356 return Node;
357 if (Node->use_empty())
358 return 0; // No CallSeqEnd
359
360 // The chain is usually at the end.
361 SDOperand TheChain(Node, Node->getNumValues()-1);
362 if (TheChain.getValueType() != MVT::Other) {
363 // Sometimes it's at the beginning.
364 TheChain = SDOperand(Node, 0);
365 if (TheChain.getValueType() != MVT::Other) {
366 // Otherwise, hunt for it.
367 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
368 if (Node->getValueType(i) == MVT::Other) {
369 TheChain = SDOperand(Node, i);
370 break;
371 }
372
373 // Otherwise, we walked into a node without a chain.
374 if (TheChain.getValueType() != MVT::Other)
375 return 0;
376 }
377 }
378
379 for (SDNode::use_iterator UI = Node->use_begin(),
380 E = Node->use_end(); UI != E; ++UI) {
381
382 // Make sure to only follow users of our token chain.
Roman Levensteindc1adac2008-04-07 10:06:32 +0000383 SDNode *User = UI->getUser();
Chris Lattner6831a812006-02-13 09:18:02 +0000384 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
385 if (User->getOperand(i) == TheChain)
386 if (SDNode *Result = FindCallEndFromCallStart(User))
387 return Result;
388 }
389 return 0;
390}
391
392/// FindCallStartFromCallEnd - Given a chained node that is part of a call
393/// sequence, find the CALLSEQ_START node that initiates the call sequence.
394static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
395 assert(Node && "Didn't find callseq_start for a call??");
396 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
397
398 assert(Node->getOperand(0).getValueType() == MVT::Other &&
399 "Node doesn't have a token chain argument!");
400 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
401}
402
403/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
404/// see if any uses can reach Dest. If no dest operands can get to dest,
405/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000406///
407/// Keep track of the nodes we fine that actually do lead to Dest in
408/// NodesLeadingTo. This avoids retraversing them exponential number of times.
409///
410bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000411 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000412 if (N == Dest) return true; // N certainly leads to Dest :)
413
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000414 // If we've already processed this node and it does lead to Dest, there is no
415 // need to reprocess it.
416 if (NodesLeadingTo.count(N)) return true;
417
Chris Lattner6831a812006-02-13 09:18:02 +0000418 // If the first result of this node has been already legalized, then it cannot
419 // reach N.
420 switch (getTypeAction(N->getValueType(0))) {
421 case Legal:
422 if (LegalizedNodes.count(SDOperand(N, 0))) return false;
423 break;
424 case Promote:
425 if (PromotedNodes.count(SDOperand(N, 0))) return false;
426 break;
427 case Expand:
428 if (ExpandedNodes.count(SDOperand(N, 0))) return false;
429 break;
430 }
431
432 // Okay, this node has not already been legalized. Check and legalize all
433 // operands. If none lead to Dest, then we can legalize this node.
434 bool OperandsLeadToDest = false;
435 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
436 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000437 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000438
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000439 if (OperandsLeadToDest) {
440 NodesLeadingTo.insert(N);
441 return true;
442 }
Chris Lattner6831a812006-02-13 09:18:02 +0000443
444 // Okay, this node looks safe, legalize it and return false.
Chris Lattner80edfb32006-04-17 22:10:08 +0000445 HandleOp(SDOperand(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000446 return false;
447}
448
Dan Gohman7f321562007-06-25 16:23:39 +0000449/// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000450/// appropriate for its type.
451void SelectionDAGLegalize::HandleOp(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000452 MVT VT = Op.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000453 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000454 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000455 case Legal: (void)LegalizeOp(Op); break;
456 case Promote: (void)PromoteOp(Op); break;
Chris Lattnerc7029802006-03-18 01:44:44 +0000457 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000458 if (!VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +0000459 // If this is an illegal scalar, expand it into its two component
460 // pieces.
Chris Lattnerc7029802006-03-18 01:44:44 +0000461 SDOperand X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000462 if (Op.getOpcode() == ISD::TargetConstant)
463 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000464 ExpandOp(Op, X, Y);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000465 } else if (VT.getVectorNumElements() == 1) {
Dan Gohman7f321562007-06-25 16:23:39 +0000466 // If this is an illegal single element vector, convert it to a
467 // scalar operation.
468 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000469 } else {
Dan Gohman7f321562007-06-25 16:23:39 +0000470 // Otherwise, this is an illegal multiple element vector.
471 // Split it in half and legalize both parts.
472 SDOperand X, Y;
473 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000474 }
475 break;
476 }
477}
Chris Lattner6831a812006-02-13 09:18:02 +0000478
Evan Cheng9f877882006-12-13 20:57:08 +0000479/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
480/// a load from the constant pool.
481static SDOperand ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng279101e2006-12-12 22:19:28 +0000482 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000483 bool Extend = false;
484
485 // If a FP immediate is precise when represented as a float and if the
486 // target can do an extending load from float to double, we put it into
487 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000488 // double. This shrinks FP constants and canonicalizes them for targets where
489 // an FP extending load is the same cost as a normal load (such as on the x87
490 // fp stack or PPC FP unit).
Duncan Sands83ec4b62008-06-06 12:08:01 +0000491 MVT VT = CFP->getValueType(0);
Chris Lattner02a260a2008-04-20 00:41:09 +0000492 ConstantFP *LLVMC = ConstantFP::get(CFP->getValueAPF());
Evan Cheng9f877882006-12-13 20:57:08 +0000493 if (!UseCP) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000494 if (VT!=MVT::f64 && VT!=MVT::f32)
495 assert(0 && "Invalid type expansion");
Dan Gohman6cf9b8a2008-03-11 00:11:06 +0000496 return DAG.getConstant(LLVMC->getValueAPF().convertToAPInt(),
Evan Chengef120572008-03-04 08:05:30 +0000497 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000498 }
499
Duncan Sands83ec4b62008-06-06 12:08:01 +0000500 MVT OrigVT = VT;
501 MVT SVT = VT;
Evan Chengef120572008-03-04 08:05:30 +0000502 while (SVT != MVT::f32) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000503 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Chengef120572008-03-04 08:05:30 +0000504 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
505 // Only do this if the target has a native EXTLOAD instruction from
506 // smaller type.
Evan Cheng6fd599f2008-03-05 01:30:59 +0000507 TLI.isLoadXLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000508 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000509 const Type *SType = SVT.getTypeForMVT();
Evan Chengef120572008-03-04 08:05:30 +0000510 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
511 VT = SVT;
512 Extend = true;
513 }
Evan Cheng00495212006-12-12 21:32:44 +0000514 }
515
516 SDOperand CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Chengef120572008-03-04 08:05:30 +0000517 if (Extend)
518 return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000519 CPIdx, PseudoSourceValue::getConstantPool(),
Evan Chengef120572008-03-04 08:05:30 +0000520 0, VT);
521 return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx,
522 PseudoSourceValue::getConstantPool(), 0);
Evan Cheng00495212006-12-12 21:32:44 +0000523}
524
Chris Lattner6831a812006-02-13 09:18:02 +0000525
Evan Cheng912095b2007-01-04 21:56:39 +0000526/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
527/// operations.
528static
Duncan Sands83ec4b62008-06-06 12:08:01 +0000529SDOperand ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
Evan Cheng912095b2007-01-04 21:56:39 +0000530 SelectionDAG &DAG, TargetLowering &TLI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000531 MVT VT = Node->getValueType(0);
532 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000533 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
534 "fcopysign expansion only supported for f32 and f64");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000535 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000536
Evan Cheng912095b2007-01-04 21:56:39 +0000537 // First get the sign bit of second operand.
Evan Cheng068c5f42007-01-05 21:31:51 +0000538 SDOperand Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000539 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
540 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000541 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000542 SDOperand SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000543 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000544 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000545 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Evan Cheng912095b2007-01-04 21:56:39 +0000546 if (SizeDiff > 0) {
547 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
548 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
549 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
550 } else if (SizeDiff < 0)
551 SignBit = DAG.getNode(ISD::SIGN_EXTEND, NVT, SignBit);
Evan Cheng068c5f42007-01-05 21:31:51 +0000552
553 // Clear the sign bit of first operand.
554 SDOperand Mask2 = (VT == MVT::f64)
555 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
556 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
557 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Evan Cheng912095b2007-01-04 21:56:39 +0000558 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000559 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
560
561 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000562 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
563 return Result;
564}
565
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000566/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
567static
568SDOperand ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
569 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000570 SDOperand Chain = ST->getChain();
571 SDOperand Ptr = ST->getBasePtr();
572 SDOperand Val = ST->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000573 MVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000574 int Alignment = ST->getAlignment();
575 int SVOffset = ST->getSrcValueOffset();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000576 if (ST->getMemoryVT().isFloatingPoint() ||
577 ST->getMemoryVT().isVector()) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000578 // Expand to a bitconvert of the value to the integer type of the
579 // same size, then a (misaligned) int store.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000580 MVT intVT;
581 if (VT.is128BitVector() || VT == MVT::ppcf128 || VT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000582 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000583 else if (VT.is64BitVector() || VT==MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000584 intVT = MVT::i64;
585 else if (VT==MVT::f32)
586 intVT = MVT::i32;
587 else
Dale Johannesencd9f1742008-02-28 18:36:51 +0000588 assert(0 && "Unaligned store of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000589
590 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
591 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
592 SVOffset, ST->isVolatile(), Alignment);
593 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000594 assert(ST->getMemoryVT().isInteger() &&
595 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000596 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000597 // Get the half-size VT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000598 MVT NewStoredVT =
599 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
600 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000601 int IncrementSize = NumBits / 8;
602
603 // Divide the stored value in two parts.
604 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
605 SDOperand Lo = Val;
606 SDOperand Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
607
608 // Store the two parts
609 SDOperand Store1, Store2;
610 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
611 ST->getSrcValue(), SVOffset, NewStoredVT,
612 ST->isVolatile(), Alignment);
613 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
614 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000615 Alignment = MinAlign(Alignment, IncrementSize);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000616 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
617 ST->getSrcValue(), SVOffset + IncrementSize,
618 NewStoredVT, ST->isVolatile(), Alignment);
619
620 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
621}
622
623/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
624static
625SDOperand ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
626 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000627 int SVOffset = LD->getSrcValueOffset();
628 SDOperand Chain = LD->getChain();
629 SDOperand Ptr = LD->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000630 MVT VT = LD->getValueType(0);
631 MVT LoadedVT = LD->getMemoryVT();
632 if (VT.isFloatingPoint() || VT.isVector()) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000633 // Expand to a (misaligned) integer load of the same size,
Dale Johannesen8155d642008-02-27 22:36:00 +0000634 // then bitconvert to floating point or vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000635 MVT intVT;
636 if (LoadedVT.is128BitVector() ||
Dale Johannesen3c8b59c2008-03-01 03:40:57 +0000637 LoadedVT == MVT::ppcf128 || LoadedVT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000638 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000639 else if (LoadedVT.is64BitVector() || LoadedVT == MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000640 intVT = MVT::i64;
Chris Lattnere400af82007-11-19 21:38:03 +0000641 else if (LoadedVT == MVT::f32)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000642 intVT = MVT::i32;
643 else
Dale Johannesen8155d642008-02-27 22:36:00 +0000644 assert(0 && "Unaligned load of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000645
646 SDOperand newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
647 SVOffset, LD->isVolatile(),
648 LD->getAlignment());
649 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000650 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000651 Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
652
653 SDOperand Ops[] = { Result, Chain };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000654 return DAG.getMergeValues(Ops, 2);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000655 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000656 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000657 "Unaligned load of unsupported type.");
658
Dale Johannesen8155d642008-02-27 22:36:00 +0000659 // Compute the new VT that is half the size of the old one. This is an
660 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000661 unsigned NumBits = LoadedVT.getSizeInBits();
662 MVT NewLoadedVT;
663 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000664 NumBits >>= 1;
665
666 unsigned Alignment = LD->getAlignment();
667 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000668 ISD::LoadExtType HiExtType = LD->getExtensionType();
669
670 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
671 if (HiExtType == ISD::NON_EXTLOAD)
672 HiExtType = ISD::ZEXTLOAD;
673
674 // Load the value in two parts
675 SDOperand Lo, Hi;
676 if (TLI.isLittleEndian()) {
677 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
678 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
679 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
680 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
681 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
682 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000683 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000684 } else {
685 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
686 NewLoadedVT,LD->isVolatile(), Alignment);
687 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
688 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
689 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
690 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000691 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000692 }
693
694 // aggregate the two parts
695 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
696 SDOperand Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
697 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
698
699 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
700 Hi.getValue(1));
701
702 SDOperand Ops[] = { Result, TF };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000703 return DAG.getMergeValues(Ops, 2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000704}
Evan Cheng912095b2007-01-04 21:56:39 +0000705
Dan Gohman82669522007-10-11 23:57:53 +0000706/// UnrollVectorOp - We know that the given vector has a legal type, however
707/// the operation it performs is not legal and is an operation that we have
708/// no way of lowering. "Unroll" the vector, splitting out the scalars and
709/// operating on each element individually.
710SDOperand SelectionDAGLegalize::UnrollVectorOp(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000711 MVT VT = Op.getValueType();
Dan Gohman82669522007-10-11 23:57:53 +0000712 assert(isTypeLegal(VT) &&
713 "Caller should expand or promote operands that are not legal!");
714 assert(Op.Val->getNumValues() == 1 &&
715 "Can't unroll a vector with multiple results!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000716 unsigned NE = VT.getVectorNumElements();
717 MVT EltVT = VT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000718
719 SmallVector<SDOperand, 8> Scalars;
720 SmallVector<SDOperand, 4> Operands(Op.getNumOperands());
721 for (unsigned i = 0; i != NE; ++i) {
722 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
723 SDOperand Operand = Op.getOperand(j);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000724 MVT OperandVT = Operand.getValueType();
725 if (OperandVT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +0000726 // A vector operand; extract a single element.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000727 MVT OperandEltVT = OperandVT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000728 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
729 OperandEltVT,
730 Operand,
731 DAG.getConstant(i, MVT::i32));
732 } else {
733 // A scalar operand; just use it as is.
734 Operands[j] = Operand;
735 }
736 }
737 Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
738 &Operands[0], Operands.size()));
739 }
740
741 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
742}
743
Duncan Sands007f9842008-01-10 10:28:30 +0000744/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000745static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands007f9842008-01-10 10:28:30 +0000746 RTLIB::Libcall Call_F32,
747 RTLIB::Libcall Call_F64,
748 RTLIB::Libcall Call_F80,
749 RTLIB::Libcall Call_PPCF128) {
750 return
751 VT == MVT::f32 ? Call_F32 :
752 VT == MVT::f64 ? Call_F64 :
753 VT == MVT::f80 ? Call_F80 :
754 VT == MVT::ppcf128 ? Call_PPCF128 :
755 RTLIB::UNKNOWN_LIBCALL;
756}
757
Nate Begeman68679912008-04-25 18:07:40 +0000758/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
759/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
760/// is necessary to spill the vector being inserted into to memory, perform
761/// the insert there, and then read the result back.
762SDOperand SelectionDAGLegalize::
763PerformInsertVectorEltInMemory(SDOperand Vec, SDOperand Val, SDOperand Idx) {
764 SDOperand Tmp1 = Vec;
765 SDOperand Tmp2 = Val;
766 SDOperand Tmp3 = Idx;
767
768 // If the target doesn't support this, we have to spill the input vector
769 // to a temporary stack slot, update the element, then reload it. This is
770 // badness. We could also load the value into a vector register (either
771 // with a "move to register" or "extload into register" instruction, then
772 // permute it into place, if the idx is a constant and if the idx is
773 // supported by the target.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000774 MVT VT = Tmp1.getValueType();
775 MVT EltVT = VT.getVectorElementType();
776 MVT IdxVT = Tmp3.getValueType();
777 MVT PtrVT = TLI.getPointerTy();
Nate Begeman68679912008-04-25 18:07:40 +0000778 SDOperand StackPtr = DAG.CreateStackTemporary(VT);
779
780 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr.Val);
781 int SPFI = StackPtrFI->getIndex();
782
783 // Store the vector.
784 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr,
785 PseudoSourceValue::getFixedStack(),
786 SPFI);
787
788 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000789 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Nate Begeman68679912008-04-25 18:07:40 +0000790 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
791 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000792 unsigned EltSize = EltVT.getSizeInBits()/8;
Nate Begeman68679912008-04-25 18:07:40 +0000793 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
794 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
795 // Store the scalar value.
796 Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2,
797 PseudoSourceValue::getFixedStack(), SPFI, EltVT);
798 // Load the updated vector.
799 return DAG.getLoad(VT, Ch, StackPtr, PseudoSourceValue::getFixedStack(),SPFI);
800}
801
Dan Gohmana3466152007-07-13 20:14:11 +0000802/// LegalizeOp - We know that the specified value has a legal type, and
803/// that its operands are legal. Now ensure that the operation itself
804/// is legal, recursively ensuring that the operands' operations remain
805/// legal.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000806SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000807 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
808 return Op;
809
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000810 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000811 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000812 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000813
Chris Lattner3e928bb2005-01-07 07:47:09 +0000814 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000815 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000816 if (Node->getNumValues() > 1) {
817 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000818 if (getTypeAction(Node->getValueType(i)) != Legal) {
819 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000820 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000821 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000822 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000823 }
824 }
825
Chris Lattner45982da2005-05-12 16:53:42 +0000826 // Note that LegalizeOp may be reentered even from single-use nodes, which
827 // means that we always must cache transformed nodes.
Roman Levenstein9cac5252008-04-16 16:15:27 +0000828 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000829 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000830
Nate Begeman9373a812005-08-10 20:51:12 +0000831 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000832 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000833 bool isCustom = false;
834
Chris Lattner3e928bb2005-01-07 07:47:09 +0000835 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000836 case ISD::FrameIndex:
837 case ISD::EntryToken:
838 case ISD::Register:
839 case ISD::BasicBlock:
840 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000841 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000842 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000843 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000844 case ISD::TargetConstantPool:
845 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000846 case ISD::TargetGlobalTLSAddress:
Chris Lattner948c1b12006-01-28 08:31:04 +0000847 case ISD::TargetExternalSymbol:
848 case ISD::VALUETYPE:
849 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +0000850 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +0000851 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +0000852 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +0000853 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +0000854 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +0000855 "This must be legal!");
856 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000857 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000858 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
859 // If this is a target node, legalize it by legalizing the operands then
860 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000861 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000862 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000863 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000864
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000865 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000866
867 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
868 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
869 return Result.getValue(Op.ResNo);
870 }
871 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000872#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +0000873 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000874#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000875 assert(0 && "Do not know how to legalize this operator!");
876 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +0000877 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000878 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000879 case ISD::GlobalTLSAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000880 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000881 case ISD::ConstantPool:
882 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000883 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
884 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000885 case TargetLowering::Custom:
886 Tmp1 = TLI.LowerOperation(Op, DAG);
887 if (Tmp1.Val) Result = Tmp1;
888 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000889 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000890 break;
891 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000892 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000893 case ISD::FRAMEADDR:
894 case ISD::RETURNADDR:
895 // The only option for these nodes is to custom lower them. If the target
896 // does not custom lower them, then return zero.
897 Tmp1 = TLI.LowerOperation(Op, DAG);
898 if (Tmp1.Val)
899 Result = Tmp1;
900 else
901 Result = DAG.getConstant(0, TLI.getPointerTy());
902 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000903 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000904 MVT VT = Node->getValueType(0);
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000905 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
906 default: assert(0 && "This action is not supported yet!");
907 case TargetLowering::Custom:
908 Result = TLI.LowerOperation(Op, DAG);
909 if (Result.Val) break;
910 // Fall Thru
911 case TargetLowering::Legal:
912 Result = DAG.getConstant(0, VT);
913 break;
914 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000915 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000916 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000917 case ISD::EXCEPTIONADDR: {
918 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000919 MVT VT = Node->getValueType(0);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000920 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
921 default: assert(0 && "This action is not supported yet!");
922 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000923 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000924 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000925 }
926 break;
927 case TargetLowering::Custom:
928 Result = TLI.LowerOperation(Op, DAG);
929 if (Result.Val) break;
930 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000931 case TargetLowering::Legal: {
932 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000933 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000934 break;
935 }
936 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000937 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000938 if (Result.Val->getNumValues() == 1) break;
939
940 assert(Result.Val->getNumValues() == 2 &&
941 "Cannot return more than two values!");
942
943 // Since we produced two values, make sure to remember that we
944 // legalized both of them.
945 Tmp1 = LegalizeOp(Result);
946 Tmp2 = LegalizeOp(Result.getValue(1));
947 AddLegalizedOperand(Op.getValue(0), Tmp1);
948 AddLegalizedOperand(Op.getValue(1), Tmp2);
949 return Op.ResNo ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +0000950 case ISD::EHSELECTION: {
951 Tmp1 = LegalizeOp(Node->getOperand(0));
952 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000953 MVT VT = Node->getValueType(0);
Jim Laskey8782d482007-02-28 20:43:58 +0000954 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
955 default: assert(0 && "This action is not supported yet!");
956 case TargetLowering::Expand: {
957 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000958 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +0000959 }
960 break;
961 case TargetLowering::Custom:
962 Result = TLI.LowerOperation(Op, DAG);
963 if (Result.Val) break;
964 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000965 case TargetLowering::Legal: {
966 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000967 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey8782d482007-02-28 20:43:58 +0000968 break;
969 }
970 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000971 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000972 if (Result.Val->getNumValues() == 1) break;
973
974 assert(Result.Val->getNumValues() == 2 &&
975 "Cannot return more than two values!");
976
977 // Since we produced two values, make sure to remember that we
978 // legalized both of them.
979 Tmp1 = LegalizeOp(Result);
980 Tmp2 = LegalizeOp(Result.getValue(1));
981 AddLegalizedOperand(Op.getValue(0), Tmp1);
982 AddLegalizedOperand(Op.getValue(1), Tmp2);
983 return Op.ResNo ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000984 case ISD::EH_RETURN: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000985 MVT VT = Node->getValueType(0);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000986 // The only "good" option for this node is to custom lower it.
987 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
988 default: assert(0 && "This action is not supported at all!");
989 case TargetLowering::Custom:
990 Result = TLI.LowerOperation(Op, DAG);
991 if (Result.Val) break;
992 // Fall Thru
993 case TargetLowering::Legal:
994 // Target does not know, how to lower this, lower to noop
995 Result = LegalizeOp(Node->getOperand(0));
996 break;
997 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000998 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000999 break;
Chris Lattner08951a32005-09-02 01:15:01 +00001000 case ISD::AssertSext:
1001 case ISD::AssertZext:
1002 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001003 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +00001004 break;
Chris Lattner308575b2005-11-20 22:56:56 +00001005 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001006 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +00001007 Result = Node->getOperand(Op.ResNo);
1008 break;
Chris Lattner69a52152005-01-14 22:38:01 +00001009 case ISD::CopyFromReg:
1010 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001011 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001012 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001013 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +00001014 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001015 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001016 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001017 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001018 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1019 } else {
1020 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1021 }
Chris Lattner7310fb12005-12-18 15:27:43 +00001022 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1023 }
Chris Lattner13c184d2005-01-28 06:27:38 +00001024 // Since CopyFromReg produces two values, make sure to remember that we
1025 // legalized both of them.
1026 AddLegalizedOperand(Op.getValue(0), Result);
1027 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1028 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001029 case ISD::UNDEF: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001030 MVT VT = Op.getValueType();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001031 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +00001032 default: assert(0 && "This action is not supported yet!");
1033 case TargetLowering::Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001034 if (VT.isInteger())
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001035 Result = DAG.getConstant(0, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001036 else if (VT.isFloatingPoint())
1037 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf41db212007-09-26 17:26:49 +00001038 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001039 else
1040 assert(0 && "Unknown value type!");
1041 break;
Nate Begemanea19cd52005-04-02 00:41:14 +00001042 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001043 break;
1044 }
1045 break;
1046 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001047
Chris Lattner48b61a72006-03-28 00:40:33 +00001048 case ISD::INTRINSIC_W_CHAIN:
1049 case ISD::INTRINSIC_WO_CHAIN:
1050 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001051 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001052 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1053 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001054 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +00001055
1056 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +00001057 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001058 TargetLowering::Custom) {
1059 Tmp3 = TLI.LowerOperation(Result, DAG);
1060 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001061 }
1062
1063 if (Result.Val->getNumValues() == 1) break;
1064
1065 // Must have return value and chain result.
1066 assert(Result.Val->getNumValues() == 2 &&
1067 "Cannot return more than two values!");
1068
1069 // Since loads produce two values, make sure to remember that we
1070 // legalized both of them.
1071 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1072 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1073 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001074 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001075
Dan Gohman7f460202008-06-30 20:59:49 +00001076 case ISD::DBG_STOPPOINT:
1077 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Chris Lattner36ce6912005-11-29 06:21:05 +00001078 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1079
Dan Gohman7f460202008-06-30 20:59:49 +00001080 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Chris Lattner36ce6912005-11-29 06:21:05 +00001081 case TargetLowering::Promote:
1082 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001083 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001084 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001085 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Dan Gohman44066042008-07-01 00:05:16 +00001086 bool useLABEL = TLI.isOperationLegal(ISD::DBG_LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001087
Dan Gohman7f460202008-06-30 20:59:49 +00001088 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001089 if (MMI && (useDEBUG_LOC || useLABEL)) {
Dan Gohman7f460202008-06-30 20:59:49 +00001090 const CompileUnitDesc *CompileUnit = DSP->getCompileUnit();
1091 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001092
Dan Gohman7f460202008-06-30 20:59:49 +00001093 unsigned Line = DSP->getLine();
1094 unsigned Col = DSP->getColumn();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001095
1096 if (useDEBUG_LOC) {
Dan Gohman44066042008-07-01 00:05:16 +00001097 SmallVector<SDOperand, 8> Ops;
1098 Ops.push_back(Tmp1); // chain
Dan Gohman7f460202008-06-30 20:59:49 +00001099 Ops.push_back(DAG.getConstant(Line, MVT::i32)); // line #
1100 Ops.push_back(DAG.getConstant(Col, MVT::i32)); // col #
Jim Laskeyabf6d172006-01-05 01:25:28 +00001101 Ops.push_back(DAG.getConstant(SrcFile, MVT::i32)); // source file id
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001102 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, &Ops[0], Ops.size());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001103 } else {
Evan Chenga647c922008-02-01 02:05:57 +00001104 unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
Dan Gohman44066042008-07-01 00:05:16 +00001105 Result = DAG.getLabel(ISD::DBG_LABEL, Tmp1, ID);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001106 }
Jim Laskeye81aecb2005-12-21 20:51:37 +00001107 } else {
1108 Result = Tmp1; // chain
1109 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001110 break;
Chris Lattnere7736732005-12-18 23:54:29 +00001111 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001112 case TargetLowering::Legal:
Chris Lattner9ad17c92005-12-01 18:21:35 +00001113 if (Tmp1 != Node->getOperand(0) ||
1114 getTypeAction(Node->getOperand(1).getValueType()) == Promote) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001115 SmallVector<SDOperand, 8> Ops;
Chris Lattner36ce6912005-11-29 06:21:05 +00001116 Ops.push_back(Tmp1);
Chris Lattner9ad17c92005-12-01 18:21:35 +00001117 if (getTypeAction(Node->getOperand(1).getValueType()) == Legal) {
1118 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1119 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1120 } else {
1121 // Otherwise promote them.
1122 Ops.push_back(PromoteOp(Node->getOperand(1)));
1123 Ops.push_back(PromoteOp(Node->getOperand(2)));
1124 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001125 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1126 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001127 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001128 }
1129 break;
1130 }
1131 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001132
1133 case ISD::DECLARE:
1134 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1135 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1136 default: assert(0 && "This action is not supported yet!");
1137 case TargetLowering::Legal:
1138 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1139 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1140 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1141 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1142 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001143 case TargetLowering::Expand:
1144 Result = LegalizeOp(Node->getOperand(0));
1145 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001146 }
1147 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001148
1149 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001150 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001151 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001152 default: assert(0 && "This action is not supported yet!");
Jim Laskeyabf6d172006-01-05 01:25:28 +00001153 case TargetLowering::Legal:
1154 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1155 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1156 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1157 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001158 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001159 break;
1160 }
1161 break;
1162
Dan Gohman44066042008-07-01 00:05:16 +00001163 case ISD::DBG_LABEL:
1164 case ISD::EH_LABEL:
1165 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1166 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001167 default: assert(0 && "This action is not supported yet!");
1168 case TargetLowering::Legal:
1169 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001170 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001171 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001172 case TargetLowering::Expand:
1173 Result = LegalizeOp(Node->getOperand(0));
1174 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001175 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001176 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001177
Evan Cheng27b7db52008-03-08 00:58:38 +00001178 case ISD::PREFETCH:
1179 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1180 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1181 default: assert(0 && "This action is not supported yet!");
1182 case TargetLowering::Legal:
1183 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1184 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1185 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1186 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1187 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1188 break;
1189 case TargetLowering::Expand:
1190 // It's a noop.
1191 Result = LegalizeOp(Node->getOperand(0));
1192 break;
1193 }
1194 break;
1195
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001196 case ISD::MEMBARRIER: {
1197 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001198 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1199 default: assert(0 && "This action is not supported yet!");
1200 case TargetLowering::Legal: {
1201 SDOperand Ops[6];
1202 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001203 for (int x = 1; x < 6; ++x) {
1204 Ops[x] = Node->getOperand(x);
1205 if (!isTypeLegal(Ops[x].getValueType()))
1206 Ops[x] = PromoteOp(Ops[x]);
1207 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001208 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1209 break;
1210 }
1211 case TargetLowering::Expand:
1212 //There is no libgcc call for this op
1213 Result = Node->getOperand(0); // Noop
1214 break;
1215 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001216 break;
1217 }
1218
Mon P Wang28873102008-06-25 08:15:39 +00001219 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001220 unsigned int num_operands = 4;
1221 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001222 SDOperand Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001223 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001224 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001225 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1226
1227 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1228 default: assert(0 && "This action is not supported yet!");
1229 case TargetLowering::Custom:
1230 Result = TLI.LowerOperation(Result, DAG);
1231 break;
1232 case TargetLowering::Legal:
1233 break;
1234 }
1235 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1236 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1237 return Result.getValue(Op.ResNo);
Duncan Sands126d9072008-07-04 11:47:58 +00001238 }
Mon P Wang28873102008-06-25 08:15:39 +00001239 case ISD::ATOMIC_LOAD_ADD:
1240 case ISD::ATOMIC_LOAD_SUB:
Mon P Wang63307c32008-05-05 19:05:59 +00001241 case ISD::ATOMIC_LOAD_AND:
1242 case ISD::ATOMIC_LOAD_OR:
1243 case ISD::ATOMIC_LOAD_XOR:
Andrew Lenharth507a58a2008-06-14 05:48:15 +00001244 case ISD::ATOMIC_LOAD_NAND:
Mon P Wang63307c32008-05-05 19:05:59 +00001245 case ISD::ATOMIC_LOAD_MIN:
1246 case ISD::ATOMIC_LOAD_MAX:
1247 case ISD::ATOMIC_LOAD_UMIN:
1248 case ISD::ATOMIC_LOAD_UMAX:
1249 case ISD::ATOMIC_SWAP: {
1250 unsigned int num_operands = 3;
1251 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
1252 SDOperand Ops[3];
1253 for (unsigned int x = 0; x < num_operands; ++x)
1254 Ops[x] = LegalizeOp(Node->getOperand(x));
1255 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001256
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001257 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001258 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001259 case TargetLowering::Custom:
1260 Result = TLI.LowerOperation(Result, DAG);
1261 break;
Mon P Wang63307c32008-05-05 19:05:59 +00001262 case TargetLowering::Expand:
Duncan Sands126d9072008-07-04 11:47:58 +00001263 Result = SDOperand(TLI.ReplaceNodeResults(Op.Val, DAG),0);
Mon P Wang63307c32008-05-05 19:05:59 +00001264 break;
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001265 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001266 break;
1267 }
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001268 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1269 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1270 return Result.getValue(Op.ResNo);
Duncan Sands126d9072008-07-04 11:47:58 +00001271 }
Scott Michelc1513d22007-08-08 23:23:31 +00001272 case ISD::Constant: {
1273 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1274 unsigned opAction =
1275 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1276
Chris Lattner3e928bb2005-01-07 07:47:09 +00001277 // We know we don't need to expand constants here, constants only have one
1278 // value and we check that it is fine above.
1279
Scott Michelc1513d22007-08-08 23:23:31 +00001280 if (opAction == TargetLowering::Custom) {
1281 Tmp1 = TLI.LowerOperation(Result, DAG);
1282 if (Tmp1.Val)
1283 Result = Tmp1;
1284 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001285 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001286 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001287 case ISD::ConstantFP: {
1288 // Spill FP immediates to the constant pool if the target cannot directly
1289 // codegen them. Targets often have some immediate values that can be
1290 // efficiently generated into an FP register without a load. We explicitly
1291 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001292 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1293
Chris Lattner3181a772006-01-29 06:26:56 +00001294 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1295 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001296 case TargetLowering::Legal:
1297 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001298 case TargetLowering::Custom:
1299 Tmp3 = TLI.LowerOperation(Result, DAG);
1300 if (Tmp3.Val) {
1301 Result = Tmp3;
1302 break;
1303 }
1304 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001305 case TargetLowering::Expand: {
1306 // Check to see if this FP immediate is already legal.
1307 bool isLegal = false;
1308 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1309 E = TLI.legal_fpimm_end(); I != E; ++I) {
1310 if (CFP->isExactlyValue(*I)) {
1311 isLegal = true;
1312 break;
1313 }
1314 }
1315 // If this is a legal constant, turn it into a TargetConstantFP node.
1316 if (isLegal)
1317 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001318 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001319 }
Nate Begemane1795842008-02-14 08:57:00 +00001320 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001321 break;
1322 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001323 case ISD::TokenFactor:
1324 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001325 Tmp1 = LegalizeOp(Node->getOperand(0));
1326 Tmp2 = LegalizeOp(Node->getOperand(1));
1327 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1328 } else if (Node->getNumOperands() == 3) {
1329 Tmp1 = LegalizeOp(Node->getOperand(0));
1330 Tmp2 = LegalizeOp(Node->getOperand(1));
1331 Tmp3 = LegalizeOp(Node->getOperand(2));
1332 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001333 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001334 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001335 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001336 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1337 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001338 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001339 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001340 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001341
1342 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001343 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001344 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001345 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1346 assert(Tmp3.Val && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001347 // A call within a calling sequence must be legalized to something
1348 // other than the normal CALLSEQ_END. Violating this gets Legalize
1349 // into an infinite loop.
1350 assert ((!IsLegalizingCall ||
1351 Node->getOpcode() != ISD::CALL ||
1352 Tmp3.Val->getOpcode() != ISD::CALLSEQ_END) &&
1353 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001354
1355 // The number of incoming and outgoing values should match; unless the final
1356 // outgoing value is a flag.
1357 assert((Tmp3.Val->getNumValues() == Result.Val->getNumValues() ||
1358 (Tmp3.Val->getNumValues() == Result.Val->getNumValues() + 1 &&
1359 Tmp3.Val->getValueType(Tmp3.Val->getNumValues() - 1) ==
1360 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001361 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001362
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001363 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001364 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +00001365 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001366 if (Tmp3.Val->getValueType(i) == MVT::Flag)
1367 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001368 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +00001369 if (Op.ResNo == i)
1370 Tmp2 = Tmp1;
1371 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
1372 }
1373 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001374 case ISD::EXTRACT_SUBREG: {
1375 Tmp1 = LegalizeOp(Node->getOperand(0));
1376 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1377 assert(idx && "Operand must be a constant");
1378 Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1379 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1380 }
1381 break;
1382 case ISD::INSERT_SUBREG: {
1383 Tmp1 = LegalizeOp(Node->getOperand(0));
1384 Tmp2 = LegalizeOp(Node->getOperand(1));
1385 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1386 assert(idx && "Operand must be a constant");
1387 Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1388 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1389 }
1390 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001391 case ISD::BUILD_VECTOR:
1392 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001393 default: assert(0 && "This action is not supported yet!");
1394 case TargetLowering::Custom:
1395 Tmp3 = TLI.LowerOperation(Result, DAG);
1396 if (Tmp3.Val) {
1397 Result = Tmp3;
1398 break;
1399 }
1400 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001401 case TargetLowering::Expand:
1402 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +00001403 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001404 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001405 break;
1406 case ISD::INSERT_VECTOR_ELT:
1407 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001408 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001409
1410 // The type of the value to insert may not be legal, even though the vector
1411 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1412 // here.
1413 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1414 default: assert(0 && "Cannot expand insert element operand");
1415 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1416 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1417 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001418 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1419
1420 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1421 Node->getValueType(0))) {
1422 default: assert(0 && "This action is not supported yet!");
1423 case TargetLowering::Legal:
1424 break;
1425 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001426 Tmp4 = TLI.LowerOperation(Result, DAG);
1427 if (Tmp4.Val) {
1428 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001429 break;
1430 }
1431 // FALLTHROUGH
1432 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001433 // If the insert index is a constant, codegen this as a scalar_to_vector,
1434 // then a shuffle that inserts it into the right position in the vector.
1435 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001436 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1437 // match the element type of the vector being created.
1438 if (Tmp2.getValueType() ==
Duncan Sands83ec4b62008-06-06 12:08:01 +00001439 Op.getValueType().getVectorElementType()) {
Nate Begeman0325d902008-02-13 06:43:04 +00001440 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
1441 Tmp1.getValueType(), Tmp2);
1442
Duncan Sands83ec4b62008-06-06 12:08:01 +00001443 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1444 MVT ShufMaskVT =
1445 MVT::getIntVectorWithNumElements(NumElts);
1446 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Nate Begeman0325d902008-02-13 06:43:04 +00001447
1448 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1449 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1450 // elt 0 of the RHS.
1451 SmallVector<SDOperand, 8> ShufOps;
1452 for (unsigned i = 0; i != NumElts; ++i) {
1453 if (i != InsertPos->getValue())
1454 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1455 else
1456 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1457 }
1458 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
1459 &ShufOps[0], ShufOps.size());
1460
1461 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1462 Tmp1, ScVec, ShufMask);
1463 Result = LegalizeOp(Result);
1464 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001465 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001466 }
Nate Begeman68679912008-04-25 18:07:40 +00001467 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001468 break;
1469 }
1470 }
1471 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001472 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001473 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1474 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1475 break;
1476 }
1477
Chris Lattnerce872152006-03-19 06:31:19 +00001478 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1479 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1480 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1481 Node->getValueType(0))) {
1482 default: assert(0 && "This action is not supported yet!");
1483 case TargetLowering::Legal:
1484 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001485 case TargetLowering::Custom:
1486 Tmp3 = TLI.LowerOperation(Result, DAG);
1487 if (Tmp3.Val) {
1488 Result = Tmp3;
1489 break;
1490 }
1491 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001492 case TargetLowering::Expand:
1493 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001494 break;
1495 }
Chris Lattnerce872152006-03-19 06:31:19 +00001496 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001497 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001498 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1499 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1500 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1501
1502 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001503 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1504 default: assert(0 && "Unknown operation action!");
1505 case TargetLowering::Legal:
1506 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1507 "vector shuffle should not be created if not legal!");
1508 break;
1509 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001510 Tmp3 = TLI.LowerOperation(Result, DAG);
1511 if (Tmp3.Val) {
1512 Result = Tmp3;
1513 break;
1514 }
1515 // FALLTHROUGH
1516 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001517 MVT VT = Node->getValueType(0);
1518 MVT EltVT = VT.getVectorElementType();
1519 MVT PtrVT = TLI.getPointerTy();
Evan Cheng18dd6d02006-04-05 06:07:11 +00001520 SDOperand Mask = Node->getOperand(2);
1521 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001522 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001523 for (unsigned i = 0; i != NumElems; ++i) {
1524 SDOperand Arg = Mask.getOperand(i);
1525 if (Arg.getOpcode() == ISD::UNDEF) {
1526 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1527 } else {
1528 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1529 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1530 if (Idx < NumElems)
1531 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1532 DAG.getConstant(Idx, PtrVT)));
1533 else
1534 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1535 DAG.getConstant(Idx - NumElems, PtrVT)));
1536 }
1537 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001538 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001539 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001540 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001541 case TargetLowering::Promote: {
1542 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001543 MVT OVT = Node->getValueType(0);
1544 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001545
1546 // Cast the two input vectors.
1547 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1548 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1549
1550 // Convert the shuffle mask to the right # elements.
1551 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1552 assert(Tmp3.Val && "Shuffle not legal?");
1553 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1554 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1555 break;
1556 }
Chris Lattner87100e02006-03-20 01:52:29 +00001557 }
1558 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001559
1560 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001561 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001562 Tmp2 = LegalizeOp(Node->getOperand(1));
1563 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001564 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001565 break;
1566
Dan Gohman7f321562007-06-25 16:23:39 +00001567 case ISD::EXTRACT_SUBVECTOR:
1568 Tmp1 = Node->getOperand(0);
1569 Tmp2 = LegalizeOp(Node->getOperand(1));
1570 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1571 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001572 break;
1573
Chris Lattner6831a812006-02-13 09:18:02 +00001574 case ISD::CALLSEQ_START: {
1575 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1576
1577 // Recursively Legalize all of the inputs of the call end that do not lead
1578 // to this call start. This ensures that any libcalls that need be inserted
1579 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001580 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001581 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001582 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1583 NodesLeadingTo);
1584 }
Chris Lattner6831a812006-02-13 09:18:02 +00001585
1586 // Now that we legalized all of the inputs (which may have inserted
1587 // libcalls) create the new CALLSEQ_START node.
1588 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1589
1590 // Merge in the last call, to ensure that this call start after the last
1591 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001592 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001593 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1594 Tmp1 = LegalizeOp(Tmp1);
1595 }
Chris Lattner6831a812006-02-13 09:18:02 +00001596
1597 // Do not try to legalize the target-specific arguments (#1+).
1598 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001599 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001600 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001601 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001602 }
1603
1604 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001605 AddLegalizedOperand(Op.getValue(0), Result);
1606 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1607 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1608
Chris Lattner6831a812006-02-13 09:18:02 +00001609 // Now that the callseq_start and all of the non-call nodes above this call
1610 // sequence have been legalized, legalize the call itself. During this
1611 // process, no libcalls can/will be inserted, guaranteeing that no calls
1612 // can overlap.
1613 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001614 // Note that we are selecting this call!
1615 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1616 IsLegalizingCall = true;
1617
1618 // Legalize the call, starting from the CALLSEQ_END.
1619 LegalizeOp(LastCALLSEQ_END);
1620 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1621 return Result;
1622 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001623 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001624 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1625 // will cause this node to be legalized as well as handling libcalls right.
1626 if (LastCALLSEQ_END.Val != Node) {
1627 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
Roman Levenstein9cac5252008-04-16 16:15:27 +00001628 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001629 assert(I != LegalizedNodes.end() &&
1630 "Legalizing the call start should have legalized this node!");
1631 return I->second;
1632 }
1633
1634 // Otherwise, the call start has been legalized and everything is going
1635 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001636 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001637 // Do not try to legalize the target-specific arguments (#1+), except for
1638 // an optional flag input.
1639 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1640 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001641 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001642 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001643 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001644 }
1645 } else {
1646 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1647 if (Tmp1 != Node->getOperand(0) ||
1648 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001649 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001650 Ops[0] = Tmp1;
1651 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001652 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001653 }
Chris Lattner6a542892006-01-24 05:48:21 +00001654 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001655 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001656 // This finishes up call legalization.
1657 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001658
1659 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1660 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1661 if (Node->getNumValues() == 2)
1662 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1663 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001664 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001665 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001666 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1667 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1668 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001669 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001670
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001671 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001672 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001673 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001674 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001675 case TargetLowering::Expand: {
1676 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1677 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1678 " not tell us which reg is the stack pointer!");
1679 SDOperand Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001680
1681 // Chain the dynamic stack allocation so that it doesn't modify the stack
1682 // pointer when other instructions are using the stack.
1683 Chain = DAG.getCALLSEQ_START(Chain,
1684 DAG.getConstant(0, TLI.getPointerTy()));
1685
Chris Lattner903d2782006-01-15 08:54:32 +00001686 SDOperand Size = Tmp2.getOperand(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001687 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, VT);
1688 Chain = SP.getValue(1);
1689 unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1690 unsigned StackAlign =
1691 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1692 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001693 SP = DAG.getNode(ISD::AND, VT, SP,
1694 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001695 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001696 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1697
1698 Tmp2 =
1699 DAG.getCALLSEQ_END(Chain,
1700 DAG.getConstant(0, TLI.getPointerTy()),
1701 DAG.getConstant(0, TLI.getPointerTy()),
1702 SDOperand());
1703
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001704 Tmp1 = LegalizeOp(Tmp1);
1705 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001706 break;
1707 }
1708 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001709 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1710 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001711 Tmp1 = LegalizeOp(Tmp3);
1712 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001713 }
Chris Lattner903d2782006-01-15 08:54:32 +00001714 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001715 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001716 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001717 }
Chris Lattner903d2782006-01-15 08:54:32 +00001718 // Since this op produce two values, make sure to remember that we
1719 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001720 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1721 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001722 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001723 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001724 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001725 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001726 bool Changed = false;
1727 // Legalize all of the operands of the inline asm, in case they are nodes
1728 // that need to be expanded or something. Note we skip the asm string and
1729 // all of the TargetConstant flags.
1730 SDOperand Op = LegalizeOp(Ops[0]);
1731 Changed = Op != Ops[0];
1732 Ops[0] = Op;
1733
1734 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1735 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1736 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1737 for (++i; NumVals; ++i, --NumVals) {
1738 SDOperand Op = LegalizeOp(Ops[i]);
1739 if (Op != Ops[i]) {
1740 Changed = true;
1741 Ops[i] = Op;
1742 }
1743 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001744 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001745
1746 if (HasInFlag) {
1747 Op = LegalizeOp(Ops.back());
1748 Changed |= Op != Ops.back();
1749 Ops.back() = Op;
1750 }
1751
1752 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001753 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001754
1755 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001756 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001757 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1758 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001759 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001760 case ISD::BR:
1761 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001762 // Ensure that libcalls are emitted before a branch.
1763 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1764 Tmp1 = LegalizeOp(Tmp1);
1765 LastCALLSEQ_END = DAG.getEntryNode();
1766
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001767 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001768 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001769 case ISD::BRIND:
1770 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1771 // Ensure that libcalls are emitted before a branch.
1772 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1773 Tmp1 = LegalizeOp(Tmp1);
1774 LastCALLSEQ_END = DAG.getEntryNode();
1775
1776 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1777 default: assert(0 && "Indirect target must be legal type (pointer)!");
1778 case Legal:
1779 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1780 break;
1781 }
1782 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1783 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001784 case ISD::BR_JT:
1785 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1786 // Ensure that libcalls are emitted before a branch.
1787 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1788 Tmp1 = LegalizeOp(Tmp1);
1789 LastCALLSEQ_END = DAG.getEntryNode();
1790
1791 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1792 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1793
1794 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1795 default: assert(0 && "This action is not supported yet!");
1796 case TargetLowering::Legal: break;
1797 case TargetLowering::Custom:
1798 Tmp1 = TLI.LowerOperation(Result, DAG);
1799 if (Tmp1.Val) Result = Tmp1;
1800 break;
1801 case TargetLowering::Expand: {
1802 SDOperand Chain = Result.getOperand(0);
1803 SDOperand Table = Result.getOperand(1);
1804 SDOperand Index = Result.getOperand(2);
1805
Duncan Sands83ec4b62008-06-06 12:08:01 +00001806 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001807 MachineFunction &MF = DAG.getMachineFunction();
1808 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001809 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1810 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001811
1812 SDOperand LD;
1813 switch (EntrySize) {
1814 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001815 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001816 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001817 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001818 PseudoSourceValue::getJumpTable(), 0); break;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001819 }
1820
Evan Chengcc415862007-11-09 01:32:10 +00001821 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001822 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001823 // For PIC, the sequence is:
1824 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00001825 // RelocBase can be JumpTable, GOT or some sort of global base.
1826 if (PTy != MVT::i32)
1827 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1828 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1829 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00001830 }
Evan Chengcc415862007-11-09 01:32:10 +00001831 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001832 }
1833 }
1834 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001835 case ISD::BRCOND:
1836 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001837 // Ensure that libcalls are emitted before a return.
1838 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1839 Tmp1 = LegalizeOp(Tmp1);
1840 LastCALLSEQ_END = DAG.getEntryNode();
1841
Chris Lattner47e92232005-01-18 19:27:06 +00001842 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1843 case Expand: assert(0 && "It's impossible to expand bools");
1844 case Legal:
1845 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1846 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001847 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00001848 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001849
1850 // The top bits of the promoted condition are not necessarily zero, ensure
1851 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001852 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001853 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001854 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerf9908172006-11-27 04:39:56 +00001855 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001856 break;
1857 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001858 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001859
1860 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001861 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001862
1863 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1864 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001865 case TargetLowering::Legal: break;
1866 case TargetLowering::Custom:
1867 Tmp1 = TLI.LowerOperation(Result, DAG);
1868 if (Tmp1.Val) Result = Tmp1;
1869 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001870 case TargetLowering::Expand:
1871 // Expand brcond's setcc into its constituent parts and create a BR_CC
1872 // Node.
1873 if (Tmp2.getOpcode() == ISD::SETCC) {
1874 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1875 Tmp2.getOperand(0), Tmp2.getOperand(1),
1876 Node->getOperand(2));
1877 } else {
1878 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1879 DAG.getCondCode(ISD::SETNE), Tmp2,
1880 DAG.getConstant(0, Tmp2.getValueType()),
1881 Node->getOperand(2));
1882 }
1883 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001884 }
1885 break;
1886 case ISD::BR_CC:
1887 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001888 // Ensure that libcalls are emitted before a branch.
1889 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1890 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001891 Tmp2 = Node->getOperand(2); // LHS
1892 Tmp3 = Node->getOperand(3); // RHS
1893 Tmp4 = Node->getOperand(1); // CC
1894
1895 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001896 LastCALLSEQ_END = DAG.getEntryNode();
1897
Nate Begeman750ac1b2006-02-01 07:19:44 +00001898 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1899 // the LHS is a legal SETCC itself. In this case, we need to compare
1900 // the result against zero to select between true and false values.
1901 if (Tmp3.Val == 0) {
1902 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1903 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001904 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001905
1906 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1907 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001908
Chris Lattner181b7a32005-12-17 23:46:46 +00001909 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1910 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001911 case TargetLowering::Legal: break;
1912 case TargetLowering::Custom:
1913 Tmp4 = TLI.LowerOperation(Result, DAG);
1914 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001915 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001916 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001917 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001918 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001919 LoadSDNode *LD = cast<LoadSDNode>(Node);
1920 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1921 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001922
Evan Cheng466685d2006-10-09 20:57:25 +00001923 ISD::LoadExtType ExtType = LD->getExtensionType();
1924 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001925 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00001926 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1927 Tmp3 = Result.getValue(0);
1928 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001929
Evan Cheng466685d2006-10-09 20:57:25 +00001930 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1931 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001932 case TargetLowering::Legal:
1933 // If this is an unaligned load and the target doesn't support it,
1934 // expand it.
1935 if (!TLI.allowsUnalignedMemoryAccesses()) {
1936 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00001937 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001938 if (LD->getAlignment() < ABIAlignment){
1939 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1940 TLI);
1941 Tmp3 = Result.getOperand(0);
1942 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001943 Tmp3 = LegalizeOp(Tmp3);
1944 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001945 }
1946 }
1947 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001948 case TargetLowering::Custom:
1949 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1950 if (Tmp1.Val) {
1951 Tmp3 = LegalizeOp(Tmp1);
1952 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001953 }
Evan Cheng466685d2006-10-09 20:57:25 +00001954 break;
1955 case TargetLowering::Promote: {
1956 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001957 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00001958 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001959 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00001960
1961 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001962 LD->getSrcValueOffset(),
1963 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001964 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1965 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001966 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001967 }
Evan Cheng466685d2006-10-09 20:57:25 +00001968 }
1969 // Since loads produce two values, make sure to remember that we
1970 // legalized both of them.
1971 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1972 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1973 return Op.ResNo ? Tmp4 : Tmp3;
1974 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001975 MVT SrcVT = LD->getMemoryVT();
1976 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001977 int SVOffset = LD->getSrcValueOffset();
1978 unsigned Alignment = LD->getAlignment();
1979 bool isVolatile = LD->isVolatile();
1980
Duncan Sands83ec4b62008-06-06 12:08:01 +00001981 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001982 // Some targets pretend to have an i1 loading operation, and actually
1983 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1984 // bits are guaranteed to be zero; it helps the optimizers understand
1985 // that these bits are zero. It is also useful for EXTLOAD, since it
1986 // tells the optimizers that those bits are undefined. It would be
1987 // nice to have an effective generic way of getting these benefits...
1988 // Until such a way is found, don't insist on promoting i1 here.
1989 (SrcVT != MVT::i1 ||
1990 TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
1991 // Promote to a byte-sized load if not loading an integral number of
1992 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001993 unsigned NewWidth = SrcVT.getStoreSizeInBits();
1994 MVT NVT = MVT::getIntegerVT(NewWidth);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001995 SDOperand Ch;
1996
1997 // The extra bits are guaranteed to be zero, since we stored them that
1998 // way. A zext load from NVT thus automatically gives zext from SrcVT.
1999
2000 ISD::LoadExtType NewExtType =
2001 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2002
2003 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
2004 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2005 NVT, isVolatile, Alignment);
2006
2007 Ch = Result.getValue(1); // The chain.
2008
2009 if (ExtType == ISD::SEXTLOAD)
2010 // Having the top bits zero doesn't help when sign extending.
2011 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2012 Result, DAG.getValueType(SrcVT));
2013 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2014 // All the top bits are guaranteed to be zero - inform the optimizers.
2015 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2016 DAG.getValueType(SrcVT));
2017
2018 Tmp1 = LegalizeOp(Result);
2019 Tmp2 = LegalizeOp(Ch);
2020 } else if (SrcWidth & (SrcWidth - 1)) {
2021 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002022 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002023 "Unsupported extload!");
2024 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2025 assert(RoundWidth < SrcWidth);
2026 unsigned ExtraWidth = SrcWidth - RoundWidth;
2027 assert(ExtraWidth < RoundWidth);
2028 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2029 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002030 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2031 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002032 SDOperand Lo, Hi, Ch;
2033 unsigned IncrementSize;
2034
2035 if (TLI.isLittleEndian()) {
2036 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2037 // Load the bottom RoundWidth bits.
2038 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2039 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2040 Alignment);
2041
2042 // Load the remaining ExtraWidth bits.
2043 IncrementSize = RoundWidth / 8;
2044 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2045 DAG.getIntPtrConstant(IncrementSize));
2046 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2047 LD->getSrcValue(), SVOffset + IncrementSize,
2048 ExtraVT, isVolatile,
2049 MinAlign(Alignment, IncrementSize));
2050
2051 // Build a factor node to remember that this load is independent of the
2052 // other one.
2053 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2054 Hi.getValue(1));
2055
2056 // Move the top bits to the right place.
2057 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2058 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2059
2060 // Join the hi and lo parts.
2061 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002062 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002063 // Big endian - avoid unaligned loads.
2064 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2065 // Load the top RoundWidth bits.
2066 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2067 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2068 Alignment);
2069
2070 // Load the remaining ExtraWidth bits.
2071 IncrementSize = RoundWidth / 8;
2072 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2073 DAG.getIntPtrConstant(IncrementSize));
2074 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2075 LD->getSrcValue(), SVOffset + IncrementSize,
2076 ExtraVT, isVolatile,
2077 MinAlign(Alignment, IncrementSize));
2078
2079 // Build a factor node to remember that this load is independent of the
2080 // other one.
2081 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2082 Hi.getValue(1));
2083
2084 // Move the top bits to the right place.
2085 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2086 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2087
2088 // Join the hi and lo parts.
2089 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2090 }
2091
2092 Tmp1 = LegalizeOp(Result);
2093 Tmp2 = LegalizeOp(Ch);
2094 } else {
2095 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
2096 default: assert(0 && "This action is not supported yet!");
2097 case TargetLowering::Custom:
2098 isCustom = true;
2099 // FALLTHROUGH
2100 case TargetLowering::Legal:
2101 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2102 Tmp1 = Result.getValue(0);
2103 Tmp2 = Result.getValue(1);
2104
2105 if (isCustom) {
2106 Tmp3 = TLI.LowerOperation(Result, DAG);
2107 if (Tmp3.Val) {
2108 Tmp1 = LegalizeOp(Tmp3);
2109 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2110 }
2111 } else {
2112 // If this is an unaligned load and the target doesn't support it,
2113 // expand it.
2114 if (!TLI.allowsUnalignedMemoryAccesses()) {
2115 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002116 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002117 if (LD->getAlignment() < ABIAlignment){
2118 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
2119 TLI);
2120 Tmp1 = Result.getOperand(0);
2121 Tmp2 = Result.getOperand(1);
2122 Tmp1 = LegalizeOp(Tmp1);
2123 Tmp2 = LegalizeOp(Tmp2);
2124 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002125 }
2126 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002127 break;
2128 case TargetLowering::Expand:
2129 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2130 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
2131 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
2132 LD->getSrcValueOffset(),
2133 LD->isVolatile(), LD->getAlignment());
2134 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2135 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2136 Tmp2 = LegalizeOp(Load.getValue(1));
2137 break;
2138 }
2139 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2140 // Turn the unsupported load into an EXTLOAD followed by an explicit
2141 // zero/sign extend inreg.
2142 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2143 Tmp1, Tmp2, LD->getSrcValue(),
2144 LD->getSrcValueOffset(), SrcVT,
2145 LD->isVolatile(), LD->getAlignment());
2146 SDOperand ValRes;
2147 if (ExtType == ISD::SEXTLOAD)
2148 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2149 Result, DAG.getValueType(SrcVT));
2150 else
2151 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2152 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2153 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002154 break;
2155 }
Evan Cheng466685d2006-10-09 20:57:25 +00002156 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002157
Evan Cheng466685d2006-10-09 20:57:25 +00002158 // Since loads produce two values, make sure to remember that we legalized
2159 // both of them.
2160 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2161 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2162 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002163 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002164 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002165 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002166 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002167 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002168 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002169 case Legal:
2170 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
2171 // 1 -> Hi
2172 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002173 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002174 TLI.getShiftAmountTy()));
2175 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2176 } else {
2177 // 0 -> Lo
2178 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2179 Node->getOperand(0));
2180 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002181 break;
2182 case Expand:
2183 // Get both the low and high parts.
2184 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2185 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
2186 Result = Tmp2; // 1 -> Hi
2187 else
2188 Result = Tmp1; // 0 -> Lo
2189 break;
2190 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002191 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002192 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002193
2194 case ISD::CopyToReg:
2195 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002196
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002197 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002198 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002199 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002200 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002201 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002202 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002203 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002204 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002205 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002206 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002207 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2208 Tmp3);
2209 } else {
2210 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002211 }
2212
2213 // Since this produces two values, make sure to remember that we legalized
2214 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002215 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00002216 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002217 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002218 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002219 break;
2220
2221 case ISD::RET:
2222 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002223
2224 // Ensure that libcalls are emitted before a return.
2225 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2226 Tmp1 = LegalizeOp(Tmp1);
2227 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002228
Chris Lattner3e928bb2005-01-07 07:47:09 +00002229 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002230 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002231 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002232 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002233 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002234 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002235 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002236 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002237 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002238 if (!Tmp2.getValueType().isVector()) {
Chris Lattnerf87324e2006-04-11 01:31:51 +00002239 SDOperand Lo, Hi;
2240 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002241
2242 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002243 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002244 std::swap(Lo, Hi);
2245
Evan Cheng13acce32006-12-11 19:27:14 +00002246 if (Hi.Val)
2247 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2248 else
2249 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002250 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002251 } else {
2252 SDNode *InVal = Tmp2.Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002253 int InIx = Tmp2.ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002254 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2255 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002256
Dan Gohman7f321562007-06-25 16:23:39 +00002257 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002258 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002259 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002260 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002261 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002262 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002263 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002264 } else if (NumElems == 1) {
2265 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002266 Tmp2 = ScalarizeVectorOp(Tmp2);
2267 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002268 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002269
2270 // FIXME: Returns of gcc generic vectors smaller than a legal type
2271 // should be returned in integer registers!
2272
Chris Lattnerf87324e2006-04-11 01:31:51 +00002273 // The scalarized value type may not be legal, e.g. it might require
2274 // promotion or expansion. Relegalize the return.
2275 Result = LegalizeOp(Result);
2276 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002277 // FIXME: Returns of gcc generic vectors larger than a legal vector
2278 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00002279 SDOperand Lo, Hi;
2280 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00002281 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002282 Result = LegalizeOp(Result);
2283 }
2284 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002285 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002286 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002287 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002288 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002289 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002290 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002291 }
2292 break;
2293 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002294 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002295 break;
2296 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002297 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002298 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002299 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002300 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2301 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002302 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002303 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002304 break;
2305 case Expand: {
2306 SDOperand Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002307 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002308 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002309 ExpandOp(Node->getOperand(i), Lo, Hi);
2310 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002311 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00002312 if (Hi.Val) {
2313 NewValues.push_back(Hi);
2314 NewValues.push_back(Node->getOperand(i+1));
2315 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002316 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002317 }
2318 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002319 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002320 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002321
2322 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002323 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002324 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002325 Result = DAG.getNode(ISD::RET, MVT::Other,
2326 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002327 break;
2328 }
2329 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002330
Chris Lattner6862dbc2006-01-29 21:02:23 +00002331 if (Result.getOpcode() == ISD::RET) {
2332 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2333 default: assert(0 && "This action is not supported yet!");
2334 case TargetLowering::Legal: break;
2335 case TargetLowering::Custom:
2336 Tmp1 = TLI.LowerOperation(Result, DAG);
2337 if (Tmp1.Val) Result = Tmp1;
2338 break;
2339 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002340 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002341 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002342 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002343 StoreSDNode *ST = cast<StoreSDNode>(Node);
2344 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2345 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002346 int SVOffset = ST->getSrcValueOffset();
2347 unsigned Alignment = ST->getAlignment();
2348 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002349
Evan Cheng8b2794a2006-10-13 21:14:26 +00002350 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002351 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2352 // FIXME: We shouldn't do this for TargetConstantFP's.
2353 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2354 // to phase ordering between legalized code and the dag combiner. This
2355 // probably means that we need to integrate dag combiner and legalizer
2356 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002357 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002358 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002359 if (CFP->getValueType(0) == MVT::f32 &&
2360 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002361 Tmp3 = DAG.getConstant(CFP->getValueAPF().
2362 convertToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002363 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002364 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2365 SVOffset, isVolatile, Alignment);
2366 break;
2367 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002368 // If this target supports 64-bit registers, do a single 64-bit store.
2369 if (getTypeAction(MVT::i64) == Legal) {
2370 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002371 zextOrTrunc(64), MVT::i64);
Chris Lattner3cb93512007-10-15 05:46:06 +00002372 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2373 SVOffset, isVolatile, Alignment);
2374 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002375 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002376 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2377 // stores. If the target supports neither 32- nor 64-bits, this
2378 // xform is certainly not worth it.
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002379 const APInt &IntVal =CFP->getValueAPF().convertToAPInt();
2380 SDOperand Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2381 SDOperand Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002382 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002383
2384 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2385 SVOffset, isVolatile, Alignment);
2386 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002387 DAG.getIntPtrConstant(4));
Chris Lattner3cb93512007-10-15 05:46:06 +00002388 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002389 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002390
2391 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2392 break;
2393 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002394 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002395 }
2396
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002397 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002398 case Legal: {
2399 Tmp3 = LegalizeOp(ST->getValue());
2400 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2401 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002402
Duncan Sands83ec4b62008-06-06 12:08:01 +00002403 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002404 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2405 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002406 case TargetLowering::Legal:
2407 // If this is an unaligned store and the target doesn't support it,
2408 // expand it.
2409 if (!TLI.allowsUnalignedMemoryAccesses()) {
2410 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002411 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002412 if (ST->getAlignment() < ABIAlignment)
2413 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2414 TLI);
2415 }
2416 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002417 case TargetLowering::Custom:
2418 Tmp1 = TLI.LowerOperation(Result, DAG);
2419 if (Tmp1.Val) Result = Tmp1;
2420 break;
2421 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002422 assert(VT.isVector() && "Unknown legal promote case!");
Evan Cheng8b2794a2006-10-13 21:14:26 +00002423 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2424 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2425 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002426 ST->getSrcValue(), SVOffset, isVolatile,
2427 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002428 break;
2429 }
2430 break;
2431 }
2432 case Promote:
2433 // Truncate the value and store the result.
2434 Tmp3 = PromoteOp(ST->getValue());
2435 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002436 SVOffset, ST->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002437 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002438 break;
2439
2440 case Expand:
2441 unsigned IncrementSize = 0;
2442 SDOperand Lo, Hi;
2443
2444 // If this is a vector type, then we have to calculate the increment as
2445 // the product of the element size in bytes, and the number of elements
2446 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002447 if (ST->getValue().getValueType().isVector()) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002448 SDNode *InVal = ST->getValue().Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002449 int InIx = ST->getValue().ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002450 MVT InVT = InVal->getValueType(InIx);
2451 unsigned NumElems = InVT.getVectorNumElements();
2452 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002453
Dan Gohman7f321562007-06-25 16:23:39 +00002454 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002455 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002456 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002457 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002458 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002459 Tmp3 = LegalizeOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002460 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002461 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002462 Result = LegalizeOp(Result);
2463 break;
2464 } else if (NumElems == 1) {
2465 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002466 Tmp3 = ScalarizeVectorOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002467 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002468 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002469 // The scalarized value type may not be legal, e.g. it might require
2470 // promotion or expansion. Relegalize the scalar store.
2471 Result = LegalizeOp(Result);
2472 break;
2473 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002474 SplitVectorOp(ST->getValue(), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002475 IncrementSize = Lo.Val->getValueType(0).getVectorNumElements() *
2476 EVT.getSizeInBits()/8;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002477 }
2478 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002479 ExpandOp(ST->getValue(), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002480 IncrementSize = Hi.Val ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002481
Duncan Sands0753fc12008-02-11 10:37:04 +00002482 if (TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002483 std::swap(Lo, Hi);
2484 }
2485
2486 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002487 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002488
2489 if (Hi.Val == NULL) {
2490 // Must be int <-> float one-to-one expansion.
2491 Result = Lo;
2492 break;
2493 }
2494
Evan Cheng8b2794a2006-10-13 21:14:26 +00002495 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002496 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002497 assert(isTypeLegal(Tmp2.getValueType()) &&
2498 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002499 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002500 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002501 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002502 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002503 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2504 break;
2505 }
2506 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002507 switch (getTypeAction(ST->getValue().getValueType())) {
2508 case Legal:
2509 Tmp3 = LegalizeOp(ST->getValue());
2510 break;
2511 case Promote:
2512 // We can promote the value, the truncstore will still take care of it.
2513 Tmp3 = PromoteOp(ST->getValue());
2514 break;
2515 case Expand:
2516 // Just store the low part. This may become a non-trunc store, so make
2517 // sure to use getTruncStore, not UpdateNodeOperands below.
2518 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2519 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2520 SVOffset, MVT::i8, isVolatile, Alignment);
2521 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002522
Duncan Sands83ec4b62008-06-06 12:08:01 +00002523 MVT StVT = ST->getMemoryVT();
2524 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002525
Duncan Sands83ec4b62008-06-06 12:08:01 +00002526 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002527 // Promote to a byte-sized store with upper bits zero if not
2528 // storing an integral number of bytes. For example, promote
2529 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002530 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Duncan Sands7e857202008-01-22 07:17:34 +00002531 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2532 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2533 SVOffset, NVT, isVolatile, Alignment);
2534 } else if (StWidth & (StWidth - 1)) {
2535 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002536 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002537 "Unsupported truncstore!");
2538 unsigned RoundWidth = 1 << Log2_32(StWidth);
2539 assert(RoundWidth < StWidth);
2540 unsigned ExtraWidth = StWidth - RoundWidth;
2541 assert(ExtraWidth < RoundWidth);
2542 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2543 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002544 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2545 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Duncan Sands7e857202008-01-22 07:17:34 +00002546 SDOperand Lo, Hi;
2547 unsigned IncrementSize;
2548
2549 if (TLI.isLittleEndian()) {
2550 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2551 // Store the bottom RoundWidth bits.
2552 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2553 SVOffset, RoundVT,
2554 isVolatile, Alignment);
2555
2556 // Store the remaining ExtraWidth bits.
2557 IncrementSize = RoundWidth / 8;
2558 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2559 DAG.getIntPtrConstant(IncrementSize));
2560 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2561 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2562 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2563 SVOffset + IncrementSize, ExtraVT, isVolatile,
2564 MinAlign(Alignment, IncrementSize));
2565 } else {
2566 // Big endian - avoid unaligned stores.
2567 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2568 // Store the top RoundWidth bits.
2569 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2570 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2571 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2572 RoundVT, isVolatile, Alignment);
2573
2574 // Store the remaining ExtraWidth bits.
2575 IncrementSize = RoundWidth / 8;
2576 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2577 DAG.getIntPtrConstant(IncrementSize));
2578 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2579 SVOffset + IncrementSize, ExtraVT, isVolatile,
2580 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002581 }
Duncan Sands7e857202008-01-22 07:17:34 +00002582
2583 // The order of the stores doesn't matter.
2584 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2585 } else {
2586 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2587 Tmp2 != ST->getBasePtr())
2588 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2589 ST->getOffset());
2590
2591 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2592 default: assert(0 && "This action is not supported yet!");
2593 case TargetLowering::Legal:
2594 // If this is an unaligned store and the target doesn't support it,
2595 // expand it.
2596 if (!TLI.allowsUnalignedMemoryAccesses()) {
2597 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002598 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002599 if (ST->getAlignment() < ABIAlignment)
2600 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2601 TLI);
2602 }
2603 break;
2604 case TargetLowering::Custom:
2605 Result = TLI.LowerOperation(Result, DAG);
2606 break;
2607 case Expand:
2608 // TRUNCSTORE:i16 i32 -> STORE i16
2609 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2610 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2611 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2612 isVolatile, Alignment);
2613 break;
2614 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002615 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002616 }
2617 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002618 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002619 case ISD::PCMARKER:
2620 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002621 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002622 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002623 case ISD::STACKSAVE:
2624 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002625 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2626 Tmp1 = Result.getValue(0);
2627 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002628
Chris Lattner140d53c2006-01-13 02:50:02 +00002629 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2630 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002631 case TargetLowering::Legal: break;
2632 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002633 Tmp3 = TLI.LowerOperation(Result, DAG);
2634 if (Tmp3.Val) {
2635 Tmp1 = LegalizeOp(Tmp3);
2636 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002637 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002638 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002639 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002640 // Expand to CopyFromReg if the target set
2641 // StackPointerRegisterToSaveRestore.
2642 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002643 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002644 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002645 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002646 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002647 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2648 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002649 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002650 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002651 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002652
2653 // Since stacksave produce two values, make sure to remember that we
2654 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002655 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2656 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2657 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002658
Chris Lattner140d53c2006-01-13 02:50:02 +00002659 case ISD::STACKRESTORE:
2660 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2661 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002662 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002663
2664 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2665 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002666 case TargetLowering::Legal: break;
2667 case TargetLowering::Custom:
2668 Tmp1 = TLI.LowerOperation(Result, DAG);
2669 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002670 break;
2671 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002672 // Expand to CopyToReg if the target set
2673 // StackPointerRegisterToSaveRestore.
2674 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2675 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2676 } else {
2677 Result = Tmp1;
2678 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002679 break;
2680 }
2681 break;
2682
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002683 case ISD::READCYCLECOUNTER:
2684 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002685 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002686 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2687 Node->getValueType(0))) {
2688 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002689 case TargetLowering::Legal:
2690 Tmp1 = Result.getValue(0);
2691 Tmp2 = Result.getValue(1);
2692 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002693 case TargetLowering::Custom:
2694 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002695 Tmp1 = LegalizeOp(Result.getValue(0));
2696 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002697 break;
2698 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002699
2700 // Since rdcc produce two values, make sure to remember that we legalized
2701 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002702 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2703 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002704 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002705
Chris Lattner2ee743f2005-01-14 22:08:15 +00002706 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002707 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2708 case Expand: assert(0 && "It's impossible to expand bools");
2709 case Legal:
2710 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2711 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002712 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002713 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002714 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002715 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002716 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002717 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerb6c80602006-11-28 01:03:30 +00002718 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002719 break;
2720 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002721 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002722 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002723 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002724
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002725 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002726
Nate Begemanb942a3d2005-08-23 04:29:48 +00002727 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002728 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002729 case TargetLowering::Legal: break;
2730 case TargetLowering::Custom: {
2731 Tmp1 = TLI.LowerOperation(Result, DAG);
2732 if (Tmp1.Val) Result = Tmp1;
2733 break;
2734 }
Nate Begeman9373a812005-08-10 20:51:12 +00002735 case TargetLowering::Expand:
2736 if (Tmp1.getOpcode() == ISD::SETCC) {
2737 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2738 Tmp2, Tmp3,
2739 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2740 } else {
2741 Result = DAG.getSelectCC(Tmp1,
2742 DAG.getConstant(0, Tmp1.getValueType()),
2743 Tmp2, Tmp3, ISD::SETNE);
2744 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002745 break;
2746 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002747 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002748 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2749 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002750 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002751 ExtOp = ISD::BIT_CONVERT;
2752 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002753 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002754 ExtOp = ISD::ANY_EXTEND;
2755 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002756 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002757 ExtOp = ISD::FP_EXTEND;
2758 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002759 }
2760 // Promote each of the values to the new type.
2761 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2762 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2763 // Perform the larger operation, then round down.
2764 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002765 if (TruncOp != ISD::FP_ROUND)
2766 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2767 else
2768 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2769 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002770 break;
2771 }
2772 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002773 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002774 case ISD::SELECT_CC: {
2775 Tmp1 = Node->getOperand(0); // LHS
2776 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002777 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2778 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00002779 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002780
Nate Begeman750ac1b2006-02-01 07:19:44 +00002781 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2782
2783 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2784 // the LHS is a legal SETCC itself. In this case, we need to compare
2785 // the result against zero to select between true and false values.
2786 if (Tmp2.Val == 0) {
2787 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2788 CC = DAG.getCondCode(ISD::SETNE);
2789 }
2790 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2791
2792 // Everything is legal, see if we should expand this op or something.
2793 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2794 default: assert(0 && "This action is not supported yet!");
2795 case TargetLowering::Legal: break;
2796 case TargetLowering::Custom:
2797 Tmp1 = TLI.LowerOperation(Result, DAG);
2798 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002799 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002800 }
2801 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002802 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002803 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002804 Tmp1 = Node->getOperand(0);
2805 Tmp2 = Node->getOperand(1);
2806 Tmp3 = Node->getOperand(2);
2807 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2808
2809 // If we had to Expand the SetCC operands into a SELECT node, then it may
2810 // not always be possible to return a true LHS & RHS. In this case, just
2811 // return the value we legalized, returned in the LHS
2812 if (Tmp2.Val == 0) {
2813 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002814 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002815 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002816
Chris Lattner73e142f2006-01-30 22:43:50 +00002817 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002818 default: assert(0 && "Cannot handle this action for SETCC yet!");
2819 case TargetLowering::Custom:
2820 isCustom = true;
2821 // FALLTHROUGH.
2822 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002823 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002824 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002825 Tmp4 = TLI.LowerOperation(Result, DAG);
2826 if (Tmp4.Val) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002827 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002828 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002829 case TargetLowering::Promote: {
2830 // First step, figure out the appropriate operation to use.
2831 // Allow SETCC to not be supported for all legal data types
2832 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00002833 MVT NewInTy = Node->getOperand(0).getValueType();
2834 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002835
2836 // Scan for the appropriate larger type to use.
2837 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002838 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00002839
Duncan Sands83ec4b62008-06-06 12:08:01 +00002840 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002841 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002842 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002843 "Fell off of the edge of the floating point world");
2844
2845 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002846 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002847 break;
2848 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002849 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00002850 assert(0 && "Cannot promote Legal Integer SETCC yet");
2851 else {
2852 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2853 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2854 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002855 Tmp1 = LegalizeOp(Tmp1);
2856 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002857 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002858 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002859 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002860 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002861 case TargetLowering::Expand:
2862 // Expand a setcc node into a select_cc of the same condition, lhs, and
2863 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00002864 MVT VT = Node->getValueType(0);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002865 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2866 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002867 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002868 break;
2869 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002870 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00002871 case ISD::VSETCC: {
2872 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2873 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
2874 SDOperand CC = Node->getOperand(2);
2875
2876 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
2877
2878 // Everything is legal, see if we should expand this op or something.
2879 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
2880 default: assert(0 && "This action is not supported yet!");
2881 case TargetLowering::Legal: break;
2882 case TargetLowering::Custom:
2883 Tmp1 = TLI.LowerOperation(Result, DAG);
2884 if (Tmp1.Val) Result = Tmp1;
2885 break;
2886 }
2887 break;
2888 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002889
Chris Lattner5b359c62005-04-02 04:00:59 +00002890 case ISD::SHL_PARTS:
2891 case ISD::SRA_PARTS:
2892 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002893 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002894 bool Changed = false;
2895 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2896 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2897 Changed |= Ops.back() != Node->getOperand(i);
2898 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002899 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002900 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002901
Evan Cheng05a2d562006-01-09 18:31:59 +00002902 switch (TLI.getOperationAction(Node->getOpcode(),
2903 Node->getValueType(0))) {
2904 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002905 case TargetLowering::Legal: break;
2906 case TargetLowering::Custom:
2907 Tmp1 = TLI.LowerOperation(Result, DAG);
2908 if (Tmp1.Val) {
2909 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002910 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002911 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002912 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2913 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002914 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002915 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002916 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002917 return RetVal;
2918 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002919 break;
2920 }
2921
Chris Lattner2c8086f2005-04-02 05:00:07 +00002922 // Since these produce multiple values, make sure to remember that we
2923 // legalized all of them.
2924 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2925 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2926 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002927 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002928
2929 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002930 case ISD::ADD:
2931 case ISD::SUB:
2932 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002933 case ISD::MULHS:
2934 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002935 case ISD::UDIV:
2936 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002937 case ISD::AND:
2938 case ISD::OR:
2939 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002940 case ISD::SHL:
2941 case ISD::SRL:
2942 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002943 case ISD::FADD:
2944 case ISD::FSUB:
2945 case ISD::FMUL:
2946 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00002947 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002948 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002949 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2950 case Expand: assert(0 && "Not possible");
2951 case Legal:
2952 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2953 break;
2954 case Promote:
2955 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2956 break;
2957 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002958
2959 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002960
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002961 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002962 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002963 case TargetLowering::Legal: break;
2964 case TargetLowering::Custom:
2965 Tmp1 = TLI.LowerOperation(Result, DAG);
2966 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002967 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002968 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002969 MVT VT = Op.getValueType();
Dan Gohman525178c2007-10-08 18:33:35 +00002970
2971 // See if multiply or divide can be lowered using two-result operations.
2972 SDVTList VTs = DAG.getVTList(VT, VT);
2973 if (Node->getOpcode() == ISD::MUL) {
2974 // We just need the low half of the multiply; try both the signed
2975 // and unsigned forms. If the target supports both SMUL_LOHI and
2976 // UMUL_LOHI, form a preference by checking which forms of plain
2977 // MULH it supports.
2978 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2979 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2980 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2981 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2982 unsigned OpToUse = 0;
2983 if (HasSMUL_LOHI && !HasMULHS) {
2984 OpToUse = ISD::SMUL_LOHI;
2985 } else if (HasUMUL_LOHI && !HasMULHU) {
2986 OpToUse = ISD::UMUL_LOHI;
2987 } else if (HasSMUL_LOHI) {
2988 OpToUse = ISD::SMUL_LOHI;
2989 } else if (HasUMUL_LOHI) {
2990 OpToUse = ISD::UMUL_LOHI;
2991 }
2992 if (OpToUse) {
2993 Result = SDOperand(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0);
2994 break;
2995 }
2996 }
2997 if (Node->getOpcode() == ISD::MULHS &&
2998 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
2999 Result = SDOperand(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
3000 break;
3001 }
3002 if (Node->getOpcode() == ISD::MULHU &&
3003 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
3004 Result = SDOperand(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
3005 break;
3006 }
3007 if (Node->getOpcode() == ISD::SDIV &&
3008 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3009 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0);
3010 break;
3011 }
3012 if (Node->getOpcode() == ISD::UDIV &&
3013 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3014 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0);
3015 break;
3016 }
3017
Dan Gohman82669522007-10-11 23:57:53 +00003018 // Check to see if we have a libcall for this operator.
3019 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3020 bool isSigned = false;
3021 switch (Node->getOpcode()) {
3022 case ISD::UDIV:
3023 case ISD::SDIV:
3024 if (VT == MVT::i32) {
3025 LC = Node->getOpcode() == ISD::UDIV
Evan Cheng56966222007-01-12 02:11:51 +00003026 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003027 isSigned = Node->getOpcode() == ISD::SDIV;
3028 }
3029 break;
3030 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003031 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3032 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003033 break;
3034 default: break;
3035 }
3036 if (LC != RTLIB::UNKNOWN_LIBCALL) {
3037 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003038 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003039 break;
3040 }
3041
Duncan Sands83ec4b62008-06-06 12:08:01 +00003042 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003043 "Cannot expand this binary operator!");
3044 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003045 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003046 break;
3047 }
Evan Chengcc987612006-04-12 21:20:24 +00003048 case TargetLowering::Promote: {
3049 switch (Node->getOpcode()) {
3050 default: assert(0 && "Do not know how to promote this BinOp!");
3051 case ISD::AND:
3052 case ISD::OR:
3053 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003054 MVT OVT = Node->getValueType(0);
3055 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3056 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003057 // Bit convert each of the values to the new type.
3058 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3059 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3060 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3061 // Bit convert the result back the original type.
3062 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3063 break;
3064 }
3065 }
3066 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003067 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003068 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003069
Dan Gohmane14ea862007-10-05 14:17:22 +00003070 case ISD::SMUL_LOHI:
3071 case ISD::UMUL_LOHI:
3072 case ISD::SDIVREM:
3073 case ISD::UDIVREM:
3074 // These nodes will only be produced by target-specific lowering, so
3075 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003076 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003077 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003078
3079 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3080 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3081 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003082 break;
3083
Chris Lattnera09f8482006-03-05 05:09:38 +00003084 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3085 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3086 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3087 case Expand: assert(0 && "Not possible");
3088 case Legal:
3089 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3090 break;
3091 case Promote:
3092 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3093 break;
3094 }
3095
3096 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3097
3098 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3099 default: assert(0 && "Operation not supported");
3100 case TargetLowering::Custom:
3101 Tmp1 = TLI.LowerOperation(Result, DAG);
3102 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003103 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003104 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003105 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003106 // If this target supports fabs/fneg natively and select is cheap,
3107 // do this efficiently.
3108 if (!TLI.isSelectExpensive() &&
3109 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3110 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003111 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003112 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003113 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003114 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003115 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
3116 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003117 SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003118 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3119 // Get the absolute value of the result.
3120 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
3121 // Select between the nabs and abs value based on the sign bit of
3122 // the input.
3123 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3124 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3125 AbsVal),
3126 AbsVal);
3127 Result = LegalizeOp(Result);
3128 break;
3129 }
3130
3131 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003132 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003133 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3134 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3135 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3136 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003137 break;
3138 }
Evan Cheng912095b2007-01-04 21:56:39 +00003139 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003140 break;
3141
Nate Begeman551bf3f2006-02-17 05:43:56 +00003142 case ISD::ADDC:
3143 case ISD::SUBC:
3144 Tmp1 = LegalizeOp(Node->getOperand(0));
3145 Tmp2 = LegalizeOp(Node->getOperand(1));
3146 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3147 // Since this produces two values, make sure to remember that we legalized
3148 // both of them.
3149 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3150 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3151 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003152
Nate Begeman551bf3f2006-02-17 05:43:56 +00003153 case ISD::ADDE:
3154 case ISD::SUBE:
3155 Tmp1 = LegalizeOp(Node->getOperand(0));
3156 Tmp2 = LegalizeOp(Node->getOperand(1));
3157 Tmp3 = LegalizeOp(Node->getOperand(2));
3158 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3159 // Since this produces two values, make sure to remember that we legalized
3160 // both of them.
3161 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3162 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3163 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00003164
Nate Begeman419f8b62005-10-18 00:27:41 +00003165 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003166 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003167 // TODO: handle the case where the Lo and Hi operands are not of legal type
3168 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3169 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3170 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003171 case TargetLowering::Promote:
3172 case TargetLowering::Custom:
3173 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003174 case TargetLowering::Legal:
3175 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3176 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3177 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003178 case TargetLowering::Expand:
3179 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3180 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3181 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003182 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003183 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00003184 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003185 break;
3186 }
3187 break;
3188 }
3189
Nate Begemanc105e192005-04-06 00:23:54 +00003190 case ISD::UREM:
3191 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003192 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003193 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3194 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003195
Nate Begemanc105e192005-04-06 00:23:54 +00003196 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003197 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3198 case TargetLowering::Custom:
3199 isCustom = true;
3200 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003201 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003202 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003203 if (isCustom) {
3204 Tmp1 = TLI.LowerOperation(Result, DAG);
3205 if (Tmp1.Val) Result = Tmp1;
3206 }
Nate Begemanc105e192005-04-06 00:23:54 +00003207 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003208 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003209 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003210 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003211 MVT VT = Node->getValueType(0);
Dan Gohman525178c2007-10-08 18:33:35 +00003212
3213 // See if remainder can be lowered using two-result operations.
3214 SDVTList VTs = DAG.getVTList(VT, VT);
3215 if (Node->getOpcode() == ISD::SREM &&
3216 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3217 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3218 break;
3219 }
3220 if (Node->getOpcode() == ISD::UREM &&
3221 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3222 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3223 break;
3224 }
3225
Duncan Sands83ec4b62008-06-06 12:08:01 +00003226 if (VT.isInteger()) {
Dan Gohman525178c2007-10-08 18:33:35 +00003227 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003228 TargetLowering::Legal) {
3229 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00003230 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003231 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3232 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003233 } else if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003234 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003235 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003236 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003237 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003238 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3239 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003240 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003241 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003242 }
Dan Gohman0d974262007-11-06 22:11:54 +00003243 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003244 assert(VT.isFloatingPoint() &&
Dan Gohman0d974262007-11-06 22:11:54 +00003245 "remainder op must have integer or floating-point type");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003246 if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003247 Result = LegalizeOp(UnrollVectorOp(Op));
3248 } else {
3249 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003250 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3251 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman80176312007-11-05 23:35:22 +00003252 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003253 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003254 }
Nate Begemanc105e192005-04-06 00:23:54 +00003255 }
3256 break;
3257 }
Dan Gohman525178c2007-10-08 18:33:35 +00003258 }
Nate Begemanc105e192005-04-06 00:23:54 +00003259 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003260 case ISD::VAARG: {
3261 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3262 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3263
Duncan Sands83ec4b62008-06-06 12:08:01 +00003264 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003265 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3266 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003267 case TargetLowering::Custom:
3268 isCustom = true;
3269 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003270 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003271 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3272 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003273 Tmp1 = Result.getValue(1);
3274
3275 if (isCustom) {
3276 Tmp2 = TLI.LowerOperation(Result, DAG);
3277 if (Tmp2.Val) {
3278 Result = LegalizeOp(Tmp2);
3279 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3280 }
3281 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003282 break;
3283 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003284 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
3285 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003286 // Increment the pointer, VAList, to the next vaarg
3287 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003288 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begemanacc398c2006-01-25 18:21:52 +00003289 TLI.getPointerTy()));
3290 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00003291 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003292 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003293 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003294 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003295 Result = LegalizeOp(Result);
3296 break;
3297 }
3298 }
3299 // Since VAARG produces two values, make sure to remember that we
3300 // legalized both of them.
3301 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00003302 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3303 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003304 }
3305
3306 case ISD::VACOPY:
3307 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3308 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3309 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3310
3311 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3312 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003313 case TargetLowering::Custom:
3314 isCustom = true;
3315 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003316 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003317 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3318 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003319 if (isCustom) {
3320 Tmp1 = TLI.LowerOperation(Result, DAG);
3321 if (Tmp1.Val) Result = Tmp1;
3322 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003323 break;
3324 case TargetLowering::Expand:
3325 // This defaults to loading a pointer from the input and storing it to the
3326 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003327 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3328 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dan Gohman499c1bd2008-04-17 02:09:26 +00003329 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3330 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003331 break;
3332 }
3333 break;
3334
3335 case ISD::VAEND:
3336 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3337 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3338
3339 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3340 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003341 case TargetLowering::Custom:
3342 isCustom = true;
3343 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003344 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003345 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003346 if (isCustom) {
3347 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
3348 if (Tmp1.Val) Result = Tmp1;
3349 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003350 break;
3351 case TargetLowering::Expand:
3352 Result = Tmp1; // Default to a no-op, return the chain
3353 break;
3354 }
3355 break;
3356
3357 case ISD::VASTART:
3358 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3359 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3360
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003361 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3362
Nate Begemanacc398c2006-01-25 18:21:52 +00003363 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3364 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003365 case TargetLowering::Legal: break;
3366 case TargetLowering::Custom:
3367 Tmp1 = TLI.LowerOperation(Result, DAG);
3368 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003369 break;
3370 }
3371 break;
3372
Nate Begeman35ef9132006-01-11 21:21:00 +00003373 case ISD::ROTL:
3374 case ISD::ROTR:
3375 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3376 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003377 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003378 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3379 default:
3380 assert(0 && "ROTL/ROTR legalize operation not supported");
3381 break;
3382 case TargetLowering::Legal:
3383 break;
3384 case TargetLowering::Custom:
3385 Tmp1 = TLI.LowerOperation(Result, DAG);
3386 if (Tmp1.Val) Result = Tmp1;
3387 break;
3388 case TargetLowering::Promote:
3389 assert(0 && "Do not know how to promote ROTL/ROTR");
3390 break;
3391 case TargetLowering::Expand:
3392 assert(0 && "Do not know how to expand ROTL/ROTR");
3393 break;
3394 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003395 break;
3396
Nate Begemand88fc032006-01-14 03:14:10 +00003397 case ISD::BSWAP:
3398 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3399 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003400 case TargetLowering::Custom:
3401 assert(0 && "Cannot custom legalize this yet!");
3402 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003403 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003404 break;
3405 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003406 MVT OVT = Tmp1.getValueType();
3407 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3408 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003409
Chris Lattner456a93a2006-01-28 07:39:30 +00003410 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3411 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3412 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3413 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3414 break;
3415 }
3416 case TargetLowering::Expand:
3417 Result = ExpandBSWAP(Tmp1);
3418 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003419 }
3420 break;
3421
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003422 case ISD::CTPOP:
3423 case ISD::CTTZ:
3424 case ISD::CTLZ:
3425 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3426 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003427 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003428 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003429 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003430 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003431 TargetLowering::Custom) {
3432 Tmp1 = TLI.LowerOperation(Result, DAG);
3433 if (Tmp1.Val) {
3434 Result = Tmp1;
3435 }
Scott Michel910b66d2007-07-30 21:00:31 +00003436 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003437 break;
3438 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003439 MVT OVT = Tmp1.getValueType();
3440 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003441
3442 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003443 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3444 // Perform the larger operation, then subtract if needed.
3445 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003446 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003447 case ISD::CTPOP:
3448 Result = Tmp1;
3449 break;
3450 case ISD::CTTZ:
3451 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00003452 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003453 DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003454 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003455 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003456 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003457 break;
3458 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003459 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003460 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003461 DAG.getConstant(NVT.getSizeInBits() -
3462 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003463 break;
3464 }
3465 break;
3466 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003467 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003468 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003469 break;
3470 }
3471 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003472
Chris Lattner2c8086f2005-04-02 05:00:07 +00003473 // Unary operators
3474 case ISD::FABS:
3475 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003476 case ISD::FSQRT:
3477 case ISD::FSIN:
3478 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003479 Tmp1 = LegalizeOp(Node->getOperand(0));
3480 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003481 case TargetLowering::Promote:
3482 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003483 isCustom = true;
3484 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003485 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003486 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003487 if (isCustom) {
3488 Tmp1 = TLI.LowerOperation(Result, DAG);
3489 if (Tmp1.Val) Result = Tmp1;
3490 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003491 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003492 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003493 switch (Node->getOpcode()) {
3494 default: assert(0 && "Unreachable!");
3495 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003496 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3497 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003498 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003499 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003500 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003501 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003502 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003503 Tmp2 = DAG.getConstantFP(0.0, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003504 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00003505 ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003506 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3507 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003508 break;
3509 }
3510 case ISD::FSQRT:
3511 case ISD::FSIN:
3512 case ISD::FCOS: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003513 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003514
3515 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003516 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003517 Result = LegalizeOp(UnrollVectorOp(Op));
3518 break;
3519 }
3520
Evan Cheng56966222007-01-12 02:11:51 +00003521 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003522 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003523 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003524 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3525 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003526 break;
3527 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003528 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3529 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003530 break;
3531 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003532 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3533 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003534 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003535 default: assert(0 && "Unreachable!");
3536 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00003537 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003538 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003539 break;
3540 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003541 }
3542 break;
3543 }
3544 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003545 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003546 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003547
3548 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003549 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003550 Result = LegalizeOp(UnrollVectorOp(Op));
3551 break;
3552 }
3553
3554 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003555 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3556 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003557 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003558 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003559 break;
3560 }
Chris Lattner35481892005-12-23 00:16:34 +00003561 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003562 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003563 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3564 Node->getValueType(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003565 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003566 // The input has to be a vector type, we have to either scalarize it, pack
3567 // it, or convert it based on whether the input vector type is legal.
3568 SDNode *InVal = Node->getOperand(0).Val;
Dale Johannesene5269622007-10-20 00:07:52 +00003569 int InIx = Node->getOperand(0).ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003570 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3571 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohman7f321562007-06-25 16:23:39 +00003572
3573 // Figure out if there is a simple type corresponding to this Vector
3574 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003575 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00003576 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003577 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003578 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3579 LegalizeOp(Node->getOperand(0)));
3580 break;
3581 } else if (NumElems == 1) {
3582 // Turn this into a bit convert of the scalar input.
3583 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3584 ScalarizeVectorOp(Node->getOperand(0)));
3585 break;
3586 } else {
3587 // FIXME: UNIMP! Store then reload
3588 assert(0 && "Cast from unsupported vector type not implemented yet!");
3589 }
Chris Lattner67993f72006-01-23 07:30:46 +00003590 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003591 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3592 Node->getOperand(0).getValueType())) {
3593 default: assert(0 && "Unknown operation action!");
3594 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003595 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3596 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003597 break;
3598 case TargetLowering::Legal:
3599 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003600 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003601 break;
3602 }
3603 }
3604 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003605
Chris Lattner2c8086f2005-04-02 05:00:07 +00003606 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003607 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003608 case ISD::UINT_TO_FP: {
3609 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003610 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3611 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003612 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003613 Node->getOperand(0).getValueType())) {
3614 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003615 case TargetLowering::Custom:
3616 isCustom = true;
3617 // FALLTHROUGH
3618 case TargetLowering::Legal:
3619 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003620 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003621 if (isCustom) {
3622 Tmp1 = TLI.LowerOperation(Result, DAG);
3623 if (Tmp1.Val) Result = Tmp1;
3624 }
3625 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003626 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00003627 Result = ExpandLegalINT_TO_FP(isSigned,
3628 LegalizeOp(Node->getOperand(0)),
3629 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003630 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003631 case TargetLowering::Promote:
3632 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
3633 Node->getValueType(0),
3634 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003635 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00003636 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003637 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00003638 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003639 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
3640 Node->getValueType(0), Node->getOperand(0));
3641 break;
3642 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003643 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003644 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003645 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
3646 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003647 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003648 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
3649 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003650 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003651 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3652 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003653 break;
3654 }
3655 break;
3656 }
3657 case ISD::TRUNCATE:
3658 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3659 case Legal:
3660 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003661 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003662 break;
3663 case Expand:
3664 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3665
3666 // Since the result is legal, we should just be able to truncate the low
3667 // part of the source.
3668 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3669 break;
3670 case Promote:
3671 Result = PromoteOp(Node->getOperand(0));
3672 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3673 break;
3674 }
3675 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003676
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003677 case ISD::FP_TO_SINT:
3678 case ISD::FP_TO_UINT:
3679 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3680 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003681 Tmp1 = LegalizeOp(Node->getOperand(0));
3682
Chris Lattner1618beb2005-07-29 00:11:56 +00003683 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3684 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003685 case TargetLowering::Custom:
3686 isCustom = true;
3687 // FALLTHROUGH
3688 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003689 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003690 if (isCustom) {
3691 Tmp1 = TLI.LowerOperation(Result, DAG);
3692 if (Tmp1.Val) Result = Tmp1;
3693 }
3694 break;
3695 case TargetLowering::Promote:
3696 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3697 Node->getOpcode() == ISD::FP_TO_SINT);
3698 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003699 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003700 if (Node->getOpcode() == ISD::FP_TO_UINT) {
3701 SDOperand True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003702 MVT VT = Node->getOperand(0).getValueType();
3703 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00003704 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00003705 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
3706 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003707 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00003708 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003709 Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
Nate Begemand2558e32005-08-14 01:20:53 +00003710 Node->getOperand(0), Tmp2, ISD::SETLT);
3711 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3712 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003713 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003714 Tmp2));
3715 False = DAG.getNode(ISD::XOR, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003716 DAG.getConstant(x, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003717 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3718 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003719 } else {
3720 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3721 }
3722 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003723 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003724 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003725 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003726 MVT VT = Op.getValueType();
3727 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003728 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003729 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003730 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3731 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3732 Node->getOperand(0), DAG.getValueType(MVT::f64));
3733 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3734 DAG.getIntPtrConstant(1));
3735 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3736 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003737 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3738 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3739 Tmp2 = DAG.getConstantFP(apf, OVT);
3740 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3741 // FIXME: generated code sucks.
3742 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3743 DAG.getNode(ISD::ADD, MVT::i32,
3744 DAG.getNode(ISD::FP_TO_SINT, VT,
3745 DAG.getNode(ISD::FSUB, OVT,
3746 Node->getOperand(0), Tmp2)),
3747 DAG.getConstant(0x80000000, MVT::i32)),
3748 DAG.getNode(ISD::FP_TO_SINT, VT,
3749 Node->getOperand(0)),
3750 DAG.getCondCode(ISD::SETGE));
3751 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003752 break;
3753 }
Dan Gohmana2e94852008-03-10 23:03:31 +00003754 // Convert f32 / f64 to i32 / i64 / i128.
Evan Cheng56966222007-01-12 02:11:51 +00003755 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng6af00d52006-12-13 01:57:55 +00003756 switch (Node->getOpcode()) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003757 case ISD::FP_TO_SINT: {
Dan Gohmana2e94852008-03-10 23:03:31 +00003758 if (VT == MVT::i32) {
3759 if (OVT == MVT::f32)
3760 LC = RTLIB::FPTOSINT_F32_I32;
3761 else if (OVT == MVT::f64)
3762 LC = RTLIB::FPTOSINT_F64_I32;
3763 else
3764 assert(0 && "Unexpected i32-to-fp conversion!");
3765 } else if (VT == MVT::i64) {
3766 if (OVT == MVT::f32)
3767 LC = RTLIB::FPTOSINT_F32_I64;
3768 else if (OVT == MVT::f64)
3769 LC = RTLIB::FPTOSINT_F64_I64;
3770 else if (OVT == MVT::f80)
3771 LC = RTLIB::FPTOSINT_F80_I64;
3772 else if (OVT == MVT::ppcf128)
3773 LC = RTLIB::FPTOSINT_PPCF128_I64;
3774 else
3775 assert(0 && "Unexpected i64-to-fp conversion!");
3776 } else if (VT == MVT::i128) {
3777 if (OVT == MVT::f32)
3778 LC = RTLIB::FPTOSINT_F32_I128;
3779 else if (OVT == MVT::f64)
3780 LC = RTLIB::FPTOSINT_F64_I128;
3781 else if (OVT == MVT::f80)
3782 LC = RTLIB::FPTOSINT_F80_I128;
3783 else if (OVT == MVT::ppcf128)
3784 LC = RTLIB::FPTOSINT_PPCF128_I128;
3785 else
3786 assert(0 && "Unexpected i128-to-fp conversion!");
3787 } else {
3788 assert(0 && "Unexpectd int-to-fp conversion!");
Dale Johannesen73328d12007-09-19 23:55:34 +00003789 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003790 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003791 }
3792 case ISD::FP_TO_UINT: {
Dan Gohmana2e94852008-03-10 23:03:31 +00003793 if (VT == MVT::i32) {
3794 if (OVT == MVT::f32)
3795 LC = RTLIB::FPTOUINT_F32_I32;
3796 else if (OVT == MVT::f64)
3797 LC = RTLIB::FPTOUINT_F64_I32;
3798 else if (OVT == MVT::f80)
3799 LC = RTLIB::FPTOUINT_F80_I32;
3800 else
3801 assert(0 && "Unexpected i32-to-fp conversion!");
3802 } else if (VT == MVT::i64) {
3803 if (OVT == MVT::f32)
3804 LC = RTLIB::FPTOUINT_F32_I64;
3805 else if (OVT == MVT::f64)
3806 LC = RTLIB::FPTOUINT_F64_I64;
3807 else if (OVT == MVT::f80)
3808 LC = RTLIB::FPTOUINT_F80_I64;
3809 else if (OVT == MVT::ppcf128)
3810 LC = RTLIB::FPTOUINT_PPCF128_I64;
3811 else
3812 assert(0 && "Unexpected i64-to-fp conversion!");
3813 } else if (VT == MVT::i128) {
3814 if (OVT == MVT::f32)
3815 LC = RTLIB::FPTOUINT_F32_I128;
3816 else if (OVT == MVT::f64)
3817 LC = RTLIB::FPTOUINT_F64_I128;
3818 else if (OVT == MVT::f80)
3819 LC = RTLIB::FPTOUINT_F80_I128;
3820 else if (OVT == MVT::ppcf128)
3821 LC = RTLIB::FPTOUINT_PPCF128_I128;
3822 else
3823 assert(0 && "Unexpected i128-to-fp conversion!");
3824 } else {
3825 assert(0 && "Unexpectd int-to-fp conversion!");
Dale Johannesen73328d12007-09-19 23:55:34 +00003826 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003827 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003828 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003829 default: assert(0 && "Unreachable!");
3830 }
3831 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003832 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003833 break;
3834 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003835 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003836 Tmp1 = PromoteOp(Node->getOperand(0));
3837 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3838 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003839 break;
3840 }
3841 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003842
Chris Lattnerf2670a82008-01-16 06:57:07 +00003843 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003844 MVT DstVT = Op.getValueType();
3845 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003846 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3847 // The only other way we can lower this is to turn it into a STORE,
3848 // LOAD pair, targetting a temporary location (a stack slot).
3849 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3850 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00003851 }
3852 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3853 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3854 case Legal:
3855 Tmp1 = LegalizeOp(Node->getOperand(0));
3856 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3857 break;
3858 case Promote:
3859 Tmp1 = PromoteOp(Node->getOperand(0));
3860 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3861 break;
3862 }
3863 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003864 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003865 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003866 MVT DstVT = Op.getValueType();
3867 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003868 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3869 if (SrcVT == MVT::ppcf128) {
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003870 SDOperand Lo;
3871 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003872 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003873 if (DstVT!=MVT::f64)
3874 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00003875 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00003876 }
Chris Lattner0bd48932008-01-17 07:00:52 +00003877 // The only other way we can lower this is to turn it into a STORE,
3878 // LOAD pair, targetting a temporary location (a stack slot).
3879 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3880 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00003881 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00003882 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3883 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3884 case Legal:
3885 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003886 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003887 break;
3888 case Promote:
3889 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003890 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3891 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003892 break;
3893 }
3894 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003895 }
Chris Lattner13c78e22005-09-02 00:18:10 +00003896 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003897 case ISD::ZERO_EXTEND:
3898 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003899 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003900 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003901 case Legal:
3902 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00003903 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00003904 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3905 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00003906 Tmp1 = TLI.LowerOperation(Result, DAG);
3907 if (Tmp1.Val) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00003908 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003909 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003910 case Promote:
3911 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003912 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003913 Tmp1 = PromoteOp(Node->getOperand(0));
3914 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003915 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003916 case ISD::ZERO_EXTEND:
3917 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003918 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003919 Result = DAG.getZeroExtendInReg(Result,
3920 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003921 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003922 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003923 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003924 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003925 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003926 Result,
3927 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003928 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003929 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003930 }
3931 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003932 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003933 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003934 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003935 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003936
3937 // If this operation is not supported, convert it to a shl/shr or load/store
3938 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003939 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3940 default: assert(0 && "This action not supported for this op yet!");
3941 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003942 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003943 break;
3944 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003945 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003946 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003947 // NOTE: we could fall back on load/store here too for targets without
3948 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003949 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
3950 ExtraVT.getSizeInBits();
Chris Lattner27ff1122005-01-22 00:31:52 +00003951 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003952 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3953 Node->getOperand(0), ShiftCst);
3954 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3955 Result, ShiftCst);
3956 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003957 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003958 // EXTLOAD pair, targetting a temporary location (a stack slot).
3959
3960 // NOTE: there is a choice here between constantly creating new stack
3961 // slots and always reusing the same one. We currently always create
3962 // new ones, as reuse may inhibit scheduling.
Chris Lattnera66bb392008-01-16 07:51:34 +00003963 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3964 Node->getValueType(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00003965 } else {
3966 assert(0 && "Unknown op");
3967 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003968 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003969 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003970 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003971 }
Duncan Sands36397f52007-07-27 12:58:54 +00003972 case ISD::TRAMPOLINE: {
3973 SDOperand Ops[6];
3974 for (unsigned i = 0; i != 6; ++i)
3975 Ops[i] = LegalizeOp(Node->getOperand(i));
3976 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3977 // The only option for this node is to custom lower it.
3978 Result = TLI.LowerOperation(Result, DAG);
3979 assert(Result.Val && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00003980
3981 // Since trampoline produces two values, make sure to remember that we
3982 // legalized both of them.
3983 Tmp1 = LegalizeOp(Result.getValue(1));
3984 Result = LegalizeOp(Result);
3985 AddLegalizedOperand(SDOperand(Node, 0), Result);
3986 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3987 return Op.ResNo ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00003988 }
Dan Gohman9c78a392008-05-14 00:43:10 +00003989 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003990 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003991 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3992 default: assert(0 && "This action not supported for this op yet!");
3993 case TargetLowering::Custom:
3994 Result = TLI.LowerOperation(Op, DAG);
3995 if (Result.Val) break;
3996 // Fall Thru
3997 case TargetLowering::Legal:
3998 // If this operation is not supported, lower it to constant 1
3999 Result = DAG.getConstant(1, VT);
4000 break;
4001 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00004002 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004003 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004004 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004005 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004006 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4007 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00004008 case TargetLowering::Legal:
4009 Tmp1 = LegalizeOp(Node->getOperand(0));
4010 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4011 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004012 case TargetLowering::Custom:
4013 Result = TLI.LowerOperation(Op, DAG);
4014 if (Result.Val) break;
4015 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00004016 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004017 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00004018 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004019 TargetLowering::ArgListTy Args;
4020 std::pair<SDOperand,SDOperand> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00004021 TLI.LowerCallTo(Tmp1, Type::VoidTy,
4022 false, false, false, CallingConv::C, false,
Chris Lattner034f12e2008-01-15 22:09:33 +00004023 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
4024 Args, DAG);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004025 Result = CallResult.second;
4026 break;
4027 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004028 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004029 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00004030 }
Chris Lattner456a93a2006-01-28 07:39:30 +00004031
Chris Lattner4ddd2832006-04-08 04:13:17 +00004032 assert(Result.getValueType() == Op.getValueType() &&
4033 "Bad legalization!");
4034
Chris Lattner456a93a2006-01-28 07:39:30 +00004035 // Make sure that the generated code is itself legal.
4036 if (Result != Op)
4037 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004038
Chris Lattner45982da2005-05-12 16:53:42 +00004039 // Note that LegalizeOp may be reentered even from single-use nodes, which
4040 // means that we always must cache transformed nodes.
4041 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004042 return Result;
4043}
4044
Chris Lattner8b6fa222005-01-15 22:16:26 +00004045/// PromoteOp - Given an operation that produces a value in an invalid type,
4046/// promote it to compute the value into a larger type. The produced value will
4047/// have the correct bits for the low portion of the register, but no guarantee
4048/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00004049SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004050 MVT VT = Op.getValueType();
4051 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004052 assert(getTypeAction(VT) == Promote &&
4053 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004054 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00004055 "Cannot promote to smaller type!");
4056
Chris Lattner03c85462005-01-15 05:21:40 +00004057 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00004058 SDOperand Result;
4059 SDNode *Node = Op.Val;
4060
Roman Levenstein9cac5252008-04-16 16:15:27 +00004061 DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004062 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004063
Chris Lattner03c85462005-01-15 05:21:40 +00004064 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004065 case ISD::CopyFromReg:
4066 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004067 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004068#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004069 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004070#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004071 assert(0 && "Do not know how to promote this operator!");
4072 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004073 case ISD::UNDEF:
4074 Result = DAG.getNode(ISD::UNDEF, NVT);
4075 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004076 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004077 if (VT != MVT::i1)
4078 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4079 else
4080 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004081 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4082 break;
4083 case ISD::ConstantFP:
4084 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4085 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4086 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004087
Chris Lattner82fbfb62005-01-18 02:59:52 +00004088 case ISD::SETCC:
Scott Michel5b8f82e2008-03-10 15:42:14 +00004089 assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
Nate Begeman5922f562008-03-14 00:53:31 +00004090 && "SetCC type is not legal??");
Scott Michel5b8f82e2008-03-10 15:42:14 +00004091 Result = DAG.getNode(ISD::SETCC,
Nate Begeman5922f562008-03-14 00:53:31 +00004092 TLI.getSetCCResultType(Node->getOperand(0)),
4093 Node->getOperand(0), Node->getOperand(1),
4094 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004095 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00004096
Chris Lattner03c85462005-01-15 05:21:40 +00004097 case ISD::TRUNCATE:
4098 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4099 case Legal:
4100 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004101 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004102 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004103 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Chris Lattner03c85462005-01-15 05:21:40 +00004104 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4105 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004106 case Promote:
4107 // The truncation is not required, because we don't guarantee anything
4108 // about high bits anyway.
4109 Result = PromoteOp(Node->getOperand(0));
4110 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004111 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004112 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4113 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00004114 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004115 }
4116 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004117 case ISD::SIGN_EXTEND:
4118 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004119 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004120 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4121 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4122 case Legal:
4123 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00004124 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004125 break;
4126 case Promote:
4127 // Promote the reg if it's smaller.
4128 Result = PromoteOp(Node->getOperand(0));
4129 // The high bits are not guaranteed to be anything. Insert an extend.
4130 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00004131 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004132 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004133 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00004134 Result = DAG.getZeroExtendInReg(Result,
4135 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004136 break;
4137 }
4138 break;
Chris Lattner35481892005-12-23 00:16:34 +00004139 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004140 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4141 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00004142 Result = PromoteOp(Result);
4143 break;
4144
Chris Lattner8b6fa222005-01-15 22:16:26 +00004145 case ISD::FP_EXTEND:
4146 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4147 case ISD::FP_ROUND:
4148 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4149 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4150 case Promote: assert(0 && "Unreachable with 2 FP types!");
4151 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004152 if (Node->getConstantOperandVal(1) == 0) {
4153 // Input is legal? Do an FP_ROUND_INREG.
4154 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4155 DAG.getValueType(VT));
4156 } else {
4157 // Just remove the truncate, it isn't affecting the value.
4158 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4159 Node->getOperand(1));
4160 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004161 break;
4162 }
4163 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004164 case ISD::SINT_TO_FP:
4165 case ISD::UINT_TO_FP:
4166 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4167 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004168 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00004169 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004170 break;
4171
4172 case Promote:
4173 Result = PromoteOp(Node->getOperand(0));
4174 if (Node->getOpcode() == ISD::SINT_TO_FP)
4175 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004176 Result,
4177 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004178 else
Chris Lattner23993562005-04-13 02:38:47 +00004179 Result = DAG.getZeroExtendInReg(Result,
4180 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004181 // No extra round required here.
4182 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004183 break;
4184 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004185 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4186 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00004187 // Round if we cannot tolerate excess precision.
4188 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004189 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4190 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004191 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004192 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004193 break;
4194
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004195 case ISD::SIGN_EXTEND_INREG:
4196 Result = PromoteOp(Node->getOperand(0));
4197 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4198 Node->getOperand(1));
4199 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004200 case ISD::FP_TO_SINT:
4201 case ISD::FP_TO_UINT:
4202 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4203 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004204 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004205 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004206 break;
4207 case Promote:
4208 // The input result is prerounded, so we don't have to do anything
4209 // special.
4210 Tmp1 = PromoteOp(Node->getOperand(0));
4211 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004212 }
Nate Begemand2558e32005-08-14 01:20:53 +00004213 // If we're promoting a UINT to a larger size, check to see if the new node
4214 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4215 // we can use that instead. This allows us to generate better code for
4216 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4217 // legal, such as PowerPC.
4218 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004219 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004220 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4221 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00004222 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4223 } else {
4224 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4225 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004226 break;
4227
Chris Lattner2c8086f2005-04-02 05:00:07 +00004228 case ISD::FABS:
4229 case ISD::FNEG:
4230 Tmp1 = PromoteOp(Node->getOperand(0));
4231 assert(Tmp1.getValueType() == NVT);
4232 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4233 // NOTE: we do not have to do any extra rounding here for
4234 // NoExcessFPPrecision, because we know the input will have the appropriate
4235 // precision, and these operations don't modify precision at all.
4236 break;
4237
Chris Lattnerda6ba872005-04-28 21:44:33 +00004238 case ISD::FSQRT:
4239 case ISD::FSIN:
4240 case ISD::FCOS:
4241 Tmp1 = PromoteOp(Node->getOperand(0));
4242 assert(Tmp1.getValueType() == NVT);
4243 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004244 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004245 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4246 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004247 break;
4248
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004249 case ISD::FPOWI: {
4250 // Promote f32 powi to f64 powi. Note that this could insert a libcall
4251 // directly as well, which may be better.
4252 Tmp1 = PromoteOp(Node->getOperand(0));
4253 assert(Tmp1.getValueType() == NVT);
4254 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
4255 if (NoExcessFPPrecision)
4256 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4257 DAG.getValueType(VT));
4258 break;
4259 }
4260
Mon P Wang28873102008-06-25 08:15:39 +00004261 case ISD::ATOMIC_CMP_SWAP: {
4262 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004263 Tmp2 = PromoteOp(Node->getOperand(2));
4264 Tmp3 = PromoteOp(Node->getOperand(3));
Mon P Wang28873102008-06-25 08:15:39 +00004265 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4266 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004267 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004268 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004269 // Remember that we legalized the chain.
4270 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4271 break;
4272 }
Mon P Wang28873102008-06-25 08:15:39 +00004273 case ISD::ATOMIC_LOAD_ADD:
4274 case ISD::ATOMIC_LOAD_SUB:
Mon P Wang63307c32008-05-05 19:05:59 +00004275 case ISD::ATOMIC_LOAD_AND:
4276 case ISD::ATOMIC_LOAD_OR:
4277 case ISD::ATOMIC_LOAD_XOR:
Andrew Lenharth507a58a2008-06-14 05:48:15 +00004278 case ISD::ATOMIC_LOAD_NAND:
Mon P Wang63307c32008-05-05 19:05:59 +00004279 case ISD::ATOMIC_LOAD_MIN:
4280 case ISD::ATOMIC_LOAD_MAX:
4281 case ISD::ATOMIC_LOAD_UMIN:
4282 case ISD::ATOMIC_LOAD_UMAX:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004283 case ISD::ATOMIC_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004284 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004285 Tmp2 = PromoteOp(Node->getOperand(2));
Mon P Wang28873102008-06-25 08:15:39 +00004286 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4287 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004288 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004289 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004290 // Remember that we legalized the chain.
4291 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4292 break;
4293 }
4294
Chris Lattner03c85462005-01-15 05:21:40 +00004295 case ISD::AND:
4296 case ISD::OR:
4297 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004298 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004299 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004300 case ISD::MUL:
4301 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004302 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004303 // that too is okay if they are integer operations.
4304 Tmp1 = PromoteOp(Node->getOperand(0));
4305 Tmp2 = PromoteOp(Node->getOperand(1));
4306 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4307 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004308 break;
4309 case ISD::FADD:
4310 case ISD::FSUB:
4311 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004312 Tmp1 = PromoteOp(Node->getOperand(0));
4313 Tmp2 = PromoteOp(Node->getOperand(1));
4314 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4315 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4316
4317 // Floating point operations will give excess precision that we may not be
4318 // able to tolerate. If we DO allow excess precision, just leave it,
4319 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004320 // FIXME: Why would we need to round FP ops more than integer ones?
4321 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004322 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004323 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4324 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004325 break;
4326
Chris Lattner8b6fa222005-01-15 22:16:26 +00004327 case ISD::SDIV:
4328 case ISD::SREM:
4329 // These operators require that their input be sign extended.
4330 Tmp1 = PromoteOp(Node->getOperand(0));
4331 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004332 if (NVT.isInteger()) {
Chris Lattner15e4b012005-07-10 00:07:11 +00004333 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4334 DAG.getValueType(VT));
4335 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4336 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004337 }
4338 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4339
4340 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004341 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004342 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4343 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004344 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004345 case ISD::FDIV:
4346 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004347 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004348 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004349 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004350 case Expand: assert(0 && "not implemented");
4351 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4352 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004353 }
4354 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004355 case Expand: assert(0 && "not implemented");
4356 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4357 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004358 }
Chris Lattner01b3d732005-09-28 22:28:18 +00004359 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4360
4361 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004362 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00004363 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4364 DAG.getValueType(VT));
4365 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004366
4367 case ISD::UDIV:
4368 case ISD::UREM:
4369 // These operators require that their input be zero extended.
4370 Tmp1 = PromoteOp(Node->getOperand(0));
4371 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004372 assert(NVT.isInteger() && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00004373 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4374 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004375 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4376 break;
4377
4378 case ISD::SHL:
4379 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00004380 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004381 break;
4382 case ISD::SRA:
4383 // The input value must be properly sign extended.
4384 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00004385 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4386 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00004387 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004388 break;
4389 case ISD::SRL:
4390 // The input value must be properly zero extended.
4391 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00004392 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004393 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004394 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004395
4396 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004397 Tmp1 = Node->getOperand(0); // Get the chain.
4398 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004399 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4400 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004401 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004402 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004403 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
4404 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004405 // Increment the pointer, VAList, to the next vaarg
4406 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004407 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004408 TLI.getPointerTy()));
4409 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00004410 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004411 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004412 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004413 }
4414 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004415 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004416 break;
4417
Evan Cheng466685d2006-10-09 20:57:25 +00004418 case ISD::LOAD: {
4419 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004420 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4421 ? ISD::EXTLOAD : LD->getExtensionType();
4422 Result = DAG.getExtLoad(ExtType, NVT,
4423 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004424 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004425 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004426 LD->isVolatile(),
4427 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004428 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004429 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004430 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004431 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004432 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004433 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4434 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004435
Duncan Sands83ec4b62008-06-06 12:08:01 +00004436 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004437 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004438 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4439 // Ensure that the resulting node is at least the same size as the operands'
4440 // value types, because we cannot assume that TLI.getSetCCValueType() is
4441 // constant.
4442 Result = DAG.getNode(ISD::SELECT, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004443 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004444 }
Nate Begeman9373a812005-08-10 20:51:12 +00004445 case ISD::SELECT_CC:
4446 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4447 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4448 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004449 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004450 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004451 case ISD::BSWAP:
4452 Tmp1 = Node->getOperand(0);
4453 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4454 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4455 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004456 DAG.getConstant(NVT.getSizeInBits() -
4457 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004458 TLI.getShiftAmountTy()));
4459 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004460 case ISD::CTPOP:
4461 case ISD::CTTZ:
4462 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004463 // Zero extend the argument
4464 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004465 // Perform the larger operation, then subtract if needed.
4466 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004467 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004468 case ISD::CTPOP:
4469 Result = Tmp1;
4470 break;
4471 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004472 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004473 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004474 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004475 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004476 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004477 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004478 break;
4479 case ISD::CTLZ:
4480 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004481 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004482 DAG.getConstant(NVT.getSizeInBits() -
4483 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004484 break;
4485 }
4486 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004487 case ISD::EXTRACT_SUBVECTOR:
4488 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004489 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004490 case ISD::EXTRACT_VECTOR_ELT:
4491 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4492 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004493 }
4494
4495 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004496
4497 // Make sure the result is itself legal.
4498 Result = LegalizeOp(Result);
4499
4500 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004501 AddPromotedOperand(Op, Result);
4502 return Result;
4503}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004504
Dan Gohman7f321562007-06-25 16:23:39 +00004505/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4506/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4507/// based on the vector type. The return type of this matches the element type
4508/// of the vector, which may not be legal for the target.
4509SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004510 // We know that operand #0 is the Vec vector. If the index is a constant
4511 // or if the invec is a supported hardware type, we can use it. Otherwise,
4512 // lower to a store then an indexed load.
4513 SDOperand Vec = Op.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004514 SDOperand Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00004515
Duncan Sands83ec4b62008-06-06 12:08:01 +00004516 MVT TVT = Vec.getValueType();
4517 unsigned NumElems = TVT.getVectorNumElements();
Chris Lattner15972212006-03-31 17:55:51 +00004518
Dan Gohman7f321562007-06-25 16:23:39 +00004519 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4520 default: assert(0 && "This action is not supported yet!");
4521 case TargetLowering::Custom: {
4522 Vec = LegalizeOp(Vec);
4523 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4524 SDOperand Tmp3 = TLI.LowerOperation(Op, DAG);
4525 if (Tmp3.Val)
4526 return Tmp3;
4527 break;
4528 }
4529 case TargetLowering::Legal:
4530 if (isTypeLegal(TVT)) {
4531 Vec = LegalizeOp(Vec);
4532 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004533 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004534 }
4535 break;
4536 case TargetLowering::Expand:
4537 break;
4538 }
4539
4540 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004541 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004542 Op = ScalarizeVectorOp(Vec);
4543 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00004544 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00004545 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Chris Lattner15972212006-03-31 17:55:51 +00004546 SDOperand Lo, Hi;
4547 SplitVectorOp(Vec, Lo, Hi);
Nate Begeman55030dc2008-01-29 02:24:00 +00004548 if (CIdx->getValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00004549 Vec = Lo;
4550 } else {
4551 Vec = Hi;
Nate Begeman55030dc2008-01-29 02:24:00 +00004552 Idx = DAG.getConstant(CIdx->getValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00004553 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00004554 }
Dan Gohman7f321562007-06-25 16:23:39 +00004555
Chris Lattner15972212006-03-31 17:55:51 +00004556 // It's now an extract from the appropriate high or low part. Recurse.
4557 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004558 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00004559 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004560 // Store the value to a temporary stack slot, then LOAD the scalar
4561 // element back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004562 SDOperand StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dan Gohman7f321562007-06-25 16:23:39 +00004563 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
4564
4565 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004566 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dan Gohman7f321562007-06-25 16:23:39 +00004567 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4568 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004569
Duncan Sands8e4eb092008-06-08 20:54:56 +00004570 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Chris Lattnerf185e672007-10-19 16:47:35 +00004571 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004572 else
Chris Lattnerf185e672007-10-19 16:47:35 +00004573 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004574
Dan Gohman7f321562007-06-25 16:23:39 +00004575 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4576
4577 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00004578 }
Dan Gohman7f321562007-06-25 16:23:39 +00004579 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00004580}
4581
Dan Gohman7f321562007-06-25 16:23:39 +00004582/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00004583/// we assume the operation can be split if it is not already legal.
Dan Gohman7f321562007-06-25 16:23:39 +00004584SDOperand SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDOperand Op) {
Dan Gohman65956352007-06-13 15:12:02 +00004585 // We know that operand #0 is the Vec vector. For now we assume the index
4586 // is a constant and that the extracted result is a supported hardware type.
4587 SDOperand Vec = Op.getOperand(0);
4588 SDOperand Idx = LegalizeOp(Op.getOperand(1));
4589
Duncan Sands83ec4b62008-06-06 12:08:01 +00004590 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Dan Gohman65956352007-06-13 15:12:02 +00004591
Duncan Sands83ec4b62008-06-06 12:08:01 +00004592 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00004593 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004594 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00004595 }
4596
4597 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
4598 SDOperand Lo, Hi;
4599 SplitVectorOp(Vec, Lo, Hi);
4600 if (CIdx->getValue() < NumElems/2) {
4601 Vec = Lo;
4602 } else {
4603 Vec = Hi;
4604 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
4605 }
4606
4607 // It's now an extract from the appropriate high or low part. Recurse.
4608 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004609 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00004610}
4611
Nate Begeman750ac1b2006-02-01 07:19:44 +00004612/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4613/// with condition CC on the current target. This usually involves legalizing
4614/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4615/// there may be no choice but to create a new SetCC node to represent the
4616/// legalized value of setcc lhs, rhs. In this case, the value is returned in
4617/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
4618void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
4619 SDOperand &RHS,
4620 SDOperand &CC) {
Dale Johannesen638ccd52007-10-06 01:24:11 +00004621 SDOperand Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004622
4623 switch (getTypeAction(LHS.getValueType())) {
4624 case Legal:
4625 Tmp1 = LegalizeOp(LHS); // LHS
4626 Tmp2 = LegalizeOp(RHS); // RHS
4627 break;
4628 case Promote:
4629 Tmp1 = PromoteOp(LHS); // LHS
4630 Tmp2 = PromoteOp(RHS); // RHS
4631
4632 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004633 if (LHS.getValueType().isInteger()) {
4634 MVT VT = LHS.getValueType();
4635 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00004636
4637 // Otherwise, we have to insert explicit sign or zero extends. Note
4638 // that we could insert sign extends for ALL conditions, but zero extend
4639 // is cheaper on many machines (an AND instead of two shifts), so prefer
4640 // it.
4641 switch (cast<CondCodeSDNode>(CC)->get()) {
4642 default: assert(0 && "Unknown integer comparison!");
4643 case ISD::SETEQ:
4644 case ISD::SETNE:
4645 case ISD::SETUGE:
4646 case ISD::SETUGT:
4647 case ISD::SETULE:
4648 case ISD::SETULT:
4649 // ALL of these operations will work if we either sign or zero extend
4650 // the operands (including the unsigned comparisons!). Zero extend is
4651 // usually a simpler/cheaper operation, so prefer it.
4652 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4653 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4654 break;
4655 case ISD::SETGE:
4656 case ISD::SETGT:
4657 case ISD::SETLT:
4658 case ISD::SETLE:
4659 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4660 DAG.getValueType(VT));
4661 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4662 DAG.getValueType(VT));
4663 break;
4664 }
4665 }
4666 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004667 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004668 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00004669 if (VT == MVT::f32 || VT == MVT::f64) {
4670 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00004671 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00004672 switch (cast<CondCodeSDNode>(CC)->get()) {
4673 case ISD::SETEQ:
4674 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00004675 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004676 break;
4677 case ISD::SETNE:
4678 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00004679 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004680 break;
4681 case ISD::SETGE:
4682 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00004683 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004684 break;
4685 case ISD::SETLT:
4686 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00004687 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004688 break;
4689 case ISD::SETLE:
4690 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00004691 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004692 break;
4693 case ISD::SETGT:
4694 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00004695 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004696 break;
4697 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00004698 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4699 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004700 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00004701 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004702 break;
4703 default:
Evan Cheng56966222007-01-12 02:11:51 +00004704 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004705 switch (cast<CondCodeSDNode>(CC)->get()) {
4706 case ISD::SETONE:
4707 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004708 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004709 // Fallthrough
4710 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004711 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004712 break;
4713 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004714 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004715 break;
4716 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004717 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004718 break;
4719 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004720 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004721 break;
Evan Cheng56966222007-01-12 02:11:51 +00004722 case ISD::SETUEQ:
4723 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004724 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004725 default: assert(0 && "Unsupported FP setcc!");
4726 }
4727 }
Duncan Sandsf9516202008-06-30 10:19:09 +00004728
Evan Cheng2b49c502006-12-15 02:59:56 +00004729 SDOperand Dummy;
Duncan Sands4bdcb612008-07-02 17:40:58 +00004730 SDOperand Ops[2] = { LHS, RHS };
4731 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004732 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004733 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004734 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004735 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004736 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00004737 CC);
Duncan Sands4bdcb612008-07-02 17:40:58 +00004738 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004739 false /*sign irrelevant*/, Dummy);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004740 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004741 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004742 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4743 Tmp2 = SDOperand();
4744 }
Evan Cheng21cacc42008-07-07 07:18:09 +00004745 LHS = LegalizeOp(Tmp1);
Evan Cheng2b49c502006-12-15 02:59:56 +00004746 RHS = Tmp2;
4747 return;
4748 }
4749
Nate Begeman750ac1b2006-02-01 07:19:44 +00004750 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
4751 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004752 ExpandOp(RHS, RHSLo, RHSHi);
4753 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4754
4755 if (VT==MVT::ppcf128) {
4756 // FIXME: This generated code sucks. We want to generate
4757 // FCMP crN, hi1, hi2
4758 // BNE crN, L:
4759 // FCMP crN, lo1, lo2
4760 // The following can be improved, but not that much.
Scott Michel5b8f82e2008-03-10 15:42:14 +00004761 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETEQ);
4762 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004763 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004764 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETNE);
4765 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004766 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4767 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
4768 Tmp2 = SDOperand();
4769 break;
4770 }
4771
4772 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004773 case ISD::SETEQ:
4774 case ISD::SETNE:
4775 if (RHSLo == RHSHi)
4776 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4777 if (RHSCST->isAllOnesValue()) {
4778 // Comparison to -1.
4779 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4780 Tmp2 = RHSLo;
4781 break;
4782 }
4783
4784 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4785 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4786 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4787 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4788 break;
4789 default:
4790 // If this is a comparison of the sign bit, just look at the top part.
4791 // X > -1, x < 0
4792 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4793 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004794 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00004795 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4796 CST->isAllOnesValue())) { // X > -1
4797 Tmp1 = LHSHi;
4798 Tmp2 = RHSHi;
4799 break;
4800 }
4801
4802 // FIXME: This generated code sucks.
4803 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004804 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004805 default: assert(0 && "Unknown integer setcc!");
4806 case ISD::SETLT:
4807 case ISD::SETULT: LowCC = ISD::SETULT; break;
4808 case ISD::SETGT:
4809 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4810 case ISD::SETLE:
4811 case ISD::SETULE: LowCC = ISD::SETULE; break;
4812 case ISD::SETGE:
4813 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4814 }
4815
4816 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4817 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4818 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4819
4820 // NOTE: on targets without efficient SELECT of bools, we can always use
4821 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004822 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004823 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
Nate Begeman5922f562008-03-14 00:53:31 +00004824 LowCC, false, DagCombineInfo);
Evan Cheng2e677812007-02-08 22:16:19 +00004825 if (!Tmp1.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004826 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4827 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004828 CCCode, false, DagCombineInfo);
4829 if (!Tmp2.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004830 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004831 RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00004832
4833 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4834 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
Dan Gohman002e5d02008-03-13 22:13:53 +00004835 if ((Tmp1C && Tmp1C->isNullValue()) ||
4836 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00004837 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4838 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00004839 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00004840 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4841 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4842 // low part is known false, returns high part.
4843 // For LE / GE, if high part is known false, ignore the low part.
4844 // For LT / GT, if high part is known true, ignore the low part.
4845 Tmp1 = Tmp2;
4846 Tmp2 = SDOperand();
4847 } else {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004848 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004849 ISD::SETEQ, false, DagCombineInfo);
4850 if (!Result.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004851 Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004852 ISD::SETEQ);
Evan Cheng2e677812007-02-08 22:16:19 +00004853 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4854 Result, Tmp1, Tmp2));
4855 Tmp1 = Result;
4856 Tmp2 = SDOperand();
4857 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004858 }
4859 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004860 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004861 LHS = Tmp1;
4862 RHS = Tmp2;
4863}
4864
Chris Lattner1401d152008-01-16 07:45:30 +00004865/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4866/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4867/// a load from the stack slot to DestVT, extending it if needed.
4868/// The resultant code need not be legal.
4869SDOperand SelectionDAGLegalize::EmitStackConvert(SDOperand SrcOp,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004870 MVT SlotVT,
4871 MVT DestVT) {
Chris Lattner35481892005-12-23 00:16:34 +00004872 // Create the stack frame object.
Mon P Wang364d73d2008-07-05 20:40:31 +00004873 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
4874 SrcOp.getValueType().getTypeForMVT());
4875 SDOperand FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
4876
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004877 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004878 int SPFI = StackPtrFI->getIndex();
Mon P Wang364d73d2008-07-05 20:40:31 +00004879
Duncan Sands83ec4b62008-06-06 12:08:01 +00004880 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
4881 unsigned SlotSize = SlotVT.getSizeInBits();
4882 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang364d73d2008-07-05 20:40:31 +00004883 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
4884 DestVT.getTypeForMVT());
Chris Lattner35481892005-12-23 00:16:34 +00004885
Chris Lattner1401d152008-01-16 07:45:30 +00004886 // Emit a store to the stack slot. Use a truncstore if the input value is
4887 // later than DestVT.
4888 SDOperand Store;
Mon P Wang364d73d2008-07-05 20:40:31 +00004889
Chris Lattner1401d152008-01-16 07:45:30 +00004890 if (SrcSize > SlotSize)
Dan Gohman69de1932008-02-06 22:27:42 +00004891 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Mon P Wang364d73d2008-07-05 20:40:31 +00004892 PseudoSourceValue::getFixedStack(), SPFI, SlotVT,
4893 false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004894 else {
4895 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman69de1932008-02-06 22:27:42 +00004896 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Mon P Wang364d73d2008-07-05 20:40:31 +00004897 PseudoSourceValue::getFixedStack(), SPFI,
4898 false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004899 }
4900
Chris Lattner35481892005-12-23 00:16:34 +00004901 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00004902 if (SlotSize == DestSize)
Mon P Wang364d73d2008-07-05 20:40:31 +00004903 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0, false, DestAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004904
4905 assert(SlotSize < DestSize && "Unknown extension!");
Mon P Wang364d73d2008-07-05 20:40:31 +00004906 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT,
4907 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00004908}
4909
Chris Lattner4352cc92006-04-04 17:23:26 +00004910SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
4911 // Create a vector sized/aligned stack slot, store the value to element #0,
4912 // then load the whole vector back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004913 SDOperand StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00004914
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004915 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004916 int SPFI = StackPtrFI->getIndex();
4917
Evan Cheng786225a2006-10-05 23:01:46 +00004918 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004919 PseudoSourceValue::getFixedStack(), SPFI);
Dan Gohman69de1932008-02-06 22:27:42 +00004920 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004921 PseudoSourceValue::getFixedStack(), SPFI);
Chris Lattner4352cc92006-04-04 17:23:26 +00004922}
4923
4924
Chris Lattnerce872152006-03-19 06:31:19 +00004925/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004926/// support the operation, but do support the resultant vector type.
Chris Lattnerce872152006-03-19 06:31:19 +00004927SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
4928
4929 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004930 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004931 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004932 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00004933 SDOperand SplatValue = Node->getOperand(0);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004934
4935 // FIXME: it would be far nicer to change this into map<SDOperand,uint64_t>
4936 // and use a bitmask instead of a list of elements.
Evan Cheng033e6812006-03-24 01:17:21 +00004937 std::map<SDOperand, std::vector<unsigned> > Values;
4938 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004939 bool isConstant = true;
4940 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4941 SplatValue.getOpcode() != ISD::UNDEF)
4942 isConstant = false;
4943
Evan Cheng033e6812006-03-24 01:17:21 +00004944 for (unsigned i = 1; i < NumElems; ++i) {
4945 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004946 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004947 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004948 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004949 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00004950 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004951
4952 // If this isn't a constant element or an undef, we can't use a constant
4953 // pool load.
4954 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4955 V.getOpcode() != ISD::UNDEF)
4956 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004957 }
4958
4959 if (isOnlyLowElement) {
4960 // If the low element is an undef too, then this whole things is an undef.
4961 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4962 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4963 // Otherwise, turn this into a scalar_to_vector node.
4964 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4965 Node->getOperand(0));
4966 }
4967
Chris Lattner2eb86532006-03-24 07:29:17 +00004968 // If all elements are constants, create a load from the constant pool.
4969 if (isConstant) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004970 MVT VT = Node->getValueType(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004971 std::vector<Constant*> CV;
4972 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4973 if (ConstantFPSDNode *V =
4974 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Chris Lattner02a260a2008-04-20 00:41:09 +00004975 CV.push_back(ConstantFP::get(V->getValueAPF()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004976 } else if (ConstantSDNode *V =
Chris Lattner02a260a2008-04-20 00:41:09 +00004977 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
4978 CV.push_back(ConstantInt::get(V->getAPIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004979 } else {
4980 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner02a260a2008-04-20 00:41:09 +00004981 const Type *OpNTy =
Duncan Sands83ec4b62008-06-06 12:08:01 +00004982 Node->getOperand(0).getValueType().getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00004983 CV.push_back(UndefValue::get(OpNTy));
4984 }
4985 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00004986 Constant *CP = ConstantVector::get(CV);
Chris Lattner2eb86532006-03-24 07:29:17 +00004987 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman69de1932008-02-06 22:27:42 +00004988 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00004989 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004990 }
4991
Chris Lattner87100e02006-03-20 01:52:29 +00004992 if (SplatValue.Val) { // Splat of one value?
4993 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands83ec4b62008-06-06 12:08:01 +00004994 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
4995 SDOperand Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
Evan Cheng033e6812006-03-24 01:17:21 +00004996 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004997 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4998 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00004999
5000 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005001 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00005002 // Get the splatted value into the low element of a vector register.
5003 SDOperand LowValVec =
5004 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
5005
5006 // Return shuffle(LowValVec, undef, <0,0,0,0>)
5007 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
5008 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
5009 SplatMask);
5010 }
5011 }
5012
Evan Cheng033e6812006-03-24 01:17:21 +00005013 // If there are only two unique elements, we may be able to turn this into a
5014 // vector shuffle.
5015 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005016 // Get the two values in deterministic order.
5017 SDOperand Val1 = Node->getOperand(1);
5018 SDOperand Val2;
5019 std::map<SDOperand, std::vector<unsigned> >::iterator MI = Values.begin();
5020 if (MI->first != Val1)
5021 Val2 = MI->first;
5022 else
5023 Val2 = (++MI)->first;
5024
5025 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
5026 // vector shuffle has the undef vector on the RHS.
5027 if (Val1.getOpcode() == ISD::UNDEF)
5028 std::swap(Val1, Val2);
5029
Evan Cheng033e6812006-03-24 01:17:21 +00005030 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005031 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5032 MVT MaskEltVT = MaskVT.getVectorElementType();
Evan Cheng033e6812006-03-24 01:17:21 +00005033 std::vector<SDOperand> MaskVec(NumElems);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005034
5035 // Set elements of the shuffle mask for Val1.
5036 std::vector<unsigned> &Val1Elts = Values[Val1];
5037 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5038 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5039
5040 // Set elements of the shuffle mask for Val2.
5041 std::vector<unsigned> &Val2Elts = Values[Val2];
5042 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5043 if (Val2.getOpcode() != ISD::UNDEF)
5044 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5045 else
5046 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
5047
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005048 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
5049 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00005050
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005051 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005052 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
5053 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005054 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
5055 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
5056 SDOperand Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng033e6812006-03-24 01:17:21 +00005057
5058 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005059 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Evan Cheng033e6812006-03-24 01:17:21 +00005060 }
5061 }
Chris Lattnerce872152006-03-19 06:31:19 +00005062
5063 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5064 // aligned object on the stack, store each element into it, then load
5065 // the result as a vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005066 MVT VT = Node->getValueType(0);
Chris Lattnerce872152006-03-19 06:31:19 +00005067 // Create the stack frame object.
Chris Lattner85dd3be2007-10-15 17:48:57 +00005068 SDOperand FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005069
5070 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005071 SmallVector<SDOperand, 8> Stores;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005072 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Chris Lattnerce872152006-03-19 06:31:19 +00005073 // Store (in the right endianness) the elements to memory.
5074 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5075 // Ignore undef elements.
5076 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5077
Chris Lattner841c8822006-03-22 01:46:54 +00005078 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00005079
5080 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
5081 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5082
Evan Cheng786225a2006-10-05 23:01:46 +00005083 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00005084 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00005085 }
5086
5087 SDOperand StoreChain;
5088 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005089 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5090 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005091 else
5092 StoreChain = DAG.getEntryNode();
5093
5094 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00005095 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005096}
5097
Chris Lattner5b359c62005-04-02 04:00:59 +00005098void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
5099 SDOperand Op, SDOperand Amt,
5100 SDOperand &Lo, SDOperand &Hi) {
5101 // Expand the subcomponents.
5102 SDOperand LHSL, LHSH;
5103 ExpandOp(Op, LHSL, LHSH);
5104
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005105 SDOperand Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005106 MVT VT = LHSL.getValueType();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00005107 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005108 Hi = Lo.getValue(1);
5109}
5110
5111
Chris Lattnere34b3962005-01-19 04:19:40 +00005112/// ExpandShift - Try to find a clever way to expand this shift operation out to
5113/// smaller elements. If we can't find a way that is more efficient than a
5114/// libcall on this target, return false. Otherwise, return true with the
5115/// low-parts expanded into Lo and Hi.
5116bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
5117 SDOperand &Lo, SDOperand &Hi) {
5118 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5119 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005120
Duncan Sands83ec4b62008-06-06 12:08:01 +00005121 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005122 SDOperand ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005123 MVT ShTy = ShAmt.getValueType();
5124 unsigned ShBits = ShTy.getSizeInBits();
5125 unsigned VTBits = Op.getValueType().getSizeInBits();
5126 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005127
Chris Lattner7a3c8552007-10-14 20:35:12 +00005128 // Handle the case when Amt is an immediate.
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005129 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
5130 unsigned Cst = CN->getValue();
5131 // Expand the incoming operand to be shifted, so that we have its parts
5132 SDOperand InL, InH;
5133 ExpandOp(Op, InL, InH);
5134 switch(Opc) {
5135 case ISD::SHL:
5136 if (Cst > VTBits) {
5137 Lo = DAG.getConstant(0, NVT);
5138 Hi = DAG.getConstant(0, NVT);
5139 } else if (Cst > NVTBits) {
5140 Lo = DAG.getConstant(0, NVT);
5141 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005142 } else if (Cst == NVTBits) {
5143 Lo = DAG.getConstant(0, NVT);
5144 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005145 } else {
5146 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5147 Hi = DAG.getNode(ISD::OR, NVT,
5148 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5149 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5150 }
5151 return true;
5152 case ISD::SRL:
5153 if (Cst > VTBits) {
5154 Lo = DAG.getConstant(0, NVT);
5155 Hi = DAG.getConstant(0, NVT);
5156 } else if (Cst > NVTBits) {
5157 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5158 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005159 } else if (Cst == NVTBits) {
5160 Lo = InH;
5161 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005162 } else {
5163 Lo = DAG.getNode(ISD::OR, NVT,
5164 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5165 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5166 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5167 }
5168 return true;
5169 case ISD::SRA:
5170 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005171 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005172 DAG.getConstant(NVTBits-1, ShTy));
5173 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005174 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005175 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005176 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005177 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005178 } else if (Cst == NVTBits) {
5179 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00005180 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005181 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005182 } else {
5183 Lo = DAG.getNode(ISD::OR, NVT,
5184 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5185 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5186 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5187 }
5188 return true;
5189 }
5190 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005191
5192 // Okay, the shift amount isn't constant. However, if we can tell that it is
5193 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005194 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5195 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005196 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005197
Dan Gohman9e255b72008-02-22 01:12:31 +00005198 // If we know that if any of the high bits of the shift amount are one, then
5199 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005200 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005201 // Mask out the high bit, which we know is set.
5202 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005203 DAG.getConstant(~Mask, Amt.getValueType()));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005204
5205 // Expand the incoming operand to be shifted, so that we have its parts
5206 SDOperand InL, InH;
5207 ExpandOp(Op, InL, InH);
5208 switch(Opc) {
5209 case ISD::SHL:
5210 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5211 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5212 return true;
5213 case ISD::SRL:
5214 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5215 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5216 return true;
5217 case ISD::SRA:
5218 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5219 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5220 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5221 return true;
5222 }
5223 }
5224
Dan Gohman9e255b72008-02-22 01:12:31 +00005225 // If we know that the high bits of the shift amount are all zero, then we can
5226 // do this as a couple of simple shifts.
5227 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005228 // Compute 32-amt.
5229 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
5230 DAG.getConstant(NVTBits, Amt.getValueType()),
5231 Amt);
5232
5233 // Expand the incoming operand to be shifted, so that we have its parts
5234 SDOperand InL, InH;
5235 ExpandOp(Op, InL, InH);
5236 switch(Opc) {
5237 case ISD::SHL:
5238 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5239 Hi = DAG.getNode(ISD::OR, NVT,
5240 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5241 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5242 return true;
5243 case ISD::SRL:
5244 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5245 Lo = DAG.getNode(ISD::OR, NVT,
5246 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5247 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5248 return true;
5249 case ISD::SRA:
5250 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5251 Lo = DAG.getNode(ISD::OR, NVT,
5252 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5253 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5254 return true;
5255 }
5256 }
5257
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005258 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005259}
Chris Lattner77e77a62005-01-21 06:05:23 +00005260
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005261
Chris Lattner77e77a62005-01-21 06:05:23 +00005262// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5263// does not fit into a register, return the lo part and set the hi part to the
5264// by-reg argument. If it does fit into a single register, return the result
5265// and leave the Hi part unset.
Duncan Sands460a14e2008-04-12 17:14:18 +00005266SDOperand SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Reid Spencer47857812006-12-31 05:55:36 +00005267 bool isSigned, SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005268 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5269 // The input chain to this libcall is the entry node of the function.
5270 // Legalizing the call will automatically add the previous call to the
5271 // dependence.
5272 SDOperand InChain = DAG.getEntryNode();
5273
Chris Lattner77e77a62005-01-21 06:05:23 +00005274 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005275 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005276 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005277 MVT ArgVT = Node->getOperand(i).getValueType();
5278 const Type *ArgTy = ArgVT.getTypeForMVT();
Reid Spencer47857812006-12-31 05:55:36 +00005279 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005280 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005281 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005282 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005283 }
Duncan Sands460a14e2008-04-12 17:14:18 +00005284 SDOperand Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
5285 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005286
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005287 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005288 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005289 std::pair<SDOperand,SDOperand> CallInfo =
Duncan Sands00fee652008-02-14 17:28:50 +00005290 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, CallingConv::C,
5291 false, Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005292
Chris Lattner6831a812006-02-13 09:18:02 +00005293 // Legalize the call sequence, starting with the chain. This will advance
5294 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5295 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5296 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00005297 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005298 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005299 default: assert(0 && "Unknown thing");
5300 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005301 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005302 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005303 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005304 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005305 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005306 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005307 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005308}
5309
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005310
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005311/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5312///
Chris Lattner77e77a62005-01-21 06:05:23 +00005313SDOperand SelectionDAGLegalize::
Duncan Sands83ec4b62008-06-06 12:08:01 +00005314ExpandIntToFP(bool isSigned, MVT DestTy, SDOperand Source) {
5315 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005316 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005317
Evan Cheng9845eb52008-04-01 02:18:22 +00005318 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5319 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005320 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005321 // incoming integer is set. To handle this, we dynamically test to see if
5322 // it is set, and, if so, add a fudge factor.
Dan Gohman034f60e2008-03-11 01:59:03 +00005323 SDOperand Hi;
5324 if (ExpandSource) {
5325 SDOperand Lo;
5326 ExpandOp(Source, Lo, Hi);
5327 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5328 } else {
5329 // The comparison for the sign bit will use the entire operand.
5330 Hi = Source;
5331 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005332
Chris Lattner66de05b2005-05-13 04:45:13 +00005333 // If this is unsigned, and not supported, first perform the conversion to
5334 // signed, then adjust the result if the sign bit is set.
Dan Gohman034f60e2008-03-11 01:59:03 +00005335 SDOperand SignedConv = ExpandIntToFP(true, DestTy, Source);
Chris Lattner66de05b2005-05-13 04:45:13 +00005336
Scott Michel5b8f82e2008-03-10 15:42:14 +00005337 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005338 DAG.getConstant(0, Hi.getValueType()),
5339 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005340 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005341 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5342 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005343 uint64_t FF = 0x5f800000ULL;
5344 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohman34bc1782008-03-05 02:07:31 +00005345 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005346
Chris Lattner5839bf22005-08-26 17:15:30 +00005347 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00005348 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5349 SDOperand FudgeInReg;
5350 if (DestTy == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005351 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005352 PseudoSourceValue::getConstantPool(), 0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005353 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005354 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005355 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005356 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005357 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005358 MVT::f32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005359 else
5360 assert(0 && "Unexpected conversion");
5361
Duncan Sands83ec4b62008-06-06 12:08:01 +00005362 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005363 if (SCVT != DestTy) {
5364 // Destination type needs to be expanded as well. The FADD now we are
5365 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005366 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5367 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dan Gohmand91446d2008-03-05 01:08:17 +00005368 SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005369 SignedConv, SignedConv.getValue(1));
5370 }
5371 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5372 }
Chris Lattner473a9902005-09-29 06:44:39 +00005373 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005374 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005375
Chris Lattnera88a2602005-05-14 05:33:54 +00005376 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00005377 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00005378 default: assert(0 && "This action not implemented for this operation!");
5379 case TargetLowering::Legal:
5380 case TargetLowering::Expand:
5381 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005382 case TargetLowering::Custom: {
5383 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
5384 Source), DAG);
5385 if (NV.Val)
5386 return LegalizeOp(NV);
5387 break; // The target decided this was legal after all
5388 }
Chris Lattnera88a2602005-05-14 05:33:54 +00005389 }
5390
Chris Lattner13689e22005-05-12 07:00:44 +00005391 // Expand the source, then glue it back together for the call. We must expand
5392 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00005393 if (ExpandSource) {
5394 SDOperand SrcLo, SrcHi;
5395 ExpandOp(Source, SrcLo, SrcHi);
5396 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5397 }
Chris Lattner13689e22005-05-12 07:00:44 +00005398
Evan Cheng56966222007-01-12 02:11:51 +00005399 RTLIB::Libcall LC;
Evan Cheng110cf482008-04-01 01:50:16 +00005400 if (SourceVT == MVT::i32) {
5401 if (DestTy == MVT::f32)
Evan Chengdb45d1c2008-04-01 02:00:09 +00005402 LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32;
Evan Cheng110cf482008-04-01 01:50:16 +00005403 else {
5404 assert(DestTy == MVT::f64 && "Unknown fp value type!");
5405 LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64;
5406 }
5407 } else if (SourceVT == MVT::i64) {
Dan Gohmand91446d2008-03-05 01:08:17 +00005408 if (DestTy == MVT::f32)
5409 LC = RTLIB::SINTTOFP_I64_F32;
Dan Gohman034f60e2008-03-11 01:59:03 +00005410 else if (DestTy == MVT::f64)
Dan Gohmand91446d2008-03-05 01:08:17 +00005411 LC = RTLIB::SINTTOFP_I64_F64;
Dan Gohman034f60e2008-03-11 01:59:03 +00005412 else if (DestTy == MVT::f80)
5413 LC = RTLIB::SINTTOFP_I64_F80;
5414 else {
5415 assert(DestTy == MVT::ppcf128 && "Unknown fp value type!");
5416 LC = RTLIB::SINTTOFP_I64_PPCF128;
Dan Gohmand91446d2008-03-05 01:08:17 +00005417 }
5418 } else if (SourceVT == MVT::i128) {
5419 if (DestTy == MVT::f32)
5420 LC = RTLIB::SINTTOFP_I128_F32;
5421 else if (DestTy == MVT::f64)
5422 LC = RTLIB::SINTTOFP_I128_F64;
5423 else if (DestTy == MVT::f80)
5424 LC = RTLIB::SINTTOFP_I128_F80;
5425 else {
5426 assert(DestTy == MVT::ppcf128 && "Unknown fp value type!");
5427 LC = RTLIB::SINTTOFP_I128_PPCF128;
5428 }
5429 } else {
5430 assert(0 && "Unknown int value type");
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005431 }
Chris Lattner6831a812006-02-13 09:18:02 +00005432
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005433 assert(TLI.getLibcallName(LC) && "Don't know how to expand this SINT_TO_FP!");
Chris Lattner6831a812006-02-13 09:18:02 +00005434 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
Dan Gohmana2e94852008-03-10 23:03:31 +00005435 SDOperand HiPart;
Duncan Sands460a14e2008-04-12 17:14:18 +00005436 SDOperand Result = ExpandLibCall(LC, Source.Val, isSigned, HiPart);
Evan Cheng110cf482008-04-01 01:50:16 +00005437 if (Result.getValueType() != DestTy && HiPart.Val)
Dan Gohmana2e94852008-03-10 23:03:31 +00005438 Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5439 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005440}
Misha Brukmanedf128a2005-04-21 22:36:52 +00005441
Chris Lattner22cde6a2006-01-28 08:25:58 +00005442/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5443/// INT_TO_FP operation of the specified operand when the target requests that
5444/// we expand it. At this point, we know that the result and operand types are
5445/// legal for the target.
5446SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5447 SDOperand Op0,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005448 MVT DestVT) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005449 if (Op0.getValueType() == MVT::i32) {
5450 // simple 32-bit [signed|unsigned] integer to float/double expansion
5451
Chris Lattner23594d42008-01-16 07:03:22 +00005452 // Get the stack frame index of a 8 byte buffer.
5453 SDOperand StackSlot = DAG.CreateStackTemporary(MVT::f64);
5454
Chris Lattner22cde6a2006-01-28 08:25:58 +00005455 // word offset constant for Hi/Lo address computation
5456 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
5457 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00005458 SDOperand Hi = StackSlot;
5459 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
5460 if (TLI.isLittleEndian())
5461 std::swap(Hi, Lo);
5462
Chris Lattner22cde6a2006-01-28 08:25:58 +00005463 // if signed map to unsigned space
5464 SDOperand Op0Mapped;
5465 if (isSigned) {
5466 // constant used to invert sign bit (signed to unsigned mapping)
5467 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
5468 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5469 } else {
5470 Op0Mapped = Op0;
5471 }
5472 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00005473 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005474 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005475 // initial hi portion of constructed double
5476 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
5477 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00005478 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005479 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00005480 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005481 // FP constant to bias correct the final result
5482 SDOperand Bias = DAG.getConstantFP(isSigned ?
5483 BitsToDouble(0x4330000080000000ULL)
5484 : BitsToDouble(0x4330000000000000ULL),
5485 MVT::f64);
5486 // subtract the bias
5487 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
5488 // final result
5489 SDOperand Result;
5490 // handle final rounding
5491 if (DestVT == MVT::f64) {
5492 // do nothing
5493 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00005494 } else if (DestVT.bitsLT(MVT::f64)) {
Chris Lattner0bd48932008-01-17 07:00:52 +00005495 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5496 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005497 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005498 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005499 }
5500 return Result;
5501 }
5502 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
5503 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
5504
Scott Michel5b8f82e2008-03-10 15:42:14 +00005505 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005506 DAG.getConstant(0, Op0.getValueType()),
5507 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005508 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005509 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5510 SignSet, Four, Zero);
5511
5512 // If the sign bit of the integer is set, the large number will be treated
5513 // as a negative number. To counteract this, the dynamic code adds an
5514 // offset depending on the data type.
5515 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005516 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005517 default: assert(0 && "Unsupported integer type!");
5518 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5519 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5520 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5521 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5522 }
5523 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005524 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005525
5526 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
5527 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5528 SDOperand FudgeInReg;
5529 if (DestVT == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005530 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005531 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005532 else {
Dan Gohman69de1932008-02-06 22:27:42 +00005533 FudgeInReg =
5534 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5535 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005536 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005537 MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00005538 }
5539
5540 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5541}
5542
5543/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5544/// *INT_TO_FP operation of the specified operand when the target requests that
5545/// we promote it. At this point, we know that the result and operand types are
5546/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5547/// operation that takes a larger input.
5548SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005549 MVT DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005550 bool isSigned) {
5551 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005552 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005553
5554 unsigned OpToUse = 0;
5555
5556 // Scan for the appropriate larger type to use.
5557 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005558 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
5559 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005560
5561 // If the target supports SINT_TO_FP of this type, use it.
5562 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5563 default: break;
5564 case TargetLowering::Legal:
5565 if (!TLI.isTypeLegal(NewInTy))
5566 break; // Can't use this datatype.
5567 // FALL THROUGH.
5568 case TargetLowering::Custom:
5569 OpToUse = ISD::SINT_TO_FP;
5570 break;
5571 }
5572 if (OpToUse) break;
5573 if (isSigned) continue;
5574
5575 // If the target supports UINT_TO_FP of this type, use it.
5576 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5577 default: break;
5578 case TargetLowering::Legal:
5579 if (!TLI.isTypeLegal(NewInTy))
5580 break; // Can't use this datatype.
5581 // FALL THROUGH.
5582 case TargetLowering::Custom:
5583 OpToUse = ISD::UINT_TO_FP;
5584 break;
5585 }
5586 if (OpToUse) break;
5587
5588 // Otherwise, try a larger type.
5589 }
5590
5591 // Okay, we found the operation and type to use. Zero extend our input to the
5592 // desired type then run the operation on it.
5593 return DAG.getNode(OpToUse, DestVT,
5594 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5595 NewInTy, LegalOp));
5596}
5597
5598/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5599/// FP_TO_*INT operation of the specified operand when the target requests that
5600/// we promote it. At this point, we know that the result and operand types are
5601/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5602/// operation that returns a larger result.
5603SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005604 MVT DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005605 bool isSigned) {
5606 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005607 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005608
5609 unsigned OpToUse = 0;
5610
5611 // Scan for the appropriate larger type to use.
5612 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005613 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
5614 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005615
5616 // If the target supports FP_TO_SINT returning this type, use it.
5617 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5618 default: break;
5619 case TargetLowering::Legal:
5620 if (!TLI.isTypeLegal(NewOutTy))
5621 break; // Can't use this datatype.
5622 // FALL THROUGH.
5623 case TargetLowering::Custom:
5624 OpToUse = ISD::FP_TO_SINT;
5625 break;
5626 }
5627 if (OpToUse) break;
5628
5629 // If the target supports FP_TO_UINT of this type, use it.
5630 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5631 default: break;
5632 case TargetLowering::Legal:
5633 if (!TLI.isTypeLegal(NewOutTy))
5634 break; // Can't use this datatype.
5635 // FALL THROUGH.
5636 case TargetLowering::Custom:
5637 OpToUse = ISD::FP_TO_UINT;
5638 break;
5639 }
5640 if (OpToUse) break;
5641
5642 // Otherwise, try a larger type.
5643 }
5644
Chris Lattner27a6c732007-11-24 07:07:01 +00005645
5646 // Okay, we found the operation and type to use.
5647 SDOperand Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00005648
Chris Lattner27a6c732007-11-24 07:07:01 +00005649 // If the operation produces an invalid type, it must be custom lowered. Use
5650 // the target lowering hooks to expand it. Just keep the low part of the
5651 // expanded operation, we know that we're truncating anyway.
5652 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands126d9072008-07-04 11:47:58 +00005653 Operation = SDOperand(TLI.ReplaceNodeResults(Operation.Val, DAG), 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00005654 assert(Operation.Val && "Didn't return anything");
5655 }
Duncan Sands126d9072008-07-04 11:47:58 +00005656
Chris Lattner27a6c732007-11-24 07:07:01 +00005657 // Truncate the result of the extended FP_TO_*INT operation to the desired
5658 // size.
5659 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005660}
5661
5662/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5663///
5664SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005665 MVT VT = Op.getValueType();
5666 MVT SHVT = TLI.getShiftAmountTy();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005667 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005668 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005669 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5670 case MVT::i16:
5671 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5672 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5673 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5674 case MVT::i32:
5675 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5676 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5677 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5678 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5679 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5680 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5681 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5682 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5683 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5684 case MVT::i64:
5685 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5686 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5687 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5688 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5689 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5690 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5691 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5692 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5693 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5694 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5695 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5696 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5697 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5698 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5699 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5700 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5701 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5702 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5703 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5704 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5705 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5706 }
5707}
5708
5709/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5710///
5711SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
5712 switch (Opc) {
5713 default: assert(0 && "Cannot expand this yet!");
5714 case ISD::CTPOP: {
5715 static const uint64_t mask[6] = {
5716 0x5555555555555555ULL, 0x3333333333333333ULL,
5717 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5718 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5719 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005720 MVT VT = Op.getValueType();
5721 MVT ShVT = TLI.getShiftAmountTy();
5722 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005723 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5724 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
5725 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
5726 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5727 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5728 DAG.getNode(ISD::AND, VT,
5729 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5730 }
5731 return Op;
5732 }
5733 case ISD::CTLZ: {
5734 // for now, we do this:
5735 // x = x | (x >> 1);
5736 // x = x | (x >> 2);
5737 // ...
5738 // x = x | (x >>16);
5739 // x = x | (x >>32); // for 64-bit input
5740 // return popcount(~x);
5741 //
5742 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005743 MVT VT = Op.getValueType();
5744 MVT ShVT = TLI.getShiftAmountTy();
5745 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005746 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5747 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5748 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5749 }
5750 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5751 return DAG.getNode(ISD::CTPOP, VT, Op);
5752 }
5753 case ISD::CTTZ: {
5754 // for now, we use: { return popcount(~x & (x - 1)); }
5755 // unless the target has ctlz but not ctpop, in which case we use:
5756 // { return 32 - nlz(~x & (x-1)); }
5757 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005758 MVT VT = Op.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005759 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
5760 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
5761 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5762 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5763 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5764 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5765 TLI.isOperationLegal(ISD::CTLZ, VT))
5766 return DAG.getNode(ISD::SUB, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005767 DAG.getConstant(VT.getSizeInBits(), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005768 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5769 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5770 }
5771 }
5772}
Chris Lattnere34b3962005-01-19 04:19:40 +00005773
Chris Lattner3e928bb2005-01-07 07:47:09 +00005774/// ExpandOp - Expand the specified SDOperand into its two component pieces
5775/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5776/// LegalizeNodes map is filled in for any results that are not expanded, the
5777/// ExpandedNodes map is filled in for any results that are expanded, and the
5778/// Lo/Hi values are returned.
5779void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00005780 MVT VT = Op.getValueType();
5781 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005782 SDNode *Node = Op.Val;
5783 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00005784 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00005785 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00005786
Chris Lattner6fdcb252005-09-02 20:32:45 +00005787 // See if we already expanded it.
Roman Levenstein9cac5252008-04-16 16:15:27 +00005788 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00005789 = ExpandedNodes.find(Op);
5790 if (I != ExpandedNodes.end()) {
5791 Lo = I->second.first;
5792 Hi = I->second.second;
5793 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005794 }
5795
Chris Lattner3e928bb2005-01-07 07:47:09 +00005796 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005797 case ISD::CopyFromReg:
5798 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005799 case ISD::FP_ROUND_INREG:
5800 if (VT == MVT::ppcf128 &&
5801 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5802 TargetLowering::Custom) {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005803 SDOperand SrcLo, SrcHi, Src;
5804 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5805 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
5806 SDOperand Result = TLI.LowerOperation(
5807 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005808 assert(Result.Val->getOpcode() == ISD::BUILD_PAIR);
5809 Lo = Result.Val->getOperand(0);
5810 Hi = Result.Val->getOperand(1);
5811 break;
5812 }
5813 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00005814 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005815#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005816 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005817#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00005818 assert(0 && "Do not know how to expand this operator!");
5819 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00005820 case ISD::EXTRACT_ELEMENT:
5821 ExpandOp(Node->getOperand(0), Lo, Hi);
5822 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
5823 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00005824 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00005825 case ISD::EXTRACT_VECTOR_ELT:
5826 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5827 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5828 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5829 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005830 case ISD::UNDEF:
5831 Lo = DAG.getNode(ISD::UNDEF, NVT);
5832 Hi = DAG.getNode(ISD::UNDEF, NVT);
5833 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005834 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005835 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00005836 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5837 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5838 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005839 break;
5840 }
Evan Cheng00495212006-12-12 21:32:44 +00005841 case ISD::ConstantFP: {
5842 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00005843 if (CFP->getValueType(0) == MVT::ppcf128) {
5844 APInt api = CFP->getValueAPF().convertToAPInt();
5845 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5846 MVT::f64);
5847 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5848 MVT::f64);
5849 break;
5850 }
Evan Cheng279101e2006-12-12 22:19:28 +00005851 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005852 if (getTypeAction(Lo.getValueType()) == Expand)
5853 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005854 break;
5855 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005856 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005857 // Return the operands.
5858 Lo = Node->getOperand(0);
5859 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005860 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005861
5862 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00005863 if (Node->getNumValues() == 1) {
5864 ExpandOp(Op.getOperand(0), Lo, Hi);
5865 break;
5866 }
Chris Lattner27a6c732007-11-24 07:07:01 +00005867 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
5868 assert(Op.ResNo == 0 && Node->getNumValues() == 2 &&
5869 Op.getValue(1).getValueType() == MVT::Other &&
5870 "unhandled MERGE_VALUES");
5871 ExpandOp(Op.getOperand(0), Lo, Hi);
5872 // Remember that we legalized the chain.
5873 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5874 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005875
5876 case ISD::SIGN_EXTEND_INREG:
5877 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005878 // sext_inreg the low part if needed.
5879 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5880
5881 // The high part gets the sign extension from the lo-part. This handles
5882 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005883 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005884 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00005885 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005886 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005887
Nate Begemand88fc032006-01-14 03:14:10 +00005888 case ISD::BSWAP: {
5889 ExpandOp(Node->getOperand(0), Lo, Hi);
5890 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
5891 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5892 Lo = TempLo;
5893 break;
5894 }
5895
Chris Lattneredb1add2005-05-11 04:51:16 +00005896 case ISD::CTPOP:
5897 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005898 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5899 DAG.getNode(ISD::CTPOP, NVT, Lo),
5900 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005901 Hi = DAG.getConstant(0, NVT);
5902 break;
5903
Chris Lattner39a8f332005-05-12 19:05:01 +00005904 case ISD::CTLZ: {
5905 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005906 ExpandOp(Node->getOperand(0), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005907 SDOperand BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Chris Lattner39a8f332005-05-12 19:05:01 +00005908 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Scott Michel5b8f82e2008-03-10 15:42:14 +00005909 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005910 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005911 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
5912 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5913
5914 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5915 Hi = DAG.getConstant(0, NVT);
5916 break;
5917 }
5918
5919 case ISD::CTTZ: {
5920 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005921 ExpandOp(Node->getOperand(0), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005922 SDOperand BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Chris Lattner39a8f332005-05-12 19:05:01 +00005923 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Scott Michel5b8f82e2008-03-10 15:42:14 +00005924 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005925 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005926 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
5927 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5928
5929 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5930 Hi = DAG.getConstant(0, NVT);
5931 break;
5932 }
Chris Lattneredb1add2005-05-11 04:51:16 +00005933
Nate Begemanacc398c2006-01-25 18:21:52 +00005934 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005935 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5936 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00005937 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5938 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5939
5940 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005941 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00005942 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00005943 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00005944 std::swap(Lo, Hi);
5945 break;
5946 }
5947
Chris Lattner3e928bb2005-01-07 07:47:09 +00005948 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00005949 LoadSDNode *LD = cast<LoadSDNode>(Node);
5950 SDOperand Ch = LD->getChain(); // Legalize the chain.
5951 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
5952 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005953 int SVOffset = LD->getSrcValueOffset();
5954 unsigned Alignment = LD->getAlignment();
5955 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005956
Evan Cheng466685d2006-10-09 20:57:25 +00005957 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005958 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5959 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00005960 if (VT == MVT::f32 || VT == MVT::f64) {
5961 // f32->i32 or f64->i64 one to one expansion.
5962 // Remember that we legalized the chain.
5963 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00005964 // Recursively expand the new load.
5965 if (getTypeAction(NVT) == Expand)
5966 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005967 break;
5968 }
Chris Lattnerec39a452005-01-19 18:02:17 +00005969
Evan Cheng466685d2006-10-09 20:57:25 +00005970 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005971 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Evan Cheng466685d2006-10-09 20:57:25 +00005972 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00005973 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00005974 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00005975 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005976 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5977 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00005978
Evan Cheng466685d2006-10-09 20:57:25 +00005979 // Build a factor node to remember that this load is independent of the
5980 // other one.
5981 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5982 Hi.getValue(1));
5983
5984 // Remember that we legalized the chain.
5985 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00005986 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00005987 std::swap(Lo, Hi);
5988 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005989 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00005990
Dale Johannesenb6210fc2007-10-19 20:29:00 +00005991 if ((VT == MVT::f64 && EVT == MVT::f32) ||
5992 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00005993 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
5994 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005995 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00005996 // Remember that we legalized the chain.
5997 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
5998 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
5999 break;
6000 }
Evan Cheng466685d2006-10-09 20:57:25 +00006001
6002 if (EVT == NVT)
6003 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006004 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006005 else
6006 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006007 SVOffset, EVT, isVolatile,
6008 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006009
6010 // Remember that we legalized the chain.
6011 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
6012
6013 if (ExtType == ISD::SEXTLOAD) {
6014 // The high part is obtained by SRA'ing all but one of the bits of the
6015 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006016 unsigned LoSize = Lo.getValueType().getSizeInBits();
Evan Cheng466685d2006-10-09 20:57:25 +00006017 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6018 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6019 } else if (ExtType == ISD::ZEXTLOAD) {
6020 // The high part is just a zero.
6021 Hi = DAG.getConstant(0, NVT);
6022 } else /* if (ExtType == ISD::EXTLOAD) */ {
6023 // The high part is undefined.
6024 Hi = DAG.getNode(ISD::UNDEF, NVT);
6025 }
6026 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006027 break;
6028 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006029 case ISD::AND:
6030 case ISD::OR:
6031 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
6032 SDOperand LL, LH, RL, RH;
6033 ExpandOp(Node->getOperand(0), LL, LH);
6034 ExpandOp(Node->getOperand(1), RL, RH);
6035 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
6036 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
6037 break;
6038 }
6039 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00006040 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006041 ExpandOp(Node->getOperand(1), LL, LH);
6042 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006043 if (getTypeAction(NVT) == Expand)
6044 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00006045 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006046 if (VT != MVT::f32)
6047 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006048 break;
6049 }
Nate Begeman9373a812005-08-10 20:51:12 +00006050 case ISD::SELECT_CC: {
6051 SDOperand TL, TH, FL, FH;
6052 ExpandOp(Node->getOperand(2), TL, TH);
6053 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006054 if (getTypeAction(NVT) == Expand)
6055 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00006056 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6057 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006058 if (VT != MVT::f32)
6059 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6060 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006061 break;
6062 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006063 case ISD::ANY_EXTEND:
6064 // The low part is any extension of the input (which degenerates to a copy).
6065 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
6066 // The high part is undefined.
6067 Hi = DAG.getNode(ISD::UNDEF, NVT);
6068 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006069 case ISD::SIGN_EXTEND: {
6070 // The low part is just a sign extension of the input (which degenerates to
6071 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006072 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006073
Chris Lattner3e928bb2005-01-07 07:47:09 +00006074 // The high part is obtained by SRA'ing all but one of the bits of the lo
6075 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006076 unsigned LoSize = Lo.getValueType().getSizeInBits();
Chris Lattner8137c9e2006-01-28 05:07:51 +00006077 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6078 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006079 break;
6080 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006081 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006082 // The low part is just a zero extension of the input (which degenerates to
6083 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006084 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006085
Chris Lattner3e928bb2005-01-07 07:47:09 +00006086 // The high part is just a zero.
6087 Hi = DAG.getConstant(0, NVT);
6088 break;
Chris Lattner35481892005-12-23 00:16:34 +00006089
Chris Lattner4c948eb2007-02-13 23:55:16 +00006090 case ISD::TRUNCATE: {
6091 // The input value must be larger than this value. Expand *it*.
6092 SDOperand NewLo;
6093 ExpandOp(Node->getOperand(0), NewLo, Hi);
6094
6095 // The low part is now either the right size, or it is closer. If not the
6096 // right size, make an illegal truncate so we recursively expand it.
6097 if (NewLo.getValueType() != Node->getValueType(0))
6098 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6099 ExpandOp(NewLo, Lo, Hi);
6100 break;
6101 }
6102
Chris Lattner35481892005-12-23 00:16:34 +00006103 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006104 SDOperand Tmp;
6105 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6106 // If the target wants to, allow it to lower this itself.
6107 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6108 case Expand: assert(0 && "cannot expand FP!");
6109 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6110 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6111 }
6112 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6113 }
6114
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006115 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006116 if (VT == MVT::f32 || VT == MVT::f64) {
6117 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006118 if (getTypeAction(NVT) == Expand)
6119 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006120 break;
6121 }
6122
6123 // If source operand will be expanded to the same type as VT, i.e.
6124 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006125 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006126 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6127 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006128 break;
6129 }
6130
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006131 // Turn this into a load/store pair by default.
6132 if (Tmp.Val == 0)
Chris Lattner1401d152008-01-16 07:45:30 +00006133 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006134
Chris Lattner35481892005-12-23 00:16:34 +00006135 ExpandOp(Tmp, Lo, Hi);
6136 break;
6137 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006138
Chris Lattner27a6c732007-11-24 07:07:01 +00006139 case ISD::READCYCLECOUNTER: {
Chris Lattner308575b2005-11-20 22:56:56 +00006140 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6141 TargetLowering::Custom &&
6142 "Must custom expand ReadCycleCounter");
Chris Lattner27a6c732007-11-24 07:07:01 +00006143 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6144 assert(Tmp.Val && "Node must be custom expanded!");
6145 ExpandOp(Tmp.getValue(0), Lo, Hi);
Chris Lattner308575b2005-11-20 22:56:56 +00006146 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006147 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006148 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006149 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006150
Mon P Wang28873102008-06-25 08:15:39 +00006151 case ISD::ATOMIC_CMP_SWAP: {
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006152 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6153 assert(Tmp.Val && "Node must be custom expanded!");
6154 ExpandOp(Tmp.getValue(0), Lo, Hi);
6155 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
6156 LegalizeOp(Tmp.getValue(1)));
6157 break;
6158 }
6159
6160
6161
Chris Lattner4e6c7462005-01-08 19:27:05 +00006162 // These operators cannot be expanded directly, emit them as calls to
6163 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006164 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006165 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00006166 SDOperand Op;
6167 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6168 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006169 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6170 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006171 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006172
Chris Lattnerf20d1832005-07-30 01:40:57 +00006173 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6174
Chris Lattner80a3e942005-07-29 00:33:32 +00006175 // Now that the custom expander is done, expand the result, which is still
6176 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00006177 if (Op.Val) {
6178 ExpandOp(Op, Lo, Hi);
6179 break;
6180 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006181 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006182
Dale Johannesen161e8972007-10-05 20:04:43 +00006183 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmana2e94852008-03-10 23:03:31 +00006184 if (VT == MVT::i64) {
6185 if (Node->getOperand(0).getValueType() == MVT::f32)
6186 LC = RTLIB::FPTOSINT_F32_I64;
6187 else if (Node->getOperand(0).getValueType() == MVT::f64)
6188 LC = RTLIB::FPTOSINT_F64_I64;
6189 else if (Node->getOperand(0).getValueType() == MVT::f80)
6190 LC = RTLIB::FPTOSINT_F80_I64;
6191 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6192 LC = RTLIB::FPTOSINT_PPCF128_I64;
Duncan Sands460a14e2008-04-12 17:14:18 +00006193 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006194 } else if (VT == MVT::i128) {
6195 if (Node->getOperand(0).getValueType() == MVT::f32)
6196 LC = RTLIB::FPTOSINT_F32_I128;
6197 else if (Node->getOperand(0).getValueType() == MVT::f64)
6198 LC = RTLIB::FPTOSINT_F64_I128;
6199 else if (Node->getOperand(0).getValueType() == MVT::f80)
6200 LC = RTLIB::FPTOSINT_F80_I128;
6201 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6202 LC = RTLIB::FPTOSINT_PPCF128_I128;
Duncan Sands460a14e2008-04-12 17:14:18 +00006203 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006204 } else {
6205 assert(0 && "Unexpected uint-to-fp conversion!");
6206 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006207 break;
Evan Cheng56966222007-01-12 02:11:51 +00006208 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006209
Evan Cheng56966222007-01-12 02:11:51 +00006210 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006211 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006212 SDOperand Op;
6213 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6214 case Expand: assert(0 && "cannot expand FP!");
6215 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6216 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6217 }
6218
6219 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6220
6221 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00006222 if (Op.Val) {
6223 ExpandOp(Op, Lo, Hi);
6224 break;
6225 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006226 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006227
Evan Chengdaccea182007-10-05 01:09:32 +00006228 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmana2e94852008-03-10 23:03:31 +00006229 if (VT == MVT::i64) {
6230 if (Node->getOperand(0).getValueType() == MVT::f32)
6231 LC = RTLIB::FPTOUINT_F32_I64;
6232 else if (Node->getOperand(0).getValueType() == MVT::f64)
6233 LC = RTLIB::FPTOUINT_F64_I64;
6234 else if (Node->getOperand(0).getValueType() == MVT::f80)
6235 LC = RTLIB::FPTOUINT_F80_I64;
6236 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6237 LC = RTLIB::FPTOUINT_PPCF128_I64;
Duncan Sands460a14e2008-04-12 17:14:18 +00006238 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006239 } else if (VT == MVT::i128) {
6240 if (Node->getOperand(0).getValueType() == MVT::f32)
6241 LC = RTLIB::FPTOUINT_F32_I128;
6242 else if (Node->getOperand(0).getValueType() == MVT::f64)
6243 LC = RTLIB::FPTOUINT_F64_I128;
6244 else if (Node->getOperand(0).getValueType() == MVT::f80)
6245 LC = RTLIB::FPTOUINT_F80_I128;
6246 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6247 LC = RTLIB::FPTOUINT_PPCF128_I128;
Duncan Sands460a14e2008-04-12 17:14:18 +00006248 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006249 } else {
6250 assert(0 && "Unexpected uint-to-fp conversion!");
6251 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006252 break;
Evan Cheng56966222007-01-12 02:11:51 +00006253 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006254
Evan Cheng05a2d562006-01-09 18:31:59 +00006255 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006256 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006257 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006258 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006259 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006260 Op = TLI.LowerOperation(Op, DAG);
6261 if (Op.Val) {
6262 // Now that the custom expander is done, expand the result, which is
6263 // still VT.
6264 ExpandOp(Op, Lo, Hi);
6265 break;
6266 }
6267 }
6268
Chris Lattner79980b02006-09-13 03:50:39 +00006269 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6270 // this X << 1 as X+X.
6271 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman002e5d02008-03-13 22:13:53 +00006272 if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
Chris Lattner79980b02006-09-13 03:50:39 +00006273 TLI.isOperationLegal(ISD::ADDE, NVT)) {
6274 SDOperand LoOps[2], HiOps[3];
6275 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6276 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6277 LoOps[1] = LoOps[0];
6278 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6279
6280 HiOps[1] = HiOps[0];
6281 HiOps[2] = Lo.getValue(1);
6282 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6283 break;
6284 }
6285 }
6286
Chris Lattnere34b3962005-01-19 04:19:40 +00006287 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006288 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006289 break;
Chris Lattner47599822005-04-02 03:38:53 +00006290
6291 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006292 TargetLowering::LegalizeAction Action =
6293 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6294 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6295 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006296 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006297 break;
6298 }
6299
Chris Lattnere34b3962005-01-19 04:19:40 +00006300 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006301 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006302 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006303 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006304
Evan Cheng05a2d562006-01-09 18:31:59 +00006305 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006306 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006307 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006308 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006309 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006310 Op = TLI.LowerOperation(Op, DAG);
6311 if (Op.Val) {
6312 // Now that the custom expander is done, expand the result, which is
6313 // still VT.
6314 ExpandOp(Op, Lo, Hi);
6315 break;
6316 }
6317 }
6318
Chris Lattnere34b3962005-01-19 04:19:40 +00006319 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006320 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006321 break;
Chris Lattner47599822005-04-02 03:38:53 +00006322
6323 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006324 TargetLowering::LegalizeAction Action =
6325 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6326 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6327 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006328 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006329 break;
6330 }
6331
Chris Lattnere34b3962005-01-19 04:19:40 +00006332 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006333 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006334 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006335 }
6336
6337 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006338 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006339 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006340 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006341 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006342 Op = TLI.LowerOperation(Op, DAG);
6343 if (Op.Val) {
6344 // Now that the custom expander is done, expand the result, which is
6345 // still VT.
6346 ExpandOp(Op, Lo, Hi);
6347 break;
6348 }
6349 }
6350
Chris Lattnere34b3962005-01-19 04:19:40 +00006351 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006352 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006353 break;
Chris Lattner47599822005-04-02 03:38:53 +00006354
6355 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006356 TargetLowering::LegalizeAction Action =
6357 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6358 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6359 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006360 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006361 break;
6362 }
6363
Chris Lattnere34b3962005-01-19 04:19:40 +00006364 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006365 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006366 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006367 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006368
Misha Brukmanedf128a2005-04-21 22:36:52 +00006369 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006370 case ISD::SUB: {
6371 // If the target wants to custom expand this, let them.
6372 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6373 TargetLowering::Custom) {
Duncan Sands69bfb152008-06-22 09:42:16 +00006374 SDOperand Result = TLI.LowerOperation(Op, DAG);
6375 if (Result.Val) {
6376 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006377 break;
6378 }
6379 }
6380
6381 // Expand the subcomponents.
6382 SDOperand LHSL, LHSH, RHSL, RHSH;
6383 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6384 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00006385 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6386 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006387 LoOps[0] = LHSL;
6388 LoOps[1] = RHSL;
6389 HiOps[0] = LHSH;
6390 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006391 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00006392 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006393 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006394 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006395 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00006396 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006397 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006398 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006399 }
Chris Lattner84f67882005-01-20 18:52:28 +00006400 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006401 }
Chris Lattnerb429f732007-05-17 18:15:41 +00006402
6403 case ISD::ADDC:
6404 case ISD::SUBC: {
6405 // Expand the subcomponents.
6406 SDOperand LHSL, LHSH, RHSL, RHSH;
6407 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6408 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6409 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6410 SDOperand LoOps[2] = { LHSL, RHSL };
6411 SDOperand HiOps[3] = { LHSH, RHSH };
6412
6413 if (Node->getOpcode() == ISD::ADDC) {
6414 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6415 HiOps[2] = Lo.getValue(1);
6416 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6417 } else {
6418 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6419 HiOps[2] = Lo.getValue(1);
6420 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6421 }
6422 // Remember that we legalized the flag.
6423 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6424 break;
6425 }
6426 case ISD::ADDE:
6427 case ISD::SUBE: {
6428 // Expand the subcomponents.
6429 SDOperand LHSL, LHSH, RHSL, RHSH;
6430 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6431 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6432 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6433 SDOperand LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6434 SDOperand HiOps[3] = { LHSH, RHSH };
6435
6436 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6437 HiOps[2] = Lo.getValue(1);
6438 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6439
6440 // Remember that we legalized the flag.
6441 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6442 break;
6443 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006444 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006445 // If the target wants to custom expand this, let them.
6446 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00006447 SDOperand New = TLI.LowerOperation(Op, DAG);
6448 if (New.Val) {
6449 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006450 break;
6451 }
6452 }
6453
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006454 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6455 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00006456 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6457 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6458 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Nate Begemanc7c16572005-04-11 03:01:51 +00006459 SDOperand LL, LH, RL, RH;
6460 ExpandOp(Node->getOperand(0), LL, LH);
6461 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006462 unsigned OuterBitSize = Op.getValueSizeInBits();
6463 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00006464 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6465 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00006466 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6467 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6468 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00006469 // The inputs are both zero-extended.
6470 if (HasUMUL_LOHI) {
6471 // We can emit a umul_lohi.
6472 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6473 Hi = SDOperand(Lo.Val, 1);
6474 break;
6475 }
6476 if (HasMULHU) {
6477 // We can emit a mulhu+mul.
6478 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6479 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6480 break;
6481 }
Dan Gohman525178c2007-10-08 18:33:35 +00006482 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006483 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00006484 // The input values are both sign-extended.
6485 if (HasSMUL_LOHI) {
6486 // We can emit a smul_lohi.
6487 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6488 Hi = SDOperand(Lo.Val, 1);
6489 break;
6490 }
6491 if (HasMULHS) {
6492 // We can emit a mulhs+mul.
6493 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6494 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6495 break;
6496 }
6497 }
6498 if (HasUMUL_LOHI) {
6499 // Lo,Hi = umul LHS, RHS.
6500 SDOperand UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
6501 DAG.getVTList(NVT, NVT), LL, RL);
6502 Lo = UMulLOHI;
6503 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00006504 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6505 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6506 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6507 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00006508 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00006509 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00006510 if (HasMULHU) {
6511 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6512 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6513 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6514 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6515 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6516 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6517 break;
6518 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006519 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006520
Dan Gohman525178c2007-10-08 18:33:35 +00006521 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006522 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00006523 break;
6524 }
Evan Cheng56966222007-01-12 02:11:51 +00006525 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006526 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006527 break;
6528 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006529 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006530 break;
6531 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006532 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006533 break;
6534 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006535 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006536 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00006537
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006538 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00006539 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6540 RTLIB::ADD_F64,
6541 RTLIB::ADD_F80,
6542 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006543 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006544 break;
6545 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00006546 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6547 RTLIB::SUB_F64,
6548 RTLIB::SUB_F80,
6549 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006550 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006551 break;
6552 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00006553 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6554 RTLIB::MUL_F64,
6555 RTLIB::MUL_F80,
6556 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006557 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006558 break;
6559 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006560 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6561 RTLIB::DIV_F64,
6562 RTLIB::DIV_F80,
6563 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006564 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006565 break;
6566 case ISD::FP_EXTEND:
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006567 if (VT == MVT::ppcf128) {
6568 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6569 Node->getOperand(0).getValueType()==MVT::f64);
6570 const uint64_t zero = 0;
6571 if (Node->getOperand(0).getValueType()==MVT::f32)
6572 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6573 else
6574 Hi = Node->getOperand(0);
6575 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6576 break;
6577 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006578 Lo = ExpandLibCall(RTLIB::FPEXT_F32_F64, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006579 break;
6580 case ISD::FP_ROUND:
Duncan Sands460a14e2008-04-12 17:14:18 +00006581 Lo = ExpandLibCall(RTLIB::FPROUND_F64_F32, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006582 break;
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006583 case ISD::FPOWI:
Duncan Sands460a14e2008-04-12 17:14:18 +00006584 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::POWI_F32,
6585 RTLIB::POWI_F64,
6586 RTLIB::POWI_F80,
6587 RTLIB::POWI_PPCF128),
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006588 Node, false, Hi);
6589 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006590 case ISD::FSQRT:
6591 case ISD::FSIN:
6592 case ISD::FCOS: {
Evan Cheng56966222007-01-12 02:11:51 +00006593 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006594 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00006595 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00006596 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6597 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006598 break;
6599 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00006600 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6601 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006602 break;
6603 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00006604 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6605 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006606 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006607 default: assert(0 && "Unreachable!");
6608 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006609 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00006610 break;
6611 }
Evan Cheng966bf242006-12-16 00:52:40 +00006612 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006613 if (VT == MVT::ppcf128) {
6614 SDOperand Tmp;
6615 ExpandOp(Node->getOperand(0), Lo, Tmp);
6616 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6617 // lo = hi==fabs(hi) ? lo : -lo;
6618 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6619 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6620 DAG.getCondCode(ISD::SETEQ));
6621 break;
6622 }
Evan Cheng966bf242006-12-16 00:52:40 +00006623 SDOperand Mask = (VT == MVT::f64)
6624 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6625 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6626 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6627 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6628 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6629 if (getTypeAction(NVT) == Expand)
6630 ExpandOp(Lo, Lo, Hi);
6631 break;
6632 }
6633 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006634 if (VT == MVT::ppcf128) {
6635 ExpandOp(Node->getOperand(0), Lo, Hi);
6636 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6637 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6638 break;
6639 }
Evan Cheng966bf242006-12-16 00:52:40 +00006640 SDOperand Mask = (VT == MVT::f64)
6641 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6642 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6643 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6644 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6645 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6646 if (getTypeAction(NVT) == Expand)
6647 ExpandOp(Lo, Lo, Hi);
6648 break;
6649 }
Evan Cheng912095b2007-01-04 21:56:39 +00006650 case ISD::FCOPYSIGN: {
6651 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6652 if (getTypeAction(NVT) == Expand)
6653 ExpandOp(Lo, Lo, Hi);
6654 break;
6655 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006656 case ISD::SINT_TO_FP:
6657 case ISD::UINT_TO_FP: {
6658 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006659 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00006660
6661 // Promote the operand if needed. Do this before checking for
6662 // ppcf128 so conversions of i16 and i8 work.
6663 if (getTypeAction(SrcVT) == Promote) {
6664 SDOperand Tmp = PromoteOp(Node->getOperand(0));
6665 Tmp = isSigned
6666 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6667 DAG.getValueType(SrcVT))
6668 : DAG.getZeroExtendInReg(Tmp, SrcVT);
6669 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
6670 SrcVT = Node->getOperand(0).getValueType();
6671 }
6672
Dan Gohmana2e94852008-03-10 23:03:31 +00006673 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006674 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006675 if (isSigned) {
6676 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6677 Node->getOperand(0)));
6678 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6679 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006680 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006681 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 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00006685 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006686 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6687 DAG.getConstant(0, MVT::i32),
6688 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6689 DAG.getConstantFP(
6690 APFloat(APInt(128, 2, TwoE32)),
6691 MVT::ppcf128)),
6692 Hi,
6693 DAG.getCondCode(ISD::SETLT)),
6694 Lo, Hi);
6695 }
6696 break;
6697 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00006698 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6699 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006700 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen6e63e092007-10-12 17:52:03 +00006701 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6702 Lo, Hi);
6703 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6704 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6705 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6706 DAG.getConstant(0, MVT::i64),
6707 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6708 DAG.getConstantFP(
6709 APFloat(APInt(128, 2, TwoE64)),
6710 MVT::ppcf128)),
6711 Hi,
6712 DAG.getCondCode(ISD::SETLT)),
6713 Lo, Hi);
6714 break;
6715 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006716
Dan Gohmana2e94852008-03-10 23:03:31 +00006717 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6718 Node->getOperand(0));
Evan Cheng110cf482008-04-01 01:50:16 +00006719 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00006720 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00006721 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00006722 break;
6723 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00006724 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006725
Chris Lattner83397362005-12-21 18:02:52 +00006726 // Make sure the resultant values have been legalized themselves, unless this
6727 // is a type that requires multi-step expansion.
6728 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6729 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00006730 if (Hi.Val)
6731 // Don't legalize the high part if it is expanded to a single node.
6732 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00006733 }
Evan Cheng05a2d562006-01-09 18:31:59 +00006734
6735 // Remember in a map if the values will be reused later.
Dan Gohman6b345ee2008-07-07 17:46:23 +00006736 bool isNew =
6737 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng05a2d562006-01-09 18:31:59 +00006738 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006739}
6740
Dan Gohman7f321562007-06-25 16:23:39 +00006741/// SplitVectorOp - Given an operand of vector type, break it down into
6742/// two smaller values, still of vector type.
Chris Lattnerc7029802006-03-18 01:44:44 +00006743void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
6744 SDOperand &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006745 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006746 SDNode *Node = Op.Val;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006747 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00006748 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00006749
Duncan Sands83ec4b62008-06-06 12:08:01 +00006750 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00006751
6752 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6753 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6754
Duncan Sands83ec4b62008-06-06 12:08:01 +00006755 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
6756 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006757
Chris Lattnerc7029802006-03-18 01:44:44 +00006758 // See if we already split it.
6759 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
6760 = SplitNodes.find(Op);
6761 if (I != SplitNodes.end()) {
6762 Lo = I->second.first;
6763 Hi = I->second.second;
6764 return;
6765 }
6766
6767 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006768 default:
6769#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006770 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006771#endif
6772 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00006773 case ISD::UNDEF:
6774 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6775 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6776 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006777 case ISD::BUILD_PAIR:
6778 Lo = Node->getOperand(0);
6779 Hi = Node->getOperand(1);
6780 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00006781 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00006782 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
6783 SplitVectorOp(Node->getOperand(0), Lo, Hi);
6784 unsigned Index = Idx->getValue();
6785 SDOperand ScalarOp = Node->getOperand(1);
6786 if (Index < NewNumElts_Lo)
6787 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
6788 DAG.getIntPtrConstant(Index));
6789 else
6790 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6791 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
6792 break;
6793 }
6794 SDOperand Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
6795 Node->getOperand(1),
6796 Node->getOperand(2));
6797 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00006798 break;
6799 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00006800 case ISD::VECTOR_SHUFFLE: {
6801 // Build the low part.
6802 SDOperand Mask = Node->getOperand(2);
6803 SmallVector<SDOperand, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006804 MVT PtrVT = TLI.getPointerTy();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006805
6806 // Insert all of the elements from the input that are needed. We use
6807 // buildvector of extractelement here because the input vectors will have
6808 // to be legalized, so this makes the code simpler.
6809 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Nate Begeman5922f562008-03-14 00:53:31 +00006810 SDOperand IdxNode = Mask.getOperand(i);
6811 if (IdxNode.getOpcode() == ISD::UNDEF) {
6812 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6813 continue;
6814 }
6815 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006816 SDOperand InVec = Node->getOperand(0);
6817 if (Idx >= NumElements) {
6818 InVec = Node->getOperand(1);
6819 Idx -= NumElements;
6820 }
6821 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6822 DAG.getConstant(Idx, PtrVT)));
6823 }
6824 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6825 Ops.clear();
6826
6827 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Nate Begeman5922f562008-03-14 00:53:31 +00006828 SDOperand IdxNode = Mask.getOperand(i);
6829 if (IdxNode.getOpcode() == ISD::UNDEF) {
6830 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6831 continue;
6832 }
6833 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006834 SDOperand InVec = Node->getOperand(0);
6835 if (Idx >= NumElements) {
6836 InVec = Node->getOperand(1);
6837 Idx -= NumElements;
6838 }
6839 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6840 DAG.getConstant(Idx, PtrVT)));
6841 }
6842 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6843 break;
6844 }
Dan Gohman7f321562007-06-25 16:23:39 +00006845 case ISD::BUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006846 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00006847 Node->op_begin()+NewNumElts_Lo);
6848 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006849
Nate Begeman5db1afb2007-11-15 21:15:26 +00006850 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00006851 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006852 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006853 break;
6854 }
Dan Gohman7f321562007-06-25 16:23:39 +00006855 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00006856 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00006857 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6858 if (NewNumSubvectors == 1) {
6859 Lo = Node->getOperand(0);
6860 Hi = Node->getOperand(1);
6861 } else {
6862 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
6863 Node->op_begin()+NewNumSubvectors);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006864 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00006865
Dan Gohman7f321562007-06-25 16:23:39 +00006866 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumSubvectors,
6867 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006868 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00006869 }
Dan Gohman65956352007-06-13 15:12:02 +00006870 break;
6871 }
Dan Gohmanc6230962007-10-17 14:48:28 +00006872 case ISD::SELECT: {
6873 SDOperand Cond = Node->getOperand(0);
6874
6875 SDOperand LL, LH, RL, RH;
6876 SplitVectorOp(Node->getOperand(1), LL, LH);
6877 SplitVectorOp(Node->getOperand(2), RL, RH);
6878
Duncan Sands83ec4b62008-06-06 12:08:01 +00006879 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00006880 // Handle a vector merge.
6881 SDOperand CL, CH;
6882 SplitVectorOp(Cond, CL, CH);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006883 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6884 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006885 } else {
6886 // Handle a simple select with vector operands.
Nate Begeman5db1afb2007-11-15 21:15:26 +00006887 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6888 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006889 }
6890 break;
6891 }
Chris Lattner80c1a562008-06-30 02:43:01 +00006892 case ISD::SELECT_CC: {
6893 SDOperand CondLHS = Node->getOperand(0);
6894 SDOperand CondRHS = Node->getOperand(1);
6895 SDOperand CondCode = Node->getOperand(4);
6896
6897 SDOperand LL, LH, RL, RH;
6898 SplitVectorOp(Node->getOperand(2), LL, LH);
6899 SplitVectorOp(Node->getOperand(3), RL, RH);
6900
6901 // Handle a simple select with vector operands.
6902 Lo = DAG.getNode(ISD::SELECT_CC, NewVT_Lo, CondLHS, CondRHS,
6903 LL, RL, CondCode);
6904 Hi = DAG.getNode(ISD::SELECT_CC, NewVT_Hi, CondLHS, CondRHS,
6905 LH, RH, CondCode);
6906 break;
6907 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00006908 case ISD::VSETCC: {
6909 SDOperand LL, LH, RL, RH;
6910 SplitVectorOp(Node->getOperand(0), LL, LH);
6911 SplitVectorOp(Node->getOperand(1), RL, RH);
6912 Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2));
6913 Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2));
6914 break;
6915 }
Dan Gohman7f321562007-06-25 16:23:39 +00006916 case ISD::ADD:
6917 case ISD::SUB:
6918 case ISD::MUL:
6919 case ISD::FADD:
6920 case ISD::FSUB:
6921 case ISD::FMUL:
6922 case ISD::SDIV:
6923 case ISD::UDIV:
6924 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00006925 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006926 case ISD::AND:
6927 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00006928 case ISD::XOR:
6929 case ISD::UREM:
6930 case ISD::SREM:
6931 case ISD::FREM: {
Chris Lattnerc7029802006-03-18 01:44:44 +00006932 SDOperand LL, LH, RL, RH;
6933 SplitVectorOp(Node->getOperand(0), LL, LH);
6934 SplitVectorOp(Node->getOperand(1), RL, RH);
6935
Nate Begeman5db1afb2007-11-15 21:15:26 +00006936 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
6937 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00006938 break;
6939 }
Dan Gohman82669522007-10-11 23:57:53 +00006940 case ISD::FPOWI: {
6941 SDOperand L, H;
6942 SplitVectorOp(Node->getOperand(0), L, H);
6943
Nate Begeman5db1afb2007-11-15 21:15:26 +00006944 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
6945 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00006946 break;
6947 }
6948 case ISD::CTTZ:
6949 case ISD::CTLZ:
6950 case ISD::CTPOP:
6951 case ISD::FNEG:
6952 case ISD::FABS:
6953 case ISD::FSQRT:
6954 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00006955 case ISD::FCOS:
6956 case ISD::FP_TO_SINT:
6957 case ISD::FP_TO_UINT:
6958 case ISD::SINT_TO_FP:
6959 case ISD::UINT_TO_FP: {
Dan Gohman82669522007-10-11 23:57:53 +00006960 SDOperand L, H;
6961 SplitVectorOp(Node->getOperand(0), L, H);
6962
Nate Begeman5db1afb2007-11-15 21:15:26 +00006963 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
6964 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00006965 break;
6966 }
Dan Gohman7f321562007-06-25 16:23:39 +00006967 case ISD::LOAD: {
6968 LoadSDNode *LD = cast<LoadSDNode>(Node);
6969 SDOperand Ch = LD->getChain();
6970 SDOperand Ptr = LD->getBasePtr();
6971 const Value *SV = LD->getSrcValue();
6972 int SVOffset = LD->getSrcValueOffset();
6973 unsigned Alignment = LD->getAlignment();
6974 bool isVolatile = LD->isVolatile();
6975
Nate Begeman5db1afb2007-11-15 21:15:26 +00006976 Lo = DAG.getLoad(NewVT_Lo, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006977 unsigned IncrementSize = NewNumElts_Lo * NewEltVT.getSizeInBits()/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00006978 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006979 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006980 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006981 Alignment = MinAlign(Alignment, IncrementSize);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006982 Hi = DAG.getLoad(NewVT_Hi, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00006983
6984 // Build a factor node to remember that this load is independent of the
6985 // other one.
6986 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
6987 Hi.getValue(1));
6988
6989 // Remember that we legalized the chain.
6990 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00006991 break;
6992 }
Dan Gohman7f321562007-06-25 16:23:39 +00006993 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00006994 // We know the result is a vector. The input may be either a vector or a
6995 // scalar value.
Dan Gohman10a7aa62007-06-29 00:09:08 +00006996 SDOperand InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006997 if (!InOp.getValueType().isVector() ||
6998 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00006999 // The input is a scalar or single-element vector.
7000 // Lower to a store/load so that it can be split.
7001 // FIXME: this could be improved probably.
Chris Lattner85dd3be2007-10-15 17:48:57 +00007002 SDOperand Ptr = DAG.CreateStackTemporary(InOp.getValueType());
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00007003 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(Ptr.Val);
Chris Lattner7692eb42006-03-23 21:16:34 +00007004
Evan Cheng786225a2006-10-05 23:01:46 +00007005 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00007006 InOp, Ptr,
Dan Gohman3069b872008-02-07 18:41:25 +00007007 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00007008 FI->getIndex());
7009 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohman3069b872008-02-07 18:41:25 +00007010 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00007011 FI->getIndex());
Chris Lattner7692eb42006-03-23 21:16:34 +00007012 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007013 // Split the vector and convert each of the pieces now.
7014 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007015 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
7016 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007017 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007018 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007019 }
7020
7021 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00007022 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007023 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007024 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007025}
7026
7027
Dan Gohman89b20c02007-06-27 14:06:22 +00007028/// ScalarizeVectorOp - Given an operand of single-element vector type
7029/// (e.g. v1f32), convert it into the equivalent operation that returns a
7030/// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +00007031SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007032 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Chris Lattnerc7029802006-03-18 01:44:44 +00007033 SDNode *Node = Op.Val;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007034 MVT NewVT = Op.getValueType().getVectorElementType();
7035 assert(Op.getValueType().getVectorNumElements() == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00007036
Dan Gohman7f321562007-06-25 16:23:39 +00007037 // See if we already scalarized it.
7038 std::map<SDOperand, SDOperand>::iterator I = ScalarizedNodes.find(Op);
7039 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00007040
7041 SDOperand Result;
7042 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00007043 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007044#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007045 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007046#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007047 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7048 case ISD::ADD:
7049 case ISD::FADD:
7050 case ISD::SUB:
7051 case ISD::FSUB:
7052 case ISD::MUL:
7053 case ISD::FMUL:
7054 case ISD::SDIV:
7055 case ISD::UDIV:
7056 case ISD::FDIV:
7057 case ISD::SREM:
7058 case ISD::UREM:
7059 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007060 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007061 case ISD::AND:
7062 case ISD::OR:
7063 case ISD::XOR:
7064 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00007065 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007066 ScalarizeVectorOp(Node->getOperand(0)),
7067 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007068 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007069 case ISD::FNEG:
7070 case ISD::FABS:
7071 case ISD::FSQRT:
7072 case ISD::FSIN:
7073 case ISD::FCOS:
7074 Result = DAG.getNode(Node->getOpcode(),
7075 NewVT,
7076 ScalarizeVectorOp(Node->getOperand(0)));
7077 break;
Dan Gohman9e04c822007-10-12 14:13:46 +00007078 case ISD::FPOWI:
7079 Result = DAG.getNode(Node->getOpcode(),
7080 NewVT,
7081 ScalarizeVectorOp(Node->getOperand(0)),
7082 Node->getOperand(1));
7083 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007084 case ISD::LOAD: {
7085 LoadSDNode *LD = cast<LoadSDNode>(Node);
7086 SDOperand Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7087 SDOperand Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00007088
Dan Gohman7f321562007-06-25 16:23:39 +00007089 const Value *SV = LD->getSrcValue();
7090 int SVOffset = LD->getSrcValueOffset();
7091 Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset,
7092 LD->isVolatile(), LD->getAlignment());
7093
Chris Lattnerc7029802006-03-18 01:44:44 +00007094 // Remember that we legalized the chain.
7095 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7096 break;
7097 }
Dan Gohman7f321562007-06-25 16:23:39 +00007098 case ISD::BUILD_VECTOR:
7099 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007100 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007101 case ISD::INSERT_VECTOR_ELT:
7102 // Returning the inserted scalar element.
7103 Result = Node->getOperand(1);
7104 break;
7105 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007106 assert(Node->getOperand(0).getValueType() == NewVT &&
7107 "Concat of non-legal vectors not yet supported!");
7108 Result = Node->getOperand(0);
7109 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007110 case ISD::VECTOR_SHUFFLE: {
7111 // Figure out if the scalar is the LHS or RHS and return it.
7112 SDOperand EltNum = Node->getOperand(2).getOperand(0);
7113 if (cast<ConstantSDNode>(EltNum)->getValue())
7114 Result = ScalarizeVectorOp(Node->getOperand(1));
7115 else
7116 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007117 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007118 }
7119 case ISD::EXTRACT_SUBVECTOR:
7120 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00007121 assert(Result.getValueType() == NewVT);
7122 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007123 case ISD::BIT_CONVERT: {
7124 SDOperand Op0 = Op.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007125 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007126 Op0 = ScalarizeVectorOp(Op0);
7127 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007128 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007129 }
Dan Gohman7f321562007-06-25 16:23:39 +00007130 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007131 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007132 ScalarizeVectorOp(Op.getOperand(1)),
7133 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007134 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007135 case ISD::SELECT_CC:
7136 Result = DAG.getNode(ISD::SELECT_CC, NewVT, Node->getOperand(0),
7137 Node->getOperand(1),
7138 ScalarizeVectorOp(Op.getOperand(2)),
7139 ScalarizeVectorOp(Op.getOperand(3)),
7140 Node->getOperand(4));
7141 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007142 case ISD::VSETCC: {
7143 SDOperand Op0 = ScalarizeVectorOp(Op.getOperand(0));
7144 SDOperand Op1 = ScalarizeVectorOp(Op.getOperand(1));
7145 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0), Op0, Op1,
7146 Op.getOperand(2));
7147 Result = DAG.getNode(ISD::SELECT, NewVT, Result,
7148 DAG.getConstant(-1ULL, NewVT),
7149 DAG.getConstant(0ULL, NewVT));
7150 break;
7151 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007152 }
7153
7154 if (TLI.isTypeLegal(NewVT))
7155 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007156 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7157 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007158 return Result;
7159}
7160
Chris Lattner3e928bb2005-01-07 07:47:09 +00007161
7162// SelectionDAG::Legalize - This is the entry point for the file.
7163//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00007164void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00007165 if (ViewLegalizeDAGs) viewGraph();
7166
Chris Lattner3e928bb2005-01-07 07:47:09 +00007167 /// run - This is the main entry point to this class.
7168 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00007169 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00007170}
7171