blob: eddce0f81768ed902a6053036b6e1d4f808ce2c3 [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) {
Evan Cheng71e86852008-07-08 20:06:39 +00001097 SDOperand Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
1098 DAG.getConstant(Col, MVT::i32),
1099 DAG.getConstant(SrcFile, MVT::i32) };
1100 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Ops, 4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001101 } else {
Evan Chenga647c922008-02-01 02:05:57 +00001102 unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
Dan Gohman44066042008-07-01 00:05:16 +00001103 Result = DAG.getLabel(ISD::DBG_LABEL, Tmp1, ID);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001104 }
Jim Laskeye81aecb2005-12-21 20:51:37 +00001105 } else {
1106 Result = Tmp1; // chain
1107 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001108 break;
Chris Lattnere7736732005-12-18 23:54:29 +00001109 }
Evan Cheng71e86852008-07-08 20:06:39 +00001110 case TargetLowering::Legal: {
1111 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1112 if (Action == Legal && Tmp1 == Node->getOperand(0))
1113 break;
1114
1115 SmallVector<SDOperand, 8> Ops;
1116 Ops.push_back(Tmp1);
1117 if (Action == 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)));
Chris Lattner36ce6912005-11-29 06:21:05 +00001124 }
Evan Cheng71e86852008-07-08 20:06:39 +00001125 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1126 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1127 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001128 break;
1129 }
Evan Cheng71e86852008-07-08 20:06:39 +00001130 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001131 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!");
Evan Cheng71e86852008-07-08 20:06:39 +00001153 case TargetLowering::Legal: {
1154 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001155 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Cheng71e86852008-07-08 20:06:39 +00001156 if (Action == Legal && Tmp1 == Node->getOperand(0))
1157 break;
1158 if (Action == Legal) {
1159 Tmp2 = Node->getOperand(1);
1160 Tmp3 = Node->getOperand(2);
1161 Tmp4 = Node->getOperand(3);
1162 } else {
1163 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1164 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1165 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1166 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001167 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001168 break;
1169 }
Evan Cheng71e86852008-07-08 20:06:39 +00001170 }
Jim Laskeyabf6d172006-01-05 01:25:28 +00001171 break;
1172
Dan Gohman44066042008-07-01 00:05:16 +00001173 case ISD::DBG_LABEL:
1174 case ISD::EH_LABEL:
1175 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1176 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001177 default: assert(0 && "This action is not supported yet!");
1178 case TargetLowering::Legal:
1179 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001180 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001181 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001182 case TargetLowering::Expand:
1183 Result = LegalizeOp(Node->getOperand(0));
1184 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001185 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001186 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001187
Evan Cheng27b7db52008-03-08 00:58:38 +00001188 case ISD::PREFETCH:
1189 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1190 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1191 default: assert(0 && "This action is not supported yet!");
1192 case TargetLowering::Legal:
1193 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1194 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1195 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1196 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1197 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1198 break;
1199 case TargetLowering::Expand:
1200 // It's a noop.
1201 Result = LegalizeOp(Node->getOperand(0));
1202 break;
1203 }
1204 break;
1205
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001206 case ISD::MEMBARRIER: {
1207 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001208 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1209 default: assert(0 && "This action is not supported yet!");
1210 case TargetLowering::Legal: {
1211 SDOperand Ops[6];
1212 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001213 for (int x = 1; x < 6; ++x) {
1214 Ops[x] = Node->getOperand(x);
1215 if (!isTypeLegal(Ops[x].getValueType()))
1216 Ops[x] = PromoteOp(Ops[x]);
1217 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001218 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1219 break;
1220 }
1221 case TargetLowering::Expand:
1222 //There is no libgcc call for this op
1223 Result = Node->getOperand(0); // Noop
1224 break;
1225 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001226 break;
1227 }
1228
Mon P Wang28873102008-06-25 08:15:39 +00001229 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001230 unsigned int num_operands = 4;
1231 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001232 SDOperand Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001233 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001234 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001235 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1236
1237 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1238 default: assert(0 && "This action is not supported yet!");
1239 case TargetLowering::Custom:
1240 Result = TLI.LowerOperation(Result, DAG);
1241 break;
1242 case TargetLowering::Legal:
1243 break;
1244 }
1245 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1246 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1247 return Result.getValue(Op.ResNo);
Duncan Sands126d9072008-07-04 11:47:58 +00001248 }
Mon P Wang28873102008-06-25 08:15:39 +00001249 case ISD::ATOMIC_LOAD_ADD:
1250 case ISD::ATOMIC_LOAD_SUB:
Mon P Wang63307c32008-05-05 19:05:59 +00001251 case ISD::ATOMIC_LOAD_AND:
1252 case ISD::ATOMIC_LOAD_OR:
1253 case ISD::ATOMIC_LOAD_XOR:
Andrew Lenharth507a58a2008-06-14 05:48:15 +00001254 case ISD::ATOMIC_LOAD_NAND:
Mon P Wang63307c32008-05-05 19:05:59 +00001255 case ISD::ATOMIC_LOAD_MIN:
1256 case ISD::ATOMIC_LOAD_MAX:
1257 case ISD::ATOMIC_LOAD_UMIN:
1258 case ISD::ATOMIC_LOAD_UMAX:
1259 case ISD::ATOMIC_SWAP: {
1260 unsigned int num_operands = 3;
1261 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
1262 SDOperand Ops[3];
1263 for (unsigned int x = 0; x < num_operands; ++x)
1264 Ops[x] = LegalizeOp(Node->getOperand(x));
1265 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001266
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001267 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001268 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001269 case TargetLowering::Custom:
1270 Result = TLI.LowerOperation(Result, DAG);
1271 break;
Mon P Wang63307c32008-05-05 19:05:59 +00001272 case TargetLowering::Expand:
Duncan Sands126d9072008-07-04 11:47:58 +00001273 Result = SDOperand(TLI.ReplaceNodeResults(Op.Val, DAG),0);
Mon P Wang63307c32008-05-05 19:05:59 +00001274 break;
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001275 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001276 break;
1277 }
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001278 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1279 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1280 return Result.getValue(Op.ResNo);
Duncan Sands126d9072008-07-04 11:47:58 +00001281 }
Scott Michelc1513d22007-08-08 23:23:31 +00001282 case ISD::Constant: {
1283 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1284 unsigned opAction =
1285 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1286
Chris Lattner3e928bb2005-01-07 07:47:09 +00001287 // We know we don't need to expand constants here, constants only have one
1288 // value and we check that it is fine above.
1289
Scott Michelc1513d22007-08-08 23:23:31 +00001290 if (opAction == TargetLowering::Custom) {
1291 Tmp1 = TLI.LowerOperation(Result, DAG);
1292 if (Tmp1.Val)
1293 Result = Tmp1;
1294 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001295 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001296 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001297 case ISD::ConstantFP: {
1298 // Spill FP immediates to the constant pool if the target cannot directly
1299 // codegen them. Targets often have some immediate values that can be
1300 // efficiently generated into an FP register without a load. We explicitly
1301 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001302 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1303
Chris Lattner3181a772006-01-29 06:26:56 +00001304 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1305 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001306 case TargetLowering::Legal:
1307 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001308 case TargetLowering::Custom:
1309 Tmp3 = TLI.LowerOperation(Result, DAG);
1310 if (Tmp3.Val) {
1311 Result = Tmp3;
1312 break;
1313 }
1314 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001315 case TargetLowering::Expand: {
1316 // Check to see if this FP immediate is already legal.
1317 bool isLegal = false;
1318 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1319 E = TLI.legal_fpimm_end(); I != E; ++I) {
1320 if (CFP->isExactlyValue(*I)) {
1321 isLegal = true;
1322 break;
1323 }
1324 }
1325 // If this is a legal constant, turn it into a TargetConstantFP node.
1326 if (isLegal)
1327 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001328 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001329 }
Nate Begemane1795842008-02-14 08:57:00 +00001330 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001331 break;
1332 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001333 case ISD::TokenFactor:
1334 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001335 Tmp1 = LegalizeOp(Node->getOperand(0));
1336 Tmp2 = LegalizeOp(Node->getOperand(1));
1337 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1338 } else if (Node->getNumOperands() == 3) {
1339 Tmp1 = LegalizeOp(Node->getOperand(0));
1340 Tmp2 = LegalizeOp(Node->getOperand(1));
1341 Tmp3 = LegalizeOp(Node->getOperand(2));
1342 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001343 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001344 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001345 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001346 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1347 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001348 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001349 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001350 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001351
1352 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001353 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001354 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001355 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1356 assert(Tmp3.Val && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001357 // A call within a calling sequence must be legalized to something
1358 // other than the normal CALLSEQ_END. Violating this gets Legalize
1359 // into an infinite loop.
1360 assert ((!IsLegalizingCall ||
1361 Node->getOpcode() != ISD::CALL ||
1362 Tmp3.Val->getOpcode() != ISD::CALLSEQ_END) &&
1363 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001364
1365 // The number of incoming and outgoing values should match; unless the final
1366 // outgoing value is a flag.
1367 assert((Tmp3.Val->getNumValues() == Result.Val->getNumValues() ||
1368 (Tmp3.Val->getNumValues() == Result.Val->getNumValues() + 1 &&
1369 Tmp3.Val->getValueType(Tmp3.Val->getNumValues() - 1) ==
1370 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001371 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001372
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001373 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001374 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +00001375 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001376 if (Tmp3.Val->getValueType(i) == MVT::Flag)
1377 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001378 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +00001379 if (Op.ResNo == i)
1380 Tmp2 = Tmp1;
1381 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
1382 }
1383 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001384 case ISD::EXTRACT_SUBREG: {
1385 Tmp1 = LegalizeOp(Node->getOperand(0));
1386 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1387 assert(idx && "Operand must be a constant");
1388 Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1389 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1390 }
1391 break;
1392 case ISD::INSERT_SUBREG: {
1393 Tmp1 = LegalizeOp(Node->getOperand(0));
1394 Tmp2 = LegalizeOp(Node->getOperand(1));
1395 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1396 assert(idx && "Operand must be a constant");
1397 Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1398 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1399 }
1400 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001401 case ISD::BUILD_VECTOR:
1402 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001403 default: assert(0 && "This action is not supported yet!");
1404 case TargetLowering::Custom:
1405 Tmp3 = TLI.LowerOperation(Result, DAG);
1406 if (Tmp3.Val) {
1407 Result = Tmp3;
1408 break;
1409 }
1410 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001411 case TargetLowering::Expand:
1412 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +00001413 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001414 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001415 break;
1416 case ISD::INSERT_VECTOR_ELT:
1417 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001418 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001419
1420 // The type of the value to insert may not be legal, even though the vector
1421 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1422 // here.
1423 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1424 default: assert(0 && "Cannot expand insert element operand");
1425 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1426 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1427 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001428 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1429
1430 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1431 Node->getValueType(0))) {
1432 default: assert(0 && "This action is not supported yet!");
1433 case TargetLowering::Legal:
1434 break;
1435 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001436 Tmp4 = TLI.LowerOperation(Result, DAG);
1437 if (Tmp4.Val) {
1438 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001439 break;
1440 }
1441 // FALLTHROUGH
1442 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001443 // If the insert index is a constant, codegen this as a scalar_to_vector,
1444 // then a shuffle that inserts it into the right position in the vector.
1445 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001446 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1447 // match the element type of the vector being created.
1448 if (Tmp2.getValueType() ==
Duncan Sands83ec4b62008-06-06 12:08:01 +00001449 Op.getValueType().getVectorElementType()) {
Nate Begeman0325d902008-02-13 06:43:04 +00001450 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
1451 Tmp1.getValueType(), Tmp2);
1452
Duncan Sands83ec4b62008-06-06 12:08:01 +00001453 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1454 MVT ShufMaskVT =
1455 MVT::getIntVectorWithNumElements(NumElts);
1456 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Nate Begeman0325d902008-02-13 06:43:04 +00001457
1458 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1459 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1460 // elt 0 of the RHS.
1461 SmallVector<SDOperand, 8> ShufOps;
1462 for (unsigned i = 0; i != NumElts; ++i) {
1463 if (i != InsertPos->getValue())
1464 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1465 else
1466 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1467 }
1468 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
1469 &ShufOps[0], ShufOps.size());
1470
1471 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1472 Tmp1, ScVec, ShufMask);
1473 Result = LegalizeOp(Result);
1474 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001475 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001476 }
Nate Begeman68679912008-04-25 18:07:40 +00001477 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001478 break;
1479 }
1480 }
1481 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001482 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001483 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1484 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1485 break;
1486 }
1487
Chris Lattnerce872152006-03-19 06:31:19 +00001488 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1489 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1490 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1491 Node->getValueType(0))) {
1492 default: assert(0 && "This action is not supported yet!");
1493 case TargetLowering::Legal:
1494 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001495 case TargetLowering::Custom:
1496 Tmp3 = TLI.LowerOperation(Result, DAG);
1497 if (Tmp3.Val) {
1498 Result = Tmp3;
1499 break;
1500 }
1501 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001502 case TargetLowering::Expand:
1503 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001504 break;
1505 }
Chris Lattnerce872152006-03-19 06:31:19 +00001506 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001507 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001508 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1509 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1510 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1511
1512 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001513 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1514 default: assert(0 && "Unknown operation action!");
1515 case TargetLowering::Legal:
1516 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1517 "vector shuffle should not be created if not legal!");
1518 break;
1519 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001520 Tmp3 = TLI.LowerOperation(Result, DAG);
1521 if (Tmp3.Val) {
1522 Result = Tmp3;
1523 break;
1524 }
1525 // FALLTHROUGH
1526 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001527 MVT VT = Node->getValueType(0);
1528 MVT EltVT = VT.getVectorElementType();
1529 MVT PtrVT = TLI.getPointerTy();
Evan Cheng18dd6d02006-04-05 06:07:11 +00001530 SDOperand Mask = Node->getOperand(2);
1531 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001532 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001533 for (unsigned i = 0; i != NumElems; ++i) {
1534 SDOperand Arg = Mask.getOperand(i);
1535 if (Arg.getOpcode() == ISD::UNDEF) {
1536 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1537 } else {
1538 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1539 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1540 if (Idx < NumElems)
1541 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1542 DAG.getConstant(Idx, PtrVT)));
1543 else
1544 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1545 DAG.getConstant(Idx - NumElems, PtrVT)));
1546 }
1547 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001548 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001549 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001550 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001551 case TargetLowering::Promote: {
1552 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001553 MVT OVT = Node->getValueType(0);
1554 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001555
1556 // Cast the two input vectors.
1557 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1558 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1559
1560 // Convert the shuffle mask to the right # elements.
1561 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1562 assert(Tmp3.Val && "Shuffle not legal?");
1563 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1564 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1565 break;
1566 }
Chris Lattner87100e02006-03-20 01:52:29 +00001567 }
1568 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001569
1570 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001571 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001572 Tmp2 = LegalizeOp(Node->getOperand(1));
1573 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001574 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001575 break;
1576
Dan Gohman7f321562007-06-25 16:23:39 +00001577 case ISD::EXTRACT_SUBVECTOR:
1578 Tmp1 = Node->getOperand(0);
1579 Tmp2 = LegalizeOp(Node->getOperand(1));
1580 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1581 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001582 break;
1583
Chris Lattner6831a812006-02-13 09:18:02 +00001584 case ISD::CALLSEQ_START: {
1585 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1586
1587 // Recursively Legalize all of the inputs of the call end that do not lead
1588 // to this call start. This ensures that any libcalls that need be inserted
1589 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001590 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001591 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001592 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1593 NodesLeadingTo);
1594 }
Chris Lattner6831a812006-02-13 09:18:02 +00001595
1596 // Now that we legalized all of the inputs (which may have inserted
1597 // libcalls) create the new CALLSEQ_START node.
1598 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1599
1600 // Merge in the last call, to ensure that this call start after the last
1601 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001602 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001603 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1604 Tmp1 = LegalizeOp(Tmp1);
1605 }
Chris Lattner6831a812006-02-13 09:18:02 +00001606
1607 // Do not try to legalize the target-specific arguments (#1+).
1608 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001609 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001610 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001611 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001612 }
1613
1614 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001615 AddLegalizedOperand(Op.getValue(0), Result);
1616 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1617 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1618
Chris Lattner6831a812006-02-13 09:18:02 +00001619 // Now that the callseq_start and all of the non-call nodes above this call
1620 // sequence have been legalized, legalize the call itself. During this
1621 // process, no libcalls can/will be inserted, guaranteeing that no calls
1622 // can overlap.
1623 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001624 // Note that we are selecting this call!
1625 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1626 IsLegalizingCall = true;
1627
1628 // Legalize the call, starting from the CALLSEQ_END.
1629 LegalizeOp(LastCALLSEQ_END);
1630 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1631 return Result;
1632 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001633 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001634 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1635 // will cause this node to be legalized as well as handling libcalls right.
1636 if (LastCALLSEQ_END.Val != Node) {
1637 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
Roman Levenstein9cac5252008-04-16 16:15:27 +00001638 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001639 assert(I != LegalizedNodes.end() &&
1640 "Legalizing the call start should have legalized this node!");
1641 return I->second;
1642 }
1643
1644 // Otherwise, the call start has been legalized and everything is going
1645 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001646 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001647 // Do not try to legalize the target-specific arguments (#1+), except for
1648 // an optional flag input.
1649 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1650 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001651 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001652 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001653 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001654 }
1655 } else {
1656 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1657 if (Tmp1 != Node->getOperand(0) ||
1658 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001659 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001660 Ops[0] = Tmp1;
1661 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001662 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001663 }
Chris Lattner6a542892006-01-24 05:48:21 +00001664 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001665 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001666 // This finishes up call legalization.
1667 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001668
1669 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1670 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1671 if (Node->getNumValues() == 2)
1672 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1673 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001674 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001675 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001676 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1677 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1678 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001679 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001680
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001681 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001682 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001683 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001684 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001685 case TargetLowering::Expand: {
1686 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1687 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1688 " not tell us which reg is the stack pointer!");
1689 SDOperand Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001690
1691 // Chain the dynamic stack allocation so that it doesn't modify the stack
1692 // pointer when other instructions are using the stack.
1693 Chain = DAG.getCALLSEQ_START(Chain,
1694 DAG.getConstant(0, TLI.getPointerTy()));
1695
Chris Lattner903d2782006-01-15 08:54:32 +00001696 SDOperand Size = Tmp2.getOperand(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001697 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, VT);
1698 Chain = SP.getValue(1);
1699 unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1700 unsigned StackAlign =
1701 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1702 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001703 SP = DAG.getNode(ISD::AND, VT, SP,
1704 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001705 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001706 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1707
1708 Tmp2 =
1709 DAG.getCALLSEQ_END(Chain,
1710 DAG.getConstant(0, TLI.getPointerTy()),
1711 DAG.getConstant(0, TLI.getPointerTy()),
1712 SDOperand());
1713
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001714 Tmp1 = LegalizeOp(Tmp1);
1715 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001716 break;
1717 }
1718 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001719 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1720 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001721 Tmp1 = LegalizeOp(Tmp3);
1722 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001723 }
Chris Lattner903d2782006-01-15 08:54:32 +00001724 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001725 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001726 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001727 }
Chris Lattner903d2782006-01-15 08:54:32 +00001728 // Since this op produce two values, make sure to remember that we
1729 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001730 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1731 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001732 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001733 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001734 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001735 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001736 bool Changed = false;
1737 // Legalize all of the operands of the inline asm, in case they are nodes
1738 // that need to be expanded or something. Note we skip the asm string and
1739 // all of the TargetConstant flags.
1740 SDOperand Op = LegalizeOp(Ops[0]);
1741 Changed = Op != Ops[0];
1742 Ops[0] = Op;
1743
1744 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1745 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1746 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1747 for (++i; NumVals; ++i, --NumVals) {
1748 SDOperand Op = LegalizeOp(Ops[i]);
1749 if (Op != Ops[i]) {
1750 Changed = true;
1751 Ops[i] = Op;
1752 }
1753 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001754 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001755
1756 if (HasInFlag) {
1757 Op = LegalizeOp(Ops.back());
1758 Changed |= Op != Ops.back();
1759 Ops.back() = Op;
1760 }
1761
1762 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001763 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001764
1765 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001766 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001767 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1768 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001769 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001770 case ISD::BR:
1771 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001772 // Ensure that libcalls are emitted before a branch.
1773 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1774 Tmp1 = LegalizeOp(Tmp1);
1775 LastCALLSEQ_END = DAG.getEntryNode();
1776
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001777 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001778 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001779 case ISD::BRIND:
1780 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1781 // Ensure that libcalls are emitted before a branch.
1782 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1783 Tmp1 = LegalizeOp(Tmp1);
1784 LastCALLSEQ_END = DAG.getEntryNode();
1785
1786 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1787 default: assert(0 && "Indirect target must be legal type (pointer)!");
1788 case Legal:
1789 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1790 break;
1791 }
1792 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1793 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001794 case ISD::BR_JT:
1795 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1796 // Ensure that libcalls are emitted before a branch.
1797 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1798 Tmp1 = LegalizeOp(Tmp1);
1799 LastCALLSEQ_END = DAG.getEntryNode();
1800
1801 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1802 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1803
1804 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1805 default: assert(0 && "This action is not supported yet!");
1806 case TargetLowering::Legal: break;
1807 case TargetLowering::Custom:
1808 Tmp1 = TLI.LowerOperation(Result, DAG);
1809 if (Tmp1.Val) Result = Tmp1;
1810 break;
1811 case TargetLowering::Expand: {
1812 SDOperand Chain = Result.getOperand(0);
1813 SDOperand Table = Result.getOperand(1);
1814 SDOperand Index = Result.getOperand(2);
1815
Duncan Sands83ec4b62008-06-06 12:08:01 +00001816 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001817 MachineFunction &MF = DAG.getMachineFunction();
1818 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001819 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1820 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001821
1822 SDOperand LD;
1823 switch (EntrySize) {
1824 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001825 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001826 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001827 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001828 PseudoSourceValue::getJumpTable(), 0); break;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001829 }
1830
Evan Chengcc415862007-11-09 01:32:10 +00001831 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001832 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001833 // For PIC, the sequence is:
1834 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00001835 // RelocBase can be JumpTable, GOT or some sort of global base.
1836 if (PTy != MVT::i32)
1837 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1838 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1839 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00001840 }
Evan Chengcc415862007-11-09 01:32:10 +00001841 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001842 }
1843 }
1844 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001845 case ISD::BRCOND:
1846 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001847 // Ensure that libcalls are emitted before a return.
1848 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1849 Tmp1 = LegalizeOp(Tmp1);
1850 LastCALLSEQ_END = DAG.getEntryNode();
1851
Chris Lattner47e92232005-01-18 19:27:06 +00001852 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1853 case Expand: assert(0 && "It's impossible to expand bools");
1854 case Legal:
1855 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1856 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001857 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00001858 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001859
1860 // The top bits of the promoted condition are not necessarily zero, ensure
1861 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001862 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001863 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001864 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerf9908172006-11-27 04:39:56 +00001865 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001866 break;
1867 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001868 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001869
1870 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001871 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001872
1873 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1874 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001875 case TargetLowering::Legal: break;
1876 case TargetLowering::Custom:
1877 Tmp1 = TLI.LowerOperation(Result, DAG);
1878 if (Tmp1.Val) Result = Tmp1;
1879 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001880 case TargetLowering::Expand:
1881 // Expand brcond's setcc into its constituent parts and create a BR_CC
1882 // Node.
1883 if (Tmp2.getOpcode() == ISD::SETCC) {
1884 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1885 Tmp2.getOperand(0), Tmp2.getOperand(1),
1886 Node->getOperand(2));
1887 } else {
1888 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1889 DAG.getCondCode(ISD::SETNE), Tmp2,
1890 DAG.getConstant(0, Tmp2.getValueType()),
1891 Node->getOperand(2));
1892 }
1893 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001894 }
1895 break;
1896 case ISD::BR_CC:
1897 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001898 // Ensure that libcalls are emitted before a branch.
1899 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1900 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001901 Tmp2 = Node->getOperand(2); // LHS
1902 Tmp3 = Node->getOperand(3); // RHS
1903 Tmp4 = Node->getOperand(1); // CC
1904
1905 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001906 LastCALLSEQ_END = DAG.getEntryNode();
1907
Nate Begeman750ac1b2006-02-01 07:19:44 +00001908 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1909 // the LHS is a legal SETCC itself. In this case, we need to compare
1910 // the result against zero to select between true and false values.
1911 if (Tmp3.Val == 0) {
1912 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1913 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001914 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001915
1916 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1917 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001918
Chris Lattner181b7a32005-12-17 23:46:46 +00001919 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1920 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001921 case TargetLowering::Legal: break;
1922 case TargetLowering::Custom:
1923 Tmp4 = TLI.LowerOperation(Result, DAG);
1924 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001925 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001926 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001927 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001928 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001929 LoadSDNode *LD = cast<LoadSDNode>(Node);
1930 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1931 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001932
Evan Cheng466685d2006-10-09 20:57:25 +00001933 ISD::LoadExtType ExtType = LD->getExtensionType();
1934 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001935 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00001936 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1937 Tmp3 = Result.getValue(0);
1938 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001939
Evan Cheng466685d2006-10-09 20:57:25 +00001940 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1941 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001942 case TargetLowering::Legal:
1943 // If this is an unaligned load and the target doesn't support it,
1944 // expand it.
1945 if (!TLI.allowsUnalignedMemoryAccesses()) {
1946 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00001947 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001948 if (LD->getAlignment() < ABIAlignment){
1949 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1950 TLI);
1951 Tmp3 = Result.getOperand(0);
1952 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001953 Tmp3 = LegalizeOp(Tmp3);
1954 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001955 }
1956 }
1957 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001958 case TargetLowering::Custom:
1959 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1960 if (Tmp1.Val) {
1961 Tmp3 = LegalizeOp(Tmp1);
1962 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001963 }
Evan Cheng466685d2006-10-09 20:57:25 +00001964 break;
1965 case TargetLowering::Promote: {
1966 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001967 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00001968 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001969 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00001970
1971 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001972 LD->getSrcValueOffset(),
1973 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001974 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1975 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001976 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001977 }
Evan Cheng466685d2006-10-09 20:57:25 +00001978 }
1979 // Since loads produce two values, make sure to remember that we
1980 // legalized both of them.
1981 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1982 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1983 return Op.ResNo ? Tmp4 : Tmp3;
1984 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001985 MVT SrcVT = LD->getMemoryVT();
1986 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001987 int SVOffset = LD->getSrcValueOffset();
1988 unsigned Alignment = LD->getAlignment();
1989 bool isVolatile = LD->isVolatile();
1990
Duncan Sands83ec4b62008-06-06 12:08:01 +00001991 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001992 // Some targets pretend to have an i1 loading operation, and actually
1993 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1994 // bits are guaranteed to be zero; it helps the optimizers understand
1995 // that these bits are zero. It is also useful for EXTLOAD, since it
1996 // tells the optimizers that those bits are undefined. It would be
1997 // nice to have an effective generic way of getting these benefits...
1998 // Until such a way is found, don't insist on promoting i1 here.
1999 (SrcVT != MVT::i1 ||
2000 TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
2001 // Promote to a byte-sized load if not loading an integral number of
2002 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002003 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2004 MVT NVT = MVT::getIntegerVT(NewWidth);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002005 SDOperand Ch;
2006
2007 // The extra bits are guaranteed to be zero, since we stored them that
2008 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2009
2010 ISD::LoadExtType NewExtType =
2011 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2012
2013 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
2014 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2015 NVT, isVolatile, Alignment);
2016
2017 Ch = Result.getValue(1); // The chain.
2018
2019 if (ExtType == ISD::SEXTLOAD)
2020 // Having the top bits zero doesn't help when sign extending.
2021 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2022 Result, DAG.getValueType(SrcVT));
2023 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2024 // All the top bits are guaranteed to be zero - inform the optimizers.
2025 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2026 DAG.getValueType(SrcVT));
2027
2028 Tmp1 = LegalizeOp(Result);
2029 Tmp2 = LegalizeOp(Ch);
2030 } else if (SrcWidth & (SrcWidth - 1)) {
2031 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002032 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002033 "Unsupported extload!");
2034 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2035 assert(RoundWidth < SrcWidth);
2036 unsigned ExtraWidth = SrcWidth - RoundWidth;
2037 assert(ExtraWidth < RoundWidth);
2038 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2039 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002040 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2041 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002042 SDOperand Lo, Hi, Ch;
2043 unsigned IncrementSize;
2044
2045 if (TLI.isLittleEndian()) {
2046 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2047 // Load the bottom RoundWidth bits.
2048 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2049 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2050 Alignment);
2051
2052 // Load the remaining ExtraWidth bits.
2053 IncrementSize = RoundWidth / 8;
2054 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2055 DAG.getIntPtrConstant(IncrementSize));
2056 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2057 LD->getSrcValue(), SVOffset + IncrementSize,
2058 ExtraVT, isVolatile,
2059 MinAlign(Alignment, IncrementSize));
2060
2061 // Build a factor node to remember that this load is independent of the
2062 // other one.
2063 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2064 Hi.getValue(1));
2065
2066 // Move the top bits to the right place.
2067 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2068 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2069
2070 // Join the hi and lo parts.
2071 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002072 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002073 // Big endian - avoid unaligned loads.
2074 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2075 // Load the top RoundWidth bits.
2076 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2077 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2078 Alignment);
2079
2080 // Load the remaining ExtraWidth bits.
2081 IncrementSize = RoundWidth / 8;
2082 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2083 DAG.getIntPtrConstant(IncrementSize));
2084 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2085 LD->getSrcValue(), SVOffset + IncrementSize,
2086 ExtraVT, isVolatile,
2087 MinAlign(Alignment, IncrementSize));
2088
2089 // Build a factor node to remember that this load is independent of the
2090 // other one.
2091 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2092 Hi.getValue(1));
2093
2094 // Move the top bits to the right place.
2095 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2096 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2097
2098 // Join the hi and lo parts.
2099 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2100 }
2101
2102 Tmp1 = LegalizeOp(Result);
2103 Tmp2 = LegalizeOp(Ch);
2104 } else {
2105 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
2106 default: assert(0 && "This action is not supported yet!");
2107 case TargetLowering::Custom:
2108 isCustom = true;
2109 // FALLTHROUGH
2110 case TargetLowering::Legal:
2111 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2112 Tmp1 = Result.getValue(0);
2113 Tmp2 = Result.getValue(1);
2114
2115 if (isCustom) {
2116 Tmp3 = TLI.LowerOperation(Result, DAG);
2117 if (Tmp3.Val) {
2118 Tmp1 = LegalizeOp(Tmp3);
2119 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2120 }
2121 } else {
2122 // If this is an unaligned load and the target doesn't support it,
2123 // expand it.
2124 if (!TLI.allowsUnalignedMemoryAccesses()) {
2125 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002126 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002127 if (LD->getAlignment() < ABIAlignment){
2128 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
2129 TLI);
2130 Tmp1 = Result.getOperand(0);
2131 Tmp2 = Result.getOperand(1);
2132 Tmp1 = LegalizeOp(Tmp1);
2133 Tmp2 = LegalizeOp(Tmp2);
2134 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002135 }
2136 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002137 break;
2138 case TargetLowering::Expand:
2139 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2140 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
2141 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
2142 LD->getSrcValueOffset(),
2143 LD->isVolatile(), LD->getAlignment());
2144 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2145 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2146 Tmp2 = LegalizeOp(Load.getValue(1));
2147 break;
2148 }
2149 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2150 // Turn the unsupported load into an EXTLOAD followed by an explicit
2151 // zero/sign extend inreg.
2152 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2153 Tmp1, Tmp2, LD->getSrcValue(),
2154 LD->getSrcValueOffset(), SrcVT,
2155 LD->isVolatile(), LD->getAlignment());
2156 SDOperand ValRes;
2157 if (ExtType == ISD::SEXTLOAD)
2158 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2159 Result, DAG.getValueType(SrcVT));
2160 else
2161 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2162 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2163 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002164 break;
2165 }
Evan Cheng466685d2006-10-09 20:57:25 +00002166 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002167
Evan Cheng466685d2006-10-09 20:57:25 +00002168 // Since loads produce two values, make sure to remember that we legalized
2169 // both of them.
2170 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2171 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2172 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002173 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002174 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002175 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002176 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002177 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002178 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002179 case Legal:
2180 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
2181 // 1 -> Hi
2182 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002183 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002184 TLI.getShiftAmountTy()));
2185 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2186 } else {
2187 // 0 -> Lo
2188 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2189 Node->getOperand(0));
2190 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002191 break;
2192 case Expand:
2193 // Get both the low and high parts.
2194 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2195 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
2196 Result = Tmp2; // 1 -> Hi
2197 else
2198 Result = Tmp1; // 0 -> Lo
2199 break;
2200 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002201 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002202 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002203
2204 case ISD::CopyToReg:
2205 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002206
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002207 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002208 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002209 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002210 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002211 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002212 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002213 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002214 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002215 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002216 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002217 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2218 Tmp3);
2219 } else {
2220 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002221 }
2222
2223 // Since this produces two values, make sure to remember that we legalized
2224 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002225 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00002226 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002227 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002228 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002229 break;
2230
2231 case ISD::RET:
2232 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002233
2234 // Ensure that libcalls are emitted before a return.
2235 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2236 Tmp1 = LegalizeOp(Tmp1);
2237 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002238
Chris Lattner3e928bb2005-01-07 07:47:09 +00002239 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002240 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002241 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002242 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002243 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002244 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002245 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002246 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002247 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002248 if (!Tmp2.getValueType().isVector()) {
Chris Lattnerf87324e2006-04-11 01:31:51 +00002249 SDOperand Lo, Hi;
2250 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002251
2252 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002253 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002254 std::swap(Lo, Hi);
2255
Evan Cheng13acce32006-12-11 19:27:14 +00002256 if (Hi.Val)
2257 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2258 else
2259 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002260 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002261 } else {
2262 SDNode *InVal = Tmp2.Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002263 int InIx = Tmp2.ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002264 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2265 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002266
Dan Gohman7f321562007-06-25 16:23:39 +00002267 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002268 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002269 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002270 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002271 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002272 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002273 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002274 } else if (NumElems == 1) {
2275 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002276 Tmp2 = ScalarizeVectorOp(Tmp2);
2277 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002278 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002279
2280 // FIXME: Returns of gcc generic vectors smaller than a legal type
2281 // should be returned in integer registers!
2282
Chris Lattnerf87324e2006-04-11 01:31:51 +00002283 // The scalarized value type may not be legal, e.g. it might require
2284 // promotion or expansion. Relegalize the return.
2285 Result = LegalizeOp(Result);
2286 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002287 // FIXME: Returns of gcc generic vectors larger than a legal vector
2288 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00002289 SDOperand Lo, Hi;
2290 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00002291 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002292 Result = LegalizeOp(Result);
2293 }
2294 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002295 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002296 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002297 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002298 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002299 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002300 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002301 }
2302 break;
2303 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002304 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002305 break;
2306 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002307 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002308 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002309 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002310 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2311 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002312 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002313 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002314 break;
2315 case Expand: {
2316 SDOperand Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002317 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002318 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002319 ExpandOp(Node->getOperand(i), Lo, Hi);
2320 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002321 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00002322 if (Hi.Val) {
2323 NewValues.push_back(Hi);
2324 NewValues.push_back(Node->getOperand(i+1));
2325 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002326 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002327 }
2328 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002329 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002330 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002331
2332 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002333 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002334 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002335 Result = DAG.getNode(ISD::RET, MVT::Other,
2336 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002337 break;
2338 }
2339 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002340
Chris Lattner6862dbc2006-01-29 21:02:23 +00002341 if (Result.getOpcode() == ISD::RET) {
2342 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2343 default: assert(0 && "This action is not supported yet!");
2344 case TargetLowering::Legal: break;
2345 case TargetLowering::Custom:
2346 Tmp1 = TLI.LowerOperation(Result, DAG);
2347 if (Tmp1.Val) Result = Tmp1;
2348 break;
2349 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002350 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002351 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002352 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002353 StoreSDNode *ST = cast<StoreSDNode>(Node);
2354 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2355 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002356 int SVOffset = ST->getSrcValueOffset();
2357 unsigned Alignment = ST->getAlignment();
2358 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002359
Evan Cheng8b2794a2006-10-13 21:14:26 +00002360 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002361 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2362 // FIXME: We shouldn't do this for TargetConstantFP's.
2363 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2364 // to phase ordering between legalized code and the dag combiner. This
2365 // probably means that we need to integrate dag combiner and legalizer
2366 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002367 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002368 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002369 if (CFP->getValueType(0) == MVT::f32 &&
2370 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002371 Tmp3 = DAG.getConstant(CFP->getValueAPF().
2372 convertToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002373 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002374 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2375 SVOffset, isVolatile, Alignment);
2376 break;
2377 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002378 // If this target supports 64-bit registers, do a single 64-bit store.
2379 if (getTypeAction(MVT::i64) == Legal) {
2380 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002381 zextOrTrunc(64), MVT::i64);
Chris Lattner3cb93512007-10-15 05:46:06 +00002382 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2383 SVOffset, isVolatile, Alignment);
2384 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002385 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002386 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2387 // stores. If the target supports neither 32- nor 64-bits, this
2388 // xform is certainly not worth it.
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002389 const APInt &IntVal =CFP->getValueAPF().convertToAPInt();
2390 SDOperand Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2391 SDOperand Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002392 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002393
2394 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2395 SVOffset, isVolatile, Alignment);
2396 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002397 DAG.getIntPtrConstant(4));
Chris Lattner3cb93512007-10-15 05:46:06 +00002398 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002399 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002400
2401 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2402 break;
2403 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002404 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002405 }
2406
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002407 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002408 case Legal: {
2409 Tmp3 = LegalizeOp(ST->getValue());
2410 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2411 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002412
Duncan Sands83ec4b62008-06-06 12:08:01 +00002413 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002414 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2415 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002416 case TargetLowering::Legal:
2417 // If this is an unaligned store and the target doesn't support it,
2418 // expand it.
2419 if (!TLI.allowsUnalignedMemoryAccesses()) {
2420 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002421 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002422 if (ST->getAlignment() < ABIAlignment)
2423 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2424 TLI);
2425 }
2426 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002427 case TargetLowering::Custom:
2428 Tmp1 = TLI.LowerOperation(Result, DAG);
2429 if (Tmp1.Val) Result = Tmp1;
2430 break;
2431 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002432 assert(VT.isVector() && "Unknown legal promote case!");
Evan Cheng8b2794a2006-10-13 21:14:26 +00002433 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2434 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2435 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002436 ST->getSrcValue(), SVOffset, isVolatile,
2437 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002438 break;
2439 }
2440 break;
2441 }
2442 case Promote:
2443 // Truncate the value and store the result.
2444 Tmp3 = PromoteOp(ST->getValue());
2445 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002446 SVOffset, ST->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002447 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002448 break;
2449
2450 case Expand:
2451 unsigned IncrementSize = 0;
2452 SDOperand Lo, Hi;
2453
2454 // If this is a vector type, then we have to calculate the increment as
2455 // the product of the element size in bytes, and the number of elements
2456 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002457 if (ST->getValue().getValueType().isVector()) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002458 SDNode *InVal = ST->getValue().Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002459 int InIx = ST->getValue().ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002460 MVT InVT = InVal->getValueType(InIx);
2461 unsigned NumElems = InVT.getVectorNumElements();
2462 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002463
Dan Gohman7f321562007-06-25 16:23:39 +00002464 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002465 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002466 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002467 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002468 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002469 Tmp3 = LegalizeOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002470 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002471 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002472 Result = LegalizeOp(Result);
2473 break;
2474 } else if (NumElems == 1) {
2475 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002476 Tmp3 = ScalarizeVectorOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002477 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002478 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002479 // The scalarized value type may not be legal, e.g. it might require
2480 // promotion or expansion. Relegalize the scalar store.
2481 Result = LegalizeOp(Result);
2482 break;
2483 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002484 SplitVectorOp(ST->getValue(), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002485 IncrementSize = Lo.Val->getValueType(0).getVectorNumElements() *
2486 EVT.getSizeInBits()/8;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002487 }
2488 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002489 ExpandOp(ST->getValue(), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002490 IncrementSize = Hi.Val ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002491
Duncan Sands0753fc12008-02-11 10:37:04 +00002492 if (TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002493 std::swap(Lo, Hi);
2494 }
2495
2496 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002497 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002498
2499 if (Hi.Val == NULL) {
2500 // Must be int <-> float one-to-one expansion.
2501 Result = Lo;
2502 break;
2503 }
2504
Evan Cheng8b2794a2006-10-13 21:14:26 +00002505 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002506 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002507 assert(isTypeLegal(Tmp2.getValueType()) &&
2508 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002509 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002510 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002511 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002512 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002513 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2514 break;
2515 }
2516 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002517 switch (getTypeAction(ST->getValue().getValueType())) {
2518 case Legal:
2519 Tmp3 = LegalizeOp(ST->getValue());
2520 break;
2521 case Promote:
2522 // We can promote the value, the truncstore will still take care of it.
2523 Tmp3 = PromoteOp(ST->getValue());
2524 break;
2525 case Expand:
2526 // Just store the low part. This may become a non-trunc store, so make
2527 // sure to use getTruncStore, not UpdateNodeOperands below.
2528 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2529 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2530 SVOffset, MVT::i8, isVolatile, Alignment);
2531 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002532
Duncan Sands83ec4b62008-06-06 12:08:01 +00002533 MVT StVT = ST->getMemoryVT();
2534 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002535
Duncan Sands83ec4b62008-06-06 12:08:01 +00002536 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002537 // Promote to a byte-sized store with upper bits zero if not
2538 // storing an integral number of bytes. For example, promote
2539 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002540 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Duncan Sands7e857202008-01-22 07:17:34 +00002541 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2542 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2543 SVOffset, NVT, isVolatile, Alignment);
2544 } else if (StWidth & (StWidth - 1)) {
2545 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002546 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002547 "Unsupported truncstore!");
2548 unsigned RoundWidth = 1 << Log2_32(StWidth);
2549 assert(RoundWidth < StWidth);
2550 unsigned ExtraWidth = StWidth - RoundWidth;
2551 assert(ExtraWidth < RoundWidth);
2552 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2553 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002554 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2555 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Duncan Sands7e857202008-01-22 07:17:34 +00002556 SDOperand Lo, Hi;
2557 unsigned IncrementSize;
2558
2559 if (TLI.isLittleEndian()) {
2560 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2561 // Store the bottom RoundWidth bits.
2562 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2563 SVOffset, RoundVT,
2564 isVolatile, Alignment);
2565
2566 // Store the remaining ExtraWidth bits.
2567 IncrementSize = RoundWidth / 8;
2568 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2569 DAG.getIntPtrConstant(IncrementSize));
2570 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2571 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2572 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2573 SVOffset + IncrementSize, ExtraVT, isVolatile,
2574 MinAlign(Alignment, IncrementSize));
2575 } else {
2576 // Big endian - avoid unaligned stores.
2577 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2578 // Store the top RoundWidth bits.
2579 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2580 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2581 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2582 RoundVT, isVolatile, Alignment);
2583
2584 // Store the remaining ExtraWidth bits.
2585 IncrementSize = RoundWidth / 8;
2586 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2587 DAG.getIntPtrConstant(IncrementSize));
2588 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2589 SVOffset + IncrementSize, ExtraVT, isVolatile,
2590 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002591 }
Duncan Sands7e857202008-01-22 07:17:34 +00002592
2593 // The order of the stores doesn't matter.
2594 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2595 } else {
2596 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2597 Tmp2 != ST->getBasePtr())
2598 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2599 ST->getOffset());
2600
2601 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2602 default: assert(0 && "This action is not supported yet!");
2603 case TargetLowering::Legal:
2604 // If this is an unaligned store and the target doesn't support it,
2605 // expand it.
2606 if (!TLI.allowsUnalignedMemoryAccesses()) {
2607 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002608 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002609 if (ST->getAlignment() < ABIAlignment)
2610 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2611 TLI);
2612 }
2613 break;
2614 case TargetLowering::Custom:
2615 Result = TLI.LowerOperation(Result, DAG);
2616 break;
2617 case Expand:
2618 // TRUNCSTORE:i16 i32 -> STORE i16
2619 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2620 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2621 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2622 isVolatile, Alignment);
2623 break;
2624 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002625 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002626 }
2627 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002628 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002629 case ISD::PCMARKER:
2630 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002631 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002632 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002633 case ISD::STACKSAVE:
2634 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002635 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2636 Tmp1 = Result.getValue(0);
2637 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002638
Chris Lattner140d53c2006-01-13 02:50:02 +00002639 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2640 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002641 case TargetLowering::Legal: break;
2642 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002643 Tmp3 = TLI.LowerOperation(Result, DAG);
2644 if (Tmp3.Val) {
2645 Tmp1 = LegalizeOp(Tmp3);
2646 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002647 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002648 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002649 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002650 // Expand to CopyFromReg if the target set
2651 // StackPointerRegisterToSaveRestore.
2652 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002653 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002654 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002655 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002656 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002657 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2658 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002659 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002660 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002661 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002662
2663 // Since stacksave produce two values, make sure to remember that we
2664 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002665 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2666 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2667 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002668
Chris Lattner140d53c2006-01-13 02:50:02 +00002669 case ISD::STACKRESTORE:
2670 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2671 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002672 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002673
2674 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2675 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002676 case TargetLowering::Legal: break;
2677 case TargetLowering::Custom:
2678 Tmp1 = TLI.LowerOperation(Result, DAG);
2679 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002680 break;
2681 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002682 // Expand to CopyToReg if the target set
2683 // StackPointerRegisterToSaveRestore.
2684 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2685 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2686 } else {
2687 Result = Tmp1;
2688 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002689 break;
2690 }
2691 break;
2692
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002693 case ISD::READCYCLECOUNTER:
2694 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002695 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002696 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2697 Node->getValueType(0))) {
2698 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002699 case TargetLowering::Legal:
2700 Tmp1 = Result.getValue(0);
2701 Tmp2 = Result.getValue(1);
2702 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002703 case TargetLowering::Custom:
2704 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002705 Tmp1 = LegalizeOp(Result.getValue(0));
2706 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002707 break;
2708 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002709
2710 // Since rdcc produce two values, make sure to remember that we legalized
2711 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002712 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2713 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002714 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002715
Chris Lattner2ee743f2005-01-14 22:08:15 +00002716 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002717 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2718 case Expand: assert(0 && "It's impossible to expand bools");
2719 case Legal:
2720 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2721 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002722 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002723 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002724 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002725 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002726 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002727 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerb6c80602006-11-28 01:03:30 +00002728 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002729 break;
2730 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002731 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002732 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002733 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002734
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002735 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002736
Nate Begemanb942a3d2005-08-23 04:29:48 +00002737 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002738 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002739 case TargetLowering::Legal: break;
2740 case TargetLowering::Custom: {
2741 Tmp1 = TLI.LowerOperation(Result, DAG);
2742 if (Tmp1.Val) Result = Tmp1;
2743 break;
2744 }
Nate Begeman9373a812005-08-10 20:51:12 +00002745 case TargetLowering::Expand:
2746 if (Tmp1.getOpcode() == ISD::SETCC) {
2747 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2748 Tmp2, Tmp3,
2749 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2750 } else {
2751 Result = DAG.getSelectCC(Tmp1,
2752 DAG.getConstant(0, Tmp1.getValueType()),
2753 Tmp2, Tmp3, ISD::SETNE);
2754 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002755 break;
2756 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002757 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002758 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2759 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002760 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002761 ExtOp = ISD::BIT_CONVERT;
2762 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002763 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002764 ExtOp = ISD::ANY_EXTEND;
2765 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002766 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002767 ExtOp = ISD::FP_EXTEND;
2768 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002769 }
2770 // Promote each of the values to the new type.
2771 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2772 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2773 // Perform the larger operation, then round down.
2774 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002775 if (TruncOp != ISD::FP_ROUND)
2776 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2777 else
2778 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2779 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002780 break;
2781 }
2782 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002783 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002784 case ISD::SELECT_CC: {
2785 Tmp1 = Node->getOperand(0); // LHS
2786 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002787 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2788 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00002789 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002790
Nate Begeman750ac1b2006-02-01 07:19:44 +00002791 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2792
2793 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2794 // the LHS is a legal SETCC itself. In this case, we need to compare
2795 // the result against zero to select between true and false values.
2796 if (Tmp2.Val == 0) {
2797 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2798 CC = DAG.getCondCode(ISD::SETNE);
2799 }
2800 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2801
2802 // Everything is legal, see if we should expand this op or something.
2803 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2804 default: assert(0 && "This action is not supported yet!");
2805 case TargetLowering::Legal: break;
2806 case TargetLowering::Custom:
2807 Tmp1 = TLI.LowerOperation(Result, DAG);
2808 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002809 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002810 }
2811 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002812 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002813 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002814 Tmp1 = Node->getOperand(0);
2815 Tmp2 = Node->getOperand(1);
2816 Tmp3 = Node->getOperand(2);
2817 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2818
2819 // If we had to Expand the SetCC operands into a SELECT node, then it may
2820 // not always be possible to return a true LHS & RHS. In this case, just
2821 // return the value we legalized, returned in the LHS
2822 if (Tmp2.Val == 0) {
2823 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002824 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002825 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002826
Chris Lattner73e142f2006-01-30 22:43:50 +00002827 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002828 default: assert(0 && "Cannot handle this action for SETCC yet!");
2829 case TargetLowering::Custom:
2830 isCustom = true;
2831 // FALLTHROUGH.
2832 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002833 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002834 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002835 Tmp4 = TLI.LowerOperation(Result, DAG);
2836 if (Tmp4.Val) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002837 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002838 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002839 case TargetLowering::Promote: {
2840 // First step, figure out the appropriate operation to use.
2841 // Allow SETCC to not be supported for all legal data types
2842 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00002843 MVT NewInTy = Node->getOperand(0).getValueType();
2844 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002845
2846 // Scan for the appropriate larger type to use.
2847 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002848 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00002849
Duncan Sands83ec4b62008-06-06 12:08:01 +00002850 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002851 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002852 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002853 "Fell off of the edge of the floating point world");
2854
2855 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002856 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002857 break;
2858 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002859 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00002860 assert(0 && "Cannot promote Legal Integer SETCC yet");
2861 else {
2862 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2863 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2864 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002865 Tmp1 = LegalizeOp(Tmp1);
2866 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002867 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002868 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002869 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002870 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002871 case TargetLowering::Expand:
2872 // Expand a setcc node into a select_cc of the same condition, lhs, and
2873 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00002874 MVT VT = Node->getValueType(0);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002875 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2876 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002877 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002878 break;
2879 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002880 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00002881 case ISD::VSETCC: {
2882 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2883 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
2884 SDOperand CC = Node->getOperand(2);
2885
2886 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
2887
2888 // Everything is legal, see if we should expand this op or something.
2889 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
2890 default: assert(0 && "This action is not supported yet!");
2891 case TargetLowering::Legal: break;
2892 case TargetLowering::Custom:
2893 Tmp1 = TLI.LowerOperation(Result, DAG);
2894 if (Tmp1.Val) Result = Tmp1;
2895 break;
2896 }
2897 break;
2898 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002899
Chris Lattner5b359c62005-04-02 04:00:59 +00002900 case ISD::SHL_PARTS:
2901 case ISD::SRA_PARTS:
2902 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002903 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002904 bool Changed = false;
2905 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2906 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2907 Changed |= Ops.back() != Node->getOperand(i);
2908 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002909 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002910 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002911
Evan Cheng05a2d562006-01-09 18:31:59 +00002912 switch (TLI.getOperationAction(Node->getOpcode(),
2913 Node->getValueType(0))) {
2914 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002915 case TargetLowering::Legal: break;
2916 case TargetLowering::Custom:
2917 Tmp1 = TLI.LowerOperation(Result, DAG);
2918 if (Tmp1.Val) {
2919 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002920 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002921 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002922 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2923 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002924 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002925 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002926 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002927 return RetVal;
2928 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002929 break;
2930 }
2931
Chris Lattner2c8086f2005-04-02 05:00:07 +00002932 // Since these produce multiple values, make sure to remember that we
2933 // legalized all of them.
2934 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2935 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2936 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002937 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002938
2939 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002940 case ISD::ADD:
2941 case ISD::SUB:
2942 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002943 case ISD::MULHS:
2944 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002945 case ISD::UDIV:
2946 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002947 case ISD::AND:
2948 case ISD::OR:
2949 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002950 case ISD::SHL:
2951 case ISD::SRL:
2952 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002953 case ISD::FADD:
2954 case ISD::FSUB:
2955 case ISD::FMUL:
2956 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00002957 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002958 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002959 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2960 case Expand: assert(0 && "Not possible");
2961 case Legal:
2962 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2963 break;
2964 case Promote:
2965 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2966 break;
2967 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002968
2969 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002970
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002971 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002972 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002973 case TargetLowering::Legal: break;
2974 case TargetLowering::Custom:
2975 Tmp1 = TLI.LowerOperation(Result, DAG);
2976 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002977 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002978 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002979 MVT VT = Op.getValueType();
Dan Gohman525178c2007-10-08 18:33:35 +00002980
2981 // See if multiply or divide can be lowered using two-result operations.
2982 SDVTList VTs = DAG.getVTList(VT, VT);
2983 if (Node->getOpcode() == ISD::MUL) {
2984 // We just need the low half of the multiply; try both the signed
2985 // and unsigned forms. If the target supports both SMUL_LOHI and
2986 // UMUL_LOHI, form a preference by checking which forms of plain
2987 // MULH it supports.
2988 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2989 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2990 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2991 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2992 unsigned OpToUse = 0;
2993 if (HasSMUL_LOHI && !HasMULHS) {
2994 OpToUse = ISD::SMUL_LOHI;
2995 } else if (HasUMUL_LOHI && !HasMULHU) {
2996 OpToUse = ISD::UMUL_LOHI;
2997 } else if (HasSMUL_LOHI) {
2998 OpToUse = ISD::SMUL_LOHI;
2999 } else if (HasUMUL_LOHI) {
3000 OpToUse = ISD::UMUL_LOHI;
3001 }
3002 if (OpToUse) {
3003 Result = SDOperand(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0);
3004 break;
3005 }
3006 }
3007 if (Node->getOpcode() == ISD::MULHS &&
3008 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
3009 Result = SDOperand(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
3010 break;
3011 }
3012 if (Node->getOpcode() == ISD::MULHU &&
3013 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
3014 Result = SDOperand(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
3015 break;
3016 }
3017 if (Node->getOpcode() == ISD::SDIV &&
3018 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3019 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0);
3020 break;
3021 }
3022 if (Node->getOpcode() == ISD::UDIV &&
3023 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3024 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0);
3025 break;
3026 }
3027
Dan Gohman82669522007-10-11 23:57:53 +00003028 // Check to see if we have a libcall for this operator.
3029 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3030 bool isSigned = false;
3031 switch (Node->getOpcode()) {
3032 case ISD::UDIV:
3033 case ISD::SDIV:
3034 if (VT == MVT::i32) {
3035 LC = Node->getOpcode() == ISD::UDIV
Evan Cheng56966222007-01-12 02:11:51 +00003036 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003037 isSigned = Node->getOpcode() == ISD::SDIV;
3038 }
3039 break;
3040 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003041 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3042 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003043 break;
3044 default: break;
3045 }
3046 if (LC != RTLIB::UNKNOWN_LIBCALL) {
3047 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003048 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003049 break;
3050 }
3051
Duncan Sands83ec4b62008-06-06 12:08:01 +00003052 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003053 "Cannot expand this binary operator!");
3054 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003055 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003056 break;
3057 }
Evan Chengcc987612006-04-12 21:20:24 +00003058 case TargetLowering::Promote: {
3059 switch (Node->getOpcode()) {
3060 default: assert(0 && "Do not know how to promote this BinOp!");
3061 case ISD::AND:
3062 case ISD::OR:
3063 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003064 MVT OVT = Node->getValueType(0);
3065 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3066 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003067 // Bit convert each of the values to the new type.
3068 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3069 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3070 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3071 // Bit convert the result back the original type.
3072 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3073 break;
3074 }
3075 }
3076 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003077 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003078 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003079
Dan Gohmane14ea862007-10-05 14:17:22 +00003080 case ISD::SMUL_LOHI:
3081 case ISD::UMUL_LOHI:
3082 case ISD::SDIVREM:
3083 case ISD::UDIVREM:
3084 // These nodes will only be produced by target-specific lowering, so
3085 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003086 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003087 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003088
3089 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3090 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3091 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003092 break;
3093
Chris Lattnera09f8482006-03-05 05:09:38 +00003094 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3095 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3096 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3097 case Expand: assert(0 && "Not possible");
3098 case Legal:
3099 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3100 break;
3101 case Promote:
3102 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3103 break;
3104 }
3105
3106 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3107
3108 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3109 default: assert(0 && "Operation not supported");
3110 case TargetLowering::Custom:
3111 Tmp1 = TLI.LowerOperation(Result, DAG);
3112 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003113 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003114 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003115 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003116 // If this target supports fabs/fneg natively and select is cheap,
3117 // do this efficiently.
3118 if (!TLI.isSelectExpensive() &&
3119 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3120 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003121 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003122 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003123 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003124 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003125 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
3126 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003127 SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003128 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3129 // Get the absolute value of the result.
3130 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
3131 // Select between the nabs and abs value based on the sign bit of
3132 // the input.
3133 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3134 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3135 AbsVal),
3136 AbsVal);
3137 Result = LegalizeOp(Result);
3138 break;
3139 }
3140
3141 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003142 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003143 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3144 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3145 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3146 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003147 break;
3148 }
Evan Cheng912095b2007-01-04 21:56:39 +00003149 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003150 break;
3151
Nate Begeman551bf3f2006-02-17 05:43:56 +00003152 case ISD::ADDC:
3153 case ISD::SUBC:
3154 Tmp1 = LegalizeOp(Node->getOperand(0));
3155 Tmp2 = LegalizeOp(Node->getOperand(1));
3156 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3157 // Since this produces two values, make sure to remember that we legalized
3158 // both of them.
3159 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3160 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3161 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003162
Nate Begeman551bf3f2006-02-17 05:43:56 +00003163 case ISD::ADDE:
3164 case ISD::SUBE:
3165 Tmp1 = LegalizeOp(Node->getOperand(0));
3166 Tmp2 = LegalizeOp(Node->getOperand(1));
3167 Tmp3 = LegalizeOp(Node->getOperand(2));
3168 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3169 // Since this produces two values, make sure to remember that we legalized
3170 // both of them.
3171 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3172 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3173 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00003174
Nate Begeman419f8b62005-10-18 00:27:41 +00003175 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003176 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003177 // TODO: handle the case where the Lo and Hi operands are not of legal type
3178 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3179 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3180 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003181 case TargetLowering::Promote:
3182 case TargetLowering::Custom:
3183 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003184 case TargetLowering::Legal:
3185 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3186 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3187 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003188 case TargetLowering::Expand:
3189 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3190 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3191 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003192 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003193 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00003194 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003195 break;
3196 }
3197 break;
3198 }
3199
Nate Begemanc105e192005-04-06 00:23:54 +00003200 case ISD::UREM:
3201 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003202 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003203 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3204 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003205
Nate Begemanc105e192005-04-06 00:23:54 +00003206 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003207 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3208 case TargetLowering::Custom:
3209 isCustom = true;
3210 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003211 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003212 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003213 if (isCustom) {
3214 Tmp1 = TLI.LowerOperation(Result, DAG);
3215 if (Tmp1.Val) Result = Tmp1;
3216 }
Nate Begemanc105e192005-04-06 00:23:54 +00003217 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003218 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003219 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003220 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003221 MVT VT = Node->getValueType(0);
Dan Gohman525178c2007-10-08 18:33:35 +00003222
3223 // See if remainder can be lowered using two-result operations.
3224 SDVTList VTs = DAG.getVTList(VT, VT);
3225 if (Node->getOpcode() == ISD::SREM &&
3226 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3227 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3228 break;
3229 }
3230 if (Node->getOpcode() == ISD::UREM &&
3231 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3232 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3233 break;
3234 }
3235
Duncan Sands83ec4b62008-06-06 12:08:01 +00003236 if (VT.isInteger()) {
Dan Gohman525178c2007-10-08 18:33:35 +00003237 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003238 TargetLowering::Legal) {
3239 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00003240 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003241 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3242 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003243 } else if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003244 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003245 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003246 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003247 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003248 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3249 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003250 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003251 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003252 }
Dan Gohman0d974262007-11-06 22:11:54 +00003253 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003254 assert(VT.isFloatingPoint() &&
Dan Gohman0d974262007-11-06 22:11:54 +00003255 "remainder op must have integer or floating-point type");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003256 if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003257 Result = LegalizeOp(UnrollVectorOp(Op));
3258 } else {
3259 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003260 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3261 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman80176312007-11-05 23:35:22 +00003262 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003263 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003264 }
Nate Begemanc105e192005-04-06 00:23:54 +00003265 }
3266 break;
3267 }
Dan Gohman525178c2007-10-08 18:33:35 +00003268 }
Nate Begemanc105e192005-04-06 00:23:54 +00003269 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003270 case ISD::VAARG: {
3271 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3272 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3273
Duncan Sands83ec4b62008-06-06 12:08:01 +00003274 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003275 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3276 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003277 case TargetLowering::Custom:
3278 isCustom = true;
3279 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003280 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003281 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3282 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003283 Tmp1 = Result.getValue(1);
3284
3285 if (isCustom) {
3286 Tmp2 = TLI.LowerOperation(Result, DAG);
3287 if (Tmp2.Val) {
3288 Result = LegalizeOp(Tmp2);
3289 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3290 }
3291 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003292 break;
3293 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003294 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
3295 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003296 // Increment the pointer, VAList, to the next vaarg
3297 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003298 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begemanacc398c2006-01-25 18:21:52 +00003299 TLI.getPointerTy()));
3300 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00003301 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003302 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003303 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003304 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003305 Result = LegalizeOp(Result);
3306 break;
3307 }
3308 }
3309 // Since VAARG produces two values, make sure to remember that we
3310 // legalized both of them.
3311 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00003312 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3313 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003314 }
3315
3316 case ISD::VACOPY:
3317 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3318 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3319 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3320
3321 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3322 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003323 case TargetLowering::Custom:
3324 isCustom = true;
3325 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003326 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003327 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3328 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003329 if (isCustom) {
3330 Tmp1 = TLI.LowerOperation(Result, DAG);
3331 if (Tmp1.Val) Result = Tmp1;
3332 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003333 break;
3334 case TargetLowering::Expand:
3335 // This defaults to loading a pointer from the input and storing it to the
3336 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003337 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3338 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dan Gohman499c1bd2008-04-17 02:09:26 +00003339 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3340 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003341 break;
3342 }
3343 break;
3344
3345 case ISD::VAEND:
3346 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3347 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3348
3349 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3350 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003351 case TargetLowering::Custom:
3352 isCustom = true;
3353 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003354 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003355 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003356 if (isCustom) {
3357 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
3358 if (Tmp1.Val) Result = Tmp1;
3359 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003360 break;
3361 case TargetLowering::Expand:
3362 Result = Tmp1; // Default to a no-op, return the chain
3363 break;
3364 }
3365 break;
3366
3367 case ISD::VASTART:
3368 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3369 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3370
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003371 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3372
Nate Begemanacc398c2006-01-25 18:21:52 +00003373 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3374 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003375 case TargetLowering::Legal: break;
3376 case TargetLowering::Custom:
3377 Tmp1 = TLI.LowerOperation(Result, DAG);
3378 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003379 break;
3380 }
3381 break;
3382
Nate Begeman35ef9132006-01-11 21:21:00 +00003383 case ISD::ROTL:
3384 case ISD::ROTR:
3385 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3386 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003387 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003388 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3389 default:
3390 assert(0 && "ROTL/ROTR legalize operation not supported");
3391 break;
3392 case TargetLowering::Legal:
3393 break;
3394 case TargetLowering::Custom:
3395 Tmp1 = TLI.LowerOperation(Result, DAG);
3396 if (Tmp1.Val) Result = Tmp1;
3397 break;
3398 case TargetLowering::Promote:
3399 assert(0 && "Do not know how to promote ROTL/ROTR");
3400 break;
3401 case TargetLowering::Expand:
3402 assert(0 && "Do not know how to expand ROTL/ROTR");
3403 break;
3404 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003405 break;
3406
Nate Begemand88fc032006-01-14 03:14:10 +00003407 case ISD::BSWAP:
3408 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3409 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003410 case TargetLowering::Custom:
3411 assert(0 && "Cannot custom legalize this yet!");
3412 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003413 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003414 break;
3415 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003416 MVT OVT = Tmp1.getValueType();
3417 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3418 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003419
Chris Lattner456a93a2006-01-28 07:39:30 +00003420 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3421 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3422 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3423 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3424 break;
3425 }
3426 case TargetLowering::Expand:
3427 Result = ExpandBSWAP(Tmp1);
3428 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003429 }
3430 break;
3431
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003432 case ISD::CTPOP:
3433 case ISD::CTTZ:
3434 case ISD::CTLZ:
3435 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3436 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003437 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003438 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003439 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003440 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003441 TargetLowering::Custom) {
3442 Tmp1 = TLI.LowerOperation(Result, DAG);
3443 if (Tmp1.Val) {
3444 Result = Tmp1;
3445 }
Scott Michel910b66d2007-07-30 21:00:31 +00003446 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003447 break;
3448 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003449 MVT OVT = Tmp1.getValueType();
3450 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003451
3452 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003453 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3454 // Perform the larger operation, then subtract if needed.
3455 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003456 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003457 case ISD::CTPOP:
3458 Result = Tmp1;
3459 break;
3460 case ISD::CTTZ:
3461 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00003462 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003463 DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003464 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003465 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003466 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003467 break;
3468 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003469 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003470 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003471 DAG.getConstant(NVT.getSizeInBits() -
3472 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003473 break;
3474 }
3475 break;
3476 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003477 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003478 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003479 break;
3480 }
3481 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003482
Chris Lattner2c8086f2005-04-02 05:00:07 +00003483 // Unary operators
3484 case ISD::FABS:
3485 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003486 case ISD::FSQRT:
3487 case ISD::FSIN:
3488 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003489 Tmp1 = LegalizeOp(Node->getOperand(0));
3490 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003491 case TargetLowering::Promote:
3492 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003493 isCustom = true;
3494 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003495 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003496 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003497 if (isCustom) {
3498 Tmp1 = TLI.LowerOperation(Result, DAG);
3499 if (Tmp1.Val) Result = Tmp1;
3500 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003501 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003502 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003503 switch (Node->getOpcode()) {
3504 default: assert(0 && "Unreachable!");
3505 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003506 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3507 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003508 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003509 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003510 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003511 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003512 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003513 Tmp2 = DAG.getConstantFP(0.0, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003514 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00003515 ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003516 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3517 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003518 break;
3519 }
3520 case ISD::FSQRT:
3521 case ISD::FSIN:
3522 case ISD::FCOS: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003523 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003524
3525 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003526 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003527 Result = LegalizeOp(UnrollVectorOp(Op));
3528 break;
3529 }
3530
Evan Cheng56966222007-01-12 02:11:51 +00003531 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003532 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003533 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003534 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3535 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003536 break;
3537 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003538 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3539 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003540 break;
3541 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003542 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3543 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003544 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003545 default: assert(0 && "Unreachable!");
3546 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00003547 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003548 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003549 break;
3550 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003551 }
3552 break;
3553 }
3554 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003555 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003556 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003557
3558 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003559 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003560 Result = LegalizeOp(UnrollVectorOp(Op));
3561 break;
3562 }
3563
3564 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003565 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3566 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003567 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003568 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003569 break;
3570 }
Chris Lattner35481892005-12-23 00:16:34 +00003571 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003572 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003573 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3574 Node->getValueType(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003575 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003576 // The input has to be a vector type, we have to either scalarize it, pack
3577 // it, or convert it based on whether the input vector type is legal.
3578 SDNode *InVal = Node->getOperand(0).Val;
Dale Johannesene5269622007-10-20 00:07:52 +00003579 int InIx = Node->getOperand(0).ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003580 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3581 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohman7f321562007-06-25 16:23:39 +00003582
3583 // Figure out if there is a simple type corresponding to this Vector
3584 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003585 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00003586 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003587 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003588 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3589 LegalizeOp(Node->getOperand(0)));
3590 break;
3591 } else if (NumElems == 1) {
3592 // Turn this into a bit convert of the scalar input.
3593 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3594 ScalarizeVectorOp(Node->getOperand(0)));
3595 break;
3596 } else {
3597 // FIXME: UNIMP! Store then reload
3598 assert(0 && "Cast from unsupported vector type not implemented yet!");
3599 }
Chris Lattner67993f72006-01-23 07:30:46 +00003600 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003601 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3602 Node->getOperand(0).getValueType())) {
3603 default: assert(0 && "Unknown operation action!");
3604 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003605 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3606 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003607 break;
3608 case TargetLowering::Legal:
3609 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003610 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003611 break;
3612 }
3613 }
3614 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003615
Chris Lattner2c8086f2005-04-02 05:00:07 +00003616 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003617 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003618 case ISD::UINT_TO_FP: {
3619 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003620 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3621 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003622 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003623 Node->getOperand(0).getValueType())) {
3624 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003625 case TargetLowering::Custom:
3626 isCustom = true;
3627 // FALLTHROUGH
3628 case TargetLowering::Legal:
3629 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003630 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003631 if (isCustom) {
3632 Tmp1 = TLI.LowerOperation(Result, DAG);
3633 if (Tmp1.Val) Result = Tmp1;
3634 }
3635 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003636 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00003637 Result = ExpandLegalINT_TO_FP(isSigned,
3638 LegalizeOp(Node->getOperand(0)),
3639 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003640 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003641 case TargetLowering::Promote:
3642 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
3643 Node->getValueType(0),
3644 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003645 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00003646 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003647 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00003648 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003649 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
3650 Node->getValueType(0), Node->getOperand(0));
3651 break;
3652 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003653 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003654 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003655 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
3656 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003657 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003658 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
3659 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003660 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003661 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3662 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003663 break;
3664 }
3665 break;
3666 }
3667 case ISD::TRUNCATE:
3668 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3669 case Legal:
3670 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003671 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003672 break;
3673 case Expand:
3674 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3675
3676 // Since the result is legal, we should just be able to truncate the low
3677 // part of the source.
3678 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3679 break;
3680 case Promote:
3681 Result = PromoteOp(Node->getOperand(0));
3682 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3683 break;
3684 }
3685 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003686
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003687 case ISD::FP_TO_SINT:
3688 case ISD::FP_TO_UINT:
3689 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3690 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003691 Tmp1 = LegalizeOp(Node->getOperand(0));
3692
Chris Lattner1618beb2005-07-29 00:11:56 +00003693 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3694 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003695 case TargetLowering::Custom:
3696 isCustom = true;
3697 // FALLTHROUGH
3698 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003699 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003700 if (isCustom) {
3701 Tmp1 = TLI.LowerOperation(Result, DAG);
3702 if (Tmp1.Val) Result = Tmp1;
3703 }
3704 break;
3705 case TargetLowering::Promote:
3706 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3707 Node->getOpcode() == ISD::FP_TO_SINT);
3708 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003709 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003710 if (Node->getOpcode() == ISD::FP_TO_UINT) {
3711 SDOperand True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003712 MVT VT = Node->getOperand(0).getValueType();
3713 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00003714 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00003715 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
3716 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003717 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00003718 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003719 Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
Nate Begemand2558e32005-08-14 01:20:53 +00003720 Node->getOperand(0), Tmp2, ISD::SETLT);
3721 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3722 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003723 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003724 Tmp2));
3725 False = DAG.getNode(ISD::XOR, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003726 DAG.getConstant(x, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003727 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3728 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003729 } else {
3730 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3731 }
3732 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003733 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003734 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003735 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003736 MVT VT = Op.getValueType();
3737 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003738 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003739 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003740 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3741 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3742 Node->getOperand(0), DAG.getValueType(MVT::f64));
3743 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3744 DAG.getIntPtrConstant(1));
3745 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3746 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003747 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3748 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3749 Tmp2 = DAG.getConstantFP(apf, OVT);
3750 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3751 // FIXME: generated code sucks.
3752 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3753 DAG.getNode(ISD::ADD, MVT::i32,
3754 DAG.getNode(ISD::FP_TO_SINT, VT,
3755 DAG.getNode(ISD::FSUB, OVT,
3756 Node->getOperand(0), Tmp2)),
3757 DAG.getConstant(0x80000000, MVT::i32)),
3758 DAG.getNode(ISD::FP_TO_SINT, VT,
3759 Node->getOperand(0)),
3760 DAG.getCondCode(ISD::SETGE));
3761 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003762 break;
3763 }
Dan Gohmana2e94852008-03-10 23:03:31 +00003764 // Convert f32 / f64 to i32 / i64 / i128.
Evan Cheng56966222007-01-12 02:11:51 +00003765 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng6af00d52006-12-13 01:57:55 +00003766 switch (Node->getOpcode()) {
Dale Johannesen73328d12007-09-19 23:55:34 +00003767 case ISD::FP_TO_SINT: {
Dan Gohmana2e94852008-03-10 23:03:31 +00003768 if (VT == MVT::i32) {
3769 if (OVT == MVT::f32)
3770 LC = RTLIB::FPTOSINT_F32_I32;
3771 else if (OVT == MVT::f64)
3772 LC = RTLIB::FPTOSINT_F64_I32;
3773 else
3774 assert(0 && "Unexpected i32-to-fp conversion!");
3775 } else if (VT == MVT::i64) {
3776 if (OVT == MVT::f32)
3777 LC = RTLIB::FPTOSINT_F32_I64;
3778 else if (OVT == MVT::f64)
3779 LC = RTLIB::FPTOSINT_F64_I64;
3780 else if (OVT == MVT::f80)
3781 LC = RTLIB::FPTOSINT_F80_I64;
3782 else if (OVT == MVT::ppcf128)
3783 LC = RTLIB::FPTOSINT_PPCF128_I64;
3784 else
3785 assert(0 && "Unexpected i64-to-fp conversion!");
3786 } else if (VT == MVT::i128) {
3787 if (OVT == MVT::f32)
3788 LC = RTLIB::FPTOSINT_F32_I128;
3789 else if (OVT == MVT::f64)
3790 LC = RTLIB::FPTOSINT_F64_I128;
3791 else if (OVT == MVT::f80)
3792 LC = RTLIB::FPTOSINT_F80_I128;
3793 else if (OVT == MVT::ppcf128)
3794 LC = RTLIB::FPTOSINT_PPCF128_I128;
3795 else
3796 assert(0 && "Unexpected i128-to-fp conversion!");
3797 } else {
3798 assert(0 && "Unexpectd int-to-fp conversion!");
Dale Johannesen73328d12007-09-19 23:55:34 +00003799 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003800 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003801 }
3802 case ISD::FP_TO_UINT: {
Dan Gohmana2e94852008-03-10 23:03:31 +00003803 if (VT == MVT::i32) {
3804 if (OVT == MVT::f32)
3805 LC = RTLIB::FPTOUINT_F32_I32;
3806 else if (OVT == MVT::f64)
3807 LC = RTLIB::FPTOUINT_F64_I32;
3808 else if (OVT == MVT::f80)
3809 LC = RTLIB::FPTOUINT_F80_I32;
3810 else
3811 assert(0 && "Unexpected i32-to-fp conversion!");
3812 } else if (VT == MVT::i64) {
3813 if (OVT == MVT::f32)
3814 LC = RTLIB::FPTOUINT_F32_I64;
3815 else if (OVT == MVT::f64)
3816 LC = RTLIB::FPTOUINT_F64_I64;
3817 else if (OVT == MVT::f80)
3818 LC = RTLIB::FPTOUINT_F80_I64;
3819 else if (OVT == MVT::ppcf128)
3820 LC = RTLIB::FPTOUINT_PPCF128_I64;
3821 else
3822 assert(0 && "Unexpected i64-to-fp conversion!");
3823 } else if (VT == MVT::i128) {
3824 if (OVT == MVT::f32)
3825 LC = RTLIB::FPTOUINT_F32_I128;
3826 else if (OVT == MVT::f64)
3827 LC = RTLIB::FPTOUINT_F64_I128;
3828 else if (OVT == MVT::f80)
3829 LC = RTLIB::FPTOUINT_F80_I128;
3830 else if (OVT == MVT::ppcf128)
3831 LC = RTLIB::FPTOUINT_PPCF128_I128;
3832 else
3833 assert(0 && "Unexpected i128-to-fp conversion!");
3834 } else {
3835 assert(0 && "Unexpectd int-to-fp conversion!");
Dale Johannesen73328d12007-09-19 23:55:34 +00003836 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003837 break;
Dale Johannesen73328d12007-09-19 23:55:34 +00003838 }
Evan Cheng6af00d52006-12-13 01:57:55 +00003839 default: assert(0 && "Unreachable!");
3840 }
3841 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003842 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003843 break;
3844 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003845 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003846 Tmp1 = PromoteOp(Node->getOperand(0));
3847 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3848 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003849 break;
3850 }
3851 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003852
Chris Lattnerf2670a82008-01-16 06:57:07 +00003853 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003854 MVT DstVT = Op.getValueType();
3855 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003856 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3857 // The only other way we can lower this is to turn it into a STORE,
3858 // LOAD pair, targetting a temporary location (a stack slot).
3859 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3860 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00003861 }
3862 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3863 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3864 case Legal:
3865 Tmp1 = LegalizeOp(Node->getOperand(0));
3866 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3867 break;
3868 case Promote:
3869 Tmp1 = PromoteOp(Node->getOperand(0));
3870 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3871 break;
3872 }
3873 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003874 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003875 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003876 MVT DstVT = Op.getValueType();
3877 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003878 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3879 if (SrcVT == MVT::ppcf128) {
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003880 SDOperand Lo;
3881 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003882 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003883 if (DstVT!=MVT::f64)
3884 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00003885 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00003886 }
Chris Lattner0bd48932008-01-17 07:00:52 +00003887 // The only other way we can lower this is to turn it into a STORE,
3888 // LOAD pair, targetting a temporary location (a stack slot).
3889 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3890 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00003891 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00003892 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3893 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3894 case Legal:
3895 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003896 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003897 break;
3898 case Promote:
3899 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003900 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3901 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003902 break;
3903 }
3904 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003905 }
Chris Lattner13c78e22005-09-02 00:18:10 +00003906 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003907 case ISD::ZERO_EXTEND:
3908 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003909 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003910 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003911 case Legal:
3912 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00003913 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00003914 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3915 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00003916 Tmp1 = TLI.LowerOperation(Result, DAG);
3917 if (Tmp1.Val) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00003918 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003919 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003920 case Promote:
3921 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003922 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003923 Tmp1 = PromoteOp(Node->getOperand(0));
3924 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003925 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003926 case ISD::ZERO_EXTEND:
3927 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003928 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003929 Result = DAG.getZeroExtendInReg(Result,
3930 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003931 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003932 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003933 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003934 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003935 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003936 Result,
3937 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003938 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003939 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003940 }
3941 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003942 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003943 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003944 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003945 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003946
3947 // If this operation is not supported, convert it to a shl/shr or load/store
3948 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003949 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3950 default: assert(0 && "This action not supported for this op yet!");
3951 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003952 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003953 break;
3954 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003955 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003956 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003957 // NOTE: we could fall back on load/store here too for targets without
3958 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003959 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
3960 ExtraVT.getSizeInBits();
Chris Lattner27ff1122005-01-22 00:31:52 +00003961 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003962 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3963 Node->getOperand(0), ShiftCst);
3964 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3965 Result, ShiftCst);
3966 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003967 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003968 // EXTLOAD pair, targetting a temporary location (a stack slot).
3969
3970 // NOTE: there is a choice here between constantly creating new stack
3971 // slots and always reusing the same one. We currently always create
3972 // new ones, as reuse may inhibit scheduling.
Chris Lattnera66bb392008-01-16 07:51:34 +00003973 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3974 Node->getValueType(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00003975 } else {
3976 assert(0 && "Unknown op");
3977 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003978 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003979 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003980 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003981 }
Duncan Sands36397f52007-07-27 12:58:54 +00003982 case ISD::TRAMPOLINE: {
3983 SDOperand Ops[6];
3984 for (unsigned i = 0; i != 6; ++i)
3985 Ops[i] = LegalizeOp(Node->getOperand(i));
3986 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3987 // The only option for this node is to custom lower it.
3988 Result = TLI.LowerOperation(Result, DAG);
3989 assert(Result.Val && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00003990
3991 // Since trampoline produces two values, make sure to remember that we
3992 // legalized both of them.
3993 Tmp1 = LegalizeOp(Result.getValue(1));
3994 Result = LegalizeOp(Result);
3995 AddLegalizedOperand(SDOperand(Node, 0), Result);
3996 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3997 return Op.ResNo ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00003998 }
Dan Gohman9c78a392008-05-14 00:43:10 +00003999 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004000 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004001 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4002 default: assert(0 && "This action not supported for this op yet!");
4003 case TargetLowering::Custom:
4004 Result = TLI.LowerOperation(Op, DAG);
4005 if (Result.Val) break;
4006 // Fall Thru
4007 case TargetLowering::Legal:
4008 // If this operation is not supported, lower it to constant 1
4009 Result = DAG.getConstant(1, VT);
4010 break;
4011 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00004012 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004013 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004014 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004015 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004016 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4017 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00004018 case TargetLowering::Legal:
4019 Tmp1 = LegalizeOp(Node->getOperand(0));
4020 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4021 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004022 case TargetLowering::Custom:
4023 Result = TLI.LowerOperation(Op, DAG);
4024 if (Result.Val) break;
4025 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00004026 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004027 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00004028 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004029 TargetLowering::ArgListTy Args;
4030 std::pair<SDOperand,SDOperand> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00004031 TLI.LowerCallTo(Tmp1, Type::VoidTy,
4032 false, false, false, CallingConv::C, false,
Chris Lattner034f12e2008-01-15 22:09:33 +00004033 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
4034 Args, DAG);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004035 Result = CallResult.second;
4036 break;
4037 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004038 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004039 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00004040 }
Chris Lattner456a93a2006-01-28 07:39:30 +00004041
Chris Lattner4ddd2832006-04-08 04:13:17 +00004042 assert(Result.getValueType() == Op.getValueType() &&
4043 "Bad legalization!");
4044
Chris Lattner456a93a2006-01-28 07:39:30 +00004045 // Make sure that the generated code is itself legal.
4046 if (Result != Op)
4047 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004048
Chris Lattner45982da2005-05-12 16:53:42 +00004049 // Note that LegalizeOp may be reentered even from single-use nodes, which
4050 // means that we always must cache transformed nodes.
4051 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004052 return Result;
4053}
4054
Chris Lattner8b6fa222005-01-15 22:16:26 +00004055/// PromoteOp - Given an operation that produces a value in an invalid type,
4056/// promote it to compute the value into a larger type. The produced value will
4057/// have the correct bits for the low portion of the register, but no guarantee
4058/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00004059SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004060 MVT VT = Op.getValueType();
4061 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004062 assert(getTypeAction(VT) == Promote &&
4063 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004064 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00004065 "Cannot promote to smaller type!");
4066
Chris Lattner03c85462005-01-15 05:21:40 +00004067 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00004068 SDOperand Result;
4069 SDNode *Node = Op.Val;
4070
Roman Levenstein9cac5252008-04-16 16:15:27 +00004071 DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004072 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004073
Chris Lattner03c85462005-01-15 05:21:40 +00004074 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004075 case ISD::CopyFromReg:
4076 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004077 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004078#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004079 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004080#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004081 assert(0 && "Do not know how to promote this operator!");
4082 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004083 case ISD::UNDEF:
4084 Result = DAG.getNode(ISD::UNDEF, NVT);
4085 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004086 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004087 if (VT != MVT::i1)
4088 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4089 else
4090 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004091 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4092 break;
4093 case ISD::ConstantFP:
4094 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4095 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4096 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004097
Chris Lattner82fbfb62005-01-18 02:59:52 +00004098 case ISD::SETCC:
Scott Michel5b8f82e2008-03-10 15:42:14 +00004099 assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
Nate Begeman5922f562008-03-14 00:53:31 +00004100 && "SetCC type is not legal??");
Scott Michel5b8f82e2008-03-10 15:42:14 +00004101 Result = DAG.getNode(ISD::SETCC,
Nate Begeman5922f562008-03-14 00:53:31 +00004102 TLI.getSetCCResultType(Node->getOperand(0)),
4103 Node->getOperand(0), Node->getOperand(1),
4104 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004105 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00004106
Chris Lattner03c85462005-01-15 05:21:40 +00004107 case ISD::TRUNCATE:
4108 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4109 case Legal:
4110 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004111 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004112 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004113 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Chris Lattner03c85462005-01-15 05:21:40 +00004114 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4115 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004116 case Promote:
4117 // The truncation is not required, because we don't guarantee anything
4118 // about high bits anyway.
4119 Result = PromoteOp(Node->getOperand(0));
4120 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004121 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004122 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4123 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00004124 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004125 }
4126 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004127 case ISD::SIGN_EXTEND:
4128 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004129 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004130 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4131 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4132 case Legal:
4133 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00004134 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004135 break;
4136 case Promote:
4137 // Promote the reg if it's smaller.
4138 Result = PromoteOp(Node->getOperand(0));
4139 // The high bits are not guaranteed to be anything. Insert an extend.
4140 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00004141 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004142 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004143 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00004144 Result = DAG.getZeroExtendInReg(Result,
4145 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004146 break;
4147 }
4148 break;
Chris Lattner35481892005-12-23 00:16:34 +00004149 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004150 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4151 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00004152 Result = PromoteOp(Result);
4153 break;
4154
Chris Lattner8b6fa222005-01-15 22:16:26 +00004155 case ISD::FP_EXTEND:
4156 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4157 case ISD::FP_ROUND:
4158 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4159 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4160 case Promote: assert(0 && "Unreachable with 2 FP types!");
4161 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004162 if (Node->getConstantOperandVal(1) == 0) {
4163 // Input is legal? Do an FP_ROUND_INREG.
4164 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4165 DAG.getValueType(VT));
4166 } else {
4167 // Just remove the truncate, it isn't affecting the value.
4168 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4169 Node->getOperand(1));
4170 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004171 break;
4172 }
4173 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004174 case ISD::SINT_TO_FP:
4175 case ISD::UINT_TO_FP:
4176 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4177 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004178 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00004179 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004180 break;
4181
4182 case Promote:
4183 Result = PromoteOp(Node->getOperand(0));
4184 if (Node->getOpcode() == ISD::SINT_TO_FP)
4185 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004186 Result,
4187 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004188 else
Chris Lattner23993562005-04-13 02:38:47 +00004189 Result = DAG.getZeroExtendInReg(Result,
4190 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004191 // No extra round required here.
4192 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004193 break;
4194 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004195 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4196 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00004197 // Round if we cannot tolerate excess precision.
4198 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004199 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4200 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004201 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004202 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004203 break;
4204
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004205 case ISD::SIGN_EXTEND_INREG:
4206 Result = PromoteOp(Node->getOperand(0));
4207 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4208 Node->getOperand(1));
4209 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004210 case ISD::FP_TO_SINT:
4211 case ISD::FP_TO_UINT:
4212 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4213 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004214 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004215 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004216 break;
4217 case Promote:
4218 // The input result is prerounded, so we don't have to do anything
4219 // special.
4220 Tmp1 = PromoteOp(Node->getOperand(0));
4221 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004222 }
Nate Begemand2558e32005-08-14 01:20:53 +00004223 // If we're promoting a UINT to a larger size, check to see if the new node
4224 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4225 // we can use that instead. This allows us to generate better code for
4226 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4227 // legal, such as PowerPC.
4228 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004229 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004230 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4231 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00004232 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4233 } else {
4234 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4235 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004236 break;
4237
Chris Lattner2c8086f2005-04-02 05:00:07 +00004238 case ISD::FABS:
4239 case ISD::FNEG:
4240 Tmp1 = PromoteOp(Node->getOperand(0));
4241 assert(Tmp1.getValueType() == NVT);
4242 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4243 // NOTE: we do not have to do any extra rounding here for
4244 // NoExcessFPPrecision, because we know the input will have the appropriate
4245 // precision, and these operations don't modify precision at all.
4246 break;
4247
Chris Lattnerda6ba872005-04-28 21:44:33 +00004248 case ISD::FSQRT:
4249 case ISD::FSIN:
4250 case ISD::FCOS:
4251 Tmp1 = PromoteOp(Node->getOperand(0));
4252 assert(Tmp1.getValueType() == NVT);
4253 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004254 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004255 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4256 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004257 break;
4258
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004259 case ISD::FPOWI: {
4260 // Promote f32 powi to f64 powi. Note that this could insert a libcall
4261 // directly as well, which may be better.
4262 Tmp1 = PromoteOp(Node->getOperand(0));
4263 assert(Tmp1.getValueType() == NVT);
4264 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
4265 if (NoExcessFPPrecision)
4266 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4267 DAG.getValueType(VT));
4268 break;
4269 }
4270
Mon P Wang28873102008-06-25 08:15:39 +00004271 case ISD::ATOMIC_CMP_SWAP: {
4272 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004273 Tmp2 = PromoteOp(Node->getOperand(2));
4274 Tmp3 = PromoteOp(Node->getOperand(3));
Mon P Wang28873102008-06-25 08:15:39 +00004275 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4276 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004277 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004278 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004279 // Remember that we legalized the chain.
4280 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4281 break;
4282 }
Mon P Wang28873102008-06-25 08:15:39 +00004283 case ISD::ATOMIC_LOAD_ADD:
4284 case ISD::ATOMIC_LOAD_SUB:
Mon P Wang63307c32008-05-05 19:05:59 +00004285 case ISD::ATOMIC_LOAD_AND:
4286 case ISD::ATOMIC_LOAD_OR:
4287 case ISD::ATOMIC_LOAD_XOR:
Andrew Lenharth507a58a2008-06-14 05:48:15 +00004288 case ISD::ATOMIC_LOAD_NAND:
Mon P Wang63307c32008-05-05 19:05:59 +00004289 case ISD::ATOMIC_LOAD_MIN:
4290 case ISD::ATOMIC_LOAD_MAX:
4291 case ISD::ATOMIC_LOAD_UMIN:
4292 case ISD::ATOMIC_LOAD_UMAX:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004293 case ISD::ATOMIC_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004294 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004295 Tmp2 = PromoteOp(Node->getOperand(2));
Mon P Wang28873102008-06-25 08:15:39 +00004296 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4297 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004298 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004299 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004300 // Remember that we legalized the chain.
4301 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4302 break;
4303 }
4304
Chris Lattner03c85462005-01-15 05:21:40 +00004305 case ISD::AND:
4306 case ISD::OR:
4307 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004308 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004309 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004310 case ISD::MUL:
4311 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004312 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004313 // that too is okay if they are integer operations.
4314 Tmp1 = PromoteOp(Node->getOperand(0));
4315 Tmp2 = PromoteOp(Node->getOperand(1));
4316 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4317 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004318 break;
4319 case ISD::FADD:
4320 case ISD::FSUB:
4321 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004322 Tmp1 = PromoteOp(Node->getOperand(0));
4323 Tmp2 = PromoteOp(Node->getOperand(1));
4324 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4325 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4326
4327 // Floating point operations will give excess precision that we may not be
4328 // able to tolerate. If we DO allow excess precision, just leave it,
4329 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004330 // FIXME: Why would we need to round FP ops more than integer ones?
4331 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004332 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004333 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4334 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004335 break;
4336
Chris Lattner8b6fa222005-01-15 22:16:26 +00004337 case ISD::SDIV:
4338 case ISD::SREM:
4339 // These operators require that their input be sign extended.
4340 Tmp1 = PromoteOp(Node->getOperand(0));
4341 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004342 if (NVT.isInteger()) {
Chris Lattner15e4b012005-07-10 00:07:11 +00004343 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4344 DAG.getValueType(VT));
4345 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4346 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004347 }
4348 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4349
4350 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004351 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004352 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4353 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004354 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004355 case ISD::FDIV:
4356 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004357 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004358 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004359 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004360 case Expand: assert(0 && "not implemented");
4361 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4362 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004363 }
4364 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004365 case Expand: assert(0 && "not implemented");
4366 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4367 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004368 }
Chris Lattner01b3d732005-09-28 22:28:18 +00004369 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4370
4371 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004372 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00004373 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4374 DAG.getValueType(VT));
4375 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004376
4377 case ISD::UDIV:
4378 case ISD::UREM:
4379 // These operators require that their input be zero extended.
4380 Tmp1 = PromoteOp(Node->getOperand(0));
4381 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004382 assert(NVT.isInteger() && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00004383 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4384 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004385 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4386 break;
4387
4388 case ISD::SHL:
4389 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00004390 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004391 break;
4392 case ISD::SRA:
4393 // The input value must be properly sign extended.
4394 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00004395 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4396 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00004397 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004398 break;
4399 case ISD::SRL:
4400 // The input value must be properly zero extended.
4401 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00004402 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004403 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004404 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004405
4406 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004407 Tmp1 = Node->getOperand(0); // Get the chain.
4408 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004409 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4410 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004411 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004412 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004413 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
4414 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004415 // Increment the pointer, VAList, to the next vaarg
4416 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004417 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004418 TLI.getPointerTy()));
4419 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00004420 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004421 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004422 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004423 }
4424 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004425 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004426 break;
4427
Evan Cheng466685d2006-10-09 20:57:25 +00004428 case ISD::LOAD: {
4429 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004430 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4431 ? ISD::EXTLOAD : LD->getExtensionType();
4432 Result = DAG.getExtLoad(ExtType, NVT,
4433 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004434 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004435 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004436 LD->isVolatile(),
4437 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004438 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004439 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004440 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004441 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004442 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004443 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4444 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004445
Duncan Sands83ec4b62008-06-06 12:08:01 +00004446 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004447 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004448 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4449 // Ensure that the resulting node is at least the same size as the operands'
4450 // value types, because we cannot assume that TLI.getSetCCValueType() is
4451 // constant.
4452 Result = DAG.getNode(ISD::SELECT, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004453 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004454 }
Nate Begeman9373a812005-08-10 20:51:12 +00004455 case ISD::SELECT_CC:
4456 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4457 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4458 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004459 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004460 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004461 case ISD::BSWAP:
4462 Tmp1 = Node->getOperand(0);
4463 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4464 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4465 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004466 DAG.getConstant(NVT.getSizeInBits() -
4467 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004468 TLI.getShiftAmountTy()));
4469 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004470 case ISD::CTPOP:
4471 case ISD::CTTZ:
4472 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004473 // Zero extend the argument
4474 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004475 // Perform the larger operation, then subtract if needed.
4476 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004477 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004478 case ISD::CTPOP:
4479 Result = Tmp1;
4480 break;
4481 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004482 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004483 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004484 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004485 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004486 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004487 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004488 break;
4489 case ISD::CTLZ:
4490 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004491 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004492 DAG.getConstant(NVT.getSizeInBits() -
4493 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004494 break;
4495 }
4496 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004497 case ISD::EXTRACT_SUBVECTOR:
4498 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004499 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004500 case ISD::EXTRACT_VECTOR_ELT:
4501 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4502 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004503 }
4504
4505 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004506
4507 // Make sure the result is itself legal.
4508 Result = LegalizeOp(Result);
4509
4510 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004511 AddPromotedOperand(Op, Result);
4512 return Result;
4513}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004514
Dan Gohman7f321562007-06-25 16:23:39 +00004515/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4516/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4517/// based on the vector type. The return type of this matches the element type
4518/// of the vector, which may not be legal for the target.
4519SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004520 // We know that operand #0 is the Vec vector. If the index is a constant
4521 // or if the invec is a supported hardware type, we can use it. Otherwise,
4522 // lower to a store then an indexed load.
4523 SDOperand Vec = Op.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004524 SDOperand Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00004525
Duncan Sands83ec4b62008-06-06 12:08:01 +00004526 MVT TVT = Vec.getValueType();
4527 unsigned NumElems = TVT.getVectorNumElements();
Chris Lattner15972212006-03-31 17:55:51 +00004528
Dan Gohman7f321562007-06-25 16:23:39 +00004529 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4530 default: assert(0 && "This action is not supported yet!");
4531 case TargetLowering::Custom: {
4532 Vec = LegalizeOp(Vec);
4533 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4534 SDOperand Tmp3 = TLI.LowerOperation(Op, DAG);
4535 if (Tmp3.Val)
4536 return Tmp3;
4537 break;
4538 }
4539 case TargetLowering::Legal:
4540 if (isTypeLegal(TVT)) {
4541 Vec = LegalizeOp(Vec);
4542 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004543 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004544 }
4545 break;
4546 case TargetLowering::Expand:
4547 break;
4548 }
4549
4550 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004551 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004552 Op = ScalarizeVectorOp(Vec);
4553 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00004554 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00004555 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Chris Lattner15972212006-03-31 17:55:51 +00004556 SDOperand Lo, Hi;
4557 SplitVectorOp(Vec, Lo, Hi);
Nate Begeman55030dc2008-01-29 02:24:00 +00004558 if (CIdx->getValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00004559 Vec = Lo;
4560 } else {
4561 Vec = Hi;
Nate Begeman55030dc2008-01-29 02:24:00 +00004562 Idx = DAG.getConstant(CIdx->getValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00004563 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00004564 }
Dan Gohman7f321562007-06-25 16:23:39 +00004565
Chris Lattner15972212006-03-31 17:55:51 +00004566 // It's now an extract from the appropriate high or low part. Recurse.
4567 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004568 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00004569 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004570 // Store the value to a temporary stack slot, then LOAD the scalar
4571 // element back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004572 SDOperand StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dan Gohman7f321562007-06-25 16:23:39 +00004573 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
4574
4575 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004576 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dan Gohman7f321562007-06-25 16:23:39 +00004577 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4578 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004579
Duncan Sands8e4eb092008-06-08 20:54:56 +00004580 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Chris Lattnerf185e672007-10-19 16:47:35 +00004581 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004582 else
Chris Lattnerf185e672007-10-19 16:47:35 +00004583 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004584
Dan Gohman7f321562007-06-25 16:23:39 +00004585 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4586
4587 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00004588 }
Dan Gohman7f321562007-06-25 16:23:39 +00004589 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00004590}
4591
Dan Gohman7f321562007-06-25 16:23:39 +00004592/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00004593/// we assume the operation can be split if it is not already legal.
Dan Gohman7f321562007-06-25 16:23:39 +00004594SDOperand SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDOperand Op) {
Dan Gohman65956352007-06-13 15:12:02 +00004595 // We know that operand #0 is the Vec vector. For now we assume the index
4596 // is a constant and that the extracted result is a supported hardware type.
4597 SDOperand Vec = Op.getOperand(0);
4598 SDOperand Idx = LegalizeOp(Op.getOperand(1));
4599
Duncan Sands83ec4b62008-06-06 12:08:01 +00004600 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Dan Gohman65956352007-06-13 15:12:02 +00004601
Duncan Sands83ec4b62008-06-06 12:08:01 +00004602 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00004603 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004604 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00004605 }
4606
4607 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
4608 SDOperand Lo, Hi;
4609 SplitVectorOp(Vec, Lo, Hi);
4610 if (CIdx->getValue() < NumElems/2) {
4611 Vec = Lo;
4612 } else {
4613 Vec = Hi;
4614 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
4615 }
4616
4617 // It's now an extract from the appropriate high or low part. Recurse.
4618 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004619 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00004620}
4621
Nate Begeman750ac1b2006-02-01 07:19:44 +00004622/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4623/// with condition CC on the current target. This usually involves legalizing
4624/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4625/// there may be no choice but to create a new SetCC node to represent the
4626/// legalized value of setcc lhs, rhs. In this case, the value is returned in
4627/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
4628void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
4629 SDOperand &RHS,
4630 SDOperand &CC) {
Dale Johannesen638ccd52007-10-06 01:24:11 +00004631 SDOperand Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004632
4633 switch (getTypeAction(LHS.getValueType())) {
4634 case Legal:
4635 Tmp1 = LegalizeOp(LHS); // LHS
4636 Tmp2 = LegalizeOp(RHS); // RHS
4637 break;
4638 case Promote:
4639 Tmp1 = PromoteOp(LHS); // LHS
4640 Tmp2 = PromoteOp(RHS); // RHS
4641
4642 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004643 if (LHS.getValueType().isInteger()) {
4644 MVT VT = LHS.getValueType();
4645 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00004646
4647 // Otherwise, we have to insert explicit sign or zero extends. Note
4648 // that we could insert sign extends for ALL conditions, but zero extend
4649 // is cheaper on many machines (an AND instead of two shifts), so prefer
4650 // it.
4651 switch (cast<CondCodeSDNode>(CC)->get()) {
4652 default: assert(0 && "Unknown integer comparison!");
4653 case ISD::SETEQ:
4654 case ISD::SETNE:
4655 case ISD::SETUGE:
4656 case ISD::SETUGT:
4657 case ISD::SETULE:
4658 case ISD::SETULT:
4659 // ALL of these operations will work if we either sign or zero extend
4660 // the operands (including the unsigned comparisons!). Zero extend is
4661 // usually a simpler/cheaper operation, so prefer it.
4662 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4663 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4664 break;
4665 case ISD::SETGE:
4666 case ISD::SETGT:
4667 case ISD::SETLT:
4668 case ISD::SETLE:
4669 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4670 DAG.getValueType(VT));
4671 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4672 DAG.getValueType(VT));
4673 break;
4674 }
4675 }
4676 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004677 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004678 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00004679 if (VT == MVT::f32 || VT == MVT::f64) {
4680 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00004681 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00004682 switch (cast<CondCodeSDNode>(CC)->get()) {
4683 case ISD::SETEQ:
4684 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00004685 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004686 break;
4687 case ISD::SETNE:
4688 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00004689 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004690 break;
4691 case ISD::SETGE:
4692 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00004693 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004694 break;
4695 case ISD::SETLT:
4696 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00004697 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004698 break;
4699 case ISD::SETLE:
4700 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00004701 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004702 break;
4703 case ISD::SETGT:
4704 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00004705 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004706 break;
4707 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00004708 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4709 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004710 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00004711 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004712 break;
4713 default:
Evan Cheng56966222007-01-12 02:11:51 +00004714 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004715 switch (cast<CondCodeSDNode>(CC)->get()) {
4716 case ISD::SETONE:
4717 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004718 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004719 // Fallthrough
4720 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004721 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004722 break;
4723 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004724 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004725 break;
4726 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004727 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004728 break;
4729 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004730 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004731 break;
Evan Cheng56966222007-01-12 02:11:51 +00004732 case ISD::SETUEQ:
4733 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004734 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004735 default: assert(0 && "Unsupported FP setcc!");
4736 }
4737 }
Duncan Sandsf9516202008-06-30 10:19:09 +00004738
Evan Cheng2b49c502006-12-15 02:59:56 +00004739 SDOperand Dummy;
Duncan Sands4bdcb612008-07-02 17:40:58 +00004740 SDOperand Ops[2] = { LHS, RHS };
4741 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004742 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004743 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004744 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004745 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004746 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00004747 CC);
Duncan Sands4bdcb612008-07-02 17:40:58 +00004748 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004749 false /*sign irrelevant*/, Dummy);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004750 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004751 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004752 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4753 Tmp2 = SDOperand();
4754 }
Evan Cheng21cacc42008-07-07 07:18:09 +00004755 LHS = LegalizeOp(Tmp1);
Evan Cheng2b49c502006-12-15 02:59:56 +00004756 RHS = Tmp2;
4757 return;
4758 }
4759
Nate Begeman750ac1b2006-02-01 07:19:44 +00004760 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
4761 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004762 ExpandOp(RHS, RHSLo, RHSHi);
4763 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4764
4765 if (VT==MVT::ppcf128) {
4766 // FIXME: This generated code sucks. We want to generate
4767 // FCMP crN, hi1, hi2
4768 // BNE crN, L:
4769 // FCMP crN, lo1, lo2
4770 // The following can be improved, but not that much.
Scott Michel5b8f82e2008-03-10 15:42:14 +00004771 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETEQ);
4772 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004773 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004774 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETNE);
4775 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004776 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4777 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
4778 Tmp2 = SDOperand();
4779 break;
4780 }
4781
4782 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004783 case ISD::SETEQ:
4784 case ISD::SETNE:
4785 if (RHSLo == RHSHi)
4786 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4787 if (RHSCST->isAllOnesValue()) {
4788 // Comparison to -1.
4789 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4790 Tmp2 = RHSLo;
4791 break;
4792 }
4793
4794 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4795 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4796 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4797 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4798 break;
4799 default:
4800 // If this is a comparison of the sign bit, just look at the top part.
4801 // X > -1, x < 0
4802 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4803 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004804 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00004805 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4806 CST->isAllOnesValue())) { // X > -1
4807 Tmp1 = LHSHi;
4808 Tmp2 = RHSHi;
4809 break;
4810 }
4811
4812 // FIXME: This generated code sucks.
4813 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004814 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004815 default: assert(0 && "Unknown integer setcc!");
4816 case ISD::SETLT:
4817 case ISD::SETULT: LowCC = ISD::SETULT; break;
4818 case ISD::SETGT:
4819 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4820 case ISD::SETLE:
4821 case ISD::SETULE: LowCC = ISD::SETULE; break;
4822 case ISD::SETGE:
4823 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4824 }
4825
4826 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4827 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4828 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4829
4830 // NOTE: on targets without efficient SELECT of bools, we can always use
4831 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004832 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004833 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
Nate Begeman5922f562008-03-14 00:53:31 +00004834 LowCC, false, DagCombineInfo);
Evan Cheng2e677812007-02-08 22:16:19 +00004835 if (!Tmp1.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004836 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4837 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004838 CCCode, false, DagCombineInfo);
4839 if (!Tmp2.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004840 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004841 RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00004842
4843 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4844 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
Dan Gohman002e5d02008-03-13 22:13:53 +00004845 if ((Tmp1C && Tmp1C->isNullValue()) ||
4846 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00004847 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4848 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00004849 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00004850 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4851 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4852 // low part is known false, returns high part.
4853 // For LE / GE, if high part is known false, ignore the low part.
4854 // For LT / GT, if high part is known true, ignore the low part.
4855 Tmp1 = Tmp2;
4856 Tmp2 = SDOperand();
4857 } else {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004858 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004859 ISD::SETEQ, false, DagCombineInfo);
4860 if (!Result.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004861 Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004862 ISD::SETEQ);
Evan Cheng2e677812007-02-08 22:16:19 +00004863 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4864 Result, Tmp1, Tmp2));
4865 Tmp1 = Result;
4866 Tmp2 = SDOperand();
4867 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004868 }
4869 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004870 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004871 LHS = Tmp1;
4872 RHS = Tmp2;
4873}
4874
Chris Lattner1401d152008-01-16 07:45:30 +00004875/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4876/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4877/// a load from the stack slot to DestVT, extending it if needed.
4878/// The resultant code need not be legal.
4879SDOperand SelectionDAGLegalize::EmitStackConvert(SDOperand SrcOp,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004880 MVT SlotVT,
4881 MVT DestVT) {
Chris Lattner35481892005-12-23 00:16:34 +00004882 // Create the stack frame object.
Mon P Wang364d73d2008-07-05 20:40:31 +00004883 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
4884 SrcOp.getValueType().getTypeForMVT());
4885 SDOperand FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
4886
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004887 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004888 int SPFI = StackPtrFI->getIndex();
Mon P Wang364d73d2008-07-05 20:40:31 +00004889
Duncan Sands83ec4b62008-06-06 12:08:01 +00004890 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
4891 unsigned SlotSize = SlotVT.getSizeInBits();
4892 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang364d73d2008-07-05 20:40:31 +00004893 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
4894 DestVT.getTypeForMVT());
Chris Lattner35481892005-12-23 00:16:34 +00004895
Chris Lattner1401d152008-01-16 07:45:30 +00004896 // Emit a store to the stack slot. Use a truncstore if the input value is
4897 // later than DestVT.
4898 SDOperand Store;
Mon P Wang364d73d2008-07-05 20:40:31 +00004899
Chris Lattner1401d152008-01-16 07:45:30 +00004900 if (SrcSize > SlotSize)
Dan Gohman69de1932008-02-06 22:27:42 +00004901 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Mon P Wang364d73d2008-07-05 20:40:31 +00004902 PseudoSourceValue::getFixedStack(), SPFI, SlotVT,
4903 false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004904 else {
4905 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman69de1932008-02-06 22:27:42 +00004906 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Mon P Wang364d73d2008-07-05 20:40:31 +00004907 PseudoSourceValue::getFixedStack(), SPFI,
4908 false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004909 }
4910
Chris Lattner35481892005-12-23 00:16:34 +00004911 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00004912 if (SlotSize == DestSize)
Mon P Wang364d73d2008-07-05 20:40:31 +00004913 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0, false, DestAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004914
4915 assert(SlotSize < DestSize && "Unknown extension!");
Mon P Wang364d73d2008-07-05 20:40:31 +00004916 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT,
4917 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00004918}
4919
Chris Lattner4352cc92006-04-04 17:23:26 +00004920SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
4921 // Create a vector sized/aligned stack slot, store the value to element #0,
4922 // then load the whole vector back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004923 SDOperand StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00004924
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004925 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004926 int SPFI = StackPtrFI->getIndex();
4927
Evan Cheng786225a2006-10-05 23:01:46 +00004928 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004929 PseudoSourceValue::getFixedStack(), SPFI);
Dan Gohman69de1932008-02-06 22:27:42 +00004930 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohman3069b872008-02-07 18:41:25 +00004931 PseudoSourceValue::getFixedStack(), SPFI);
Chris Lattner4352cc92006-04-04 17:23:26 +00004932}
4933
4934
Chris Lattnerce872152006-03-19 06:31:19 +00004935/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004936/// support the operation, but do support the resultant vector type.
Chris Lattnerce872152006-03-19 06:31:19 +00004937SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
4938
4939 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004940 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004941 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004942 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00004943 SDOperand SplatValue = Node->getOperand(0);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004944
4945 // FIXME: it would be far nicer to change this into map<SDOperand,uint64_t>
4946 // and use a bitmask instead of a list of elements.
Evan Cheng033e6812006-03-24 01:17:21 +00004947 std::map<SDOperand, std::vector<unsigned> > Values;
4948 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004949 bool isConstant = true;
4950 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4951 SplatValue.getOpcode() != ISD::UNDEF)
4952 isConstant = false;
4953
Evan Cheng033e6812006-03-24 01:17:21 +00004954 for (unsigned i = 1; i < NumElems; ++i) {
4955 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004956 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004957 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004958 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004959 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00004960 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004961
4962 // If this isn't a constant element or an undef, we can't use a constant
4963 // pool load.
4964 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4965 V.getOpcode() != ISD::UNDEF)
4966 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004967 }
4968
4969 if (isOnlyLowElement) {
4970 // If the low element is an undef too, then this whole things is an undef.
4971 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4972 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4973 // Otherwise, turn this into a scalar_to_vector node.
4974 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4975 Node->getOperand(0));
4976 }
4977
Chris Lattner2eb86532006-03-24 07:29:17 +00004978 // If all elements are constants, create a load from the constant pool.
4979 if (isConstant) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004980 MVT VT = Node->getValueType(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004981 std::vector<Constant*> CV;
4982 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4983 if (ConstantFPSDNode *V =
4984 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Chris Lattner02a260a2008-04-20 00:41:09 +00004985 CV.push_back(ConstantFP::get(V->getValueAPF()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004986 } else if (ConstantSDNode *V =
Chris Lattner02a260a2008-04-20 00:41:09 +00004987 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
4988 CV.push_back(ConstantInt::get(V->getAPIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004989 } else {
4990 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner02a260a2008-04-20 00:41:09 +00004991 const Type *OpNTy =
Duncan Sands83ec4b62008-06-06 12:08:01 +00004992 Node->getOperand(0).getValueType().getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00004993 CV.push_back(UndefValue::get(OpNTy));
4994 }
4995 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00004996 Constant *CP = ConstantVector::get(CV);
Chris Lattner2eb86532006-03-24 07:29:17 +00004997 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman69de1932008-02-06 22:27:42 +00004998 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00004999 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005000 }
5001
Chris Lattner87100e02006-03-20 01:52:29 +00005002 if (SplatValue.Val) { // Splat of one value?
5003 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005004 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5005 SDOperand Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
Evan Cheng033e6812006-03-24 01:17:21 +00005006 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005007 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
5008 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00005009
5010 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005011 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00005012 // Get the splatted value into the low element of a vector register.
5013 SDOperand LowValVec =
5014 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
5015
5016 // Return shuffle(LowValVec, undef, <0,0,0,0>)
5017 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
5018 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
5019 SplatMask);
5020 }
5021 }
5022
Evan Cheng033e6812006-03-24 01:17:21 +00005023 // If there are only two unique elements, we may be able to turn this into a
5024 // vector shuffle.
5025 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005026 // Get the two values in deterministic order.
5027 SDOperand Val1 = Node->getOperand(1);
5028 SDOperand Val2;
5029 std::map<SDOperand, std::vector<unsigned> >::iterator MI = Values.begin();
5030 if (MI->first != Val1)
5031 Val2 = MI->first;
5032 else
5033 Val2 = (++MI)->first;
5034
5035 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
5036 // vector shuffle has the undef vector on the RHS.
5037 if (Val1.getOpcode() == ISD::UNDEF)
5038 std::swap(Val1, Val2);
5039
Evan Cheng033e6812006-03-24 01:17:21 +00005040 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005041 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5042 MVT MaskEltVT = MaskVT.getVectorElementType();
Evan Cheng033e6812006-03-24 01:17:21 +00005043 std::vector<SDOperand> MaskVec(NumElems);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005044
5045 // Set elements of the shuffle mask for Val1.
5046 std::vector<unsigned> &Val1Elts = Values[Val1];
5047 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5048 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5049
5050 // Set elements of the shuffle mask for Val2.
5051 std::vector<unsigned> &Val2Elts = Values[Val2];
5052 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5053 if (Val2.getOpcode() != ISD::UNDEF)
5054 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5055 else
5056 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
5057
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005058 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
5059 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00005060
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005061 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005062 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
5063 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005064 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
5065 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
5066 SDOperand Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng033e6812006-03-24 01:17:21 +00005067
5068 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005069 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Evan Cheng033e6812006-03-24 01:17:21 +00005070 }
5071 }
Chris Lattnerce872152006-03-19 06:31:19 +00005072
5073 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5074 // aligned object on the stack, store each element into it, then load
5075 // the result as a vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005076 MVT VT = Node->getValueType(0);
Chris Lattnerce872152006-03-19 06:31:19 +00005077 // Create the stack frame object.
Chris Lattner85dd3be2007-10-15 17:48:57 +00005078 SDOperand FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005079
5080 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005081 SmallVector<SDOperand, 8> Stores;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005082 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Chris Lattnerce872152006-03-19 06:31:19 +00005083 // Store (in the right endianness) the elements to memory.
5084 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5085 // Ignore undef elements.
5086 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5087
Chris Lattner841c8822006-03-22 01:46:54 +00005088 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00005089
5090 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
5091 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5092
Evan Cheng786225a2006-10-05 23:01:46 +00005093 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00005094 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00005095 }
5096
5097 SDOperand StoreChain;
5098 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005099 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5100 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005101 else
5102 StoreChain = DAG.getEntryNode();
5103
5104 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00005105 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005106}
5107
Chris Lattner5b359c62005-04-02 04:00:59 +00005108void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
5109 SDOperand Op, SDOperand Amt,
5110 SDOperand &Lo, SDOperand &Hi) {
5111 // Expand the subcomponents.
5112 SDOperand LHSL, LHSH;
5113 ExpandOp(Op, LHSL, LHSH);
5114
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005115 SDOperand Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005116 MVT VT = LHSL.getValueType();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00005117 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005118 Hi = Lo.getValue(1);
5119}
5120
5121
Chris Lattnere34b3962005-01-19 04:19:40 +00005122/// ExpandShift - Try to find a clever way to expand this shift operation out to
5123/// smaller elements. If we can't find a way that is more efficient than a
5124/// libcall on this target, return false. Otherwise, return true with the
5125/// low-parts expanded into Lo and Hi.
5126bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
5127 SDOperand &Lo, SDOperand &Hi) {
5128 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5129 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005130
Duncan Sands83ec4b62008-06-06 12:08:01 +00005131 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005132 SDOperand ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005133 MVT ShTy = ShAmt.getValueType();
5134 unsigned ShBits = ShTy.getSizeInBits();
5135 unsigned VTBits = Op.getValueType().getSizeInBits();
5136 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005137
Chris Lattner7a3c8552007-10-14 20:35:12 +00005138 // Handle the case when Amt is an immediate.
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005139 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
5140 unsigned Cst = CN->getValue();
5141 // Expand the incoming operand to be shifted, so that we have its parts
5142 SDOperand InL, InH;
5143 ExpandOp(Op, InL, InH);
5144 switch(Opc) {
5145 case ISD::SHL:
5146 if (Cst > VTBits) {
5147 Lo = DAG.getConstant(0, NVT);
5148 Hi = DAG.getConstant(0, NVT);
5149 } else if (Cst > NVTBits) {
5150 Lo = DAG.getConstant(0, NVT);
5151 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005152 } else if (Cst == NVTBits) {
5153 Lo = DAG.getConstant(0, NVT);
5154 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005155 } else {
5156 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5157 Hi = DAG.getNode(ISD::OR, NVT,
5158 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5159 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5160 }
5161 return true;
5162 case ISD::SRL:
5163 if (Cst > VTBits) {
5164 Lo = DAG.getConstant(0, NVT);
5165 Hi = DAG.getConstant(0, NVT);
5166 } else if (Cst > NVTBits) {
5167 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5168 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005169 } else if (Cst == NVTBits) {
5170 Lo = InH;
5171 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005172 } else {
5173 Lo = DAG.getNode(ISD::OR, NVT,
5174 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5175 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5176 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5177 }
5178 return true;
5179 case ISD::SRA:
5180 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005181 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005182 DAG.getConstant(NVTBits-1, ShTy));
5183 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005184 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005185 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005186 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005187 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005188 } else if (Cst == NVTBits) {
5189 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00005190 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005191 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005192 } else {
5193 Lo = DAG.getNode(ISD::OR, NVT,
5194 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5195 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5196 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5197 }
5198 return true;
5199 }
5200 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005201
5202 // Okay, the shift amount isn't constant. However, if we can tell that it is
5203 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005204 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5205 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005206 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005207
Dan Gohman9e255b72008-02-22 01:12:31 +00005208 // If we know that if any of the high bits of the shift amount are one, then
5209 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005210 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005211 // Mask out the high bit, which we know is set.
5212 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005213 DAG.getConstant(~Mask, Amt.getValueType()));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005214
5215 // Expand the incoming operand to be shifted, so that we have its parts
5216 SDOperand InL, InH;
5217 ExpandOp(Op, InL, InH);
5218 switch(Opc) {
5219 case ISD::SHL:
5220 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5221 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5222 return true;
5223 case ISD::SRL:
5224 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5225 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5226 return true;
5227 case ISD::SRA:
5228 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5229 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5230 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5231 return true;
5232 }
5233 }
5234
Dan Gohman9e255b72008-02-22 01:12:31 +00005235 // If we know that the high bits of the shift amount are all zero, then we can
5236 // do this as a couple of simple shifts.
5237 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005238 // Compute 32-amt.
5239 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
5240 DAG.getConstant(NVTBits, Amt.getValueType()),
5241 Amt);
5242
5243 // Expand the incoming operand to be shifted, so that we have its parts
5244 SDOperand InL, InH;
5245 ExpandOp(Op, InL, InH);
5246 switch(Opc) {
5247 case ISD::SHL:
5248 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5249 Hi = DAG.getNode(ISD::OR, NVT,
5250 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5251 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5252 return true;
5253 case ISD::SRL:
5254 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5255 Lo = DAG.getNode(ISD::OR, NVT,
5256 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5257 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5258 return true;
5259 case ISD::SRA:
5260 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5261 Lo = DAG.getNode(ISD::OR, NVT,
5262 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5263 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5264 return true;
5265 }
5266 }
5267
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005268 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005269}
Chris Lattner77e77a62005-01-21 06:05:23 +00005270
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005271
Chris Lattner77e77a62005-01-21 06:05:23 +00005272// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5273// does not fit into a register, return the lo part and set the hi part to the
5274// by-reg argument. If it does fit into a single register, return the result
5275// and leave the Hi part unset.
Duncan Sands460a14e2008-04-12 17:14:18 +00005276SDOperand SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Reid Spencer47857812006-12-31 05:55:36 +00005277 bool isSigned, SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005278 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5279 // The input chain to this libcall is the entry node of the function.
5280 // Legalizing the call will automatically add the previous call to the
5281 // dependence.
5282 SDOperand InChain = DAG.getEntryNode();
5283
Chris Lattner77e77a62005-01-21 06:05:23 +00005284 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005285 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005286 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005287 MVT ArgVT = Node->getOperand(i).getValueType();
5288 const Type *ArgTy = ArgVT.getTypeForMVT();
Reid Spencer47857812006-12-31 05:55:36 +00005289 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005290 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005291 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005292 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005293 }
Duncan Sands460a14e2008-04-12 17:14:18 +00005294 SDOperand Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
5295 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005296
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005297 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005298 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005299 std::pair<SDOperand,SDOperand> CallInfo =
Duncan Sands00fee652008-02-14 17:28:50 +00005300 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, CallingConv::C,
5301 false, Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005302
Chris Lattner6831a812006-02-13 09:18:02 +00005303 // Legalize the call sequence, starting with the chain. This will advance
5304 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5305 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5306 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00005307 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005308 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005309 default: assert(0 && "Unknown thing");
5310 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005311 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005312 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005313 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005314 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005315 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005316 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005317 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005318}
5319
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005320
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005321/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5322///
Chris Lattner77e77a62005-01-21 06:05:23 +00005323SDOperand SelectionDAGLegalize::
Duncan Sands83ec4b62008-06-06 12:08:01 +00005324ExpandIntToFP(bool isSigned, MVT DestTy, SDOperand Source) {
5325 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005326 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005327
Evan Cheng9845eb52008-04-01 02:18:22 +00005328 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5329 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005330 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005331 // incoming integer is set. To handle this, we dynamically test to see if
5332 // it is set, and, if so, add a fudge factor.
Dan Gohman034f60e2008-03-11 01:59:03 +00005333 SDOperand Hi;
5334 if (ExpandSource) {
5335 SDOperand Lo;
5336 ExpandOp(Source, Lo, Hi);
5337 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5338 } else {
5339 // The comparison for the sign bit will use the entire operand.
5340 Hi = Source;
5341 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005342
Chris Lattner66de05b2005-05-13 04:45:13 +00005343 // If this is unsigned, and not supported, first perform the conversion to
5344 // signed, then adjust the result if the sign bit is set.
Dan Gohman034f60e2008-03-11 01:59:03 +00005345 SDOperand SignedConv = ExpandIntToFP(true, DestTy, Source);
Chris Lattner66de05b2005-05-13 04:45:13 +00005346
Scott Michel5b8f82e2008-03-10 15:42:14 +00005347 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005348 DAG.getConstant(0, Hi.getValueType()),
5349 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005350 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005351 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5352 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005353 uint64_t FF = 0x5f800000ULL;
5354 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohman34bc1782008-03-05 02:07:31 +00005355 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005356
Chris Lattner5839bf22005-08-26 17:15:30 +00005357 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00005358 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5359 SDOperand FudgeInReg;
5360 if (DestTy == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005361 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005362 PseudoSourceValue::getConstantPool(), 0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005363 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005364 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005365 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005366 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005367 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005368 MVT::f32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005369 else
5370 assert(0 && "Unexpected conversion");
5371
Duncan Sands83ec4b62008-06-06 12:08:01 +00005372 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005373 if (SCVT != DestTy) {
5374 // Destination type needs to be expanded as well. The FADD now we are
5375 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005376 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5377 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dan Gohmand91446d2008-03-05 01:08:17 +00005378 SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005379 SignedConv, SignedConv.getValue(1));
5380 }
5381 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5382 }
Chris Lattner473a9902005-09-29 06:44:39 +00005383 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005384 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005385
Chris Lattnera88a2602005-05-14 05:33:54 +00005386 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00005387 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00005388 default: assert(0 && "This action not implemented for this operation!");
5389 case TargetLowering::Legal:
5390 case TargetLowering::Expand:
5391 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005392 case TargetLowering::Custom: {
5393 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
5394 Source), DAG);
5395 if (NV.Val)
5396 return LegalizeOp(NV);
5397 break; // The target decided this was legal after all
5398 }
Chris Lattnera88a2602005-05-14 05:33:54 +00005399 }
5400
Chris Lattner13689e22005-05-12 07:00:44 +00005401 // Expand the source, then glue it back together for the call. We must expand
5402 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00005403 if (ExpandSource) {
5404 SDOperand SrcLo, SrcHi;
5405 ExpandOp(Source, SrcLo, SrcHi);
5406 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5407 }
Chris Lattner13689e22005-05-12 07:00:44 +00005408
Evan Cheng56966222007-01-12 02:11:51 +00005409 RTLIB::Libcall LC;
Evan Cheng110cf482008-04-01 01:50:16 +00005410 if (SourceVT == MVT::i32) {
5411 if (DestTy == MVT::f32)
Evan Chengdb45d1c2008-04-01 02:00:09 +00005412 LC = isSigned ? RTLIB::SINTTOFP_I32_F32 : RTLIB::UINTTOFP_I32_F32;
Evan Cheng110cf482008-04-01 01:50:16 +00005413 else {
5414 assert(DestTy == MVT::f64 && "Unknown fp value type!");
5415 LC = isSigned ? RTLIB::SINTTOFP_I32_F64 : RTLIB::UINTTOFP_I32_F64;
5416 }
5417 } else if (SourceVT == MVT::i64) {
Dan Gohmand91446d2008-03-05 01:08:17 +00005418 if (DestTy == MVT::f32)
5419 LC = RTLIB::SINTTOFP_I64_F32;
Dan Gohman034f60e2008-03-11 01:59:03 +00005420 else if (DestTy == MVT::f64)
Dan Gohmand91446d2008-03-05 01:08:17 +00005421 LC = RTLIB::SINTTOFP_I64_F64;
Dan Gohman034f60e2008-03-11 01:59:03 +00005422 else if (DestTy == MVT::f80)
5423 LC = RTLIB::SINTTOFP_I64_F80;
5424 else {
5425 assert(DestTy == MVT::ppcf128 && "Unknown fp value type!");
5426 LC = RTLIB::SINTTOFP_I64_PPCF128;
Dan Gohmand91446d2008-03-05 01:08:17 +00005427 }
5428 } else if (SourceVT == MVT::i128) {
5429 if (DestTy == MVT::f32)
5430 LC = RTLIB::SINTTOFP_I128_F32;
5431 else if (DestTy == MVT::f64)
5432 LC = RTLIB::SINTTOFP_I128_F64;
5433 else if (DestTy == MVT::f80)
5434 LC = RTLIB::SINTTOFP_I128_F80;
5435 else {
5436 assert(DestTy == MVT::ppcf128 && "Unknown fp value type!");
5437 LC = RTLIB::SINTTOFP_I128_PPCF128;
5438 }
5439 } else {
5440 assert(0 && "Unknown int value type");
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005441 }
Chris Lattner6831a812006-02-13 09:18:02 +00005442
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005443 assert(TLI.getLibcallName(LC) && "Don't know how to expand this SINT_TO_FP!");
Chris Lattner6831a812006-02-13 09:18:02 +00005444 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
Dan Gohmana2e94852008-03-10 23:03:31 +00005445 SDOperand HiPart;
Duncan Sands460a14e2008-04-12 17:14:18 +00005446 SDOperand Result = ExpandLibCall(LC, Source.Val, isSigned, HiPart);
Evan Cheng110cf482008-04-01 01:50:16 +00005447 if (Result.getValueType() != DestTy && HiPart.Val)
Dan Gohmana2e94852008-03-10 23:03:31 +00005448 Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5449 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005450}
Misha Brukmanedf128a2005-04-21 22:36:52 +00005451
Chris Lattner22cde6a2006-01-28 08:25:58 +00005452/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5453/// INT_TO_FP operation of the specified operand when the target requests that
5454/// we expand it. At this point, we know that the result and operand types are
5455/// legal for the target.
5456SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5457 SDOperand Op0,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005458 MVT DestVT) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005459 if (Op0.getValueType() == MVT::i32) {
5460 // simple 32-bit [signed|unsigned] integer to float/double expansion
5461
Chris Lattner23594d42008-01-16 07:03:22 +00005462 // Get the stack frame index of a 8 byte buffer.
5463 SDOperand StackSlot = DAG.CreateStackTemporary(MVT::f64);
5464
Chris Lattner22cde6a2006-01-28 08:25:58 +00005465 // word offset constant for Hi/Lo address computation
5466 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
5467 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00005468 SDOperand Hi = StackSlot;
5469 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
5470 if (TLI.isLittleEndian())
5471 std::swap(Hi, Lo);
5472
Chris Lattner22cde6a2006-01-28 08:25:58 +00005473 // if signed map to unsigned space
5474 SDOperand Op0Mapped;
5475 if (isSigned) {
5476 // constant used to invert sign bit (signed to unsigned mapping)
5477 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
5478 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5479 } else {
5480 Op0Mapped = Op0;
5481 }
5482 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00005483 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005484 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005485 // initial hi portion of constructed double
5486 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
5487 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00005488 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005489 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00005490 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005491 // FP constant to bias correct the final result
5492 SDOperand Bias = DAG.getConstantFP(isSigned ?
5493 BitsToDouble(0x4330000080000000ULL)
5494 : BitsToDouble(0x4330000000000000ULL),
5495 MVT::f64);
5496 // subtract the bias
5497 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
5498 // final result
5499 SDOperand Result;
5500 // handle final rounding
5501 if (DestVT == MVT::f64) {
5502 // do nothing
5503 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00005504 } else if (DestVT.bitsLT(MVT::f64)) {
Chris Lattner0bd48932008-01-17 07:00:52 +00005505 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5506 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005507 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005508 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005509 }
5510 return Result;
5511 }
5512 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
5513 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
5514
Scott Michel5b8f82e2008-03-10 15:42:14 +00005515 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005516 DAG.getConstant(0, Op0.getValueType()),
5517 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005518 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005519 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5520 SignSet, Four, Zero);
5521
5522 // If the sign bit of the integer is set, the large number will be treated
5523 // as a negative number. To counteract this, the dynamic code adds an
5524 // offset depending on the data type.
5525 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005526 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005527 default: assert(0 && "Unsupported integer type!");
5528 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5529 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5530 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5531 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5532 }
5533 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005534 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005535
5536 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
5537 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5538 SDOperand FudgeInReg;
5539 if (DestVT == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005540 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005541 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005542 else {
Dan Gohman69de1932008-02-06 22:27:42 +00005543 FudgeInReg =
5544 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5545 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005546 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005547 MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00005548 }
5549
5550 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5551}
5552
5553/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5554/// *INT_TO_FP operation of the specified operand when the target requests that
5555/// we promote it. At this point, we know that the result and operand types are
5556/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5557/// operation that takes a larger input.
5558SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005559 MVT DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005560 bool isSigned) {
5561 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005562 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005563
5564 unsigned OpToUse = 0;
5565
5566 // Scan for the appropriate larger type to use.
5567 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005568 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
5569 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005570
5571 // If the target supports SINT_TO_FP of this type, use it.
5572 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5573 default: break;
5574 case TargetLowering::Legal:
5575 if (!TLI.isTypeLegal(NewInTy))
5576 break; // Can't use this datatype.
5577 // FALL THROUGH.
5578 case TargetLowering::Custom:
5579 OpToUse = ISD::SINT_TO_FP;
5580 break;
5581 }
5582 if (OpToUse) break;
5583 if (isSigned) continue;
5584
5585 // If the target supports UINT_TO_FP of this type, use it.
5586 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5587 default: break;
5588 case TargetLowering::Legal:
5589 if (!TLI.isTypeLegal(NewInTy))
5590 break; // Can't use this datatype.
5591 // FALL THROUGH.
5592 case TargetLowering::Custom:
5593 OpToUse = ISD::UINT_TO_FP;
5594 break;
5595 }
5596 if (OpToUse) break;
5597
5598 // Otherwise, try a larger type.
5599 }
5600
5601 // Okay, we found the operation and type to use. Zero extend our input to the
5602 // desired type then run the operation on it.
5603 return DAG.getNode(OpToUse, DestVT,
5604 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5605 NewInTy, LegalOp));
5606}
5607
5608/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5609/// FP_TO_*INT operation of the specified operand when the target requests that
5610/// we promote it. At this point, we know that the result and operand types are
5611/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5612/// operation that returns a larger result.
5613SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005614 MVT DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005615 bool isSigned) {
5616 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005617 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005618
5619 unsigned OpToUse = 0;
5620
5621 // Scan for the appropriate larger type to use.
5622 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005623 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
5624 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005625
5626 // If the target supports FP_TO_SINT returning this type, use it.
5627 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5628 default: break;
5629 case TargetLowering::Legal:
5630 if (!TLI.isTypeLegal(NewOutTy))
5631 break; // Can't use this datatype.
5632 // FALL THROUGH.
5633 case TargetLowering::Custom:
5634 OpToUse = ISD::FP_TO_SINT;
5635 break;
5636 }
5637 if (OpToUse) break;
5638
5639 // If the target supports FP_TO_UINT of this type, use it.
5640 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5641 default: break;
5642 case TargetLowering::Legal:
5643 if (!TLI.isTypeLegal(NewOutTy))
5644 break; // Can't use this datatype.
5645 // FALL THROUGH.
5646 case TargetLowering::Custom:
5647 OpToUse = ISD::FP_TO_UINT;
5648 break;
5649 }
5650 if (OpToUse) break;
5651
5652 // Otherwise, try a larger type.
5653 }
5654
Chris Lattner27a6c732007-11-24 07:07:01 +00005655
5656 // Okay, we found the operation and type to use.
5657 SDOperand Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00005658
Chris Lattner27a6c732007-11-24 07:07:01 +00005659 // If the operation produces an invalid type, it must be custom lowered. Use
5660 // the target lowering hooks to expand it. Just keep the low part of the
5661 // expanded operation, we know that we're truncating anyway.
5662 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands126d9072008-07-04 11:47:58 +00005663 Operation = SDOperand(TLI.ReplaceNodeResults(Operation.Val, DAG), 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00005664 assert(Operation.Val && "Didn't return anything");
5665 }
Duncan Sands126d9072008-07-04 11:47:58 +00005666
Chris Lattner27a6c732007-11-24 07:07:01 +00005667 // Truncate the result of the extended FP_TO_*INT operation to the desired
5668 // size.
5669 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005670}
5671
5672/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5673///
5674SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005675 MVT VT = Op.getValueType();
5676 MVT SHVT = TLI.getShiftAmountTy();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005677 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005678 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005679 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5680 case MVT::i16:
5681 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5682 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5683 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5684 case MVT::i32:
5685 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5686 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5687 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5688 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5689 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5690 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5691 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5692 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5693 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5694 case MVT::i64:
5695 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5696 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5697 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5698 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5699 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5700 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5701 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5702 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5703 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5704 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5705 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5706 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5707 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5708 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5709 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5710 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5711 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5712 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5713 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5714 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5715 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5716 }
5717}
5718
5719/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5720///
5721SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
5722 switch (Opc) {
5723 default: assert(0 && "Cannot expand this yet!");
5724 case ISD::CTPOP: {
5725 static const uint64_t mask[6] = {
5726 0x5555555555555555ULL, 0x3333333333333333ULL,
5727 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5728 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5729 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005730 MVT VT = Op.getValueType();
5731 MVT ShVT = TLI.getShiftAmountTy();
5732 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005733 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5734 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
5735 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
5736 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5737 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5738 DAG.getNode(ISD::AND, VT,
5739 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5740 }
5741 return Op;
5742 }
5743 case ISD::CTLZ: {
5744 // for now, we do this:
5745 // x = x | (x >> 1);
5746 // x = x | (x >> 2);
5747 // ...
5748 // x = x | (x >>16);
5749 // x = x | (x >>32); // for 64-bit input
5750 // return popcount(~x);
5751 //
5752 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005753 MVT VT = Op.getValueType();
5754 MVT ShVT = TLI.getShiftAmountTy();
5755 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005756 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5757 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5758 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5759 }
5760 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5761 return DAG.getNode(ISD::CTPOP, VT, Op);
5762 }
5763 case ISD::CTTZ: {
5764 // for now, we use: { return popcount(~x & (x - 1)); }
5765 // unless the target has ctlz but not ctpop, in which case we use:
5766 // { return 32 - nlz(~x & (x-1)); }
5767 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005768 MVT VT = Op.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005769 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
5770 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
5771 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5772 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5773 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5774 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5775 TLI.isOperationLegal(ISD::CTLZ, VT))
5776 return DAG.getNode(ISD::SUB, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005777 DAG.getConstant(VT.getSizeInBits(), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005778 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5779 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5780 }
5781 }
5782}
Chris Lattnere34b3962005-01-19 04:19:40 +00005783
Chris Lattner3e928bb2005-01-07 07:47:09 +00005784/// ExpandOp - Expand the specified SDOperand into its two component pieces
5785/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5786/// LegalizeNodes map is filled in for any results that are not expanded, the
5787/// ExpandedNodes map is filled in for any results that are expanded, and the
5788/// Lo/Hi values are returned.
5789void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00005790 MVT VT = Op.getValueType();
5791 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005792 SDNode *Node = Op.Val;
5793 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00005794 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00005795 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00005796
Chris Lattner6fdcb252005-09-02 20:32:45 +00005797 // See if we already expanded it.
Roman Levenstein9cac5252008-04-16 16:15:27 +00005798 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00005799 = ExpandedNodes.find(Op);
5800 if (I != ExpandedNodes.end()) {
5801 Lo = I->second.first;
5802 Hi = I->second.second;
5803 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005804 }
5805
Chris Lattner3e928bb2005-01-07 07:47:09 +00005806 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005807 case ISD::CopyFromReg:
5808 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005809 case ISD::FP_ROUND_INREG:
5810 if (VT == MVT::ppcf128 &&
5811 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5812 TargetLowering::Custom) {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005813 SDOperand SrcLo, SrcHi, Src;
5814 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5815 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
5816 SDOperand Result = TLI.LowerOperation(
5817 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005818 assert(Result.Val->getOpcode() == ISD::BUILD_PAIR);
5819 Lo = Result.Val->getOperand(0);
5820 Hi = Result.Val->getOperand(1);
5821 break;
5822 }
5823 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00005824 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005825#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005826 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005827#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00005828 assert(0 && "Do not know how to expand this operator!");
5829 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00005830 case ISD::EXTRACT_ELEMENT:
5831 ExpandOp(Node->getOperand(0), Lo, Hi);
5832 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
5833 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00005834 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00005835 case ISD::EXTRACT_VECTOR_ELT:
5836 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5837 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5838 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5839 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005840 case ISD::UNDEF:
5841 Lo = DAG.getNode(ISD::UNDEF, NVT);
5842 Hi = DAG.getNode(ISD::UNDEF, NVT);
5843 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005844 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005845 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00005846 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5847 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5848 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005849 break;
5850 }
Evan Cheng00495212006-12-12 21:32:44 +00005851 case ISD::ConstantFP: {
5852 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00005853 if (CFP->getValueType(0) == MVT::ppcf128) {
5854 APInt api = CFP->getValueAPF().convertToAPInt();
5855 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5856 MVT::f64);
5857 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5858 MVT::f64);
5859 break;
5860 }
Evan Cheng279101e2006-12-12 22:19:28 +00005861 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005862 if (getTypeAction(Lo.getValueType()) == Expand)
5863 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005864 break;
5865 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005866 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005867 // Return the operands.
5868 Lo = Node->getOperand(0);
5869 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005870 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005871
5872 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00005873 if (Node->getNumValues() == 1) {
5874 ExpandOp(Op.getOperand(0), Lo, Hi);
5875 break;
5876 }
Chris Lattner27a6c732007-11-24 07:07:01 +00005877 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
5878 assert(Op.ResNo == 0 && Node->getNumValues() == 2 &&
5879 Op.getValue(1).getValueType() == MVT::Other &&
5880 "unhandled MERGE_VALUES");
5881 ExpandOp(Op.getOperand(0), Lo, Hi);
5882 // Remember that we legalized the chain.
5883 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5884 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005885
5886 case ISD::SIGN_EXTEND_INREG:
5887 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005888 // sext_inreg the low part if needed.
5889 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5890
5891 // The high part gets the sign extension from the lo-part. This handles
5892 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005893 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005894 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00005895 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005896 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005897
Nate Begemand88fc032006-01-14 03:14:10 +00005898 case ISD::BSWAP: {
5899 ExpandOp(Node->getOperand(0), Lo, Hi);
5900 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
5901 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5902 Lo = TempLo;
5903 break;
5904 }
5905
Chris Lattneredb1add2005-05-11 04:51:16 +00005906 case ISD::CTPOP:
5907 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005908 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5909 DAG.getNode(ISD::CTPOP, NVT, Lo),
5910 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005911 Hi = DAG.getConstant(0, NVT);
5912 break;
5913
Chris Lattner39a8f332005-05-12 19:05:01 +00005914 case ISD::CTLZ: {
5915 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005916 ExpandOp(Node->getOperand(0), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005917 SDOperand BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Chris Lattner39a8f332005-05-12 19:05:01 +00005918 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Scott Michel5b8f82e2008-03-10 15:42:14 +00005919 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005920 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005921 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
5922 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5923
5924 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5925 Hi = DAG.getConstant(0, NVT);
5926 break;
5927 }
5928
5929 case ISD::CTTZ: {
5930 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005931 ExpandOp(Node->getOperand(0), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005932 SDOperand BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Chris Lattner39a8f332005-05-12 19:05:01 +00005933 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Scott Michel5b8f82e2008-03-10 15:42:14 +00005934 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005935 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005936 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
5937 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5938
5939 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5940 Hi = DAG.getConstant(0, NVT);
5941 break;
5942 }
Chris Lattneredb1add2005-05-11 04:51:16 +00005943
Nate Begemanacc398c2006-01-25 18:21:52 +00005944 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005945 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5946 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00005947 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5948 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5949
5950 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005951 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00005952 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00005953 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00005954 std::swap(Lo, Hi);
5955 break;
5956 }
5957
Chris Lattner3e928bb2005-01-07 07:47:09 +00005958 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00005959 LoadSDNode *LD = cast<LoadSDNode>(Node);
5960 SDOperand Ch = LD->getChain(); // Legalize the chain.
5961 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
5962 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005963 int SVOffset = LD->getSrcValueOffset();
5964 unsigned Alignment = LD->getAlignment();
5965 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005966
Evan Cheng466685d2006-10-09 20:57:25 +00005967 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005968 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5969 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00005970 if (VT == MVT::f32 || VT == MVT::f64) {
5971 // f32->i32 or f64->i64 one to one expansion.
5972 // Remember that we legalized the chain.
5973 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00005974 // Recursively expand the new load.
5975 if (getTypeAction(NVT) == Expand)
5976 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005977 break;
5978 }
Chris Lattnerec39a452005-01-19 18:02:17 +00005979
Evan Cheng466685d2006-10-09 20:57:25 +00005980 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005981 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Evan Cheng466685d2006-10-09 20:57:25 +00005982 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00005983 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00005984 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00005985 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005986 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5987 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00005988
Evan Cheng466685d2006-10-09 20:57:25 +00005989 // Build a factor node to remember that this load is independent of the
5990 // other one.
5991 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5992 Hi.getValue(1));
5993
5994 // Remember that we legalized the chain.
5995 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00005996 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00005997 std::swap(Lo, Hi);
5998 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005999 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00006000
Dale Johannesenb6210fc2007-10-19 20:29:00 +00006001 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6002 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00006003 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
6004 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006005 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00006006 // Remember that we legalized the chain.
6007 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
6008 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
6009 break;
6010 }
Evan Cheng466685d2006-10-09 20:57:25 +00006011
6012 if (EVT == NVT)
6013 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006014 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006015 else
6016 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006017 SVOffset, EVT, isVolatile,
6018 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006019
6020 // Remember that we legalized the chain.
6021 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
6022
6023 if (ExtType == ISD::SEXTLOAD) {
6024 // The high part is obtained by SRA'ing all but one of the bits of the
6025 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006026 unsigned LoSize = Lo.getValueType().getSizeInBits();
Evan Cheng466685d2006-10-09 20:57:25 +00006027 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6028 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6029 } else if (ExtType == ISD::ZEXTLOAD) {
6030 // The high part is just a zero.
6031 Hi = DAG.getConstant(0, NVT);
6032 } else /* if (ExtType == ISD::EXTLOAD) */ {
6033 // The high part is undefined.
6034 Hi = DAG.getNode(ISD::UNDEF, NVT);
6035 }
6036 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006037 break;
6038 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006039 case ISD::AND:
6040 case ISD::OR:
6041 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
6042 SDOperand LL, LH, RL, RH;
6043 ExpandOp(Node->getOperand(0), LL, LH);
6044 ExpandOp(Node->getOperand(1), RL, RH);
6045 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
6046 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
6047 break;
6048 }
6049 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00006050 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006051 ExpandOp(Node->getOperand(1), LL, LH);
6052 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006053 if (getTypeAction(NVT) == Expand)
6054 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00006055 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006056 if (VT != MVT::f32)
6057 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006058 break;
6059 }
Nate Begeman9373a812005-08-10 20:51:12 +00006060 case ISD::SELECT_CC: {
6061 SDOperand TL, TH, FL, FH;
6062 ExpandOp(Node->getOperand(2), TL, TH);
6063 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006064 if (getTypeAction(NVT) == Expand)
6065 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00006066 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6067 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006068 if (VT != MVT::f32)
6069 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6070 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006071 break;
6072 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006073 case ISD::ANY_EXTEND:
6074 // The low part is any extension of the input (which degenerates to a copy).
6075 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
6076 // The high part is undefined.
6077 Hi = DAG.getNode(ISD::UNDEF, NVT);
6078 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006079 case ISD::SIGN_EXTEND: {
6080 // The low part is just a sign extension of the input (which degenerates to
6081 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006082 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006083
Chris Lattner3e928bb2005-01-07 07:47:09 +00006084 // The high part is obtained by SRA'ing all but one of the bits of the lo
6085 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006086 unsigned LoSize = Lo.getValueType().getSizeInBits();
Chris Lattner8137c9e2006-01-28 05:07:51 +00006087 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6088 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006089 break;
6090 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006091 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006092 // The low part is just a zero extension of the input (which degenerates to
6093 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006094 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006095
Chris Lattner3e928bb2005-01-07 07:47:09 +00006096 // The high part is just a zero.
6097 Hi = DAG.getConstant(0, NVT);
6098 break;
Chris Lattner35481892005-12-23 00:16:34 +00006099
Chris Lattner4c948eb2007-02-13 23:55:16 +00006100 case ISD::TRUNCATE: {
6101 // The input value must be larger than this value. Expand *it*.
6102 SDOperand NewLo;
6103 ExpandOp(Node->getOperand(0), NewLo, Hi);
6104
6105 // The low part is now either the right size, or it is closer. If not the
6106 // right size, make an illegal truncate so we recursively expand it.
6107 if (NewLo.getValueType() != Node->getValueType(0))
6108 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6109 ExpandOp(NewLo, Lo, Hi);
6110 break;
6111 }
6112
Chris Lattner35481892005-12-23 00:16:34 +00006113 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006114 SDOperand Tmp;
6115 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6116 // If the target wants to, allow it to lower this itself.
6117 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6118 case Expand: assert(0 && "cannot expand FP!");
6119 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6120 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6121 }
6122 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6123 }
6124
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006125 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006126 if (VT == MVT::f32 || VT == MVT::f64) {
6127 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006128 if (getTypeAction(NVT) == Expand)
6129 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006130 break;
6131 }
6132
6133 // If source operand will be expanded to the same type as VT, i.e.
6134 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006135 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006136 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6137 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006138 break;
6139 }
6140
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006141 // Turn this into a load/store pair by default.
6142 if (Tmp.Val == 0)
Chris Lattner1401d152008-01-16 07:45:30 +00006143 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006144
Chris Lattner35481892005-12-23 00:16:34 +00006145 ExpandOp(Tmp, Lo, Hi);
6146 break;
6147 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006148
Chris Lattner27a6c732007-11-24 07:07:01 +00006149 case ISD::READCYCLECOUNTER: {
Chris Lattner308575b2005-11-20 22:56:56 +00006150 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6151 TargetLowering::Custom &&
6152 "Must custom expand ReadCycleCounter");
Chris Lattner27a6c732007-11-24 07:07:01 +00006153 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6154 assert(Tmp.Val && "Node must be custom expanded!");
6155 ExpandOp(Tmp.getValue(0), Lo, Hi);
Chris Lattner308575b2005-11-20 22:56:56 +00006156 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006157 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006158 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006159 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006160
Mon P Wang28873102008-06-25 08:15:39 +00006161 case ISD::ATOMIC_CMP_SWAP: {
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006162 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6163 assert(Tmp.Val && "Node must be custom expanded!");
6164 ExpandOp(Tmp.getValue(0), Lo, Hi);
6165 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
6166 LegalizeOp(Tmp.getValue(1)));
6167 break;
6168 }
6169
6170
6171
Chris Lattner4e6c7462005-01-08 19:27:05 +00006172 // These operators cannot be expanded directly, emit them as calls to
6173 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006174 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006175 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00006176 SDOperand Op;
6177 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6178 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006179 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6180 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006181 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006182
Chris Lattnerf20d1832005-07-30 01:40:57 +00006183 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6184
Chris Lattner80a3e942005-07-29 00:33:32 +00006185 // Now that the custom expander is done, expand the result, which is still
6186 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00006187 if (Op.Val) {
6188 ExpandOp(Op, Lo, Hi);
6189 break;
6190 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006191 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006192
Dale Johannesen161e8972007-10-05 20:04:43 +00006193 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmana2e94852008-03-10 23:03:31 +00006194 if (VT == MVT::i64) {
6195 if (Node->getOperand(0).getValueType() == MVT::f32)
6196 LC = RTLIB::FPTOSINT_F32_I64;
6197 else if (Node->getOperand(0).getValueType() == MVT::f64)
6198 LC = RTLIB::FPTOSINT_F64_I64;
6199 else if (Node->getOperand(0).getValueType() == MVT::f80)
6200 LC = RTLIB::FPTOSINT_F80_I64;
6201 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6202 LC = RTLIB::FPTOSINT_PPCF128_I64;
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 if (VT == MVT::i128) {
6205 if (Node->getOperand(0).getValueType() == MVT::f32)
6206 LC = RTLIB::FPTOSINT_F32_I128;
6207 else if (Node->getOperand(0).getValueType() == MVT::f64)
6208 LC = RTLIB::FPTOSINT_F64_I128;
6209 else if (Node->getOperand(0).getValueType() == MVT::f80)
6210 LC = RTLIB::FPTOSINT_F80_I128;
6211 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6212 LC = RTLIB::FPTOSINT_PPCF128_I128;
Duncan Sands460a14e2008-04-12 17:14:18 +00006213 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006214 } else {
6215 assert(0 && "Unexpected uint-to-fp conversion!");
6216 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006217 break;
Evan Cheng56966222007-01-12 02:11:51 +00006218 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006219
Evan Cheng56966222007-01-12 02:11:51 +00006220 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006221 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006222 SDOperand Op;
6223 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6224 case Expand: assert(0 && "cannot expand FP!");
6225 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6226 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6227 }
6228
6229 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6230
6231 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00006232 if (Op.Val) {
6233 ExpandOp(Op, Lo, Hi);
6234 break;
6235 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006236 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006237
Evan Chengdaccea182007-10-05 01:09:32 +00006238 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Dan Gohmana2e94852008-03-10 23:03:31 +00006239 if (VT == MVT::i64) {
6240 if (Node->getOperand(0).getValueType() == MVT::f32)
6241 LC = RTLIB::FPTOUINT_F32_I64;
6242 else if (Node->getOperand(0).getValueType() == MVT::f64)
6243 LC = RTLIB::FPTOUINT_F64_I64;
6244 else if (Node->getOperand(0).getValueType() == MVT::f80)
6245 LC = RTLIB::FPTOUINT_F80_I64;
6246 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6247 LC = RTLIB::FPTOUINT_PPCF128_I64;
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 if (VT == MVT::i128) {
6250 if (Node->getOperand(0).getValueType() == MVT::f32)
6251 LC = RTLIB::FPTOUINT_F32_I128;
6252 else if (Node->getOperand(0).getValueType() == MVT::f64)
6253 LC = RTLIB::FPTOUINT_F64_I128;
6254 else if (Node->getOperand(0).getValueType() == MVT::f80)
6255 LC = RTLIB::FPTOUINT_F80_I128;
6256 else if (Node->getOperand(0).getValueType() == MVT::ppcf128)
6257 LC = RTLIB::FPTOUINT_PPCF128_I128;
Duncan Sands460a14e2008-04-12 17:14:18 +00006258 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Dan Gohmana2e94852008-03-10 23:03:31 +00006259 } else {
6260 assert(0 && "Unexpected uint-to-fp conversion!");
6261 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006262 break;
Evan Cheng56966222007-01-12 02:11:51 +00006263 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006264
Evan Cheng05a2d562006-01-09 18:31:59 +00006265 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006266 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006267 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006268 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006269 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006270 Op = TLI.LowerOperation(Op, DAG);
6271 if (Op.Val) {
6272 // Now that the custom expander is done, expand the result, which is
6273 // still VT.
6274 ExpandOp(Op, Lo, Hi);
6275 break;
6276 }
6277 }
6278
Chris Lattner79980b02006-09-13 03:50:39 +00006279 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6280 // this X << 1 as X+X.
6281 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman002e5d02008-03-13 22:13:53 +00006282 if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
Chris Lattner79980b02006-09-13 03:50:39 +00006283 TLI.isOperationLegal(ISD::ADDE, NVT)) {
6284 SDOperand LoOps[2], HiOps[3];
6285 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6286 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6287 LoOps[1] = LoOps[0];
6288 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6289
6290 HiOps[1] = HiOps[0];
6291 HiOps[2] = Lo.getValue(1);
6292 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6293 break;
6294 }
6295 }
6296
Chris Lattnere34b3962005-01-19 04:19:40 +00006297 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006298 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006299 break;
Chris Lattner47599822005-04-02 03:38:53 +00006300
6301 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006302 TargetLowering::LegalizeAction Action =
6303 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6304 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6305 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006306 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006307 break;
6308 }
6309
Chris Lattnere34b3962005-01-19 04:19:40 +00006310 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006311 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006312 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006313 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006314
Evan Cheng05a2d562006-01-09 18:31:59 +00006315 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006316 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006317 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006318 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006319 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006320 Op = TLI.LowerOperation(Op, DAG);
6321 if (Op.Val) {
6322 // Now that the custom expander is done, expand the result, which is
6323 // still VT.
6324 ExpandOp(Op, Lo, Hi);
6325 break;
6326 }
6327 }
6328
Chris Lattnere34b3962005-01-19 04:19:40 +00006329 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006330 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006331 break;
Chris Lattner47599822005-04-02 03:38:53 +00006332
6333 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006334 TargetLowering::LegalizeAction Action =
6335 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6336 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6337 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006338 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006339 break;
6340 }
6341
Chris Lattnere34b3962005-01-19 04:19:40 +00006342 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006343 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006344 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006345 }
6346
6347 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006348 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006349 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006350 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006351 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006352 Op = TLI.LowerOperation(Op, DAG);
6353 if (Op.Val) {
6354 // Now that the custom expander is done, expand the result, which is
6355 // still VT.
6356 ExpandOp(Op, Lo, Hi);
6357 break;
6358 }
6359 }
6360
Chris Lattnere34b3962005-01-19 04:19:40 +00006361 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006362 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006363 break;
Chris Lattner47599822005-04-02 03:38:53 +00006364
6365 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006366 TargetLowering::LegalizeAction Action =
6367 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6368 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6369 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006370 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006371 break;
6372 }
6373
Chris Lattnere34b3962005-01-19 04:19:40 +00006374 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006375 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006376 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006377 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006378
Misha Brukmanedf128a2005-04-21 22:36:52 +00006379 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006380 case ISD::SUB: {
6381 // If the target wants to custom expand this, let them.
6382 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6383 TargetLowering::Custom) {
Duncan Sands69bfb152008-06-22 09:42:16 +00006384 SDOperand Result = TLI.LowerOperation(Op, DAG);
6385 if (Result.Val) {
6386 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006387 break;
6388 }
6389 }
6390
6391 // Expand the subcomponents.
6392 SDOperand LHSL, LHSH, RHSL, RHSH;
6393 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6394 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00006395 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6396 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006397 LoOps[0] = LHSL;
6398 LoOps[1] = RHSL;
6399 HiOps[0] = LHSH;
6400 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006401 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00006402 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006403 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006404 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006405 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00006406 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006407 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006408 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006409 }
Chris Lattner84f67882005-01-20 18:52:28 +00006410 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006411 }
Chris Lattnerb429f732007-05-17 18:15:41 +00006412
6413 case ISD::ADDC:
6414 case ISD::SUBC: {
6415 // Expand the subcomponents.
6416 SDOperand LHSL, LHSH, RHSL, RHSH;
6417 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6418 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6419 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6420 SDOperand LoOps[2] = { LHSL, RHSL };
6421 SDOperand HiOps[3] = { LHSH, RHSH };
6422
6423 if (Node->getOpcode() == ISD::ADDC) {
6424 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6425 HiOps[2] = Lo.getValue(1);
6426 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6427 } else {
6428 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6429 HiOps[2] = Lo.getValue(1);
6430 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6431 }
6432 // Remember that we legalized the flag.
6433 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6434 break;
6435 }
6436 case ISD::ADDE:
6437 case ISD::SUBE: {
6438 // Expand the subcomponents.
6439 SDOperand LHSL, LHSH, RHSL, RHSH;
6440 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6441 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6442 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6443 SDOperand LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6444 SDOperand HiOps[3] = { LHSH, RHSH };
6445
6446 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6447 HiOps[2] = Lo.getValue(1);
6448 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6449
6450 // Remember that we legalized the flag.
6451 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6452 break;
6453 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006454 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006455 // If the target wants to custom expand this, let them.
6456 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00006457 SDOperand New = TLI.LowerOperation(Op, DAG);
6458 if (New.Val) {
6459 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006460 break;
6461 }
6462 }
6463
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006464 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6465 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00006466 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6467 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6468 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Nate Begemanc7c16572005-04-11 03:01:51 +00006469 SDOperand LL, LH, RL, RH;
6470 ExpandOp(Node->getOperand(0), LL, LH);
6471 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006472 unsigned OuterBitSize = Op.getValueSizeInBits();
6473 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00006474 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6475 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00006476 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6477 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6478 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00006479 // The inputs are both zero-extended.
6480 if (HasUMUL_LOHI) {
6481 // We can emit a umul_lohi.
6482 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6483 Hi = SDOperand(Lo.Val, 1);
6484 break;
6485 }
6486 if (HasMULHU) {
6487 // We can emit a mulhu+mul.
6488 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6489 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6490 break;
6491 }
Dan Gohman525178c2007-10-08 18:33:35 +00006492 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006493 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00006494 // The input values are both sign-extended.
6495 if (HasSMUL_LOHI) {
6496 // We can emit a smul_lohi.
6497 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6498 Hi = SDOperand(Lo.Val, 1);
6499 break;
6500 }
6501 if (HasMULHS) {
6502 // We can emit a mulhs+mul.
6503 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6504 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6505 break;
6506 }
6507 }
6508 if (HasUMUL_LOHI) {
6509 // Lo,Hi = umul LHS, RHS.
6510 SDOperand UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
6511 DAG.getVTList(NVT, NVT), LL, RL);
6512 Lo = UMulLOHI;
6513 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00006514 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6515 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6516 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6517 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00006518 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00006519 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00006520 if (HasMULHU) {
6521 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6522 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6523 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6524 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6525 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6526 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6527 break;
6528 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006529 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006530
Dan Gohman525178c2007-10-08 18:33:35 +00006531 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006532 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00006533 break;
6534 }
Evan Cheng56966222007-01-12 02:11:51 +00006535 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006536 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006537 break;
6538 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006539 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006540 break;
6541 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006542 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006543 break;
6544 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006545 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006546 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00006547
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006548 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00006549 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6550 RTLIB::ADD_F64,
6551 RTLIB::ADD_F80,
6552 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006553 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006554 break;
6555 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00006556 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6557 RTLIB::SUB_F64,
6558 RTLIB::SUB_F80,
6559 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006560 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006561 break;
6562 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00006563 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6564 RTLIB::MUL_F64,
6565 RTLIB::MUL_F80,
6566 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006567 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006568 break;
6569 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006570 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6571 RTLIB::DIV_F64,
6572 RTLIB::DIV_F80,
6573 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006574 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006575 break;
6576 case ISD::FP_EXTEND:
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006577 if (VT == MVT::ppcf128) {
6578 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6579 Node->getOperand(0).getValueType()==MVT::f64);
6580 const uint64_t zero = 0;
6581 if (Node->getOperand(0).getValueType()==MVT::f32)
6582 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6583 else
6584 Hi = Node->getOperand(0);
6585 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6586 break;
6587 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006588 Lo = ExpandLibCall(RTLIB::FPEXT_F32_F64, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006589 break;
6590 case ISD::FP_ROUND:
Duncan Sands460a14e2008-04-12 17:14:18 +00006591 Lo = ExpandLibCall(RTLIB::FPROUND_F64_F32, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006592 break;
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006593 case ISD::FPOWI:
Duncan Sands460a14e2008-04-12 17:14:18 +00006594 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::POWI_F32,
6595 RTLIB::POWI_F64,
6596 RTLIB::POWI_F80,
6597 RTLIB::POWI_PPCF128),
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006598 Node, false, Hi);
6599 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006600 case ISD::FSQRT:
6601 case ISD::FSIN:
6602 case ISD::FCOS: {
Evan Cheng56966222007-01-12 02:11:51 +00006603 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006604 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00006605 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00006606 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6607 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006608 break;
6609 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00006610 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6611 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006612 break;
6613 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00006614 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6615 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006616 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006617 default: assert(0 && "Unreachable!");
6618 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006619 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00006620 break;
6621 }
Evan Cheng966bf242006-12-16 00:52:40 +00006622 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006623 if (VT == MVT::ppcf128) {
6624 SDOperand Tmp;
6625 ExpandOp(Node->getOperand(0), Lo, Tmp);
6626 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6627 // lo = hi==fabs(hi) ? lo : -lo;
6628 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6629 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6630 DAG.getCondCode(ISD::SETEQ));
6631 break;
6632 }
Evan Cheng966bf242006-12-16 00:52:40 +00006633 SDOperand Mask = (VT == MVT::f64)
6634 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6635 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6636 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6637 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6638 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6639 if (getTypeAction(NVT) == Expand)
6640 ExpandOp(Lo, Lo, Hi);
6641 break;
6642 }
6643 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006644 if (VT == MVT::ppcf128) {
6645 ExpandOp(Node->getOperand(0), Lo, Hi);
6646 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6647 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6648 break;
6649 }
Evan Cheng966bf242006-12-16 00:52:40 +00006650 SDOperand Mask = (VT == MVT::f64)
6651 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6652 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6653 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6654 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6655 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6656 if (getTypeAction(NVT) == Expand)
6657 ExpandOp(Lo, Lo, Hi);
6658 break;
6659 }
Evan Cheng912095b2007-01-04 21:56:39 +00006660 case ISD::FCOPYSIGN: {
6661 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6662 if (getTypeAction(NVT) == Expand)
6663 ExpandOp(Lo, Lo, Hi);
6664 break;
6665 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006666 case ISD::SINT_TO_FP:
6667 case ISD::UINT_TO_FP: {
6668 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006669 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00006670
6671 // Promote the operand if needed. Do this before checking for
6672 // ppcf128 so conversions of i16 and i8 work.
6673 if (getTypeAction(SrcVT) == Promote) {
6674 SDOperand Tmp = PromoteOp(Node->getOperand(0));
6675 Tmp = isSigned
6676 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6677 DAG.getValueType(SrcVT))
6678 : DAG.getZeroExtendInReg(Tmp, SrcVT);
6679 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
6680 SrcVT = Node->getOperand(0).getValueType();
6681 }
6682
Dan Gohmana2e94852008-03-10 23:03:31 +00006683 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006684 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006685 if (isSigned) {
6686 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6687 Node->getOperand(0)));
6688 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6689 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006690 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006691 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6692 Node->getOperand(0)));
6693 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6694 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00006695 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006696 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6697 DAG.getConstant(0, MVT::i32),
6698 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6699 DAG.getConstantFP(
6700 APFloat(APInt(128, 2, TwoE32)),
6701 MVT::ppcf128)),
6702 Hi,
6703 DAG.getCondCode(ISD::SETLT)),
6704 Lo, Hi);
6705 }
6706 break;
6707 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00006708 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6709 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006710 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen6e63e092007-10-12 17:52:03 +00006711 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6712 Lo, Hi);
6713 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6714 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6715 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6716 DAG.getConstant(0, MVT::i64),
6717 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6718 DAG.getConstantFP(
6719 APFloat(APInt(128, 2, TwoE64)),
6720 MVT::ppcf128)),
6721 Hi,
6722 DAG.getCondCode(ISD::SETLT)),
6723 Lo, Hi);
6724 break;
6725 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006726
Dan Gohmana2e94852008-03-10 23:03:31 +00006727 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6728 Node->getOperand(0));
Evan Cheng110cf482008-04-01 01:50:16 +00006729 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00006730 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00006731 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00006732 break;
6733 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00006734 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006735
Chris Lattner83397362005-12-21 18:02:52 +00006736 // Make sure the resultant values have been legalized themselves, unless this
6737 // is a type that requires multi-step expansion.
6738 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6739 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00006740 if (Hi.Val)
6741 // Don't legalize the high part if it is expanded to a single node.
6742 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00006743 }
Evan Cheng05a2d562006-01-09 18:31:59 +00006744
6745 // Remember in a map if the values will be reused later.
Dan Gohman6b345ee2008-07-07 17:46:23 +00006746 bool isNew =
6747 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng05a2d562006-01-09 18:31:59 +00006748 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006749}
6750
Dan Gohman7f321562007-06-25 16:23:39 +00006751/// SplitVectorOp - Given an operand of vector type, break it down into
6752/// two smaller values, still of vector type.
Chris Lattnerc7029802006-03-18 01:44:44 +00006753void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
6754 SDOperand &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006755 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006756 SDNode *Node = Op.Val;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006757 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00006758 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00006759
Duncan Sands83ec4b62008-06-06 12:08:01 +00006760 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00006761
6762 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6763 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6764
Duncan Sands83ec4b62008-06-06 12:08:01 +00006765 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
6766 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006767
Chris Lattnerc7029802006-03-18 01:44:44 +00006768 // See if we already split it.
6769 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
6770 = SplitNodes.find(Op);
6771 if (I != SplitNodes.end()) {
6772 Lo = I->second.first;
6773 Hi = I->second.second;
6774 return;
6775 }
6776
6777 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006778 default:
6779#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006780 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006781#endif
6782 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00006783 case ISD::UNDEF:
6784 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6785 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6786 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006787 case ISD::BUILD_PAIR:
6788 Lo = Node->getOperand(0);
6789 Hi = Node->getOperand(1);
6790 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00006791 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00006792 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
6793 SplitVectorOp(Node->getOperand(0), Lo, Hi);
6794 unsigned Index = Idx->getValue();
6795 SDOperand ScalarOp = Node->getOperand(1);
6796 if (Index < NewNumElts_Lo)
6797 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
6798 DAG.getIntPtrConstant(Index));
6799 else
6800 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6801 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
6802 break;
6803 }
6804 SDOperand Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
6805 Node->getOperand(1),
6806 Node->getOperand(2));
6807 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00006808 break;
6809 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00006810 case ISD::VECTOR_SHUFFLE: {
6811 // Build the low part.
6812 SDOperand Mask = Node->getOperand(2);
6813 SmallVector<SDOperand, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006814 MVT PtrVT = TLI.getPointerTy();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006815
6816 // Insert all of the elements from the input that are needed. We use
6817 // buildvector of extractelement here because the input vectors will have
6818 // to be legalized, so this makes the code simpler.
6819 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Nate Begeman5922f562008-03-14 00:53:31 +00006820 SDOperand IdxNode = Mask.getOperand(i);
6821 if (IdxNode.getOpcode() == ISD::UNDEF) {
6822 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6823 continue;
6824 }
6825 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006826 SDOperand InVec = Node->getOperand(0);
6827 if (Idx >= NumElements) {
6828 InVec = Node->getOperand(1);
6829 Idx -= NumElements;
6830 }
6831 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6832 DAG.getConstant(Idx, PtrVT)));
6833 }
6834 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6835 Ops.clear();
6836
6837 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Nate Begeman5922f562008-03-14 00:53:31 +00006838 SDOperand IdxNode = Mask.getOperand(i);
6839 if (IdxNode.getOpcode() == ISD::UNDEF) {
6840 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6841 continue;
6842 }
6843 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006844 SDOperand InVec = Node->getOperand(0);
6845 if (Idx >= NumElements) {
6846 InVec = Node->getOperand(1);
6847 Idx -= NumElements;
6848 }
6849 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6850 DAG.getConstant(Idx, PtrVT)));
6851 }
6852 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6853 break;
6854 }
Dan Gohman7f321562007-06-25 16:23:39 +00006855 case ISD::BUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006856 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00006857 Node->op_begin()+NewNumElts_Lo);
6858 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006859
Nate Begeman5db1afb2007-11-15 21:15:26 +00006860 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00006861 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006862 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006863 break;
6864 }
Dan Gohman7f321562007-06-25 16:23:39 +00006865 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00006866 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00006867 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6868 if (NewNumSubvectors == 1) {
6869 Lo = Node->getOperand(0);
6870 Hi = Node->getOperand(1);
6871 } else {
6872 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
6873 Node->op_begin()+NewNumSubvectors);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006874 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00006875
Dan Gohman7f321562007-06-25 16:23:39 +00006876 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumSubvectors,
6877 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006878 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00006879 }
Dan Gohman65956352007-06-13 15:12:02 +00006880 break;
6881 }
Dan Gohmanc6230962007-10-17 14:48:28 +00006882 case ISD::SELECT: {
6883 SDOperand Cond = Node->getOperand(0);
6884
6885 SDOperand LL, LH, RL, RH;
6886 SplitVectorOp(Node->getOperand(1), LL, LH);
6887 SplitVectorOp(Node->getOperand(2), RL, RH);
6888
Duncan Sands83ec4b62008-06-06 12:08:01 +00006889 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00006890 // Handle a vector merge.
6891 SDOperand CL, CH;
6892 SplitVectorOp(Cond, CL, CH);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006893 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6894 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006895 } else {
6896 // Handle a simple select with vector operands.
Nate Begeman5db1afb2007-11-15 21:15:26 +00006897 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6898 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006899 }
6900 break;
6901 }
Chris Lattner80c1a562008-06-30 02:43:01 +00006902 case ISD::SELECT_CC: {
6903 SDOperand CondLHS = Node->getOperand(0);
6904 SDOperand CondRHS = Node->getOperand(1);
6905 SDOperand CondCode = Node->getOperand(4);
6906
6907 SDOperand LL, LH, RL, RH;
6908 SplitVectorOp(Node->getOperand(2), LL, LH);
6909 SplitVectorOp(Node->getOperand(3), RL, RH);
6910
6911 // Handle a simple select with vector operands.
6912 Lo = DAG.getNode(ISD::SELECT_CC, NewVT_Lo, CondLHS, CondRHS,
6913 LL, RL, CondCode);
6914 Hi = DAG.getNode(ISD::SELECT_CC, NewVT_Hi, CondLHS, CondRHS,
6915 LH, RH, CondCode);
6916 break;
6917 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00006918 case ISD::VSETCC: {
6919 SDOperand LL, LH, RL, RH;
6920 SplitVectorOp(Node->getOperand(0), LL, LH);
6921 SplitVectorOp(Node->getOperand(1), RL, RH);
6922 Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2));
6923 Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2));
6924 break;
6925 }
Dan Gohman7f321562007-06-25 16:23:39 +00006926 case ISD::ADD:
6927 case ISD::SUB:
6928 case ISD::MUL:
6929 case ISD::FADD:
6930 case ISD::FSUB:
6931 case ISD::FMUL:
6932 case ISD::SDIV:
6933 case ISD::UDIV:
6934 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00006935 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006936 case ISD::AND:
6937 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00006938 case ISD::XOR:
6939 case ISD::UREM:
6940 case ISD::SREM:
6941 case ISD::FREM: {
Chris Lattnerc7029802006-03-18 01:44:44 +00006942 SDOperand LL, LH, RL, RH;
6943 SplitVectorOp(Node->getOperand(0), LL, LH);
6944 SplitVectorOp(Node->getOperand(1), RL, RH);
6945
Nate Begeman5db1afb2007-11-15 21:15:26 +00006946 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
6947 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00006948 break;
6949 }
Dan Gohman82669522007-10-11 23:57:53 +00006950 case ISD::FPOWI: {
6951 SDOperand L, H;
6952 SplitVectorOp(Node->getOperand(0), L, H);
6953
Nate Begeman5db1afb2007-11-15 21:15:26 +00006954 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
6955 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00006956 break;
6957 }
6958 case ISD::CTTZ:
6959 case ISD::CTLZ:
6960 case ISD::CTPOP:
6961 case ISD::FNEG:
6962 case ISD::FABS:
6963 case ISD::FSQRT:
6964 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00006965 case ISD::FCOS:
6966 case ISD::FP_TO_SINT:
6967 case ISD::FP_TO_UINT:
6968 case ISD::SINT_TO_FP:
6969 case ISD::UINT_TO_FP: {
Dan Gohman82669522007-10-11 23:57:53 +00006970 SDOperand L, H;
6971 SplitVectorOp(Node->getOperand(0), L, H);
6972
Nate Begeman5db1afb2007-11-15 21:15:26 +00006973 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
6974 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00006975 break;
6976 }
Dan Gohman7f321562007-06-25 16:23:39 +00006977 case ISD::LOAD: {
6978 LoadSDNode *LD = cast<LoadSDNode>(Node);
6979 SDOperand Ch = LD->getChain();
6980 SDOperand Ptr = LD->getBasePtr();
6981 const Value *SV = LD->getSrcValue();
6982 int SVOffset = LD->getSrcValueOffset();
6983 unsigned Alignment = LD->getAlignment();
6984 bool isVolatile = LD->isVolatile();
6985
Nate Begeman5db1afb2007-11-15 21:15:26 +00006986 Lo = DAG.getLoad(NewVT_Lo, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006987 unsigned IncrementSize = NewNumElts_Lo * NewEltVT.getSizeInBits()/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00006988 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006989 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006990 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006991 Alignment = MinAlign(Alignment, IncrementSize);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006992 Hi = DAG.getLoad(NewVT_Hi, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00006993
6994 // Build a factor node to remember that this load is independent of the
6995 // other one.
6996 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
6997 Hi.getValue(1));
6998
6999 // Remember that we legalized the chain.
7000 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00007001 break;
7002 }
Dan Gohman7f321562007-06-25 16:23:39 +00007003 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00007004 // We know the result is a vector. The input may be either a vector or a
7005 // scalar value.
Dan Gohman10a7aa62007-06-29 00:09:08 +00007006 SDOperand InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007007 if (!InOp.getValueType().isVector() ||
7008 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00007009 // The input is a scalar or single-element vector.
7010 // Lower to a store/load so that it can be split.
7011 // FIXME: this could be improved probably.
Chris Lattner85dd3be2007-10-15 17:48:57 +00007012 SDOperand Ptr = DAG.CreateStackTemporary(InOp.getValueType());
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00007013 FrameIndexSDNode *FI = cast<FrameIndexSDNode>(Ptr.Val);
Chris Lattner7692eb42006-03-23 21:16:34 +00007014
Evan Cheng786225a2006-10-05 23:01:46 +00007015 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00007016 InOp, Ptr,
Dan Gohman3069b872008-02-07 18:41:25 +00007017 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00007018 FI->getIndex());
7019 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohman3069b872008-02-07 18:41:25 +00007020 PseudoSourceValue::getFixedStack(),
Dan Gohman69de1932008-02-06 22:27:42 +00007021 FI->getIndex());
Chris Lattner7692eb42006-03-23 21:16:34 +00007022 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007023 // Split the vector and convert each of the pieces now.
7024 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007025 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
7026 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007027 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007028 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007029 }
7030
7031 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00007032 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007033 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007034 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007035}
7036
7037
Dan Gohman89b20c02007-06-27 14:06:22 +00007038/// ScalarizeVectorOp - Given an operand of single-element vector type
7039/// (e.g. v1f32), convert it into the equivalent operation that returns a
7040/// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +00007041SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007042 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Chris Lattnerc7029802006-03-18 01:44:44 +00007043 SDNode *Node = Op.Val;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007044 MVT NewVT = Op.getValueType().getVectorElementType();
7045 assert(Op.getValueType().getVectorNumElements() == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00007046
Dan Gohman7f321562007-06-25 16:23:39 +00007047 // See if we already scalarized it.
7048 std::map<SDOperand, SDOperand>::iterator I = ScalarizedNodes.find(Op);
7049 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00007050
7051 SDOperand Result;
7052 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00007053 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007054#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007055 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007056#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007057 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7058 case ISD::ADD:
7059 case ISD::FADD:
7060 case ISD::SUB:
7061 case ISD::FSUB:
7062 case ISD::MUL:
7063 case ISD::FMUL:
7064 case ISD::SDIV:
7065 case ISD::UDIV:
7066 case ISD::FDIV:
7067 case ISD::SREM:
7068 case ISD::UREM:
7069 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007070 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007071 case ISD::AND:
7072 case ISD::OR:
7073 case ISD::XOR:
7074 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00007075 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007076 ScalarizeVectorOp(Node->getOperand(0)),
7077 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007078 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007079 case ISD::FNEG:
7080 case ISD::FABS:
7081 case ISD::FSQRT:
7082 case ISD::FSIN:
7083 case ISD::FCOS:
7084 Result = DAG.getNode(Node->getOpcode(),
7085 NewVT,
7086 ScalarizeVectorOp(Node->getOperand(0)));
7087 break;
Dan Gohman9e04c822007-10-12 14:13:46 +00007088 case ISD::FPOWI:
7089 Result = DAG.getNode(Node->getOpcode(),
7090 NewVT,
7091 ScalarizeVectorOp(Node->getOperand(0)),
7092 Node->getOperand(1));
7093 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007094 case ISD::LOAD: {
7095 LoadSDNode *LD = cast<LoadSDNode>(Node);
7096 SDOperand Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7097 SDOperand Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00007098
Dan Gohman7f321562007-06-25 16:23:39 +00007099 const Value *SV = LD->getSrcValue();
7100 int SVOffset = LD->getSrcValueOffset();
7101 Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset,
7102 LD->isVolatile(), LD->getAlignment());
7103
Chris Lattnerc7029802006-03-18 01:44:44 +00007104 // Remember that we legalized the chain.
7105 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7106 break;
7107 }
Dan Gohman7f321562007-06-25 16:23:39 +00007108 case ISD::BUILD_VECTOR:
7109 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007110 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007111 case ISD::INSERT_VECTOR_ELT:
7112 // Returning the inserted scalar element.
7113 Result = Node->getOperand(1);
7114 break;
7115 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007116 assert(Node->getOperand(0).getValueType() == NewVT &&
7117 "Concat of non-legal vectors not yet supported!");
7118 Result = Node->getOperand(0);
7119 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007120 case ISD::VECTOR_SHUFFLE: {
7121 // Figure out if the scalar is the LHS or RHS and return it.
7122 SDOperand EltNum = Node->getOperand(2).getOperand(0);
7123 if (cast<ConstantSDNode>(EltNum)->getValue())
7124 Result = ScalarizeVectorOp(Node->getOperand(1));
7125 else
7126 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007127 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007128 }
7129 case ISD::EXTRACT_SUBVECTOR:
7130 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00007131 assert(Result.getValueType() == NewVT);
7132 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007133 case ISD::BIT_CONVERT: {
7134 SDOperand Op0 = Op.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007135 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007136 Op0 = ScalarizeVectorOp(Op0);
7137 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007138 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007139 }
Dan Gohman7f321562007-06-25 16:23:39 +00007140 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007141 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007142 ScalarizeVectorOp(Op.getOperand(1)),
7143 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007144 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007145 case ISD::SELECT_CC:
7146 Result = DAG.getNode(ISD::SELECT_CC, NewVT, Node->getOperand(0),
7147 Node->getOperand(1),
7148 ScalarizeVectorOp(Op.getOperand(2)),
7149 ScalarizeVectorOp(Op.getOperand(3)),
7150 Node->getOperand(4));
7151 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007152 case ISD::VSETCC: {
7153 SDOperand Op0 = ScalarizeVectorOp(Op.getOperand(0));
7154 SDOperand Op1 = ScalarizeVectorOp(Op.getOperand(1));
7155 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0), Op0, Op1,
7156 Op.getOperand(2));
7157 Result = DAG.getNode(ISD::SELECT, NewVT, Result,
7158 DAG.getConstant(-1ULL, NewVT),
7159 DAG.getConstant(0ULL, NewVT));
7160 break;
7161 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007162 }
7163
7164 if (TLI.isTypeLegal(NewVT))
7165 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007166 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7167 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007168 return Result;
7169}
7170
Chris Lattner3e928bb2005-01-07 07:47:09 +00007171
7172// SelectionDAG::Legalize - This is the entry point for the file.
7173//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00007174void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00007175 if (ViewLegalizeDAGs) viewGraph();
7176
Chris Lattner3e928bb2005-01-07 07:47:09 +00007177 /// run - This is the main entry point to this class.
7178 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00007179 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00007180}
7181