blob: 4b02c54a4ec639b6b7a96fef7fe5a7e834253c4a [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);
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000550 } else if (SizeDiff < 0) {
551 SignBit = DAG.getNode(ISD::ZERO_EXTEND, NVT, SignBit);
552 SignBit = DAG.getNode(ISD::SHL, NVT, SignBit,
553 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
554 }
Evan Cheng068c5f42007-01-05 21:31:51 +0000555
556 // Clear the sign bit of first operand.
557 SDOperand Mask2 = (VT == MVT::f64)
558 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
559 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
560 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Evan Cheng912095b2007-01-04 21:56:39 +0000561 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000562 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
563
564 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000565 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
566 return Result;
567}
568
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000569/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
570static
571SDOperand ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
572 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000573 SDOperand Chain = ST->getChain();
574 SDOperand Ptr = ST->getBasePtr();
575 SDOperand Val = ST->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000576 MVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000577 int Alignment = ST->getAlignment();
578 int SVOffset = ST->getSrcValueOffset();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000579 if (ST->getMemoryVT().isFloatingPoint() ||
580 ST->getMemoryVT().isVector()) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000581 // Expand to a bitconvert of the value to the integer type of the
582 // same size, then a (misaligned) int store.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000583 MVT intVT;
584 if (VT.is128BitVector() || VT == MVT::ppcf128 || VT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000585 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000586 else if (VT.is64BitVector() || VT==MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000587 intVT = MVT::i64;
588 else if (VT==MVT::f32)
589 intVT = MVT::i32;
590 else
Dale Johannesencd9f1742008-02-28 18:36:51 +0000591 assert(0 && "Unaligned store of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000592
593 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
594 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
595 SVOffset, ST->isVolatile(), Alignment);
596 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000597 assert(ST->getMemoryVT().isInteger() &&
598 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000599 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000600 // Get the half-size VT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000601 MVT NewStoredVT =
602 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
603 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000604 int IncrementSize = NumBits / 8;
605
606 // Divide the stored value in two parts.
607 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
608 SDOperand Lo = Val;
609 SDOperand Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
610
611 // Store the two parts
612 SDOperand Store1, Store2;
613 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
614 ST->getSrcValue(), SVOffset, NewStoredVT,
615 ST->isVolatile(), Alignment);
616 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
617 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000618 Alignment = MinAlign(Alignment, IncrementSize);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000619 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
620 ST->getSrcValue(), SVOffset + IncrementSize,
621 NewStoredVT, ST->isVolatile(), Alignment);
622
623 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
624}
625
626/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
627static
628SDOperand ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
629 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000630 int SVOffset = LD->getSrcValueOffset();
631 SDOperand Chain = LD->getChain();
632 SDOperand Ptr = LD->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000633 MVT VT = LD->getValueType(0);
634 MVT LoadedVT = LD->getMemoryVT();
635 if (VT.isFloatingPoint() || VT.isVector()) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000636 // Expand to a (misaligned) integer load of the same size,
Dale Johannesen8155d642008-02-27 22:36:00 +0000637 // then bitconvert to floating point or vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000638 MVT intVT;
639 if (LoadedVT.is128BitVector() ||
Dale Johannesen3c8b59c2008-03-01 03:40:57 +0000640 LoadedVT == MVT::ppcf128 || LoadedVT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000641 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000642 else if (LoadedVT.is64BitVector() || LoadedVT == MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000643 intVT = MVT::i64;
Chris Lattnere400af82007-11-19 21:38:03 +0000644 else if (LoadedVT == MVT::f32)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000645 intVT = MVT::i32;
646 else
Dale Johannesen8155d642008-02-27 22:36:00 +0000647 assert(0 && "Unaligned load of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000648
649 SDOperand newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
650 SVOffset, LD->isVolatile(),
651 LD->getAlignment());
652 SDOperand Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000653 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000654 Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
655
656 SDOperand Ops[] = { Result, Chain };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000657 return DAG.getMergeValues(Ops, 2);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000658 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000659 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000660 "Unaligned load of unsupported type.");
661
Dale Johannesen8155d642008-02-27 22:36:00 +0000662 // Compute the new VT that is half the size of the old one. This is an
663 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000664 unsigned NumBits = LoadedVT.getSizeInBits();
665 MVT NewLoadedVT;
666 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000667 NumBits >>= 1;
668
669 unsigned Alignment = LD->getAlignment();
670 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000671 ISD::LoadExtType HiExtType = LD->getExtensionType();
672
673 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
674 if (HiExtType == ISD::NON_EXTLOAD)
675 HiExtType = ISD::ZEXTLOAD;
676
677 // Load the value in two parts
678 SDOperand Lo, Hi;
679 if (TLI.isLittleEndian()) {
680 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
681 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
682 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
683 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
684 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
685 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000686 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000687 } else {
688 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
689 NewLoadedVT,LD->isVolatile(), Alignment);
690 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
691 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
692 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
693 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000694 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000695 }
696
697 // aggregate the two parts
698 SDOperand ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
699 SDOperand Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
700 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
701
702 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
703 Hi.getValue(1));
704
705 SDOperand Ops[] = { Result, TF };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000706 return DAG.getMergeValues(Ops, 2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000707}
Evan Cheng912095b2007-01-04 21:56:39 +0000708
Dan Gohman82669522007-10-11 23:57:53 +0000709/// UnrollVectorOp - We know that the given vector has a legal type, however
710/// the operation it performs is not legal and is an operation that we have
711/// no way of lowering. "Unroll" the vector, splitting out the scalars and
712/// operating on each element individually.
713SDOperand SelectionDAGLegalize::UnrollVectorOp(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000714 MVT VT = Op.getValueType();
Dan Gohman82669522007-10-11 23:57:53 +0000715 assert(isTypeLegal(VT) &&
716 "Caller should expand or promote operands that are not legal!");
717 assert(Op.Val->getNumValues() == 1 &&
718 "Can't unroll a vector with multiple results!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000719 unsigned NE = VT.getVectorNumElements();
720 MVT EltVT = VT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000721
722 SmallVector<SDOperand, 8> Scalars;
723 SmallVector<SDOperand, 4> Operands(Op.getNumOperands());
724 for (unsigned i = 0; i != NE; ++i) {
725 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
726 SDOperand Operand = Op.getOperand(j);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000727 MVT OperandVT = Operand.getValueType();
728 if (OperandVT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +0000729 // A vector operand; extract a single element.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000730 MVT OperandEltVT = OperandVT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000731 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
732 OperandEltVT,
733 Operand,
734 DAG.getConstant(i, MVT::i32));
735 } else {
736 // A scalar operand; just use it as is.
737 Operands[j] = Operand;
738 }
739 }
740 Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
741 &Operands[0], Operands.size()));
742 }
743
744 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
745}
746
Duncan Sands007f9842008-01-10 10:28:30 +0000747/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000748static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands007f9842008-01-10 10:28:30 +0000749 RTLIB::Libcall Call_F32,
750 RTLIB::Libcall Call_F64,
751 RTLIB::Libcall Call_F80,
752 RTLIB::Libcall Call_PPCF128) {
753 return
754 VT == MVT::f32 ? Call_F32 :
755 VT == MVT::f64 ? Call_F64 :
756 VT == MVT::f80 ? Call_F80 :
757 VT == MVT::ppcf128 ? Call_PPCF128 :
758 RTLIB::UNKNOWN_LIBCALL;
759}
760
Nate Begeman68679912008-04-25 18:07:40 +0000761/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
762/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
763/// is necessary to spill the vector being inserted into to memory, perform
764/// the insert there, and then read the result back.
765SDOperand SelectionDAGLegalize::
766PerformInsertVectorEltInMemory(SDOperand Vec, SDOperand Val, SDOperand Idx) {
767 SDOperand Tmp1 = Vec;
768 SDOperand Tmp2 = Val;
769 SDOperand Tmp3 = Idx;
770
771 // If the target doesn't support this, we have to spill the input vector
772 // to a temporary stack slot, update the element, then reload it. This is
773 // badness. We could also load the value into a vector register (either
774 // with a "move to register" or "extload into register" instruction, then
775 // permute it into place, if the idx is a constant and if the idx is
776 // supported by the target.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000777 MVT VT = Tmp1.getValueType();
778 MVT EltVT = VT.getVectorElementType();
779 MVT IdxVT = Tmp3.getValueType();
780 MVT PtrVT = TLI.getPointerTy();
Nate Begeman68679912008-04-25 18:07:40 +0000781 SDOperand StackPtr = DAG.CreateStackTemporary(VT);
782
Dan Gohmana54cf172008-07-11 22:44:52 +0000783 int SPFI = cast<FrameIndexSDNode>(StackPtr.Val)->getIndex();
Nate Begeman68679912008-04-25 18:07:40 +0000784
785 // Store the vector.
786 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +0000787 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000788
789 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000790 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Nate Begeman68679912008-04-25 18:07:40 +0000791 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
792 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000793 unsigned EltSize = EltVT.getSizeInBits()/8;
Nate Begeman68679912008-04-25 18:07:40 +0000794 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
795 SDOperand StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
796 // Store the scalar value.
797 Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2,
Dan Gohmana54cf172008-07-11 22:44:52 +0000798 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman68679912008-04-25 18:07:40 +0000799 // Load the updated vector.
Dan Gohmana54cf172008-07-11 22:44:52 +0000800 return DAG.getLoad(VT, Ch, StackPtr,
801 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000802}
803
Dan Gohmana3466152007-07-13 20:14:11 +0000804/// LegalizeOp - We know that the specified value has a legal type, and
805/// that its operands are legal. Now ensure that the operation itself
806/// is legal, recursively ensuring that the operands' operations remain
807/// legal.
Chris Lattner3e928bb2005-01-07 07:47:09 +0000808SDOperand SelectionDAGLegalize::LegalizeOp(SDOperand Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000809 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
810 return Op;
811
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000812 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000813 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000814 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000815
Chris Lattner3e928bb2005-01-07 07:47:09 +0000816 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000817 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000818 if (Node->getNumValues() > 1) {
819 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000820 if (getTypeAction(Node->getValueType(i)) != Legal) {
821 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000822 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000823 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000824 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000825 }
826 }
827
Chris Lattner45982da2005-05-12 16:53:42 +0000828 // Note that LegalizeOp may be reentered even from single-use nodes, which
829 // means that we always must cache transformed nodes.
Roman Levenstein9cac5252008-04-16 16:15:27 +0000830 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000831 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000832
Nate Begeman9373a812005-08-10 20:51:12 +0000833 SDOperand Tmp1, Tmp2, Tmp3, Tmp4;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000834 SDOperand Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000835 bool isCustom = false;
836
Chris Lattner3e928bb2005-01-07 07:47:09 +0000837 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000838 case ISD::FrameIndex:
839 case ISD::EntryToken:
840 case ISD::Register:
841 case ISD::BasicBlock:
842 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000843 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000844 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000845 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000846 case ISD::TargetConstantPool:
847 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000848 case ISD::TargetGlobalTLSAddress:
Chris Lattner948c1b12006-01-28 08:31:04 +0000849 case ISD::TargetExternalSymbol:
850 case ISD::VALUETYPE:
851 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +0000852 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +0000853 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +0000854 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +0000855 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +0000856 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +0000857 "This must be legal!");
858 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000859 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000860 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
861 // If this is a target node, legalize it by legalizing the operands then
862 // passing it through.
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000863 SmallVector<SDOperand, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000864 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000865 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000866
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000867 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000868
869 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
870 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
871 return Result.getValue(Op.ResNo);
872 }
873 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000874#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +0000875 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000876#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000877 assert(0 && "Do not know how to legalize this operator!");
878 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +0000879 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000880 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000881 case ISD::GlobalTLSAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000882 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000883 case ISD::ConstantPool:
884 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000885 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
886 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000887 case TargetLowering::Custom:
888 Tmp1 = TLI.LowerOperation(Op, DAG);
889 if (Tmp1.Val) Result = Tmp1;
890 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000891 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000892 break;
893 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000894 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000895 case ISD::FRAMEADDR:
896 case ISD::RETURNADDR:
897 // The only option for these nodes is to custom lower them. If the target
898 // does not custom lower them, then return zero.
899 Tmp1 = TLI.LowerOperation(Op, DAG);
900 if (Tmp1.Val)
901 Result = Tmp1;
902 else
903 Result = DAG.getConstant(0, TLI.getPointerTy());
904 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000905 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000906 MVT VT = Node->getValueType(0);
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000907 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
908 default: assert(0 && "This action is not supported yet!");
909 case TargetLowering::Custom:
910 Result = TLI.LowerOperation(Op, DAG);
911 if (Result.Val) break;
912 // Fall Thru
913 case TargetLowering::Legal:
914 Result = DAG.getConstant(0, VT);
915 break;
916 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000917 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000918 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000919 case ISD::EXCEPTIONADDR: {
920 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000921 MVT VT = Node->getValueType(0);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000922 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
923 default: assert(0 && "This action is not supported yet!");
924 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000925 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000926 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000927 }
928 break;
929 case TargetLowering::Custom:
930 Result = TLI.LowerOperation(Op, DAG);
931 if (Result.Val) break;
932 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000933 case TargetLowering::Legal: {
934 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000935 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000936 break;
937 }
938 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000939 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000940 if (Result.Val->getNumValues() == 1) break;
941
942 assert(Result.Val->getNumValues() == 2 &&
943 "Cannot return more than two values!");
944
945 // Since we produced two values, make sure to remember that we
946 // legalized both of them.
947 Tmp1 = LegalizeOp(Result);
948 Tmp2 = LegalizeOp(Result.getValue(1));
949 AddLegalizedOperand(Op.getValue(0), Tmp1);
950 AddLegalizedOperand(Op.getValue(1), Tmp2);
951 return Op.ResNo ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +0000952 case ISD::EHSELECTION: {
953 Tmp1 = LegalizeOp(Node->getOperand(0));
954 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000955 MVT VT = Node->getValueType(0);
Jim Laskey8782d482007-02-28 20:43:58 +0000956 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
957 default: assert(0 && "This action is not supported yet!");
958 case TargetLowering::Expand: {
959 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000960 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +0000961 }
962 break;
963 case TargetLowering::Custom:
964 Result = TLI.LowerOperation(Op, DAG);
965 if (Result.Val) break;
966 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000967 case TargetLowering::Legal: {
968 SDOperand Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000969 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey8782d482007-02-28 20:43:58 +0000970 break;
971 }
972 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000973 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000974 if (Result.Val->getNumValues() == 1) break;
975
976 assert(Result.Val->getNumValues() == 2 &&
977 "Cannot return more than two values!");
978
979 // Since we produced two values, make sure to remember that we
980 // legalized both of them.
981 Tmp1 = LegalizeOp(Result);
982 Tmp2 = LegalizeOp(Result.getValue(1));
983 AddLegalizedOperand(Op.getValue(0), Tmp1);
984 AddLegalizedOperand(Op.getValue(1), Tmp2);
985 return Op.ResNo ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000986 case ISD::EH_RETURN: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000987 MVT VT = Node->getValueType(0);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000988 // The only "good" option for this node is to custom lower it.
989 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
990 default: assert(0 && "This action is not supported at all!");
991 case TargetLowering::Custom:
992 Result = TLI.LowerOperation(Op, DAG);
993 if (Result.Val) break;
994 // Fall Thru
995 case TargetLowering::Legal:
996 // Target does not know, how to lower this, lower to noop
997 Result = LegalizeOp(Node->getOperand(0));
998 break;
999 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001000 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001001 break;
Chris Lattner08951a32005-09-02 01:15:01 +00001002 case ISD::AssertSext:
1003 case ISD::AssertZext:
1004 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001005 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +00001006 break;
Chris Lattner308575b2005-11-20 22:56:56 +00001007 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001008 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +00001009 Result = Node->getOperand(Op.ResNo);
1010 break;
Chris Lattner69a52152005-01-14 22:38:01 +00001011 case ISD::CopyFromReg:
1012 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001013 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001014 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001015 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +00001016 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001017 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001018 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001019 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001020 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1021 } else {
1022 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1023 }
Chris Lattner7310fb12005-12-18 15:27:43 +00001024 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1025 }
Chris Lattner13c184d2005-01-28 06:27:38 +00001026 // Since CopyFromReg produces two values, make sure to remember that we
1027 // legalized both of them.
1028 AddLegalizedOperand(Op.getValue(0), Result);
1029 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1030 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001031 case ISD::UNDEF: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001032 MVT VT = Op.getValueType();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001033 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +00001034 default: assert(0 && "This action is not supported yet!");
1035 case TargetLowering::Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001036 if (VT.isInteger())
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001037 Result = DAG.getConstant(0, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001038 else if (VT.isFloatingPoint())
1039 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf41db212007-09-26 17:26:49 +00001040 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001041 else
1042 assert(0 && "Unknown value type!");
1043 break;
Nate Begemanea19cd52005-04-02 00:41:14 +00001044 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001045 break;
1046 }
1047 break;
1048 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001049
Chris Lattner48b61a72006-03-28 00:40:33 +00001050 case ISD::INTRINSIC_W_CHAIN:
1051 case ISD::INTRINSIC_WO_CHAIN:
1052 case ISD::INTRINSIC_VOID: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001053 SmallVector<SDOperand, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001054 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1055 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001056 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +00001057
1058 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +00001059 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001060 TargetLowering::Custom) {
1061 Tmp3 = TLI.LowerOperation(Result, DAG);
1062 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001063 }
1064
1065 if (Result.Val->getNumValues() == 1) break;
1066
1067 // Must have return value and chain result.
1068 assert(Result.Val->getNumValues() == 2 &&
1069 "Cannot return more than two values!");
1070
1071 // Since loads produce two values, make sure to remember that we
1072 // legalized both of them.
1073 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1074 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1075 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001076 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001077
Dan Gohman7f460202008-06-30 20:59:49 +00001078 case ISD::DBG_STOPPOINT:
1079 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Chris Lattner36ce6912005-11-29 06:21:05 +00001080 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1081
Dan Gohman7f460202008-06-30 20:59:49 +00001082 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Chris Lattner36ce6912005-11-29 06:21:05 +00001083 case TargetLowering::Promote:
1084 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001085 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001086 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001087 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Dan Gohman44066042008-07-01 00:05:16 +00001088 bool useLABEL = TLI.isOperationLegal(ISD::DBG_LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001089
Dan Gohman7f460202008-06-30 20:59:49 +00001090 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001091 if (MMI && (useDEBUG_LOC || useLABEL)) {
Dan Gohman7f460202008-06-30 20:59:49 +00001092 const CompileUnitDesc *CompileUnit = DSP->getCompileUnit();
1093 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001094
Dan Gohman7f460202008-06-30 20:59:49 +00001095 unsigned Line = DSP->getLine();
1096 unsigned Col = DSP->getColumn();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001097
1098 if (useDEBUG_LOC) {
Evan Cheng71e86852008-07-08 20:06:39 +00001099 SDOperand Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
1100 DAG.getConstant(Col, MVT::i32),
1101 DAG.getConstant(SrcFile, MVT::i32) };
1102 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Ops, 4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001103 } else {
Evan Chenga647c922008-02-01 02:05:57 +00001104 unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
Dan Gohman44066042008-07-01 00:05:16 +00001105 Result = DAG.getLabel(ISD::DBG_LABEL, Tmp1, ID);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001106 }
Jim Laskeye81aecb2005-12-21 20:51:37 +00001107 } else {
1108 Result = Tmp1; // chain
1109 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001110 break;
Chris Lattnere7736732005-12-18 23:54:29 +00001111 }
Evan Cheng71e86852008-07-08 20:06:39 +00001112 case TargetLowering::Legal: {
1113 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1114 if (Action == Legal && Tmp1 == Node->getOperand(0))
1115 break;
1116
1117 SmallVector<SDOperand, 8> Ops;
1118 Ops.push_back(Tmp1);
1119 if (Action == Legal) {
1120 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1121 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1122 } else {
1123 // Otherwise promote them.
1124 Ops.push_back(PromoteOp(Node->getOperand(1)));
1125 Ops.push_back(PromoteOp(Node->getOperand(2)));
Chris Lattner36ce6912005-11-29 06:21:05 +00001126 }
Evan Cheng71e86852008-07-08 20:06:39 +00001127 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1128 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1129 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001130 break;
1131 }
Evan Cheng71e86852008-07-08 20:06:39 +00001132 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001133 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001134
1135 case ISD::DECLARE:
1136 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1137 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1138 default: assert(0 && "This action is not supported yet!");
1139 case TargetLowering::Legal:
1140 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1141 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1142 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1143 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1144 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001145 case TargetLowering::Expand:
1146 Result = LegalizeOp(Node->getOperand(0));
1147 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001148 }
1149 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001150
1151 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001152 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001153 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001154 default: assert(0 && "This action is not supported yet!");
Evan Cheng71e86852008-07-08 20:06:39 +00001155 case TargetLowering::Legal: {
1156 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001157 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Cheng71e86852008-07-08 20:06:39 +00001158 if (Action == Legal && Tmp1 == Node->getOperand(0))
1159 break;
1160 if (Action == Legal) {
1161 Tmp2 = Node->getOperand(1);
1162 Tmp3 = Node->getOperand(2);
1163 Tmp4 = Node->getOperand(3);
1164 } else {
1165 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1166 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1167 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1168 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001169 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001170 break;
1171 }
Evan Cheng71e86852008-07-08 20:06:39 +00001172 }
Jim Laskeyabf6d172006-01-05 01:25:28 +00001173 break;
1174
Dan Gohman44066042008-07-01 00:05:16 +00001175 case ISD::DBG_LABEL:
1176 case ISD::EH_LABEL:
1177 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1178 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001179 default: assert(0 && "This action is not supported yet!");
1180 case TargetLowering::Legal:
1181 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001182 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001183 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001184 case TargetLowering::Expand:
1185 Result = LegalizeOp(Node->getOperand(0));
1186 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001187 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001188 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001189
Evan Cheng27b7db52008-03-08 00:58:38 +00001190 case ISD::PREFETCH:
1191 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1192 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1193 default: assert(0 && "This action is not supported yet!");
1194 case TargetLowering::Legal:
1195 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1196 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1197 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1198 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1199 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1200 break;
1201 case TargetLowering::Expand:
1202 // It's a noop.
1203 Result = LegalizeOp(Node->getOperand(0));
1204 break;
1205 }
1206 break;
1207
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001208 case ISD::MEMBARRIER: {
1209 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001210 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1211 default: assert(0 && "This action is not supported yet!");
1212 case TargetLowering::Legal: {
1213 SDOperand Ops[6];
1214 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001215 for (int x = 1; x < 6; ++x) {
1216 Ops[x] = Node->getOperand(x);
1217 if (!isTypeLegal(Ops[x].getValueType()))
1218 Ops[x] = PromoteOp(Ops[x]);
1219 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001220 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1221 break;
1222 }
1223 case TargetLowering::Expand:
1224 //There is no libgcc call for this op
1225 Result = Node->getOperand(0); // Noop
1226 break;
1227 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001228 break;
1229 }
1230
Mon P Wang28873102008-06-25 08:15:39 +00001231 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001232 unsigned int num_operands = 4;
1233 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001234 SDOperand Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001235 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001236 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001237 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1238
1239 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1240 default: assert(0 && "This action is not supported yet!");
1241 case TargetLowering::Custom:
1242 Result = TLI.LowerOperation(Result, DAG);
1243 break;
1244 case TargetLowering::Legal:
1245 break;
1246 }
1247 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1248 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1249 return Result.getValue(Op.ResNo);
Duncan Sands126d9072008-07-04 11:47:58 +00001250 }
Mon P Wang28873102008-06-25 08:15:39 +00001251 case ISD::ATOMIC_LOAD_ADD:
1252 case ISD::ATOMIC_LOAD_SUB:
Mon P Wang63307c32008-05-05 19:05:59 +00001253 case ISD::ATOMIC_LOAD_AND:
1254 case ISD::ATOMIC_LOAD_OR:
1255 case ISD::ATOMIC_LOAD_XOR:
Andrew Lenharth507a58a2008-06-14 05:48:15 +00001256 case ISD::ATOMIC_LOAD_NAND:
Mon P Wang63307c32008-05-05 19:05:59 +00001257 case ISD::ATOMIC_LOAD_MIN:
1258 case ISD::ATOMIC_LOAD_MAX:
1259 case ISD::ATOMIC_LOAD_UMIN:
1260 case ISD::ATOMIC_LOAD_UMAX:
1261 case ISD::ATOMIC_SWAP: {
1262 unsigned int num_operands = 3;
1263 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
1264 SDOperand Ops[3];
1265 for (unsigned int x = 0; x < num_operands; ++x)
1266 Ops[x] = LegalizeOp(Node->getOperand(x));
1267 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001268
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001269 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001270 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001271 case TargetLowering::Custom:
1272 Result = TLI.LowerOperation(Result, DAG);
1273 break;
Mon P Wang63307c32008-05-05 19:05:59 +00001274 case TargetLowering::Expand:
Duncan Sands126d9072008-07-04 11:47:58 +00001275 Result = SDOperand(TLI.ReplaceNodeResults(Op.Val, DAG),0);
Mon P Wang63307c32008-05-05 19:05:59 +00001276 break;
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001277 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001278 break;
1279 }
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001280 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1281 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1282 return Result.getValue(Op.ResNo);
Duncan Sands126d9072008-07-04 11:47:58 +00001283 }
Scott Michelc1513d22007-08-08 23:23:31 +00001284 case ISD::Constant: {
1285 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1286 unsigned opAction =
1287 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1288
Chris Lattner3e928bb2005-01-07 07:47:09 +00001289 // We know we don't need to expand constants here, constants only have one
1290 // value and we check that it is fine above.
1291
Scott Michelc1513d22007-08-08 23:23:31 +00001292 if (opAction == TargetLowering::Custom) {
1293 Tmp1 = TLI.LowerOperation(Result, DAG);
1294 if (Tmp1.Val)
1295 Result = Tmp1;
1296 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001297 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001298 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001299 case ISD::ConstantFP: {
1300 // Spill FP immediates to the constant pool if the target cannot directly
1301 // codegen them. Targets often have some immediate values that can be
1302 // efficiently generated into an FP register without a load. We explicitly
1303 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001304 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1305
Chris Lattner3181a772006-01-29 06:26:56 +00001306 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1307 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001308 case TargetLowering::Legal:
1309 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001310 case TargetLowering::Custom:
1311 Tmp3 = TLI.LowerOperation(Result, DAG);
1312 if (Tmp3.Val) {
1313 Result = Tmp3;
1314 break;
1315 }
1316 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001317 case TargetLowering::Expand: {
1318 // Check to see if this FP immediate is already legal.
1319 bool isLegal = false;
1320 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1321 E = TLI.legal_fpimm_end(); I != E; ++I) {
1322 if (CFP->isExactlyValue(*I)) {
1323 isLegal = true;
1324 break;
1325 }
1326 }
1327 // If this is a legal constant, turn it into a TargetConstantFP node.
1328 if (isLegal)
1329 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001330 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001331 }
Nate Begemane1795842008-02-14 08:57:00 +00001332 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001333 break;
1334 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001335 case ISD::TokenFactor:
1336 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001337 Tmp1 = LegalizeOp(Node->getOperand(0));
1338 Tmp2 = LegalizeOp(Node->getOperand(1));
1339 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1340 } else if (Node->getNumOperands() == 3) {
1341 Tmp1 = LegalizeOp(Node->getOperand(0));
1342 Tmp2 = LegalizeOp(Node->getOperand(1));
1343 Tmp3 = LegalizeOp(Node->getOperand(2));
1344 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001345 } else {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001346 SmallVector<SDOperand, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001347 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001348 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1349 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001350 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001351 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001352 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001353
1354 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001355 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001356 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001357 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1358 assert(Tmp3.Val && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001359 // A call within a calling sequence must be legalized to something
1360 // other than the normal CALLSEQ_END. Violating this gets Legalize
1361 // into an infinite loop.
1362 assert ((!IsLegalizingCall ||
1363 Node->getOpcode() != ISD::CALL ||
1364 Tmp3.Val->getOpcode() != ISD::CALLSEQ_END) &&
1365 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001366
1367 // The number of incoming and outgoing values should match; unless the final
1368 // outgoing value is a flag.
1369 assert((Tmp3.Val->getNumValues() == Result.Val->getNumValues() ||
1370 (Tmp3.Val->getNumValues() == Result.Val->getNumValues() + 1 &&
1371 Tmp3.Val->getValueType(Tmp3.Val->getNumValues() - 1) ==
1372 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001373 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001374
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001375 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001376 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +00001377 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001378 if (Tmp3.Val->getValueType(i) == MVT::Flag)
1379 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001380 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +00001381 if (Op.ResNo == i)
1382 Tmp2 = Tmp1;
1383 AddLegalizedOperand(SDOperand(Node, i), Tmp1);
1384 }
1385 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001386 case ISD::EXTRACT_SUBREG: {
1387 Tmp1 = LegalizeOp(Node->getOperand(0));
1388 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1389 assert(idx && "Operand must be a constant");
1390 Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1391 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1392 }
1393 break;
1394 case ISD::INSERT_SUBREG: {
1395 Tmp1 = LegalizeOp(Node->getOperand(0));
1396 Tmp2 = LegalizeOp(Node->getOperand(1));
1397 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1398 assert(idx && "Operand must be a constant");
1399 Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1400 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1401 }
1402 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001403 case ISD::BUILD_VECTOR:
1404 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001405 default: assert(0 && "This action is not supported yet!");
1406 case TargetLowering::Custom:
1407 Tmp3 = TLI.LowerOperation(Result, DAG);
1408 if (Tmp3.Val) {
1409 Result = Tmp3;
1410 break;
1411 }
1412 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001413 case TargetLowering::Expand:
1414 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +00001415 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001416 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001417 break;
1418 case ISD::INSERT_VECTOR_ELT:
1419 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001420 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001421
1422 // The type of the value to insert may not be legal, even though the vector
1423 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1424 // here.
1425 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1426 default: assert(0 && "Cannot expand insert element operand");
1427 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1428 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1429 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001430 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1431
1432 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1433 Node->getValueType(0))) {
1434 default: assert(0 && "This action is not supported yet!");
1435 case TargetLowering::Legal:
1436 break;
1437 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001438 Tmp4 = TLI.LowerOperation(Result, DAG);
1439 if (Tmp4.Val) {
1440 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001441 break;
1442 }
1443 // FALLTHROUGH
1444 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001445 // If the insert index is a constant, codegen this as a scalar_to_vector,
1446 // then a shuffle that inserts it into the right position in the vector.
1447 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001448 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1449 // match the element type of the vector being created.
1450 if (Tmp2.getValueType() ==
Duncan Sands83ec4b62008-06-06 12:08:01 +00001451 Op.getValueType().getVectorElementType()) {
Nate Begeman0325d902008-02-13 06:43:04 +00001452 SDOperand ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
1453 Tmp1.getValueType(), Tmp2);
1454
Duncan Sands83ec4b62008-06-06 12:08:01 +00001455 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1456 MVT ShufMaskVT =
1457 MVT::getIntVectorWithNumElements(NumElts);
1458 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Nate Begeman0325d902008-02-13 06:43:04 +00001459
1460 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1461 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1462 // elt 0 of the RHS.
1463 SmallVector<SDOperand, 8> ShufOps;
1464 for (unsigned i = 0; i != NumElts; ++i) {
1465 if (i != InsertPos->getValue())
1466 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1467 else
1468 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1469 }
1470 SDOperand ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
1471 &ShufOps[0], ShufOps.size());
1472
1473 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1474 Tmp1, ScVec, ShufMask);
1475 Result = LegalizeOp(Result);
1476 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001477 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001478 }
Nate Begeman68679912008-04-25 18:07:40 +00001479 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001480 break;
1481 }
1482 }
1483 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001484 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001485 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1486 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1487 break;
1488 }
1489
Chris Lattnerce872152006-03-19 06:31:19 +00001490 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1491 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1492 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1493 Node->getValueType(0))) {
1494 default: assert(0 && "This action is not supported yet!");
1495 case TargetLowering::Legal:
1496 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001497 case TargetLowering::Custom:
1498 Tmp3 = TLI.LowerOperation(Result, DAG);
1499 if (Tmp3.Val) {
1500 Result = Tmp3;
1501 break;
1502 }
1503 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001504 case TargetLowering::Expand:
1505 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001506 break;
1507 }
Chris Lattnerce872152006-03-19 06:31:19 +00001508 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001509 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001510 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1511 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1512 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1513
1514 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001515 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1516 default: assert(0 && "Unknown operation action!");
1517 case TargetLowering::Legal:
1518 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1519 "vector shuffle should not be created if not legal!");
1520 break;
1521 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001522 Tmp3 = TLI.LowerOperation(Result, DAG);
1523 if (Tmp3.Val) {
1524 Result = Tmp3;
1525 break;
1526 }
1527 // FALLTHROUGH
1528 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001529 MVT VT = Node->getValueType(0);
1530 MVT EltVT = VT.getVectorElementType();
1531 MVT PtrVT = TLI.getPointerTy();
Evan Cheng18dd6d02006-04-05 06:07:11 +00001532 SDOperand Mask = Node->getOperand(2);
1533 unsigned NumElems = Mask.getNumOperands();
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001534 SmallVector<SDOperand,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001535 for (unsigned i = 0; i != NumElems; ++i) {
1536 SDOperand Arg = Mask.getOperand(i);
1537 if (Arg.getOpcode() == ISD::UNDEF) {
1538 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1539 } else {
1540 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1541 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1542 if (Idx < NumElems)
1543 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1544 DAG.getConstant(Idx, PtrVT)));
1545 else
1546 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1547 DAG.getConstant(Idx - NumElems, PtrVT)));
1548 }
1549 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001550 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001551 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001552 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001553 case TargetLowering::Promote: {
1554 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001555 MVT OVT = Node->getValueType(0);
1556 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001557
1558 // Cast the two input vectors.
1559 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1560 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1561
1562 // Convert the shuffle mask to the right # elements.
1563 Tmp3 = SDOperand(isShuffleLegal(OVT, Node->getOperand(2)), 0);
1564 assert(Tmp3.Val && "Shuffle not legal?");
1565 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1566 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1567 break;
1568 }
Chris Lattner87100e02006-03-20 01:52:29 +00001569 }
1570 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001571
1572 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001573 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001574 Tmp2 = LegalizeOp(Node->getOperand(1));
1575 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001576 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001577 break;
1578
Dan Gohman7f321562007-06-25 16:23:39 +00001579 case ISD::EXTRACT_SUBVECTOR:
1580 Tmp1 = Node->getOperand(0);
1581 Tmp2 = LegalizeOp(Node->getOperand(1));
1582 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1583 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001584 break;
1585
Chris Lattner6831a812006-02-13 09:18:02 +00001586 case ISD::CALLSEQ_START: {
1587 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1588
1589 // Recursively Legalize all of the inputs of the call end that do not lead
1590 // to this call start. This ensures that any libcalls that need be inserted
1591 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001592 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001593 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001594 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1595 NodesLeadingTo);
1596 }
Chris Lattner6831a812006-02-13 09:18:02 +00001597
1598 // Now that we legalized all of the inputs (which may have inserted
1599 // libcalls) create the new CALLSEQ_START node.
1600 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1601
1602 // Merge in the last call, to ensure that this call start after the last
1603 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001604 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001605 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1606 Tmp1 = LegalizeOp(Tmp1);
1607 }
Chris Lattner6831a812006-02-13 09:18:02 +00001608
1609 // Do not try to legalize the target-specific arguments (#1+).
1610 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001611 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001612 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001613 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001614 }
1615
1616 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001617 AddLegalizedOperand(Op.getValue(0), Result);
1618 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1619 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1620
Chris Lattner6831a812006-02-13 09:18:02 +00001621 // Now that the callseq_start and all of the non-call nodes above this call
1622 // sequence have been legalized, legalize the call itself. During this
1623 // process, no libcalls can/will be inserted, guaranteeing that no calls
1624 // can overlap.
1625 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001626 // Note that we are selecting this call!
1627 LastCALLSEQ_END = SDOperand(CallEnd, 0);
1628 IsLegalizingCall = true;
1629
1630 // Legalize the call, starting from the CALLSEQ_END.
1631 LegalizeOp(LastCALLSEQ_END);
1632 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1633 return Result;
1634 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001635 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001636 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1637 // will cause this node to be legalized as well as handling libcalls right.
1638 if (LastCALLSEQ_END.Val != Node) {
1639 LegalizeOp(SDOperand(FindCallStartFromCallEnd(Node), 0));
Roman Levenstein9cac5252008-04-16 16:15:27 +00001640 DenseMap<SDOperand, SDOperand>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001641 assert(I != LegalizedNodes.end() &&
1642 "Legalizing the call start should have legalized this node!");
1643 return I->second;
1644 }
1645
1646 // Otherwise, the call start has been legalized and everything is going
1647 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001648 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001649 // Do not try to legalize the target-specific arguments (#1+), except for
1650 // an optional flag input.
1651 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1652 if (Tmp1 != Node->getOperand(0)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001653 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001654 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001655 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001656 }
1657 } else {
1658 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1659 if (Tmp1 != Node->getOperand(0) ||
1660 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001661 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001662 Ops[0] = Tmp1;
1663 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001664 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001665 }
Chris Lattner6a542892006-01-24 05:48:21 +00001666 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001667 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001668 // This finishes up call legalization.
1669 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001670
1671 // If the CALLSEQ_END node has a flag, remember that we legalized it.
1672 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
1673 if (Node->getNumValues() == 2)
1674 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1675 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001676 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001677 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001678 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1679 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1680 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001681 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001682
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001683 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001684 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001685 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001686 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001687 case TargetLowering::Expand: {
1688 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1689 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1690 " not tell us which reg is the stack pointer!");
1691 SDOperand Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001692
1693 // Chain the dynamic stack allocation so that it doesn't modify the stack
1694 // pointer when other instructions are using the stack.
1695 Chain = DAG.getCALLSEQ_START(Chain,
1696 DAG.getConstant(0, TLI.getPointerTy()));
1697
Chris Lattner903d2782006-01-15 08:54:32 +00001698 SDOperand Size = Tmp2.getOperand(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001699 SDOperand SP = DAG.getCopyFromReg(Chain, SPReg, VT);
1700 Chain = SP.getValue(1);
1701 unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1702 unsigned StackAlign =
1703 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1704 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001705 SP = DAG.getNode(ISD::AND, VT, SP,
1706 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001707 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001708 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1709
1710 Tmp2 =
1711 DAG.getCALLSEQ_END(Chain,
1712 DAG.getConstant(0, TLI.getPointerTy()),
1713 DAG.getConstant(0, TLI.getPointerTy()),
1714 SDOperand());
1715
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001716 Tmp1 = LegalizeOp(Tmp1);
1717 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001718 break;
1719 }
1720 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001721 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1722 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001723 Tmp1 = LegalizeOp(Tmp3);
1724 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001725 }
Chris Lattner903d2782006-01-15 08:54:32 +00001726 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001727 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001728 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001729 }
Chris Lattner903d2782006-01-15 08:54:32 +00001730 // Since this op produce two values, make sure to remember that we
1731 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001732 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
1733 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001734 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001735 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001736 case ISD::INLINEASM: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001737 SmallVector<SDOperand, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001738 bool Changed = false;
1739 // Legalize all of the operands of the inline asm, in case they are nodes
1740 // that need to be expanded or something. Note we skip the asm string and
1741 // all of the TargetConstant flags.
1742 SDOperand Op = LegalizeOp(Ops[0]);
1743 Changed = Op != Ops[0];
1744 Ops[0] = Op;
1745
1746 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1747 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1748 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1749 for (++i; NumVals; ++i, --NumVals) {
1750 SDOperand Op = LegalizeOp(Ops[i]);
1751 if (Op != Ops[i]) {
1752 Changed = true;
1753 Ops[i] = Op;
1754 }
1755 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001756 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001757
1758 if (HasInFlag) {
1759 Op = LegalizeOp(Ops.back());
1760 Changed |= Op != Ops.back();
1761 Ops.back() = Op;
1762 }
1763
1764 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001765 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001766
1767 // INLINE asm returns a chain and flag, make sure to add both to the map.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001768 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001769 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
1770 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001771 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001772 case ISD::BR:
1773 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001774 // Ensure that libcalls are emitted before a branch.
1775 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1776 Tmp1 = LegalizeOp(Tmp1);
1777 LastCALLSEQ_END = DAG.getEntryNode();
1778
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001779 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001780 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001781 case ISD::BRIND:
1782 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1783 // Ensure that libcalls are emitted before a branch.
1784 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1785 Tmp1 = LegalizeOp(Tmp1);
1786 LastCALLSEQ_END = DAG.getEntryNode();
1787
1788 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1789 default: assert(0 && "Indirect target must be legal type (pointer)!");
1790 case Legal:
1791 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1792 break;
1793 }
1794 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1795 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001796 case ISD::BR_JT:
1797 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1798 // Ensure that libcalls are emitted before a branch.
1799 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1800 Tmp1 = LegalizeOp(Tmp1);
1801 LastCALLSEQ_END = DAG.getEntryNode();
1802
1803 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1804 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1805
1806 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1807 default: assert(0 && "This action is not supported yet!");
1808 case TargetLowering::Legal: break;
1809 case TargetLowering::Custom:
1810 Tmp1 = TLI.LowerOperation(Result, DAG);
1811 if (Tmp1.Val) Result = Tmp1;
1812 break;
1813 case TargetLowering::Expand: {
1814 SDOperand Chain = Result.getOperand(0);
1815 SDOperand Table = Result.getOperand(1);
1816 SDOperand Index = Result.getOperand(2);
1817
Duncan Sands83ec4b62008-06-06 12:08:01 +00001818 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001819 MachineFunction &MF = DAG.getMachineFunction();
1820 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001821 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
1822 SDOperand Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001823
1824 SDOperand LD;
1825 switch (EntrySize) {
1826 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001827 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001828 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001829 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001830 PseudoSourceValue::getJumpTable(), 0); break;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001831 }
1832
Evan Chengcc415862007-11-09 01:32:10 +00001833 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001834 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001835 // For PIC, the sequence is:
1836 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00001837 // RelocBase can be JumpTable, GOT or some sort of global base.
1838 if (PTy != MVT::i32)
1839 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1840 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1841 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00001842 }
Evan Chengcc415862007-11-09 01:32:10 +00001843 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001844 }
1845 }
1846 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001847 case ISD::BRCOND:
1848 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001849 // Ensure that libcalls are emitted before a return.
1850 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1851 Tmp1 = LegalizeOp(Tmp1);
1852 LastCALLSEQ_END = DAG.getEntryNode();
1853
Chris Lattner47e92232005-01-18 19:27:06 +00001854 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1855 case Expand: assert(0 && "It's impossible to expand bools");
1856 case Legal:
1857 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1858 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001859 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00001860 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001861
1862 // The top bits of the promoted condition are not necessarily zero, ensure
1863 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001864 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001865 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001866 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerf9908172006-11-27 04:39:56 +00001867 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001868 break;
1869 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001870 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001871
1872 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001873 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001874
1875 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1876 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001877 case TargetLowering::Legal: break;
1878 case TargetLowering::Custom:
1879 Tmp1 = TLI.LowerOperation(Result, DAG);
1880 if (Tmp1.Val) Result = Tmp1;
1881 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001882 case TargetLowering::Expand:
1883 // Expand brcond's setcc into its constituent parts and create a BR_CC
1884 // Node.
1885 if (Tmp2.getOpcode() == ISD::SETCC) {
1886 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1887 Tmp2.getOperand(0), Tmp2.getOperand(1),
1888 Node->getOperand(2));
1889 } else {
1890 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1891 DAG.getCondCode(ISD::SETNE), Tmp2,
1892 DAG.getConstant(0, Tmp2.getValueType()),
1893 Node->getOperand(2));
1894 }
1895 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001896 }
1897 break;
1898 case ISD::BR_CC:
1899 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001900 // Ensure that libcalls are emitted before a branch.
1901 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1902 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001903 Tmp2 = Node->getOperand(2); // LHS
1904 Tmp3 = Node->getOperand(3); // RHS
1905 Tmp4 = Node->getOperand(1); // CC
1906
1907 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001908 LastCALLSEQ_END = DAG.getEntryNode();
1909
Nate Begeman750ac1b2006-02-01 07:19:44 +00001910 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1911 // the LHS is a legal SETCC itself. In this case, we need to compare
1912 // the result against zero to select between true and false values.
1913 if (Tmp3.Val == 0) {
1914 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1915 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001916 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001917
1918 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1919 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001920
Chris Lattner181b7a32005-12-17 23:46:46 +00001921 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1922 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001923 case TargetLowering::Legal: break;
1924 case TargetLowering::Custom:
1925 Tmp4 = TLI.LowerOperation(Result, DAG);
1926 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001927 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001928 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001929 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001930 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001931 LoadSDNode *LD = cast<LoadSDNode>(Node);
1932 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1933 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001934
Evan Cheng466685d2006-10-09 20:57:25 +00001935 ISD::LoadExtType ExtType = LD->getExtensionType();
1936 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001937 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00001938 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1939 Tmp3 = Result.getValue(0);
1940 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001941
Evan Cheng466685d2006-10-09 20:57:25 +00001942 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1943 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001944 case TargetLowering::Legal:
1945 // If this is an unaligned load and the target doesn't support it,
1946 // expand it.
1947 if (!TLI.allowsUnalignedMemoryAccesses()) {
1948 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00001949 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001950 if (LD->getAlignment() < ABIAlignment){
1951 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1952 TLI);
1953 Tmp3 = Result.getOperand(0);
1954 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001955 Tmp3 = LegalizeOp(Tmp3);
1956 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001957 }
1958 }
1959 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001960 case TargetLowering::Custom:
1961 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1962 if (Tmp1.Val) {
1963 Tmp3 = LegalizeOp(Tmp1);
1964 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001965 }
Evan Cheng466685d2006-10-09 20:57:25 +00001966 break;
1967 case TargetLowering::Promote: {
1968 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001969 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00001970 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001971 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00001972
1973 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001974 LD->getSrcValueOffset(),
1975 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001976 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1977 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001978 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001979 }
Evan Cheng466685d2006-10-09 20:57:25 +00001980 }
1981 // Since loads produce two values, make sure to remember that we
1982 // legalized both of them.
1983 AddLegalizedOperand(SDOperand(Node, 0), Tmp3);
1984 AddLegalizedOperand(SDOperand(Node, 1), Tmp4);
1985 return Op.ResNo ? Tmp4 : Tmp3;
1986 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001987 MVT SrcVT = LD->getMemoryVT();
1988 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001989 int SVOffset = LD->getSrcValueOffset();
1990 unsigned Alignment = LD->getAlignment();
1991 bool isVolatile = LD->isVolatile();
1992
Duncan Sands83ec4b62008-06-06 12:08:01 +00001993 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001994 // Some targets pretend to have an i1 loading operation, and actually
1995 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1996 // bits are guaranteed to be zero; it helps the optimizers understand
1997 // that these bits are zero. It is also useful for EXTLOAD, since it
1998 // tells the optimizers that those bits are undefined. It would be
1999 // nice to have an effective generic way of getting these benefits...
2000 // Until such a way is found, don't insist on promoting i1 here.
2001 (SrcVT != MVT::i1 ||
2002 TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
2003 // Promote to a byte-sized load if not loading an integral number of
2004 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002005 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2006 MVT NVT = MVT::getIntegerVT(NewWidth);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002007 SDOperand Ch;
2008
2009 // The extra bits are guaranteed to be zero, since we stored them that
2010 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2011
2012 ISD::LoadExtType NewExtType =
2013 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2014
2015 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
2016 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2017 NVT, isVolatile, Alignment);
2018
2019 Ch = Result.getValue(1); // The chain.
2020
2021 if (ExtType == ISD::SEXTLOAD)
2022 // Having the top bits zero doesn't help when sign extending.
2023 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2024 Result, DAG.getValueType(SrcVT));
2025 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2026 // All the top bits are guaranteed to be zero - inform the optimizers.
2027 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2028 DAG.getValueType(SrcVT));
2029
2030 Tmp1 = LegalizeOp(Result);
2031 Tmp2 = LegalizeOp(Ch);
2032 } else if (SrcWidth & (SrcWidth - 1)) {
2033 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002034 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002035 "Unsupported extload!");
2036 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2037 assert(RoundWidth < SrcWidth);
2038 unsigned ExtraWidth = SrcWidth - RoundWidth;
2039 assert(ExtraWidth < RoundWidth);
2040 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2041 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002042 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2043 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002044 SDOperand Lo, Hi, Ch;
2045 unsigned IncrementSize;
2046
2047 if (TLI.isLittleEndian()) {
2048 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2049 // Load the bottom RoundWidth bits.
2050 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2051 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2052 Alignment);
2053
2054 // Load the remaining ExtraWidth bits.
2055 IncrementSize = RoundWidth / 8;
2056 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2057 DAG.getIntPtrConstant(IncrementSize));
2058 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2059 LD->getSrcValue(), SVOffset + IncrementSize,
2060 ExtraVT, isVolatile,
2061 MinAlign(Alignment, IncrementSize));
2062
2063 // Build a factor node to remember that this load is independent of the
2064 // other one.
2065 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2066 Hi.getValue(1));
2067
2068 // Move the top bits to the right place.
2069 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2070 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2071
2072 // Join the hi and lo parts.
2073 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002074 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002075 // Big endian - avoid unaligned loads.
2076 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2077 // Load the top RoundWidth bits.
2078 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2079 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2080 Alignment);
2081
2082 // Load the remaining ExtraWidth bits.
2083 IncrementSize = RoundWidth / 8;
2084 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2085 DAG.getIntPtrConstant(IncrementSize));
2086 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2087 LD->getSrcValue(), SVOffset + IncrementSize,
2088 ExtraVT, isVolatile,
2089 MinAlign(Alignment, IncrementSize));
2090
2091 // Build a factor node to remember that this load is independent of the
2092 // other one.
2093 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2094 Hi.getValue(1));
2095
2096 // Move the top bits to the right place.
2097 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2098 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2099
2100 // Join the hi and lo parts.
2101 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2102 }
2103
2104 Tmp1 = LegalizeOp(Result);
2105 Tmp2 = LegalizeOp(Ch);
2106 } else {
2107 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
2108 default: assert(0 && "This action is not supported yet!");
2109 case TargetLowering::Custom:
2110 isCustom = true;
2111 // FALLTHROUGH
2112 case TargetLowering::Legal:
2113 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2114 Tmp1 = Result.getValue(0);
2115 Tmp2 = Result.getValue(1);
2116
2117 if (isCustom) {
2118 Tmp3 = TLI.LowerOperation(Result, DAG);
2119 if (Tmp3.Val) {
2120 Tmp1 = LegalizeOp(Tmp3);
2121 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2122 }
2123 } else {
2124 // If this is an unaligned load and the target doesn't support it,
2125 // expand it.
2126 if (!TLI.allowsUnalignedMemoryAccesses()) {
2127 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002128 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002129 if (LD->getAlignment() < ABIAlignment){
2130 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
2131 TLI);
2132 Tmp1 = Result.getOperand(0);
2133 Tmp2 = Result.getOperand(1);
2134 Tmp1 = LegalizeOp(Tmp1);
2135 Tmp2 = LegalizeOp(Tmp2);
2136 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002137 }
2138 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002139 break;
2140 case TargetLowering::Expand:
2141 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2142 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
2143 SDOperand Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
2144 LD->getSrcValueOffset(),
2145 LD->isVolatile(), LD->getAlignment());
2146 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2147 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2148 Tmp2 = LegalizeOp(Load.getValue(1));
2149 break;
2150 }
2151 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2152 // Turn the unsupported load into an EXTLOAD followed by an explicit
2153 // zero/sign extend inreg.
2154 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2155 Tmp1, Tmp2, LD->getSrcValue(),
2156 LD->getSrcValueOffset(), SrcVT,
2157 LD->isVolatile(), LD->getAlignment());
2158 SDOperand ValRes;
2159 if (ExtType == ISD::SEXTLOAD)
2160 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2161 Result, DAG.getValueType(SrcVT));
2162 else
2163 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2164 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2165 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002166 break;
2167 }
Evan Cheng466685d2006-10-09 20:57:25 +00002168 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002169
Evan Cheng466685d2006-10-09 20:57:25 +00002170 // Since loads produce two values, make sure to remember that we legalized
2171 // both of them.
2172 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2173 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2174 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002175 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002176 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002177 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002178 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002179 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002180 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002181 case Legal:
2182 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
2183 // 1 -> Hi
2184 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002185 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002186 TLI.getShiftAmountTy()));
2187 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2188 } else {
2189 // 0 -> Lo
2190 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2191 Node->getOperand(0));
2192 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002193 break;
2194 case Expand:
2195 // Get both the low and high parts.
2196 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2197 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
2198 Result = Tmp2; // 1 -> Hi
2199 else
2200 Result = Tmp1; // 0 -> Lo
2201 break;
2202 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002203 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002204 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002205
2206 case ISD::CopyToReg:
2207 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002208
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002209 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002210 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002211 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002212 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002213 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002214 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002215 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002216 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002217 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002218 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002219 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2220 Tmp3);
2221 } else {
2222 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002223 }
2224
2225 // Since this produces two values, make sure to remember that we legalized
2226 // both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002227 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00002228 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002229 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002230 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002231 break;
2232
2233 case ISD::RET:
2234 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002235
2236 // Ensure that libcalls are emitted before a return.
2237 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2238 Tmp1 = LegalizeOp(Tmp1);
2239 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002240
Chris Lattner3e928bb2005-01-07 07:47:09 +00002241 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002242 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002243 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002244 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002245 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002246 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002247 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002248 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002249 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002250 if (!Tmp2.getValueType().isVector()) {
Chris Lattnerf87324e2006-04-11 01:31:51 +00002251 SDOperand Lo, Hi;
2252 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002253
2254 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002255 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002256 std::swap(Lo, Hi);
2257
Evan Cheng13acce32006-12-11 19:27:14 +00002258 if (Hi.Val)
2259 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2260 else
2261 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002262 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002263 } else {
2264 SDNode *InVal = Tmp2.Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002265 int InIx = Tmp2.ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002266 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2267 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002268
Dan Gohman7f321562007-06-25 16:23:39 +00002269 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002270 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002271 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002272 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002273 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002274 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002275 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002276 } else if (NumElems == 1) {
2277 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002278 Tmp2 = ScalarizeVectorOp(Tmp2);
2279 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002280 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002281
2282 // FIXME: Returns of gcc generic vectors smaller than a legal type
2283 // should be returned in integer registers!
2284
Chris Lattnerf87324e2006-04-11 01:31:51 +00002285 // The scalarized value type may not be legal, e.g. it might require
2286 // promotion or expansion. Relegalize the return.
2287 Result = LegalizeOp(Result);
2288 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002289 // FIXME: Returns of gcc generic vectors larger than a legal vector
2290 // type should be returned by reference!
Chris Lattnerf87324e2006-04-11 01:31:51 +00002291 SDOperand Lo, Hi;
2292 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00002293 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002294 Result = LegalizeOp(Result);
2295 }
2296 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002297 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002298 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002299 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002300 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002301 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002302 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002303 }
2304 break;
2305 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002306 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002307 break;
2308 default: { // ret <values>
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002309 SmallVector<SDOperand, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002310 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002311 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002312 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2313 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002314 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002315 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002316 break;
2317 case Expand: {
2318 SDOperand Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002319 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002320 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002321 ExpandOp(Node->getOperand(i), Lo, Hi);
2322 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002323 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00002324 if (Hi.Val) {
2325 NewValues.push_back(Hi);
2326 NewValues.push_back(Node->getOperand(i+1));
2327 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002328 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002329 }
2330 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002331 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002332 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002333
2334 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002335 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002336 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002337 Result = DAG.getNode(ISD::RET, MVT::Other,
2338 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002339 break;
2340 }
2341 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002342
Chris Lattner6862dbc2006-01-29 21:02:23 +00002343 if (Result.getOpcode() == ISD::RET) {
2344 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2345 default: assert(0 && "This action is not supported yet!");
2346 case TargetLowering::Legal: break;
2347 case TargetLowering::Custom:
2348 Tmp1 = TLI.LowerOperation(Result, DAG);
2349 if (Tmp1.Val) Result = Tmp1;
2350 break;
2351 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002352 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002353 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002354 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002355 StoreSDNode *ST = cast<StoreSDNode>(Node);
2356 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2357 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002358 int SVOffset = ST->getSrcValueOffset();
2359 unsigned Alignment = ST->getAlignment();
2360 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002361
Evan Cheng8b2794a2006-10-13 21:14:26 +00002362 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002363 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2364 // FIXME: We shouldn't do this for TargetConstantFP's.
2365 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2366 // to phase ordering between legalized code and the dag combiner. This
2367 // probably means that we need to integrate dag combiner and legalizer
2368 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002369 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002370 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002371 if (CFP->getValueType(0) == MVT::f32 &&
2372 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002373 Tmp3 = DAG.getConstant(CFP->getValueAPF().
2374 convertToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002375 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002376 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2377 SVOffset, isVolatile, Alignment);
2378 break;
2379 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002380 // If this target supports 64-bit registers, do a single 64-bit store.
2381 if (getTypeAction(MVT::i64) == Legal) {
2382 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002383 zextOrTrunc(64), MVT::i64);
Chris Lattner3cb93512007-10-15 05:46:06 +00002384 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2385 SVOffset, isVolatile, Alignment);
2386 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002387 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002388 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2389 // stores. If the target supports neither 32- nor 64-bits, this
2390 // xform is certainly not worth it.
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002391 const APInt &IntVal =CFP->getValueAPF().convertToAPInt();
2392 SDOperand Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2393 SDOperand Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002394 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002395
2396 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2397 SVOffset, isVolatile, Alignment);
2398 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002399 DAG.getIntPtrConstant(4));
Chris Lattner3cb93512007-10-15 05:46:06 +00002400 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002401 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002402
2403 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2404 break;
2405 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002406 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002407 }
2408
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002409 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002410 case Legal: {
2411 Tmp3 = LegalizeOp(ST->getValue());
2412 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2413 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002414
Duncan Sands83ec4b62008-06-06 12:08:01 +00002415 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002416 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2417 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002418 case TargetLowering::Legal:
2419 // If this is an unaligned store and the target doesn't support it,
2420 // expand it.
2421 if (!TLI.allowsUnalignedMemoryAccesses()) {
2422 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002423 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002424 if (ST->getAlignment() < ABIAlignment)
2425 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2426 TLI);
2427 }
2428 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002429 case TargetLowering::Custom:
2430 Tmp1 = TLI.LowerOperation(Result, DAG);
2431 if (Tmp1.Val) Result = Tmp1;
2432 break;
2433 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002434 assert(VT.isVector() && "Unknown legal promote case!");
Evan Cheng8b2794a2006-10-13 21:14:26 +00002435 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2436 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2437 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002438 ST->getSrcValue(), SVOffset, isVolatile,
2439 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002440 break;
2441 }
2442 break;
2443 }
2444 case Promote:
2445 // Truncate the value and store the result.
2446 Tmp3 = PromoteOp(ST->getValue());
2447 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002448 SVOffset, ST->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002449 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002450 break;
2451
2452 case Expand:
2453 unsigned IncrementSize = 0;
2454 SDOperand Lo, Hi;
2455
2456 // If this is a vector type, then we have to calculate the increment as
2457 // the product of the element size in bytes, and the number of elements
2458 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002459 if (ST->getValue().getValueType().isVector()) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002460 SDNode *InVal = ST->getValue().Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002461 int InIx = ST->getValue().ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002462 MVT InVT = InVal->getValueType(InIx);
2463 unsigned NumElems = InVT.getVectorNumElements();
2464 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002465
Dan Gohman7f321562007-06-25 16:23:39 +00002466 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002467 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002468 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002469 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002470 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002471 Tmp3 = LegalizeOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002472 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002473 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002474 Result = LegalizeOp(Result);
2475 break;
2476 } else if (NumElems == 1) {
2477 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002478 Tmp3 = ScalarizeVectorOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002479 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002480 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002481 // The scalarized value type may not be legal, e.g. it might require
2482 // promotion or expansion. Relegalize the scalar store.
2483 Result = LegalizeOp(Result);
2484 break;
2485 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002486 SplitVectorOp(ST->getValue(), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002487 IncrementSize = Lo.Val->getValueType(0).getVectorNumElements() *
2488 EVT.getSizeInBits()/8;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002489 }
2490 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002491 ExpandOp(ST->getValue(), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002492 IncrementSize = Hi.Val ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002493
Duncan Sands0753fc12008-02-11 10:37:04 +00002494 if (TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002495 std::swap(Lo, Hi);
2496 }
2497
2498 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002499 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002500
2501 if (Hi.Val == NULL) {
2502 // Must be int <-> float one-to-one expansion.
2503 Result = Lo;
2504 break;
2505 }
2506
Evan Cheng8b2794a2006-10-13 21:14:26 +00002507 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002508 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002509 assert(isTypeLegal(Tmp2.getValueType()) &&
2510 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002511 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002512 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002513 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002514 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002515 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2516 break;
2517 }
2518 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002519 switch (getTypeAction(ST->getValue().getValueType())) {
2520 case Legal:
2521 Tmp3 = LegalizeOp(ST->getValue());
2522 break;
2523 case Promote:
2524 // We can promote the value, the truncstore will still take care of it.
2525 Tmp3 = PromoteOp(ST->getValue());
2526 break;
2527 case Expand:
2528 // Just store the low part. This may become a non-trunc store, so make
2529 // sure to use getTruncStore, not UpdateNodeOperands below.
2530 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2531 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2532 SVOffset, MVT::i8, isVolatile, Alignment);
2533 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002534
Duncan Sands83ec4b62008-06-06 12:08:01 +00002535 MVT StVT = ST->getMemoryVT();
2536 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002537
Duncan Sands83ec4b62008-06-06 12:08:01 +00002538 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002539 // Promote to a byte-sized store with upper bits zero if not
2540 // storing an integral number of bytes. For example, promote
2541 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002542 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Duncan Sands7e857202008-01-22 07:17:34 +00002543 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2544 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2545 SVOffset, NVT, isVolatile, Alignment);
2546 } else if (StWidth & (StWidth - 1)) {
2547 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002548 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002549 "Unsupported truncstore!");
2550 unsigned RoundWidth = 1 << Log2_32(StWidth);
2551 assert(RoundWidth < StWidth);
2552 unsigned ExtraWidth = StWidth - RoundWidth;
2553 assert(ExtraWidth < RoundWidth);
2554 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2555 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002556 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2557 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Duncan Sands7e857202008-01-22 07:17:34 +00002558 SDOperand Lo, Hi;
2559 unsigned IncrementSize;
2560
2561 if (TLI.isLittleEndian()) {
2562 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2563 // Store the bottom RoundWidth bits.
2564 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2565 SVOffset, RoundVT,
2566 isVolatile, Alignment);
2567
2568 // Store the remaining ExtraWidth bits.
2569 IncrementSize = RoundWidth / 8;
2570 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2571 DAG.getIntPtrConstant(IncrementSize));
2572 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2573 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2574 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2575 SVOffset + IncrementSize, ExtraVT, isVolatile,
2576 MinAlign(Alignment, IncrementSize));
2577 } else {
2578 // Big endian - avoid unaligned stores.
2579 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2580 // Store the top RoundWidth bits.
2581 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2582 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2583 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2584 RoundVT, isVolatile, Alignment);
2585
2586 // Store the remaining ExtraWidth bits.
2587 IncrementSize = RoundWidth / 8;
2588 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2589 DAG.getIntPtrConstant(IncrementSize));
2590 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2591 SVOffset + IncrementSize, ExtraVT, isVolatile,
2592 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002593 }
Duncan Sands7e857202008-01-22 07:17:34 +00002594
2595 // The order of the stores doesn't matter.
2596 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2597 } else {
2598 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2599 Tmp2 != ST->getBasePtr())
2600 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2601 ST->getOffset());
2602
2603 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2604 default: assert(0 && "This action is not supported yet!");
2605 case TargetLowering::Legal:
2606 // If this is an unaligned store and the target doesn't support it,
2607 // expand it.
2608 if (!TLI.allowsUnalignedMemoryAccesses()) {
2609 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002610 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002611 if (ST->getAlignment() < ABIAlignment)
2612 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2613 TLI);
2614 }
2615 break;
2616 case TargetLowering::Custom:
2617 Result = TLI.LowerOperation(Result, DAG);
2618 break;
2619 case Expand:
2620 // TRUNCSTORE:i16 i32 -> STORE i16
2621 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2622 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2623 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2624 isVolatile, Alignment);
2625 break;
2626 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002627 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002628 }
2629 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002630 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002631 case ISD::PCMARKER:
2632 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002633 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002634 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002635 case ISD::STACKSAVE:
2636 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002637 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2638 Tmp1 = Result.getValue(0);
2639 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002640
Chris Lattner140d53c2006-01-13 02:50:02 +00002641 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2642 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002643 case TargetLowering::Legal: break;
2644 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002645 Tmp3 = TLI.LowerOperation(Result, DAG);
2646 if (Tmp3.Val) {
2647 Tmp1 = LegalizeOp(Tmp3);
2648 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002649 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002650 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002651 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002652 // Expand to CopyFromReg if the target set
2653 // StackPointerRegisterToSaveRestore.
2654 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002655 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002656 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002657 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002658 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002659 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2660 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002661 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002662 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002663 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002664
2665 // Since stacksave produce two values, make sure to remember that we
2666 // legalized both of them.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002667 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2668 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
2669 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002670
Chris Lattner140d53c2006-01-13 02:50:02 +00002671 case ISD::STACKRESTORE:
2672 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2673 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002674 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002675
2676 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2677 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002678 case TargetLowering::Legal: break;
2679 case TargetLowering::Custom:
2680 Tmp1 = TLI.LowerOperation(Result, DAG);
2681 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002682 break;
2683 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002684 // Expand to CopyToReg if the target set
2685 // StackPointerRegisterToSaveRestore.
2686 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2687 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2688 } else {
2689 Result = Tmp1;
2690 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002691 break;
2692 }
2693 break;
2694
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002695 case ISD::READCYCLECOUNTER:
2696 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002697 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002698 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2699 Node->getValueType(0))) {
2700 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002701 case TargetLowering::Legal:
2702 Tmp1 = Result.getValue(0);
2703 Tmp2 = Result.getValue(1);
2704 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002705 case TargetLowering::Custom:
2706 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002707 Tmp1 = LegalizeOp(Result.getValue(0));
2708 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002709 break;
2710 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002711
2712 // Since rdcc produce two values, make sure to remember that we legalized
2713 // both of them.
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002714 AddLegalizedOperand(SDOperand(Node, 0), Tmp1);
2715 AddLegalizedOperand(SDOperand(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002716 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002717
Chris Lattner2ee743f2005-01-14 22:08:15 +00002718 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002719 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2720 case Expand: assert(0 && "It's impossible to expand bools");
2721 case Legal:
2722 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2723 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002724 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002725 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002726 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002727 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002728 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002729 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerb6c80602006-11-28 01:03:30 +00002730 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002731 break;
2732 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002733 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002734 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002735 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002736
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002737 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002738
Nate Begemanb942a3d2005-08-23 04:29:48 +00002739 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002740 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002741 case TargetLowering::Legal: break;
2742 case TargetLowering::Custom: {
2743 Tmp1 = TLI.LowerOperation(Result, DAG);
2744 if (Tmp1.Val) Result = Tmp1;
2745 break;
2746 }
Nate Begeman9373a812005-08-10 20:51:12 +00002747 case TargetLowering::Expand:
2748 if (Tmp1.getOpcode() == ISD::SETCC) {
2749 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2750 Tmp2, Tmp3,
2751 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2752 } else {
2753 Result = DAG.getSelectCC(Tmp1,
2754 DAG.getConstant(0, Tmp1.getValueType()),
2755 Tmp2, Tmp3, ISD::SETNE);
2756 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002757 break;
2758 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002759 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002760 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2761 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002762 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002763 ExtOp = ISD::BIT_CONVERT;
2764 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002765 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002766 ExtOp = ISD::ANY_EXTEND;
2767 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002768 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002769 ExtOp = ISD::FP_EXTEND;
2770 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002771 }
2772 // Promote each of the values to the new type.
2773 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2774 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2775 // Perform the larger operation, then round down.
2776 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002777 if (TruncOp != ISD::FP_ROUND)
2778 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2779 else
2780 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2781 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002782 break;
2783 }
2784 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002785 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002786 case ISD::SELECT_CC: {
2787 Tmp1 = Node->getOperand(0); // LHS
2788 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002789 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2790 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Nate Begeman750ac1b2006-02-01 07:19:44 +00002791 SDOperand CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002792
Nate Begeman750ac1b2006-02-01 07:19:44 +00002793 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2794
2795 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2796 // the LHS is a legal SETCC itself. In this case, we need to compare
2797 // the result against zero to select between true and false values.
2798 if (Tmp2.Val == 0) {
2799 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2800 CC = DAG.getCondCode(ISD::SETNE);
2801 }
2802 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2803
2804 // Everything is legal, see if we should expand this op or something.
2805 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2806 default: assert(0 && "This action is not supported yet!");
2807 case TargetLowering::Legal: break;
2808 case TargetLowering::Custom:
2809 Tmp1 = TLI.LowerOperation(Result, DAG);
2810 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002811 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002812 }
2813 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002814 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002815 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002816 Tmp1 = Node->getOperand(0);
2817 Tmp2 = Node->getOperand(1);
2818 Tmp3 = Node->getOperand(2);
2819 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2820
2821 // If we had to Expand the SetCC operands into a SELECT node, then it may
2822 // not always be possible to return a true LHS & RHS. In this case, just
2823 // return the value we legalized, returned in the LHS
2824 if (Tmp2.Val == 0) {
2825 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002826 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002827 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002828
Chris Lattner73e142f2006-01-30 22:43:50 +00002829 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002830 default: assert(0 && "Cannot handle this action for SETCC yet!");
2831 case TargetLowering::Custom:
2832 isCustom = true;
2833 // FALLTHROUGH.
2834 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002835 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002836 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002837 Tmp4 = TLI.LowerOperation(Result, DAG);
2838 if (Tmp4.Val) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002839 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002840 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002841 case TargetLowering::Promote: {
2842 // First step, figure out the appropriate operation to use.
2843 // Allow SETCC to not be supported for all legal data types
2844 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00002845 MVT NewInTy = Node->getOperand(0).getValueType();
2846 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002847
2848 // Scan for the appropriate larger type to use.
2849 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002850 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00002851
Duncan Sands83ec4b62008-06-06 12:08:01 +00002852 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002853 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002854 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002855 "Fell off of the edge of the floating point world");
2856
2857 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002858 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002859 break;
2860 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002861 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00002862 assert(0 && "Cannot promote Legal Integer SETCC yet");
2863 else {
2864 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2865 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2866 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002867 Tmp1 = LegalizeOp(Tmp1);
2868 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002869 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002870 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002871 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002872 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002873 case TargetLowering::Expand:
2874 // Expand a setcc node into a select_cc of the same condition, lhs, and
2875 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00002876 MVT VT = Node->getValueType(0);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002877 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2878 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002879 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002880 break;
2881 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002882 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00002883 case ISD::VSETCC: {
2884 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2885 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
2886 SDOperand CC = Node->getOperand(2);
2887
2888 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
2889
2890 // Everything is legal, see if we should expand this op or something.
2891 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
2892 default: assert(0 && "This action is not supported yet!");
2893 case TargetLowering::Legal: break;
2894 case TargetLowering::Custom:
2895 Tmp1 = TLI.LowerOperation(Result, DAG);
2896 if (Tmp1.Val) Result = Tmp1;
2897 break;
2898 }
2899 break;
2900 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002901
Chris Lattner5b359c62005-04-02 04:00:59 +00002902 case ISD::SHL_PARTS:
2903 case ISD::SRA_PARTS:
2904 case ISD::SRL_PARTS: {
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002905 SmallVector<SDOperand, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002906 bool Changed = false;
2907 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2908 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2909 Changed |= Ops.back() != Node->getOperand(i);
2910 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002911 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002912 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002913
Evan Cheng05a2d562006-01-09 18:31:59 +00002914 switch (TLI.getOperationAction(Node->getOpcode(),
2915 Node->getValueType(0))) {
2916 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002917 case TargetLowering::Legal: break;
2918 case TargetLowering::Custom:
2919 Tmp1 = TLI.LowerOperation(Result, DAG);
2920 if (Tmp1.Val) {
2921 SDOperand Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002922 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002923 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Evan Cheng05a2d562006-01-09 18:31:59 +00002924 AddLegalizedOperand(SDOperand(Node, i), Tmp2);
2925 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002926 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002927 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002928 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002929 return RetVal;
2930 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002931 break;
2932 }
2933
Chris Lattner2c8086f2005-04-02 05:00:07 +00002934 // Since these produce multiple values, make sure to remember that we
2935 // legalized all of them.
2936 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
2937 AddLegalizedOperand(SDOperand(Node, i), Result.getValue(i));
2938 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002939 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002940
2941 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002942 case ISD::ADD:
2943 case ISD::SUB:
2944 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002945 case ISD::MULHS:
2946 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002947 case ISD::UDIV:
2948 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002949 case ISD::AND:
2950 case ISD::OR:
2951 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002952 case ISD::SHL:
2953 case ISD::SRL:
2954 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002955 case ISD::FADD:
2956 case ISD::FSUB:
2957 case ISD::FMUL:
2958 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00002959 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002960 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002961 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2962 case Expand: assert(0 && "Not possible");
2963 case Legal:
2964 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2965 break;
2966 case Promote:
2967 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2968 break;
2969 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002970
2971 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002972
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002973 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002974 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002975 case TargetLowering::Legal: break;
2976 case TargetLowering::Custom:
2977 Tmp1 = TLI.LowerOperation(Result, DAG);
2978 if (Tmp1.Val) Result = Tmp1;
Andrew Lenharth57030e32005-12-25 01:07:37 +00002979 break;
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002980 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002981 MVT VT = Op.getValueType();
Dan Gohman525178c2007-10-08 18:33:35 +00002982
2983 // See if multiply or divide can be lowered using two-result operations.
2984 SDVTList VTs = DAG.getVTList(VT, VT);
2985 if (Node->getOpcode() == ISD::MUL) {
2986 // We just need the low half of the multiply; try both the signed
2987 // and unsigned forms. If the target supports both SMUL_LOHI and
2988 // UMUL_LOHI, form a preference by checking which forms of plain
2989 // MULH it supports.
2990 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2991 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2992 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2993 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2994 unsigned OpToUse = 0;
2995 if (HasSMUL_LOHI && !HasMULHS) {
2996 OpToUse = ISD::SMUL_LOHI;
2997 } else if (HasUMUL_LOHI && !HasMULHU) {
2998 OpToUse = ISD::UMUL_LOHI;
2999 } else if (HasSMUL_LOHI) {
3000 OpToUse = ISD::SMUL_LOHI;
3001 } else if (HasUMUL_LOHI) {
3002 OpToUse = ISD::UMUL_LOHI;
3003 }
3004 if (OpToUse) {
3005 Result = SDOperand(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0);
3006 break;
3007 }
3008 }
3009 if (Node->getOpcode() == ISD::MULHS &&
3010 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
3011 Result = SDOperand(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
3012 break;
3013 }
3014 if (Node->getOpcode() == ISD::MULHU &&
3015 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
3016 Result = SDOperand(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
3017 break;
3018 }
3019 if (Node->getOpcode() == ISD::SDIV &&
3020 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3021 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0);
3022 break;
3023 }
3024 if (Node->getOpcode() == ISD::UDIV &&
3025 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3026 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0);
3027 break;
3028 }
3029
Dan Gohman82669522007-10-11 23:57:53 +00003030 // Check to see if we have a libcall for this operator.
3031 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3032 bool isSigned = false;
3033 switch (Node->getOpcode()) {
3034 case ISD::UDIV:
3035 case ISD::SDIV:
3036 if (VT == MVT::i32) {
3037 LC = Node->getOpcode() == ISD::UDIV
Evan Cheng56966222007-01-12 02:11:51 +00003038 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003039 isSigned = Node->getOpcode() == ISD::SDIV;
3040 }
3041 break;
3042 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003043 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3044 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003045 break;
3046 default: break;
3047 }
3048 if (LC != RTLIB::UNKNOWN_LIBCALL) {
3049 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003050 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003051 break;
3052 }
3053
Duncan Sands83ec4b62008-06-06 12:08:01 +00003054 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003055 "Cannot expand this binary operator!");
3056 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003057 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003058 break;
3059 }
Evan Chengcc987612006-04-12 21:20:24 +00003060 case TargetLowering::Promote: {
3061 switch (Node->getOpcode()) {
3062 default: assert(0 && "Do not know how to promote this BinOp!");
3063 case ISD::AND:
3064 case ISD::OR:
3065 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003066 MVT OVT = Node->getValueType(0);
3067 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3068 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003069 // Bit convert each of the values to the new type.
3070 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3071 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3072 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3073 // Bit convert the result back the original type.
3074 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3075 break;
3076 }
3077 }
3078 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003079 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003080 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003081
Dan Gohmane14ea862007-10-05 14:17:22 +00003082 case ISD::SMUL_LOHI:
3083 case ISD::UMUL_LOHI:
3084 case ISD::SDIVREM:
3085 case ISD::UDIVREM:
3086 // These nodes will only be produced by target-specific lowering, so
3087 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003088 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003089 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003090
3091 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3092 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3093 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003094 break;
3095
Chris Lattnera09f8482006-03-05 05:09:38 +00003096 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3097 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3098 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3099 case Expand: assert(0 && "Not possible");
3100 case Legal:
3101 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3102 break;
3103 case Promote:
3104 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3105 break;
3106 }
3107
3108 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3109
3110 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3111 default: assert(0 && "Operation not supported");
3112 case TargetLowering::Custom:
3113 Tmp1 = TLI.LowerOperation(Result, DAG);
3114 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003115 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003116 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003117 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003118 // If this target supports fabs/fneg natively and select is cheap,
3119 // do this efficiently.
3120 if (!TLI.isSelectExpensive() &&
3121 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3122 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003123 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003124 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003125 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003126 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003127 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
3128 SDOperand SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003129 SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003130 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3131 // Get the absolute value of the result.
3132 SDOperand AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
3133 // Select between the nabs and abs value based on the sign bit of
3134 // the input.
3135 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3136 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3137 AbsVal),
3138 AbsVal);
3139 Result = LegalizeOp(Result);
3140 break;
3141 }
3142
3143 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003144 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003145 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3146 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3147 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3148 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003149 break;
3150 }
Evan Cheng912095b2007-01-04 21:56:39 +00003151 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003152 break;
3153
Nate Begeman551bf3f2006-02-17 05:43:56 +00003154 case ISD::ADDC:
3155 case ISD::SUBC:
3156 Tmp1 = LegalizeOp(Node->getOperand(0));
3157 Tmp2 = LegalizeOp(Node->getOperand(1));
3158 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3159 // Since this produces two values, make sure to remember that we legalized
3160 // both of them.
3161 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3162 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3163 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003164
Nate Begeman551bf3f2006-02-17 05:43:56 +00003165 case ISD::ADDE:
3166 case ISD::SUBE:
3167 Tmp1 = LegalizeOp(Node->getOperand(0));
3168 Tmp2 = LegalizeOp(Node->getOperand(1));
3169 Tmp3 = LegalizeOp(Node->getOperand(2));
3170 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3171 // Since this produces two values, make sure to remember that we legalized
3172 // both of them.
3173 AddLegalizedOperand(SDOperand(Node, 0), Result.getValue(0));
3174 AddLegalizedOperand(SDOperand(Node, 1), Result.getValue(1));
3175 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00003176
Nate Begeman419f8b62005-10-18 00:27:41 +00003177 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003178 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003179 // TODO: handle the case where the Lo and Hi operands are not of legal type
3180 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3181 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3182 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003183 case TargetLowering::Promote:
3184 case TargetLowering::Custom:
3185 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003186 case TargetLowering::Legal:
3187 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3188 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3189 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003190 case TargetLowering::Expand:
3191 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3192 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3193 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003194 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003195 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00003196 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003197 break;
3198 }
3199 break;
3200 }
3201
Nate Begemanc105e192005-04-06 00:23:54 +00003202 case ISD::UREM:
3203 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003204 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003205 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3206 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003207
Nate Begemanc105e192005-04-06 00:23:54 +00003208 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003209 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3210 case TargetLowering::Custom:
3211 isCustom = true;
3212 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003213 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003214 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003215 if (isCustom) {
3216 Tmp1 = TLI.LowerOperation(Result, DAG);
3217 if (Tmp1.Val) Result = Tmp1;
3218 }
Nate Begemanc105e192005-04-06 00:23:54 +00003219 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003220 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003221 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003222 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003223 MVT VT = Node->getValueType(0);
Dan Gohman525178c2007-10-08 18:33:35 +00003224
3225 // See if remainder can be lowered using two-result operations.
3226 SDVTList VTs = DAG.getVTList(VT, VT);
3227 if (Node->getOpcode() == ISD::SREM &&
3228 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
3229 Result = SDOperand(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3230 break;
3231 }
3232 if (Node->getOpcode() == ISD::UREM &&
3233 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
3234 Result = SDOperand(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1);
3235 break;
3236 }
3237
Duncan Sands83ec4b62008-06-06 12:08:01 +00003238 if (VT.isInteger()) {
Dan Gohman525178c2007-10-08 18:33:35 +00003239 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003240 TargetLowering::Legal) {
3241 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00003242 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003243 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3244 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003245 } else if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003246 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003247 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003248 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003249 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003250 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3251 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003252 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003253 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003254 }
Dan Gohman0d974262007-11-06 22:11:54 +00003255 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003256 assert(VT.isFloatingPoint() &&
Dan Gohman0d974262007-11-06 22:11:54 +00003257 "remainder op must have integer or floating-point type");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003258 if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003259 Result = LegalizeOp(UnrollVectorOp(Op));
3260 } else {
3261 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003262 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3263 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman80176312007-11-05 23:35:22 +00003264 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003265 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003266 }
Nate Begemanc105e192005-04-06 00:23:54 +00003267 }
3268 break;
3269 }
Dan Gohman525178c2007-10-08 18:33:35 +00003270 }
Nate Begemanc105e192005-04-06 00:23:54 +00003271 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003272 case ISD::VAARG: {
3273 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3274 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3275
Duncan Sands83ec4b62008-06-06 12:08:01 +00003276 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003277 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3278 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003279 case TargetLowering::Custom:
3280 isCustom = true;
3281 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003282 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003283 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3284 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003285 Tmp1 = Result.getValue(1);
3286
3287 if (isCustom) {
3288 Tmp2 = TLI.LowerOperation(Result, DAG);
3289 if (Tmp2.Val) {
3290 Result = LegalizeOp(Tmp2);
3291 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3292 }
3293 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003294 break;
3295 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003296 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
3297 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003298 // Increment the pointer, VAList, to the next vaarg
3299 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003300 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begemanacc398c2006-01-25 18:21:52 +00003301 TLI.getPointerTy()));
3302 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00003303 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003304 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003305 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003306 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003307 Result = LegalizeOp(Result);
3308 break;
3309 }
3310 }
3311 // Since VAARG produces two values, make sure to remember that we
3312 // legalized both of them.
3313 AddLegalizedOperand(SDOperand(Node, 0), Result);
Chris Lattner456a93a2006-01-28 07:39:30 +00003314 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3315 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003316 }
3317
3318 case ISD::VACOPY:
3319 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3320 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3321 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3322
3323 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3324 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003325 case TargetLowering::Custom:
3326 isCustom = true;
3327 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003328 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003329 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3330 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003331 if (isCustom) {
3332 Tmp1 = TLI.LowerOperation(Result, DAG);
3333 if (Tmp1.Val) Result = Tmp1;
3334 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003335 break;
3336 case TargetLowering::Expand:
3337 // This defaults to loading a pointer from the input and storing it to the
3338 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003339 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3340 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dan Gohman499c1bd2008-04-17 02:09:26 +00003341 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3342 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003343 break;
3344 }
3345 break;
3346
3347 case ISD::VAEND:
3348 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3349 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3350
3351 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3352 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003353 case TargetLowering::Custom:
3354 isCustom = true;
3355 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003356 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003357 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003358 if (isCustom) {
3359 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
3360 if (Tmp1.Val) Result = Tmp1;
3361 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003362 break;
3363 case TargetLowering::Expand:
3364 Result = Tmp1; // Default to a no-op, return the chain
3365 break;
3366 }
3367 break;
3368
3369 case ISD::VASTART:
3370 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3371 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3372
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003373 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3374
Nate Begemanacc398c2006-01-25 18:21:52 +00003375 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3376 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003377 case TargetLowering::Legal: break;
3378 case TargetLowering::Custom:
3379 Tmp1 = TLI.LowerOperation(Result, DAG);
3380 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003381 break;
3382 }
3383 break;
3384
Nate Begeman35ef9132006-01-11 21:21:00 +00003385 case ISD::ROTL:
3386 case ISD::ROTR:
3387 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3388 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003389 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003390 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3391 default:
3392 assert(0 && "ROTL/ROTR legalize operation not supported");
3393 break;
3394 case TargetLowering::Legal:
3395 break;
3396 case TargetLowering::Custom:
3397 Tmp1 = TLI.LowerOperation(Result, DAG);
3398 if (Tmp1.Val) Result = Tmp1;
3399 break;
3400 case TargetLowering::Promote:
3401 assert(0 && "Do not know how to promote ROTL/ROTR");
3402 break;
3403 case TargetLowering::Expand:
3404 assert(0 && "Do not know how to expand ROTL/ROTR");
3405 break;
3406 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003407 break;
3408
Nate Begemand88fc032006-01-14 03:14:10 +00003409 case ISD::BSWAP:
3410 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3411 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003412 case TargetLowering::Custom:
3413 assert(0 && "Cannot custom legalize this yet!");
3414 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003415 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003416 break;
3417 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003418 MVT OVT = Tmp1.getValueType();
3419 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3420 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003421
Chris Lattner456a93a2006-01-28 07:39:30 +00003422 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3423 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3424 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3425 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3426 break;
3427 }
3428 case TargetLowering::Expand:
3429 Result = ExpandBSWAP(Tmp1);
3430 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003431 }
3432 break;
3433
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003434 case ISD::CTPOP:
3435 case ISD::CTTZ:
3436 case ISD::CTLZ:
3437 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3438 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003439 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003440 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003441 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003442 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003443 TargetLowering::Custom) {
3444 Tmp1 = TLI.LowerOperation(Result, DAG);
3445 if (Tmp1.Val) {
3446 Result = Tmp1;
3447 }
Scott Michel910b66d2007-07-30 21:00:31 +00003448 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003449 break;
3450 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003451 MVT OVT = Tmp1.getValueType();
3452 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003453
3454 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003455 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3456 // Perform the larger operation, then subtract if needed.
3457 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003458 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003459 case ISD::CTPOP:
3460 Result = Tmp1;
3461 break;
3462 case ISD::CTTZ:
3463 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00003464 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003465 DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003466 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003467 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003468 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003469 break;
3470 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003471 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003472 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003473 DAG.getConstant(NVT.getSizeInBits() -
3474 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003475 break;
3476 }
3477 break;
3478 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003479 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003480 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003481 break;
3482 }
3483 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003484
Chris Lattner2c8086f2005-04-02 05:00:07 +00003485 // Unary operators
3486 case ISD::FABS:
3487 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003488 case ISD::FSQRT:
3489 case ISD::FSIN:
3490 case ISD::FCOS:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003491 Tmp1 = LegalizeOp(Node->getOperand(0));
3492 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003493 case TargetLowering::Promote:
3494 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003495 isCustom = true;
3496 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003497 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003498 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003499 if (isCustom) {
3500 Tmp1 = TLI.LowerOperation(Result, DAG);
3501 if (Tmp1.Val) Result = Tmp1;
3502 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003503 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003504 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003505 switch (Node->getOpcode()) {
3506 default: assert(0 && "Unreachable!");
3507 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003508 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3509 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003510 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003511 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003512 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003513 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003514 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003515 Tmp2 = DAG.getConstantFP(0.0, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003516 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00003517 ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003518 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3519 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003520 break;
3521 }
3522 case ISD::FSQRT:
3523 case ISD::FSIN:
3524 case ISD::FCOS: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003525 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003526
3527 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003528 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003529 Result = LegalizeOp(UnrollVectorOp(Op));
3530 break;
3531 }
3532
Evan Cheng56966222007-01-12 02:11:51 +00003533 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003534 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003535 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003536 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3537 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003538 break;
3539 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003540 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3541 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003542 break;
3543 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003544 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3545 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003546 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003547 default: assert(0 && "Unreachable!");
3548 }
Nate Begeman2ac4fc02005-08-04 21:43:28 +00003549 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003550 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003551 break;
3552 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003553 }
3554 break;
3555 }
3556 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003557 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003558 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003559
3560 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003561 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003562 Result = LegalizeOp(UnrollVectorOp(Op));
3563 break;
3564 }
3565
3566 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003567 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3568 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003569 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003570 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003571 break;
3572 }
Chris Lattner35481892005-12-23 00:16:34 +00003573 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003574 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003575 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3576 Node->getValueType(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003577 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003578 // The input has to be a vector type, we have to either scalarize it, pack
3579 // it, or convert it based on whether the input vector type is legal.
3580 SDNode *InVal = Node->getOperand(0).Val;
Dale Johannesene5269622007-10-20 00:07:52 +00003581 int InIx = Node->getOperand(0).ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003582 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3583 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohman7f321562007-06-25 16:23:39 +00003584
3585 // Figure out if there is a simple type corresponding to this Vector
3586 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003587 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00003588 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003589 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003590 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3591 LegalizeOp(Node->getOperand(0)));
3592 break;
3593 } else if (NumElems == 1) {
3594 // Turn this into a bit convert of the scalar input.
3595 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3596 ScalarizeVectorOp(Node->getOperand(0)));
3597 break;
3598 } else {
3599 // FIXME: UNIMP! Store then reload
3600 assert(0 && "Cast from unsupported vector type not implemented yet!");
3601 }
Chris Lattner67993f72006-01-23 07:30:46 +00003602 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003603 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3604 Node->getOperand(0).getValueType())) {
3605 default: assert(0 && "Unknown operation action!");
3606 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003607 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3608 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003609 break;
3610 case TargetLowering::Legal:
3611 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003612 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003613 break;
3614 }
3615 }
3616 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003617
Chris Lattner2c8086f2005-04-02 05:00:07 +00003618 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003619 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003620 case ISD::UINT_TO_FP: {
3621 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003622 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3623 case Legal:
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003624 switch (TLI.getOperationAction(Node->getOpcode(),
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003625 Node->getOperand(0).getValueType())) {
3626 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003627 case TargetLowering::Custom:
3628 isCustom = true;
3629 // FALLTHROUGH
3630 case TargetLowering::Legal:
3631 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003632 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003633 if (isCustom) {
3634 Tmp1 = TLI.LowerOperation(Result, DAG);
3635 if (Tmp1.Val) Result = Tmp1;
3636 }
3637 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003638 case TargetLowering::Expand:
Jim Laskey6269ed12005-08-17 00:39:29 +00003639 Result = ExpandLegalINT_TO_FP(isSigned,
3640 LegalizeOp(Node->getOperand(0)),
3641 Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003642 break;
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003643 case TargetLowering::Promote:
3644 Result = PromoteLegalINT_TO_FP(LegalizeOp(Node->getOperand(0)),
3645 Node->getValueType(0),
3646 isSigned);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003647 break;
Andrew Lenharth5b5b8c22005-11-30 06:43:03 +00003648 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003649 break;
Chris Lattnerb00a6422005-01-07 22:37:48 +00003650 case Expand:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003651 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP,
3652 Node->getValueType(0), Node->getOperand(0));
3653 break;
3654 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003655 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003656 if (isSigned) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003657 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
3658 Tmp1, DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003659 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003660 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
3661 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00003662 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003663 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3664 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003665 break;
3666 }
3667 break;
3668 }
3669 case ISD::TRUNCATE:
3670 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3671 case Legal:
3672 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003673 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003674 break;
3675 case Expand:
3676 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3677
3678 // Since the result is legal, we should just be able to truncate the low
3679 // part of the source.
3680 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3681 break;
3682 case Promote:
3683 Result = PromoteOp(Node->getOperand(0));
3684 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3685 break;
3686 }
3687 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003688
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003689 case ISD::FP_TO_SINT:
3690 case ISD::FP_TO_UINT:
3691 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3692 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003693 Tmp1 = LegalizeOp(Node->getOperand(0));
3694
Chris Lattner1618beb2005-07-29 00:11:56 +00003695 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3696 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003697 case TargetLowering::Custom:
3698 isCustom = true;
3699 // FALLTHROUGH
3700 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003701 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003702 if (isCustom) {
3703 Tmp1 = TLI.LowerOperation(Result, DAG);
3704 if (Tmp1.Val) Result = Tmp1;
3705 }
3706 break;
3707 case TargetLowering::Promote:
3708 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3709 Node->getOpcode() == ISD::FP_TO_SINT);
3710 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003711 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003712 if (Node->getOpcode() == ISD::FP_TO_UINT) {
3713 SDOperand True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003714 MVT VT = Node->getOperand(0).getValueType();
3715 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00003716 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00003717 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
3718 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003719 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00003720 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003721 Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
Nate Begemand2558e32005-08-14 01:20:53 +00003722 Node->getOperand(0), Tmp2, ISD::SETLT);
3723 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3724 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003725 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003726 Tmp2));
3727 False = DAG.getNode(ISD::XOR, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003728 DAG.getConstant(x, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003729 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3730 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003731 } else {
3732 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3733 }
3734 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003735 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003736 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003737 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003738 MVT VT = Op.getValueType();
3739 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003740 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003741 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003742 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3743 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3744 Node->getOperand(0), DAG.getValueType(MVT::f64));
3745 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3746 DAG.getIntPtrConstant(1));
3747 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3748 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003749 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3750 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3751 Tmp2 = DAG.getConstantFP(apf, OVT);
3752 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3753 // FIXME: generated code sucks.
3754 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3755 DAG.getNode(ISD::ADD, MVT::i32,
3756 DAG.getNode(ISD::FP_TO_SINT, VT,
3757 DAG.getNode(ISD::FSUB, OVT,
3758 Node->getOperand(0), Tmp2)),
3759 DAG.getConstant(0x80000000, MVT::i32)),
3760 DAG.getNode(ISD::FP_TO_SINT, VT,
3761 Node->getOperand(0)),
3762 DAG.getCondCode(ISD::SETGE));
3763 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003764 break;
3765 }
Dan Gohmana2e94852008-03-10 23:03:31 +00003766 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsb2ff8852008-07-17 02:36:29 +00003767 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
3768 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
3769 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Evan Cheng6af00d52006-12-13 01:57:55 +00003770 SDOperand Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003771 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003772 break;
3773 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003774 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003775 Tmp1 = PromoteOp(Node->getOperand(0));
3776 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3777 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003778 break;
3779 }
3780 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003781
Chris Lattnerf2670a82008-01-16 06:57:07 +00003782 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003783 MVT DstVT = Op.getValueType();
3784 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003785 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3786 // The only other way we can lower this is to turn it into a STORE,
3787 // LOAD pair, targetting a temporary location (a stack slot).
3788 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3789 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00003790 }
3791 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3792 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3793 case Legal:
3794 Tmp1 = LegalizeOp(Node->getOperand(0));
3795 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3796 break;
3797 case Promote:
3798 Tmp1 = PromoteOp(Node->getOperand(0));
3799 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3800 break;
3801 }
3802 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003803 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003804 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003805 MVT DstVT = Op.getValueType();
3806 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003807 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3808 if (SrcVT == MVT::ppcf128) {
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003809 SDOperand Lo;
3810 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003811 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003812 if (DstVT!=MVT::f64)
3813 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00003814 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00003815 }
Chris Lattner0bd48932008-01-17 07:00:52 +00003816 // The only other way we can lower this is to turn it into a STORE,
3817 // LOAD pair, targetting a temporary location (a stack slot).
3818 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3819 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00003820 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00003821 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3822 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3823 case Legal:
3824 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003825 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003826 break;
3827 case Promote:
3828 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003829 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3830 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003831 break;
3832 }
3833 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003834 }
Chris Lattner13c78e22005-09-02 00:18:10 +00003835 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003836 case ISD::ZERO_EXTEND:
3837 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003838 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003839 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003840 case Legal:
3841 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00003842 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00003843 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3844 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00003845 Tmp1 = TLI.LowerOperation(Result, DAG);
3846 if (Tmp1.Val) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00003847 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003848 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003849 case Promote:
3850 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003851 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003852 Tmp1 = PromoteOp(Node->getOperand(0));
3853 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003854 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003855 case ISD::ZERO_EXTEND:
3856 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003857 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003858 Result = DAG.getZeroExtendInReg(Result,
3859 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003860 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003861 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003862 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003863 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003864 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003865 Result,
3866 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003867 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003868 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003869 }
3870 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003871 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003872 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003873 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003874 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003875
3876 // If this operation is not supported, convert it to a shl/shr or load/store
3877 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003878 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3879 default: assert(0 && "This action not supported for this op yet!");
3880 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003881 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003882 break;
3883 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003884 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003885 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003886 // NOTE: we could fall back on load/store here too for targets without
3887 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003888 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
3889 ExtraVT.getSizeInBits();
Chris Lattner27ff1122005-01-22 00:31:52 +00003890 SDOperand ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003891 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3892 Node->getOperand(0), ShiftCst);
3893 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3894 Result, ShiftCst);
3895 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003896 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003897 // EXTLOAD pair, targetting a temporary location (a stack slot).
3898
3899 // NOTE: there is a choice here between constantly creating new stack
3900 // slots and always reusing the same one. We currently always create
3901 // new ones, as reuse may inhibit scheduling.
Chris Lattnera66bb392008-01-16 07:51:34 +00003902 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3903 Node->getValueType(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00003904 } else {
3905 assert(0 && "Unknown op");
3906 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003907 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003908 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003909 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003910 }
Duncan Sands36397f52007-07-27 12:58:54 +00003911 case ISD::TRAMPOLINE: {
3912 SDOperand Ops[6];
3913 for (unsigned i = 0; i != 6; ++i)
3914 Ops[i] = LegalizeOp(Node->getOperand(i));
3915 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3916 // The only option for this node is to custom lower it.
3917 Result = TLI.LowerOperation(Result, DAG);
3918 assert(Result.Val && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00003919
3920 // Since trampoline produces two values, make sure to remember that we
3921 // legalized both of them.
3922 Tmp1 = LegalizeOp(Result.getValue(1));
3923 Result = LegalizeOp(Result);
3924 AddLegalizedOperand(SDOperand(Node, 0), Result);
3925 AddLegalizedOperand(SDOperand(Node, 1), Tmp1);
3926 return Op.ResNo ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00003927 }
Dan Gohman9c78a392008-05-14 00:43:10 +00003928 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003929 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003930 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3931 default: assert(0 && "This action not supported for this op yet!");
3932 case TargetLowering::Custom:
3933 Result = TLI.LowerOperation(Op, DAG);
3934 if (Result.Val) break;
3935 // Fall Thru
3936 case TargetLowering::Legal:
3937 // If this operation is not supported, lower it to constant 1
3938 Result = DAG.getConstant(1, VT);
3939 break;
3940 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00003941 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003942 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003943 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003944 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003945 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3946 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00003947 case TargetLowering::Legal:
3948 Tmp1 = LegalizeOp(Node->getOperand(0));
3949 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3950 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003951 case TargetLowering::Custom:
3952 Result = TLI.LowerOperation(Op, DAG);
3953 if (Result.Val) break;
3954 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00003955 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003956 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00003957 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003958 TargetLowering::ArgListTy Args;
3959 std::pair<SDOperand,SDOperand> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00003960 TLI.LowerCallTo(Tmp1, Type::VoidTy,
3961 false, false, false, CallingConv::C, false,
Chris Lattner034f12e2008-01-15 22:09:33 +00003962 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
3963 Args, DAG);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003964 Result = CallResult.second;
3965 break;
3966 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003967 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003968 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00003969 }
Chris Lattner456a93a2006-01-28 07:39:30 +00003970
Chris Lattner4ddd2832006-04-08 04:13:17 +00003971 assert(Result.getValueType() == Op.getValueType() &&
3972 "Bad legalization!");
3973
Chris Lattner456a93a2006-01-28 07:39:30 +00003974 // Make sure that the generated code is itself legal.
3975 if (Result != Op)
3976 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003977
Chris Lattner45982da2005-05-12 16:53:42 +00003978 // Note that LegalizeOp may be reentered even from single-use nodes, which
3979 // means that we always must cache transformed nodes.
3980 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003981 return Result;
3982}
3983
Chris Lattner8b6fa222005-01-15 22:16:26 +00003984/// PromoteOp - Given an operation that produces a value in an invalid type,
3985/// promote it to compute the value into a larger type. The produced value will
3986/// have the correct bits for the low portion of the register, but no guarantee
3987/// is made about the top bits: it may be zero, sign-extended, or garbage.
Chris Lattner03c85462005-01-15 05:21:40 +00003988SDOperand SelectionDAGLegalize::PromoteOp(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003989 MVT VT = Op.getValueType();
3990 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00003991 assert(getTypeAction(VT) == Promote &&
3992 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00003993 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00003994 "Cannot promote to smaller type!");
3995
Chris Lattner03c85462005-01-15 05:21:40 +00003996 SDOperand Tmp1, Tmp2, Tmp3;
Chris Lattner03c85462005-01-15 05:21:40 +00003997 SDOperand Result;
3998 SDNode *Node = Op.Val;
3999
Roman Levenstein9cac5252008-04-16 16:15:27 +00004000 DenseMap<SDOperand, SDOperand>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004001 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004002
Chris Lattner03c85462005-01-15 05:21:40 +00004003 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004004 case ISD::CopyFromReg:
4005 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004006 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004007#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004008 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004009#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004010 assert(0 && "Do not know how to promote this operator!");
4011 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004012 case ISD::UNDEF:
4013 Result = DAG.getNode(ISD::UNDEF, NVT);
4014 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004015 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004016 if (VT != MVT::i1)
4017 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4018 else
4019 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004020 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4021 break;
4022 case ISD::ConstantFP:
4023 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4024 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4025 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004026
Chris Lattner82fbfb62005-01-18 02:59:52 +00004027 case ISD::SETCC:
Scott Michel5b8f82e2008-03-10 15:42:14 +00004028 assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
Nate Begeman5922f562008-03-14 00:53:31 +00004029 && "SetCC type is not legal??");
Scott Michel5b8f82e2008-03-10 15:42:14 +00004030 Result = DAG.getNode(ISD::SETCC,
Nate Begeman5922f562008-03-14 00:53:31 +00004031 TLI.getSetCCResultType(Node->getOperand(0)),
4032 Node->getOperand(0), Node->getOperand(1),
4033 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004034 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00004035
Chris Lattner03c85462005-01-15 05:21:40 +00004036 case ISD::TRUNCATE:
4037 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4038 case Legal:
4039 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004040 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004041 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004042 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Chris Lattner03c85462005-01-15 05:21:40 +00004043 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4044 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004045 case Promote:
4046 // The truncation is not required, because we don't guarantee anything
4047 // about high bits anyway.
4048 Result = PromoteOp(Node->getOperand(0));
4049 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004050 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004051 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4052 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00004053 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004054 }
4055 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004056 case ISD::SIGN_EXTEND:
4057 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004058 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004059 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4060 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4061 case Legal:
4062 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00004063 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004064 break;
4065 case Promote:
4066 // Promote the reg if it's smaller.
4067 Result = PromoteOp(Node->getOperand(0));
4068 // The high bits are not guaranteed to be anything. Insert an extend.
4069 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00004070 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004071 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004072 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00004073 Result = DAG.getZeroExtendInReg(Result,
4074 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004075 break;
4076 }
4077 break;
Chris Lattner35481892005-12-23 00:16:34 +00004078 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004079 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4080 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00004081 Result = PromoteOp(Result);
4082 break;
4083
Chris Lattner8b6fa222005-01-15 22:16:26 +00004084 case ISD::FP_EXTEND:
4085 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4086 case ISD::FP_ROUND:
4087 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4088 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4089 case Promote: assert(0 && "Unreachable with 2 FP types!");
4090 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004091 if (Node->getConstantOperandVal(1) == 0) {
4092 // Input is legal? Do an FP_ROUND_INREG.
4093 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4094 DAG.getValueType(VT));
4095 } else {
4096 // Just remove the truncate, it isn't affecting the value.
4097 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4098 Node->getOperand(1));
4099 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004100 break;
4101 }
4102 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004103 case ISD::SINT_TO_FP:
4104 case ISD::UINT_TO_FP:
4105 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4106 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004107 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00004108 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004109 break;
4110
4111 case Promote:
4112 Result = PromoteOp(Node->getOperand(0));
4113 if (Node->getOpcode() == ISD::SINT_TO_FP)
4114 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004115 Result,
4116 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004117 else
Chris Lattner23993562005-04-13 02:38:47 +00004118 Result = DAG.getZeroExtendInReg(Result,
4119 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004120 // No extra round required here.
4121 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004122 break;
4123 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004124 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4125 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00004126 // Round if we cannot tolerate excess precision.
4127 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004128 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4129 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004130 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004131 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004132 break;
4133
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004134 case ISD::SIGN_EXTEND_INREG:
4135 Result = PromoteOp(Node->getOperand(0));
4136 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4137 Node->getOperand(1));
4138 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004139 case ISD::FP_TO_SINT:
4140 case ISD::FP_TO_UINT:
4141 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4142 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004143 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004144 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004145 break;
4146 case Promote:
4147 // The input result is prerounded, so we don't have to do anything
4148 // special.
4149 Tmp1 = PromoteOp(Node->getOperand(0));
4150 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004151 }
Nate Begemand2558e32005-08-14 01:20:53 +00004152 // If we're promoting a UINT to a larger size, check to see if the new node
4153 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4154 // we can use that instead. This allows us to generate better code for
4155 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4156 // legal, such as PowerPC.
4157 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004158 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004159 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4160 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00004161 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4162 } else {
4163 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4164 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004165 break;
4166
Chris Lattner2c8086f2005-04-02 05:00:07 +00004167 case ISD::FABS:
4168 case ISD::FNEG:
4169 Tmp1 = PromoteOp(Node->getOperand(0));
4170 assert(Tmp1.getValueType() == NVT);
4171 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4172 // NOTE: we do not have to do any extra rounding here for
4173 // NoExcessFPPrecision, because we know the input will have the appropriate
4174 // precision, and these operations don't modify precision at all.
4175 break;
4176
Chris Lattnerda6ba872005-04-28 21:44:33 +00004177 case ISD::FSQRT:
4178 case ISD::FSIN:
4179 case ISD::FCOS:
4180 Tmp1 = PromoteOp(Node->getOperand(0));
4181 assert(Tmp1.getValueType() == NVT);
4182 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004183 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004184 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4185 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004186 break;
4187
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004188 case ISD::FPOWI: {
4189 // Promote f32 powi to f64 powi. Note that this could insert a libcall
4190 // directly as well, which may be better.
4191 Tmp1 = PromoteOp(Node->getOperand(0));
4192 assert(Tmp1.getValueType() == NVT);
4193 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
4194 if (NoExcessFPPrecision)
4195 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4196 DAG.getValueType(VT));
4197 break;
4198 }
4199
Mon P Wang28873102008-06-25 08:15:39 +00004200 case ISD::ATOMIC_CMP_SWAP: {
4201 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004202 Tmp2 = PromoteOp(Node->getOperand(2));
4203 Tmp3 = PromoteOp(Node->getOperand(3));
Mon P Wang28873102008-06-25 08:15:39 +00004204 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4205 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004206 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004207 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004208 // Remember that we legalized the chain.
4209 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4210 break;
4211 }
Mon P Wang28873102008-06-25 08:15:39 +00004212 case ISD::ATOMIC_LOAD_ADD:
4213 case ISD::ATOMIC_LOAD_SUB:
Mon P Wang63307c32008-05-05 19:05:59 +00004214 case ISD::ATOMIC_LOAD_AND:
4215 case ISD::ATOMIC_LOAD_OR:
4216 case ISD::ATOMIC_LOAD_XOR:
Andrew Lenharth507a58a2008-06-14 05:48:15 +00004217 case ISD::ATOMIC_LOAD_NAND:
Mon P Wang63307c32008-05-05 19:05:59 +00004218 case ISD::ATOMIC_LOAD_MIN:
4219 case ISD::ATOMIC_LOAD_MAX:
4220 case ISD::ATOMIC_LOAD_UMIN:
4221 case ISD::ATOMIC_LOAD_UMAX:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004222 case ISD::ATOMIC_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004223 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004224 Tmp2 = PromoteOp(Node->getOperand(2));
Mon P Wang28873102008-06-25 08:15:39 +00004225 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4226 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004227 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004228 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004229 // Remember that we legalized the chain.
4230 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4231 break;
4232 }
4233
Chris Lattner03c85462005-01-15 05:21:40 +00004234 case ISD::AND:
4235 case ISD::OR:
4236 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004237 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004238 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004239 case ISD::MUL:
4240 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004241 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004242 // that too is okay if they are integer operations.
4243 Tmp1 = PromoteOp(Node->getOperand(0));
4244 Tmp2 = PromoteOp(Node->getOperand(1));
4245 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4246 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004247 break;
4248 case ISD::FADD:
4249 case ISD::FSUB:
4250 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004251 Tmp1 = PromoteOp(Node->getOperand(0));
4252 Tmp2 = PromoteOp(Node->getOperand(1));
4253 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4254 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4255
4256 // Floating point operations will give excess precision that we may not be
4257 // able to tolerate. If we DO allow excess precision, just leave it,
4258 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004259 // FIXME: Why would we need to round FP ops more than integer ones?
4260 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004261 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004262 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4263 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004264 break;
4265
Chris Lattner8b6fa222005-01-15 22:16:26 +00004266 case ISD::SDIV:
4267 case ISD::SREM:
4268 // These operators require that their input be sign extended.
4269 Tmp1 = PromoteOp(Node->getOperand(0));
4270 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004271 if (NVT.isInteger()) {
Chris Lattner15e4b012005-07-10 00:07:11 +00004272 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4273 DAG.getValueType(VT));
4274 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4275 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004276 }
4277 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4278
4279 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004280 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004281 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4282 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004283 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004284 case ISD::FDIV:
4285 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004286 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004287 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004288 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004289 case Expand: assert(0 && "not implemented");
4290 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4291 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004292 }
4293 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004294 case Expand: assert(0 && "not implemented");
4295 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4296 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004297 }
Chris Lattner01b3d732005-09-28 22:28:18 +00004298 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4299
4300 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004301 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00004302 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4303 DAG.getValueType(VT));
4304 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004305
4306 case ISD::UDIV:
4307 case ISD::UREM:
4308 // These operators require that their input be zero extended.
4309 Tmp1 = PromoteOp(Node->getOperand(0));
4310 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004311 assert(NVT.isInteger() && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00004312 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4313 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004314 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4315 break;
4316
4317 case ISD::SHL:
4318 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00004319 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004320 break;
4321 case ISD::SRA:
4322 // The input value must be properly sign extended.
4323 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00004324 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4325 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00004326 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004327 break;
4328 case ISD::SRL:
4329 // The input value must be properly zero extended.
4330 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00004331 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004332 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004333 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004334
4335 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004336 Tmp1 = Node->getOperand(0); // Get the chain.
4337 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004338 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4339 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004340 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004341 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004342 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
4343 SDOperand VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004344 // Increment the pointer, VAList, to the next vaarg
4345 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004346 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004347 TLI.getPointerTy()));
4348 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00004349 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004350 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004351 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004352 }
4353 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004354 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004355 break;
4356
Evan Cheng466685d2006-10-09 20:57:25 +00004357 case ISD::LOAD: {
4358 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004359 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4360 ? ISD::EXTLOAD : LD->getExtensionType();
4361 Result = DAG.getExtLoad(ExtType, NVT,
4362 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004363 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004364 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004365 LD->isVolatile(),
4366 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004367 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004368 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004369 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004370 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004371 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004372 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4373 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004374
Duncan Sands83ec4b62008-06-06 12:08:01 +00004375 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004376 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004377 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4378 // Ensure that the resulting node is at least the same size as the operands'
4379 // value types, because we cannot assume that TLI.getSetCCValueType() is
4380 // constant.
4381 Result = DAG.getNode(ISD::SELECT, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004382 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004383 }
Nate Begeman9373a812005-08-10 20:51:12 +00004384 case ISD::SELECT_CC:
4385 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4386 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4387 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004388 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004389 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004390 case ISD::BSWAP:
4391 Tmp1 = Node->getOperand(0);
4392 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4393 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4394 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004395 DAG.getConstant(NVT.getSizeInBits() -
4396 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004397 TLI.getShiftAmountTy()));
4398 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004399 case ISD::CTPOP:
4400 case ISD::CTTZ:
4401 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004402 // Zero extend the argument
4403 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004404 // Perform the larger operation, then subtract if needed.
4405 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004406 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004407 case ISD::CTPOP:
4408 Result = Tmp1;
4409 break;
4410 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004411 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004412 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004413 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004414 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004415 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004416 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004417 break;
4418 case ISD::CTLZ:
4419 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004420 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004421 DAG.getConstant(NVT.getSizeInBits() -
4422 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004423 break;
4424 }
4425 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004426 case ISD::EXTRACT_SUBVECTOR:
4427 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004428 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004429 case ISD::EXTRACT_VECTOR_ELT:
4430 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4431 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004432 }
4433
4434 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004435
4436 // Make sure the result is itself legal.
4437 Result = LegalizeOp(Result);
4438
4439 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004440 AddPromotedOperand(Op, Result);
4441 return Result;
4442}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004443
Dan Gohman7f321562007-06-25 16:23:39 +00004444/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4445/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4446/// based on the vector type. The return type of this matches the element type
4447/// of the vector, which may not be legal for the target.
4448SDOperand SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDOperand Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004449 // We know that operand #0 is the Vec vector. If the index is a constant
4450 // or if the invec is a supported hardware type, we can use it. Otherwise,
4451 // lower to a store then an indexed load.
4452 SDOperand Vec = Op.getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00004453 SDOperand Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00004454
Duncan Sands83ec4b62008-06-06 12:08:01 +00004455 MVT TVT = Vec.getValueType();
4456 unsigned NumElems = TVT.getVectorNumElements();
Chris Lattner15972212006-03-31 17:55:51 +00004457
Dan Gohman7f321562007-06-25 16:23:39 +00004458 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4459 default: assert(0 && "This action is not supported yet!");
4460 case TargetLowering::Custom: {
4461 Vec = LegalizeOp(Vec);
4462 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
4463 SDOperand Tmp3 = TLI.LowerOperation(Op, DAG);
4464 if (Tmp3.Val)
4465 return Tmp3;
4466 break;
4467 }
4468 case TargetLowering::Legal:
4469 if (isTypeLegal(TVT)) {
4470 Vec = LegalizeOp(Vec);
4471 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004472 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004473 }
4474 break;
4475 case TargetLowering::Expand:
4476 break;
4477 }
4478
4479 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004480 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004481 Op = ScalarizeVectorOp(Vec);
4482 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00004483 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00004484 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Chris Lattner15972212006-03-31 17:55:51 +00004485 SDOperand Lo, Hi;
4486 SplitVectorOp(Vec, Lo, Hi);
Nate Begeman55030dc2008-01-29 02:24:00 +00004487 if (CIdx->getValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00004488 Vec = Lo;
4489 } else {
4490 Vec = Hi;
Nate Begeman55030dc2008-01-29 02:24:00 +00004491 Idx = DAG.getConstant(CIdx->getValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00004492 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00004493 }
Dan Gohman7f321562007-06-25 16:23:39 +00004494
Chris Lattner15972212006-03-31 17:55:51 +00004495 // It's now an extract from the appropriate high or low part. Recurse.
4496 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004497 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00004498 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004499 // Store the value to a temporary stack slot, then LOAD the scalar
4500 // element back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004501 SDOperand StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dan Gohman7f321562007-06-25 16:23:39 +00004502 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
4503
4504 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004505 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dan Gohman7f321562007-06-25 16:23:39 +00004506 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4507 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004508
Duncan Sands8e4eb092008-06-08 20:54:56 +00004509 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Chris Lattnerf185e672007-10-19 16:47:35 +00004510 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004511 else
Chris Lattnerf185e672007-10-19 16:47:35 +00004512 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004513
Dan Gohman7f321562007-06-25 16:23:39 +00004514 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4515
4516 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00004517 }
Dan Gohman7f321562007-06-25 16:23:39 +00004518 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00004519}
4520
Dan Gohman7f321562007-06-25 16:23:39 +00004521/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00004522/// we assume the operation can be split if it is not already legal.
Dan Gohman7f321562007-06-25 16:23:39 +00004523SDOperand SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDOperand Op) {
Dan Gohman65956352007-06-13 15:12:02 +00004524 // We know that operand #0 is the Vec vector. For now we assume the index
4525 // is a constant and that the extracted result is a supported hardware type.
4526 SDOperand Vec = Op.getOperand(0);
4527 SDOperand Idx = LegalizeOp(Op.getOperand(1));
4528
Duncan Sands83ec4b62008-06-06 12:08:01 +00004529 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Dan Gohman65956352007-06-13 15:12:02 +00004530
Duncan Sands83ec4b62008-06-06 12:08:01 +00004531 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00004532 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004533 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00004534 }
4535
4536 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
4537 SDOperand Lo, Hi;
4538 SplitVectorOp(Vec, Lo, Hi);
4539 if (CIdx->getValue() < NumElems/2) {
4540 Vec = Lo;
4541 } else {
4542 Vec = Hi;
4543 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
4544 }
4545
4546 // It's now an extract from the appropriate high or low part. Recurse.
4547 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004548 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00004549}
4550
Nate Begeman750ac1b2006-02-01 07:19:44 +00004551/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4552/// with condition CC on the current target. This usually involves legalizing
4553/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4554/// there may be no choice but to create a new SetCC node to represent the
4555/// legalized value of setcc lhs, rhs. In this case, the value is returned in
4556/// LHS, and the SDOperand returned in RHS has a nil SDNode value.
4557void SelectionDAGLegalize::LegalizeSetCCOperands(SDOperand &LHS,
4558 SDOperand &RHS,
4559 SDOperand &CC) {
Dale Johannesen638ccd52007-10-06 01:24:11 +00004560 SDOperand Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004561
4562 switch (getTypeAction(LHS.getValueType())) {
4563 case Legal:
4564 Tmp1 = LegalizeOp(LHS); // LHS
4565 Tmp2 = LegalizeOp(RHS); // RHS
4566 break;
4567 case Promote:
4568 Tmp1 = PromoteOp(LHS); // LHS
4569 Tmp2 = PromoteOp(RHS); // RHS
4570
4571 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004572 if (LHS.getValueType().isInteger()) {
4573 MVT VT = LHS.getValueType();
4574 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00004575
4576 // Otherwise, we have to insert explicit sign or zero extends. Note
4577 // that we could insert sign extends for ALL conditions, but zero extend
4578 // is cheaper on many machines (an AND instead of two shifts), so prefer
4579 // it.
4580 switch (cast<CondCodeSDNode>(CC)->get()) {
4581 default: assert(0 && "Unknown integer comparison!");
4582 case ISD::SETEQ:
4583 case ISD::SETNE:
4584 case ISD::SETUGE:
4585 case ISD::SETUGT:
4586 case ISD::SETULE:
4587 case ISD::SETULT:
4588 // ALL of these operations will work if we either sign or zero extend
4589 // the operands (including the unsigned comparisons!). Zero extend is
4590 // usually a simpler/cheaper operation, so prefer it.
4591 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4592 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4593 break;
4594 case ISD::SETGE:
4595 case ISD::SETGT:
4596 case ISD::SETLT:
4597 case ISD::SETLE:
4598 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4599 DAG.getValueType(VT));
4600 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4601 DAG.getValueType(VT));
4602 break;
4603 }
4604 }
4605 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004606 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004607 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00004608 if (VT == MVT::f32 || VT == MVT::f64) {
4609 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00004610 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00004611 switch (cast<CondCodeSDNode>(CC)->get()) {
4612 case ISD::SETEQ:
4613 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00004614 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004615 break;
4616 case ISD::SETNE:
4617 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00004618 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004619 break;
4620 case ISD::SETGE:
4621 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00004622 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004623 break;
4624 case ISD::SETLT:
4625 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00004626 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004627 break;
4628 case ISD::SETLE:
4629 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00004630 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004631 break;
4632 case ISD::SETGT:
4633 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00004634 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004635 break;
4636 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00004637 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4638 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004639 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00004640 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004641 break;
4642 default:
Evan Cheng56966222007-01-12 02:11:51 +00004643 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004644 switch (cast<CondCodeSDNode>(CC)->get()) {
4645 case ISD::SETONE:
4646 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004647 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004648 // Fallthrough
4649 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004650 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004651 break;
4652 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004653 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004654 break;
4655 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004656 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004657 break;
4658 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004659 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004660 break;
Evan Cheng56966222007-01-12 02:11:51 +00004661 case ISD::SETUEQ:
4662 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004663 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004664 default: assert(0 && "Unsupported FP setcc!");
4665 }
4666 }
Duncan Sandsf9516202008-06-30 10:19:09 +00004667
Evan Cheng2b49c502006-12-15 02:59:56 +00004668 SDOperand Dummy;
Duncan Sands4bdcb612008-07-02 17:40:58 +00004669 SDOperand Ops[2] = { LHS, RHS };
4670 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004671 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004672 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004673 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004674 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004675 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00004676 CC);
Duncan Sands4bdcb612008-07-02 17:40:58 +00004677 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004678 false /*sign irrelevant*/, Dummy);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004679 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004680 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004681 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4682 Tmp2 = SDOperand();
4683 }
Evan Cheng21cacc42008-07-07 07:18:09 +00004684 LHS = LegalizeOp(Tmp1);
Evan Cheng2b49c502006-12-15 02:59:56 +00004685 RHS = Tmp2;
4686 return;
4687 }
4688
Nate Begeman750ac1b2006-02-01 07:19:44 +00004689 SDOperand LHSLo, LHSHi, RHSLo, RHSHi;
4690 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004691 ExpandOp(RHS, RHSLo, RHSHi);
4692 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4693
4694 if (VT==MVT::ppcf128) {
4695 // FIXME: This generated code sucks. We want to generate
4696 // FCMP crN, hi1, hi2
4697 // BNE crN, L:
4698 // FCMP crN, lo1, lo2
4699 // The following can be improved, but not that much.
Scott Michel5b8f82e2008-03-10 15:42:14 +00004700 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETEQ);
4701 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004702 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004703 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETNE);
4704 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004705 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4706 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
4707 Tmp2 = SDOperand();
4708 break;
4709 }
4710
4711 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004712 case ISD::SETEQ:
4713 case ISD::SETNE:
4714 if (RHSLo == RHSHi)
4715 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4716 if (RHSCST->isAllOnesValue()) {
4717 // Comparison to -1.
4718 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4719 Tmp2 = RHSLo;
4720 break;
4721 }
4722
4723 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4724 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4725 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4726 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4727 break;
4728 default:
4729 // If this is a comparison of the sign bit, just look at the top part.
4730 // X > -1, x < 0
4731 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4732 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004733 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00004734 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4735 CST->isAllOnesValue())) { // X > -1
4736 Tmp1 = LHSHi;
4737 Tmp2 = RHSHi;
4738 break;
4739 }
4740
4741 // FIXME: This generated code sucks.
4742 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004743 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004744 default: assert(0 && "Unknown integer setcc!");
4745 case ISD::SETLT:
4746 case ISD::SETULT: LowCC = ISD::SETULT; break;
4747 case ISD::SETGT:
4748 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4749 case ISD::SETLE:
4750 case ISD::SETULE: LowCC = ISD::SETULE; break;
4751 case ISD::SETGE:
4752 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4753 }
4754
4755 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4756 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4757 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4758
4759 // NOTE: on targets without efficient SELECT of bools, we can always use
4760 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004761 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004762 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
Nate Begeman5922f562008-03-14 00:53:31 +00004763 LowCC, false, DagCombineInfo);
Evan Cheng2e677812007-02-08 22:16:19 +00004764 if (!Tmp1.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004765 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4766 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004767 CCCode, false, DagCombineInfo);
4768 if (!Tmp2.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004769 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004770 RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00004771
4772 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4773 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
Dan Gohman002e5d02008-03-13 22:13:53 +00004774 if ((Tmp1C && Tmp1C->isNullValue()) ||
4775 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00004776 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4777 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00004778 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00004779 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4780 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4781 // low part is known false, returns high part.
4782 // For LE / GE, if high part is known false, ignore the low part.
4783 // For LT / GT, if high part is known true, ignore the low part.
4784 Tmp1 = Tmp2;
4785 Tmp2 = SDOperand();
4786 } else {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004787 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004788 ISD::SETEQ, false, DagCombineInfo);
4789 if (!Result.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004790 Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004791 ISD::SETEQ);
Evan Cheng2e677812007-02-08 22:16:19 +00004792 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4793 Result, Tmp1, Tmp2));
4794 Tmp1 = Result;
4795 Tmp2 = SDOperand();
4796 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004797 }
4798 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004799 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004800 LHS = Tmp1;
4801 RHS = Tmp2;
4802}
4803
Chris Lattner1401d152008-01-16 07:45:30 +00004804/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4805/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4806/// a load from the stack slot to DestVT, extending it if needed.
4807/// The resultant code need not be legal.
4808SDOperand SelectionDAGLegalize::EmitStackConvert(SDOperand SrcOp,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004809 MVT SlotVT,
4810 MVT DestVT) {
Chris Lattner35481892005-12-23 00:16:34 +00004811 // Create the stack frame object.
Mon P Wang364d73d2008-07-05 20:40:31 +00004812 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
4813 SrcOp.getValueType().getTypeForMVT());
4814 SDOperand FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
4815
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004816 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004817 int SPFI = StackPtrFI->getIndex();
Mon P Wang364d73d2008-07-05 20:40:31 +00004818
Duncan Sands83ec4b62008-06-06 12:08:01 +00004819 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
4820 unsigned SlotSize = SlotVT.getSizeInBits();
4821 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang364d73d2008-07-05 20:40:31 +00004822 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
4823 DestVT.getTypeForMVT());
Chris Lattner35481892005-12-23 00:16:34 +00004824
Chris Lattner1401d152008-01-16 07:45:30 +00004825 // Emit a store to the stack slot. Use a truncstore if the input value is
4826 // later than DestVT.
4827 SDOperand Store;
Mon P Wang364d73d2008-07-05 20:40:31 +00004828
Chris Lattner1401d152008-01-16 07:45:30 +00004829 if (SrcSize > SlotSize)
Dan Gohman69de1932008-02-06 22:27:42 +00004830 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004831 PseudoSourceValue::getFixedStack(SPFI), 0,
4832 SlotVT, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004833 else {
4834 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman69de1932008-02-06 22:27:42 +00004835 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004836 PseudoSourceValue::getFixedStack(SPFI), 0,
Mon P Wang364d73d2008-07-05 20:40:31 +00004837 false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004838 }
4839
Chris Lattner35481892005-12-23 00:16:34 +00004840 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00004841 if (SlotSize == DestSize)
Mon P Wang364d73d2008-07-05 20:40:31 +00004842 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0, false, DestAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004843
4844 assert(SlotSize < DestSize && "Unknown extension!");
Mon P Wang364d73d2008-07-05 20:40:31 +00004845 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT,
4846 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00004847}
4848
Chris Lattner4352cc92006-04-04 17:23:26 +00004849SDOperand SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
4850 // Create a vector sized/aligned stack slot, store the value to element #0,
4851 // then load the whole vector back out.
Chris Lattner85dd3be2007-10-15 17:48:57 +00004852 SDOperand StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00004853
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004854 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004855 int SPFI = StackPtrFI->getIndex();
4856
Evan Cheng786225a2006-10-05 23:01:46 +00004857 SDOperand Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004858 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohman69de1932008-02-06 22:27:42 +00004859 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004860 PseudoSourceValue::getFixedStack(SPFI), 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00004861}
4862
4863
Chris Lattnerce872152006-03-19 06:31:19 +00004864/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004865/// support the operation, but do support the resultant vector type.
Chris Lattnerce872152006-03-19 06:31:19 +00004866SDOperand SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
4867
4868 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004869 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004870 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004871 bool isOnlyLowElement = true;
Chris Lattner87100e02006-03-20 01:52:29 +00004872 SDOperand SplatValue = Node->getOperand(0);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004873
4874 // FIXME: it would be far nicer to change this into map<SDOperand,uint64_t>
4875 // and use a bitmask instead of a list of elements.
Evan Cheng033e6812006-03-24 01:17:21 +00004876 std::map<SDOperand, std::vector<unsigned> > Values;
4877 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004878 bool isConstant = true;
4879 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4880 SplatValue.getOpcode() != ISD::UNDEF)
4881 isConstant = false;
4882
Evan Cheng033e6812006-03-24 01:17:21 +00004883 for (unsigned i = 1; i < NumElems; ++i) {
4884 SDOperand V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004885 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004886 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004887 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004888 if (SplatValue != V)
Chris Lattner87100e02006-03-20 01:52:29 +00004889 SplatValue = SDOperand(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004890
4891 // If this isn't a constant element or an undef, we can't use a constant
4892 // pool load.
4893 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4894 V.getOpcode() != ISD::UNDEF)
4895 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004896 }
4897
4898 if (isOnlyLowElement) {
4899 // If the low element is an undef too, then this whole things is an undef.
4900 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4901 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4902 // Otherwise, turn this into a scalar_to_vector node.
4903 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4904 Node->getOperand(0));
4905 }
4906
Chris Lattner2eb86532006-03-24 07:29:17 +00004907 // If all elements are constants, create a load from the constant pool.
4908 if (isConstant) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004909 MVT VT = Node->getValueType(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004910 std::vector<Constant*> CV;
4911 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4912 if (ConstantFPSDNode *V =
4913 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Chris Lattner02a260a2008-04-20 00:41:09 +00004914 CV.push_back(ConstantFP::get(V->getValueAPF()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004915 } else if (ConstantSDNode *V =
Chris Lattner02a260a2008-04-20 00:41:09 +00004916 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
4917 CV.push_back(ConstantInt::get(V->getAPIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004918 } else {
4919 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner02a260a2008-04-20 00:41:09 +00004920 const Type *OpNTy =
Duncan Sands83ec4b62008-06-06 12:08:01 +00004921 Node->getOperand(0).getValueType().getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00004922 CV.push_back(UndefValue::get(OpNTy));
4923 }
4924 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00004925 Constant *CP = ConstantVector::get(CV);
Chris Lattner2eb86532006-03-24 07:29:17 +00004926 SDOperand CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman69de1932008-02-06 22:27:42 +00004927 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00004928 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004929 }
4930
Chris Lattner87100e02006-03-20 01:52:29 +00004931 if (SplatValue.Val) { // Splat of one value?
4932 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands83ec4b62008-06-06 12:08:01 +00004933 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
4934 SDOperand Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
Evan Cheng033e6812006-03-24 01:17:21 +00004935 std::vector<SDOperand> ZeroVec(NumElems, Zero);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004936 SDOperand SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4937 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00004938
4939 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004940 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00004941 // Get the splatted value into the low element of a vector register.
4942 SDOperand LowValVec =
4943 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
4944
4945 // Return shuffle(LowValVec, undef, <0,0,0,0>)
4946 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
4947 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
4948 SplatMask);
4949 }
4950 }
4951
Evan Cheng033e6812006-03-24 01:17:21 +00004952 // If there are only two unique elements, we may be able to turn this into a
4953 // vector shuffle.
4954 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004955 // Get the two values in deterministic order.
4956 SDOperand Val1 = Node->getOperand(1);
4957 SDOperand Val2;
4958 std::map<SDOperand, std::vector<unsigned> >::iterator MI = Values.begin();
4959 if (MI->first != Val1)
4960 Val2 = MI->first;
4961 else
4962 Val2 = (++MI)->first;
4963
4964 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
4965 // vector shuffle has the undef vector on the RHS.
4966 if (Val1.getOpcode() == ISD::UNDEF)
4967 std::swap(Val1, Val2);
4968
Evan Cheng033e6812006-03-24 01:17:21 +00004969 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands83ec4b62008-06-06 12:08:01 +00004970 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
4971 MVT MaskEltVT = MaskVT.getVectorElementType();
Evan Cheng033e6812006-03-24 01:17:21 +00004972 std::vector<SDOperand> MaskVec(NumElems);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004973
4974 // Set elements of the shuffle mask for Val1.
4975 std::vector<unsigned> &Val1Elts = Values[Val1];
4976 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
4977 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
4978
4979 // Set elements of the shuffle mask for Val2.
4980 std::vector<unsigned> &Val2Elts = Values[Val2];
4981 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
4982 if (Val2.getOpcode() != ISD::UNDEF)
4983 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
4984 else
4985 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
4986
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004987 SDOperand ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
4988 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00004989
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004990 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004991 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
4992 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004993 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
4994 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
4995 SDOperand Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng033e6812006-03-24 01:17:21 +00004996
4997 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004998 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Evan Cheng033e6812006-03-24 01:17:21 +00004999 }
5000 }
Chris Lattnerce872152006-03-19 06:31:19 +00005001
5002 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5003 // aligned object on the stack, store each element into it, then load
5004 // the result as a vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005005 MVT VT = Node->getValueType(0);
Chris Lattnerce872152006-03-19 06:31:19 +00005006 // Create the stack frame object.
Chris Lattner85dd3be2007-10-15 17:48:57 +00005007 SDOperand FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005008
5009 // Emit a store of each element to the stack slot.
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005010 SmallVector<SDOperand, 8> Stores;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005011 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Chris Lattnerce872152006-03-19 06:31:19 +00005012 // Store (in the right endianness) the elements to memory.
5013 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5014 // Ignore undef elements.
5015 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5016
Chris Lattner841c8822006-03-22 01:46:54 +00005017 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00005018
5019 SDOperand Idx = DAG.getConstant(Offset, FIPtr.getValueType());
5020 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5021
Evan Cheng786225a2006-10-05 23:01:46 +00005022 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00005023 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00005024 }
5025
5026 SDOperand StoreChain;
5027 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005028 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5029 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005030 else
5031 StoreChain = DAG.getEntryNode();
5032
5033 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00005034 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005035}
5036
Chris Lattner5b359c62005-04-02 04:00:59 +00005037void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
5038 SDOperand Op, SDOperand Amt,
5039 SDOperand &Lo, SDOperand &Hi) {
5040 // Expand the subcomponents.
5041 SDOperand LHSL, LHSH;
5042 ExpandOp(Op, LHSL, LHSH);
5043
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005044 SDOperand Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005045 MVT VT = LHSL.getValueType();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00005046 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005047 Hi = Lo.getValue(1);
5048}
5049
5050
Chris Lattnere34b3962005-01-19 04:19:40 +00005051/// ExpandShift - Try to find a clever way to expand this shift operation out to
5052/// smaller elements. If we can't find a way that is more efficient than a
5053/// libcall on this target, return false. Otherwise, return true with the
5054/// low-parts expanded into Lo and Hi.
5055bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDOperand Op,SDOperand Amt,
5056 SDOperand &Lo, SDOperand &Hi) {
5057 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5058 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005059
Duncan Sands83ec4b62008-06-06 12:08:01 +00005060 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005061 SDOperand ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005062 MVT ShTy = ShAmt.getValueType();
5063 unsigned ShBits = ShTy.getSizeInBits();
5064 unsigned VTBits = Op.getValueType().getSizeInBits();
5065 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005066
Chris Lattner7a3c8552007-10-14 20:35:12 +00005067 // Handle the case when Amt is an immediate.
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005068 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
5069 unsigned Cst = CN->getValue();
5070 // Expand the incoming operand to be shifted, so that we have its parts
5071 SDOperand InL, InH;
5072 ExpandOp(Op, InL, InH);
5073 switch(Opc) {
5074 case ISD::SHL:
5075 if (Cst > VTBits) {
5076 Lo = DAG.getConstant(0, NVT);
5077 Hi = DAG.getConstant(0, NVT);
5078 } else if (Cst > NVTBits) {
5079 Lo = DAG.getConstant(0, NVT);
5080 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005081 } else if (Cst == NVTBits) {
5082 Lo = DAG.getConstant(0, NVT);
5083 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005084 } else {
5085 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5086 Hi = DAG.getNode(ISD::OR, NVT,
5087 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5088 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5089 }
5090 return true;
5091 case ISD::SRL:
5092 if (Cst > VTBits) {
5093 Lo = DAG.getConstant(0, NVT);
5094 Hi = DAG.getConstant(0, NVT);
5095 } else if (Cst > NVTBits) {
5096 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5097 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005098 } else if (Cst == NVTBits) {
5099 Lo = InH;
5100 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005101 } else {
5102 Lo = DAG.getNode(ISD::OR, NVT,
5103 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5104 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5105 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5106 }
5107 return true;
5108 case ISD::SRA:
5109 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005110 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005111 DAG.getConstant(NVTBits-1, ShTy));
5112 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005113 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005114 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005115 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005116 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005117 } else if (Cst == NVTBits) {
5118 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00005119 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005120 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005121 } else {
5122 Lo = DAG.getNode(ISD::OR, NVT,
5123 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5124 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5125 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5126 }
5127 return true;
5128 }
5129 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005130
5131 // Okay, the shift amount isn't constant. However, if we can tell that it is
5132 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005133 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5134 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005135 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005136
Dan Gohman9e255b72008-02-22 01:12:31 +00005137 // If we know that if any of the high bits of the shift amount are one, then
5138 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005139 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005140 // Mask out the high bit, which we know is set.
5141 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005142 DAG.getConstant(~Mask, Amt.getValueType()));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005143
5144 // Expand the incoming operand to be shifted, so that we have its parts
5145 SDOperand InL, InH;
5146 ExpandOp(Op, InL, InH);
5147 switch(Opc) {
5148 case ISD::SHL:
5149 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5150 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5151 return true;
5152 case ISD::SRL:
5153 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5154 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5155 return true;
5156 case ISD::SRA:
5157 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5158 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5159 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5160 return true;
5161 }
5162 }
5163
Dan Gohman9e255b72008-02-22 01:12:31 +00005164 // If we know that the high bits of the shift amount are all zero, then we can
5165 // do this as a couple of simple shifts.
5166 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005167 // Compute 32-amt.
5168 SDOperand Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
5169 DAG.getConstant(NVTBits, Amt.getValueType()),
5170 Amt);
5171
5172 // Expand the incoming operand to be shifted, so that we have its parts
5173 SDOperand InL, InH;
5174 ExpandOp(Op, InL, InH);
5175 switch(Opc) {
5176 case ISD::SHL:
5177 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5178 Hi = DAG.getNode(ISD::OR, NVT,
5179 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5180 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5181 return true;
5182 case ISD::SRL:
5183 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5184 Lo = DAG.getNode(ISD::OR, NVT,
5185 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5186 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5187 return true;
5188 case ISD::SRA:
5189 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5190 Lo = DAG.getNode(ISD::OR, NVT,
5191 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5192 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5193 return true;
5194 }
5195 }
5196
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005197 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005198}
Chris Lattner77e77a62005-01-21 06:05:23 +00005199
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005200
Chris Lattner77e77a62005-01-21 06:05:23 +00005201// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5202// does not fit into a register, return the lo part and set the hi part to the
5203// by-reg argument. If it does fit into a single register, return the result
5204// and leave the Hi part unset.
Duncan Sands460a14e2008-04-12 17:14:18 +00005205SDOperand SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
Reid Spencer47857812006-12-31 05:55:36 +00005206 bool isSigned, SDOperand &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005207 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5208 // The input chain to this libcall is the entry node of the function.
5209 // Legalizing the call will automatically add the previous call to the
5210 // dependence.
5211 SDOperand InChain = DAG.getEntryNode();
5212
Chris Lattner77e77a62005-01-21 06:05:23 +00005213 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005214 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005215 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005216 MVT ArgVT = Node->getOperand(i).getValueType();
5217 const Type *ArgTy = ArgVT.getTypeForMVT();
Reid Spencer47857812006-12-31 05:55:36 +00005218 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005219 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005220 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005221 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005222 }
Duncan Sands460a14e2008-04-12 17:14:18 +00005223 SDOperand Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
5224 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005225
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005226 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005227 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005228 std::pair<SDOperand,SDOperand> CallInfo =
Duncan Sands00fee652008-02-14 17:28:50 +00005229 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, CallingConv::C,
5230 false, Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005231
Chris Lattner6831a812006-02-13 09:18:02 +00005232 // Legalize the call sequence, starting with the chain. This will advance
5233 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5234 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5235 LegalizeOp(CallInfo.second);
Chris Lattner99c25b82005-09-02 20:26:58 +00005236 SDOperand Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005237 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005238 default: assert(0 && "Unknown thing");
5239 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005240 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005241 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005242 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005243 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005244 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005245 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005246 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005247}
5248
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005249
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005250/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5251///
Chris Lattner77e77a62005-01-21 06:05:23 +00005252SDOperand SelectionDAGLegalize::
Duncan Sands83ec4b62008-06-06 12:08:01 +00005253ExpandIntToFP(bool isSigned, MVT DestTy, SDOperand Source) {
5254 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005255 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005256
Evan Cheng9845eb52008-04-01 02:18:22 +00005257 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5258 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005259 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005260 // incoming integer is set. To handle this, we dynamically test to see if
5261 // it is set, and, if so, add a fudge factor.
Dan Gohman034f60e2008-03-11 01:59:03 +00005262 SDOperand Hi;
5263 if (ExpandSource) {
5264 SDOperand Lo;
5265 ExpandOp(Source, Lo, Hi);
5266 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5267 } else {
5268 // The comparison for the sign bit will use the entire operand.
5269 Hi = Source;
5270 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005271
Chris Lattner66de05b2005-05-13 04:45:13 +00005272 // If this is unsigned, and not supported, first perform the conversion to
5273 // signed, then adjust the result if the sign bit is set.
Dan Gohman034f60e2008-03-11 01:59:03 +00005274 SDOperand SignedConv = ExpandIntToFP(true, DestTy, Source);
Chris Lattner66de05b2005-05-13 04:45:13 +00005275
Scott Michel5b8f82e2008-03-10 15:42:14 +00005276 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005277 DAG.getConstant(0, Hi.getValueType()),
5278 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005279 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005280 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5281 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005282 uint64_t FF = 0x5f800000ULL;
5283 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohman34bc1782008-03-05 02:07:31 +00005284 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005285
Chris Lattner5839bf22005-08-26 17:15:30 +00005286 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00005287 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5288 SDOperand FudgeInReg;
5289 if (DestTy == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005290 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005291 PseudoSourceValue::getConstantPool(), 0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005292 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005293 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005294 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005295 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005296 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005297 MVT::f32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005298 else
5299 assert(0 && "Unexpected conversion");
5300
Duncan Sands83ec4b62008-06-06 12:08:01 +00005301 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005302 if (SCVT != DestTy) {
5303 // Destination type needs to be expanded as well. The FADD now we are
5304 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005305 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5306 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dan Gohmand91446d2008-03-05 01:08:17 +00005307 SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005308 SignedConv, SignedConv.getValue(1));
5309 }
5310 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5311 }
Chris Lattner473a9902005-09-29 06:44:39 +00005312 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005313 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005314
Chris Lattnera88a2602005-05-14 05:33:54 +00005315 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00005316 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00005317 default: assert(0 && "This action not implemented for this operation!");
5318 case TargetLowering::Legal:
5319 case TargetLowering::Expand:
5320 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005321 case TargetLowering::Custom: {
5322 SDOperand NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
5323 Source), DAG);
5324 if (NV.Val)
5325 return LegalizeOp(NV);
5326 break; // The target decided this was legal after all
5327 }
Chris Lattnera88a2602005-05-14 05:33:54 +00005328 }
5329
Chris Lattner13689e22005-05-12 07:00:44 +00005330 // Expand the source, then glue it back together for the call. We must expand
5331 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00005332 if (ExpandSource) {
5333 SDOperand SrcLo, SrcHi;
5334 ExpandOp(Source, SrcLo, SrcHi);
5335 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5336 }
Chris Lattner13689e22005-05-12 07:00:44 +00005337
Duncan Sandsb2ff8852008-07-17 02:36:29 +00005338 RTLIB::Libcall LC = isSigned ?
5339 RTLIB::getSINTTOFP(SourceVT, DestTy) :
5340 RTLIB::getUINTTOFP(SourceVT, DestTy);
5341 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
5342
Chris Lattner6831a812006-02-13 09:18:02 +00005343 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
Dan Gohmana2e94852008-03-10 23:03:31 +00005344 SDOperand HiPart;
Duncan Sands460a14e2008-04-12 17:14:18 +00005345 SDOperand Result = ExpandLibCall(LC, Source.Val, isSigned, HiPart);
Evan Cheng110cf482008-04-01 01:50:16 +00005346 if (Result.getValueType() != DestTy && HiPart.Val)
Dan Gohmana2e94852008-03-10 23:03:31 +00005347 Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5348 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005349}
Misha Brukmanedf128a2005-04-21 22:36:52 +00005350
Chris Lattner22cde6a2006-01-28 08:25:58 +00005351/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5352/// INT_TO_FP operation of the specified operand when the target requests that
5353/// we expand it. At this point, we know that the result and operand types are
5354/// legal for the target.
5355SDOperand SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5356 SDOperand Op0,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005357 MVT DestVT) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005358 if (Op0.getValueType() == MVT::i32) {
5359 // simple 32-bit [signed|unsigned] integer to float/double expansion
5360
Chris Lattner23594d42008-01-16 07:03:22 +00005361 // Get the stack frame index of a 8 byte buffer.
5362 SDOperand StackSlot = DAG.CreateStackTemporary(MVT::f64);
5363
Chris Lattner22cde6a2006-01-28 08:25:58 +00005364 // word offset constant for Hi/Lo address computation
5365 SDOperand WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
5366 // set up Hi and Lo (into buffer) address based on endian
Chris Lattner408c4282006-03-23 05:29:04 +00005367 SDOperand Hi = StackSlot;
5368 SDOperand Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
5369 if (TLI.isLittleEndian())
5370 std::swap(Hi, Lo);
5371
Chris Lattner22cde6a2006-01-28 08:25:58 +00005372 // if signed map to unsigned space
5373 SDOperand Op0Mapped;
5374 if (isSigned) {
5375 // constant used to invert sign bit (signed to unsigned mapping)
5376 SDOperand SignBit = DAG.getConstant(0x80000000u, MVT::i32);
5377 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5378 } else {
5379 Op0Mapped = Op0;
5380 }
5381 // store the lo of the constructed double - based on integer input
Evan Cheng786225a2006-10-05 23:01:46 +00005382 SDOperand Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005383 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005384 // initial hi portion of constructed double
5385 SDOperand InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
5386 // store the hi of the constructed double - biased exponent
Evan Cheng8b2794a2006-10-13 21:14:26 +00005387 SDOperand Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005388 // load the constructed double
Evan Cheng466685d2006-10-09 20:57:25 +00005389 SDOperand Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005390 // FP constant to bias correct the final result
5391 SDOperand Bias = DAG.getConstantFP(isSigned ?
5392 BitsToDouble(0x4330000080000000ULL)
5393 : BitsToDouble(0x4330000000000000ULL),
5394 MVT::f64);
5395 // subtract the bias
5396 SDOperand Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
5397 // final result
5398 SDOperand Result;
5399 // handle final rounding
5400 if (DestVT == MVT::f64) {
5401 // do nothing
5402 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00005403 } else if (DestVT.bitsLT(MVT::f64)) {
Chris Lattner0bd48932008-01-17 07:00:52 +00005404 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5405 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005406 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005407 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005408 }
5409 return Result;
5410 }
5411 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
5412 SDOperand Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
5413
Scott Michel5b8f82e2008-03-10 15:42:14 +00005414 SDOperand SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005415 DAG.getConstant(0, Op0.getValueType()),
5416 ISD::SETLT);
Chris Lattner0bd48932008-01-17 07:00:52 +00005417 SDOperand Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005418 SDOperand CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
5419 SignSet, Four, Zero);
5420
5421 // If the sign bit of the integer is set, the large number will be treated
5422 // as a negative number. To counteract this, the dynamic code adds an
5423 // offset depending on the data type.
5424 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005425 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005426 default: assert(0 && "Unsupported integer type!");
5427 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5428 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5429 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5430 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5431 }
5432 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005433 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005434
5435 SDOperand CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
5436 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
5437 SDOperand FudgeInReg;
5438 if (DestVT == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005439 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005440 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005441 else {
Dan Gohman69de1932008-02-06 22:27:42 +00005442 FudgeInReg =
5443 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5444 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005445 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005446 MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00005447 }
5448
5449 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5450}
5451
5452/// PromoteLegalINT_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 promote it. At this point, we know that the result and operand types are
5455/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5456/// operation that takes a larger input.
5457SDOperand SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDOperand LegalOp,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005458 MVT DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005459 bool isSigned) {
5460 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005461 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005462
5463 unsigned OpToUse = 0;
5464
5465 // Scan for the appropriate larger type to use.
5466 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005467 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
5468 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005469
5470 // If the target supports SINT_TO_FP of this type, use it.
5471 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5472 default: break;
5473 case TargetLowering::Legal:
5474 if (!TLI.isTypeLegal(NewInTy))
5475 break; // Can't use this datatype.
5476 // FALL THROUGH.
5477 case TargetLowering::Custom:
5478 OpToUse = ISD::SINT_TO_FP;
5479 break;
5480 }
5481 if (OpToUse) break;
5482 if (isSigned) continue;
5483
5484 // If the target supports UINT_TO_FP of this type, use it.
5485 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5486 default: break;
5487 case TargetLowering::Legal:
5488 if (!TLI.isTypeLegal(NewInTy))
5489 break; // Can't use this datatype.
5490 // FALL THROUGH.
5491 case TargetLowering::Custom:
5492 OpToUse = ISD::UINT_TO_FP;
5493 break;
5494 }
5495 if (OpToUse) break;
5496
5497 // Otherwise, try a larger type.
5498 }
5499
5500 // Okay, we found the operation and type to use. Zero extend our input to the
5501 // desired type then run the operation on it.
5502 return DAG.getNode(OpToUse, DestVT,
5503 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5504 NewInTy, LegalOp));
5505}
5506
5507/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5508/// FP_TO_*INT operation of the specified operand when the target requests that
5509/// we promote it. At this point, we know that the result and operand types are
5510/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5511/// operation that returns a larger result.
5512SDOperand SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDOperand LegalOp,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005513 MVT DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005514 bool isSigned) {
5515 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005516 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005517
5518 unsigned OpToUse = 0;
5519
5520 // Scan for the appropriate larger type to use.
5521 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005522 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
5523 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005524
5525 // If the target supports FP_TO_SINT returning this type, use it.
5526 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5527 default: break;
5528 case TargetLowering::Legal:
5529 if (!TLI.isTypeLegal(NewOutTy))
5530 break; // Can't use this datatype.
5531 // FALL THROUGH.
5532 case TargetLowering::Custom:
5533 OpToUse = ISD::FP_TO_SINT;
5534 break;
5535 }
5536 if (OpToUse) break;
5537
5538 // If the target supports FP_TO_UINT of this type, use it.
5539 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5540 default: break;
5541 case TargetLowering::Legal:
5542 if (!TLI.isTypeLegal(NewOutTy))
5543 break; // Can't use this datatype.
5544 // FALL THROUGH.
5545 case TargetLowering::Custom:
5546 OpToUse = ISD::FP_TO_UINT;
5547 break;
5548 }
5549 if (OpToUse) break;
5550
5551 // Otherwise, try a larger type.
5552 }
5553
Chris Lattner27a6c732007-11-24 07:07:01 +00005554
5555 // Okay, we found the operation and type to use.
5556 SDOperand Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00005557
Chris Lattner27a6c732007-11-24 07:07:01 +00005558 // If the operation produces an invalid type, it must be custom lowered. Use
5559 // the target lowering hooks to expand it. Just keep the low part of the
5560 // expanded operation, we know that we're truncating anyway.
5561 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands126d9072008-07-04 11:47:58 +00005562 Operation = SDOperand(TLI.ReplaceNodeResults(Operation.Val, DAG), 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00005563 assert(Operation.Val && "Didn't return anything");
5564 }
Duncan Sands126d9072008-07-04 11:47:58 +00005565
Chris Lattner27a6c732007-11-24 07:07:01 +00005566 // Truncate the result of the extended FP_TO_*INT operation to the desired
5567 // size.
5568 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005569}
5570
5571/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5572///
5573SDOperand SelectionDAGLegalize::ExpandBSWAP(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005574 MVT VT = Op.getValueType();
5575 MVT SHVT = TLI.getShiftAmountTy();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005576 SDOperand Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005577 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005578 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5579 case MVT::i16:
5580 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5581 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5582 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5583 case MVT::i32:
5584 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5585 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5586 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5587 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5588 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5589 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5590 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5591 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5592 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5593 case MVT::i64:
5594 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5595 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5596 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5597 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5598 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5599 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5600 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5601 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5602 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5603 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5604 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5605 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5606 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5607 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5608 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5609 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5610 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5611 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5612 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5613 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5614 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5615 }
5616}
5617
5618/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5619///
5620SDOperand SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDOperand Op) {
5621 switch (Opc) {
5622 default: assert(0 && "Cannot expand this yet!");
5623 case ISD::CTPOP: {
5624 static const uint64_t mask[6] = {
5625 0x5555555555555555ULL, 0x3333333333333333ULL,
5626 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5627 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5628 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005629 MVT VT = Op.getValueType();
5630 MVT ShVT = TLI.getShiftAmountTy();
5631 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005632 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5633 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
5634 SDOperand Tmp2 = DAG.getConstant(mask[i], VT);
5635 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5636 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5637 DAG.getNode(ISD::AND, VT,
5638 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5639 }
5640 return Op;
5641 }
5642 case ISD::CTLZ: {
5643 // for now, we do this:
5644 // x = x | (x >> 1);
5645 // x = x | (x >> 2);
5646 // ...
5647 // x = x | (x >>16);
5648 // x = x | (x >>32); // for 64-bit input
5649 // return popcount(~x);
5650 //
5651 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005652 MVT VT = Op.getValueType();
5653 MVT ShVT = TLI.getShiftAmountTy();
5654 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005655 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5656 SDOperand Tmp3 = DAG.getConstant(1ULL << i, ShVT);
5657 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5658 }
5659 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5660 return DAG.getNode(ISD::CTPOP, VT, Op);
5661 }
5662 case ISD::CTTZ: {
5663 // for now, we use: { return popcount(~x & (x - 1)); }
5664 // unless the target has ctlz but not ctpop, in which case we use:
5665 // { return 32 - nlz(~x & (x-1)); }
5666 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005667 MVT VT = Op.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005668 SDOperand Tmp2 = DAG.getConstant(~0ULL, VT);
5669 SDOperand Tmp3 = DAG.getNode(ISD::AND, VT,
5670 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5671 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5672 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5673 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5674 TLI.isOperationLegal(ISD::CTLZ, VT))
5675 return DAG.getNode(ISD::SUB, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005676 DAG.getConstant(VT.getSizeInBits(), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005677 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5678 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5679 }
5680 }
5681}
Chris Lattnere34b3962005-01-19 04:19:40 +00005682
Chris Lattner3e928bb2005-01-07 07:47:09 +00005683/// ExpandOp - Expand the specified SDOperand into its two component pieces
5684/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5685/// LegalizeNodes map is filled in for any results that are not expanded, the
5686/// ExpandedNodes map is filled in for any results that are expanded, and the
5687/// Lo/Hi values are returned.
5688void SelectionDAGLegalize::ExpandOp(SDOperand Op, SDOperand &Lo, SDOperand &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00005689 MVT VT = Op.getValueType();
5690 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005691 SDNode *Node = Op.Val;
5692 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00005693 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00005694 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00005695
Chris Lattner6fdcb252005-09-02 20:32:45 +00005696 // See if we already expanded it.
Roman Levenstein9cac5252008-04-16 16:15:27 +00005697 DenseMap<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00005698 = ExpandedNodes.find(Op);
5699 if (I != ExpandedNodes.end()) {
5700 Lo = I->second.first;
5701 Hi = I->second.second;
5702 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005703 }
5704
Chris Lattner3e928bb2005-01-07 07:47:09 +00005705 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005706 case ISD::CopyFromReg:
5707 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005708 case ISD::FP_ROUND_INREG:
5709 if (VT == MVT::ppcf128 &&
5710 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5711 TargetLowering::Custom) {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005712 SDOperand SrcLo, SrcHi, Src;
5713 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5714 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
5715 SDOperand Result = TLI.LowerOperation(
5716 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005717 assert(Result.Val->getOpcode() == ISD::BUILD_PAIR);
5718 Lo = Result.Val->getOperand(0);
5719 Hi = Result.Val->getOperand(1);
5720 break;
5721 }
5722 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00005723 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005724#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005725 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005726#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00005727 assert(0 && "Do not know how to expand this operator!");
5728 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00005729 case ISD::EXTRACT_ELEMENT:
5730 ExpandOp(Node->getOperand(0), Lo, Hi);
5731 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
5732 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00005733 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00005734 case ISD::EXTRACT_VECTOR_ELT:
5735 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5736 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5737 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5738 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005739 case ISD::UNDEF:
5740 Lo = DAG.getNode(ISD::UNDEF, NVT);
5741 Hi = DAG.getNode(ISD::UNDEF, NVT);
5742 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005743 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005744 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00005745 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5746 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5747 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005748 break;
5749 }
Evan Cheng00495212006-12-12 21:32:44 +00005750 case ISD::ConstantFP: {
5751 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00005752 if (CFP->getValueType(0) == MVT::ppcf128) {
5753 APInt api = CFP->getValueAPF().convertToAPInt();
5754 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5755 MVT::f64);
5756 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5757 MVT::f64);
5758 break;
5759 }
Evan Cheng279101e2006-12-12 22:19:28 +00005760 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005761 if (getTypeAction(Lo.getValueType()) == Expand)
5762 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005763 break;
5764 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005765 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005766 // Return the operands.
5767 Lo = Node->getOperand(0);
5768 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005769 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005770
5771 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00005772 if (Node->getNumValues() == 1) {
5773 ExpandOp(Op.getOperand(0), Lo, Hi);
5774 break;
5775 }
Chris Lattner27a6c732007-11-24 07:07:01 +00005776 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
5777 assert(Op.ResNo == 0 && Node->getNumValues() == 2 &&
5778 Op.getValue(1).getValueType() == MVT::Other &&
5779 "unhandled MERGE_VALUES");
5780 ExpandOp(Op.getOperand(0), Lo, Hi);
5781 // Remember that we legalized the chain.
5782 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5783 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005784
5785 case ISD::SIGN_EXTEND_INREG:
5786 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005787 // sext_inreg the low part if needed.
5788 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5789
5790 // The high part gets the sign extension from the lo-part. This handles
5791 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005792 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005793 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00005794 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005795 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005796
Nate Begemand88fc032006-01-14 03:14:10 +00005797 case ISD::BSWAP: {
5798 ExpandOp(Node->getOperand(0), Lo, Hi);
5799 SDOperand TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
5800 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5801 Lo = TempLo;
5802 break;
5803 }
5804
Chris Lattneredb1add2005-05-11 04:51:16 +00005805 case ISD::CTPOP:
5806 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005807 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5808 DAG.getNode(ISD::CTPOP, NVT, Lo),
5809 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005810 Hi = DAG.getConstant(0, NVT);
5811 break;
5812
Chris Lattner39a8f332005-05-12 19:05:01 +00005813 case ISD::CTLZ: {
5814 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005815 ExpandOp(Node->getOperand(0), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005816 SDOperand BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Chris Lattner39a8f332005-05-12 19:05:01 +00005817 SDOperand HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
Scott Michel5b8f82e2008-03-10 15:42:14 +00005818 SDOperand TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005819 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005820 SDOperand LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
5821 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5822
5823 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5824 Hi = DAG.getConstant(0, NVT);
5825 break;
5826 }
5827
5828 case ISD::CTTZ: {
5829 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005830 ExpandOp(Node->getOperand(0), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005831 SDOperand BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Chris Lattner39a8f332005-05-12 19:05:01 +00005832 SDOperand LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
Scott Michel5b8f82e2008-03-10 15:42:14 +00005833 SDOperand BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005834 ISD::SETNE);
Chris Lattner39a8f332005-05-12 19:05:01 +00005835 SDOperand HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
5836 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5837
5838 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5839 Hi = DAG.getConstant(0, NVT);
5840 break;
5841 }
Chris Lattneredb1add2005-05-11 04:51:16 +00005842
Nate Begemanacc398c2006-01-25 18:21:52 +00005843 case ISD::VAARG: {
Chris Lattner8137c9e2006-01-28 05:07:51 +00005844 SDOperand Ch = Node->getOperand(0); // Legalize the chain.
5845 SDOperand Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00005846 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5847 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5848
5849 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005850 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00005851 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00005852 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00005853 std::swap(Lo, Hi);
5854 break;
5855 }
5856
Chris Lattner3e928bb2005-01-07 07:47:09 +00005857 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00005858 LoadSDNode *LD = cast<LoadSDNode>(Node);
5859 SDOperand Ch = LD->getChain(); // Legalize the chain.
5860 SDOperand Ptr = LD->getBasePtr(); // Legalize the pointer.
5861 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005862 int SVOffset = LD->getSrcValueOffset();
5863 unsigned Alignment = LD->getAlignment();
5864 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005865
Evan Cheng466685d2006-10-09 20:57:25 +00005866 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005867 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5868 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00005869 if (VT == MVT::f32 || VT == MVT::f64) {
5870 // f32->i32 or f64->i64 one to one expansion.
5871 // Remember that we legalized the chain.
5872 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00005873 // Recursively expand the new load.
5874 if (getTypeAction(NVT) == Expand)
5875 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005876 break;
5877 }
Chris Lattnerec39a452005-01-19 18:02:17 +00005878
Evan Cheng466685d2006-10-09 20:57:25 +00005879 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005880 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Evan Cheng466685d2006-10-09 20:57:25 +00005881 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00005882 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00005883 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00005884 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005885 Hi = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(), SVOffset,
5886 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00005887
Evan Cheng466685d2006-10-09 20:57:25 +00005888 // Build a factor node to remember that this load is independent of the
5889 // other one.
5890 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
5891 Hi.getValue(1));
5892
5893 // Remember that we legalized the chain.
5894 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00005895 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00005896 std::swap(Lo, Hi);
5897 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005898 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00005899
Dale Johannesenb6210fc2007-10-19 20:29:00 +00005900 if ((VT == MVT::f64 && EVT == MVT::f32) ||
5901 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00005902 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
5903 SDOperand Load = DAG.getLoad(EVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005904 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00005905 // Remember that we legalized the chain.
5906 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Load.getValue(1)));
5907 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
5908 break;
5909 }
Evan Cheng466685d2006-10-09 20:57:25 +00005910
5911 if (EVT == NVT)
5912 Lo = DAG.getLoad(NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005913 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005914 else
5915 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005916 SVOffset, EVT, isVolatile,
5917 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005918
5919 // Remember that we legalized the chain.
5920 AddLegalizedOperand(SDOperand(Node, 1), LegalizeOp(Lo.getValue(1)));
5921
5922 if (ExtType == ISD::SEXTLOAD) {
5923 // The high part is obtained by SRA'ing all but one of the bits of the
5924 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005925 unsigned LoSize = Lo.getValueType().getSizeInBits();
Evan Cheng466685d2006-10-09 20:57:25 +00005926 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5927 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
5928 } else if (ExtType == ISD::ZEXTLOAD) {
5929 // The high part is just a zero.
5930 Hi = DAG.getConstant(0, NVT);
5931 } else /* if (ExtType == ISD::EXTLOAD) */ {
5932 // The high part is undefined.
5933 Hi = DAG.getNode(ISD::UNDEF, NVT);
5934 }
5935 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005936 break;
5937 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00005938 case ISD::AND:
5939 case ISD::OR:
5940 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
5941 SDOperand LL, LH, RL, RH;
5942 ExpandOp(Node->getOperand(0), LL, LH);
5943 ExpandOp(Node->getOperand(1), RL, RH);
5944 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
5945 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
5946 break;
5947 }
5948 case ISD::SELECT: {
Chris Lattner456a93a2006-01-28 07:39:30 +00005949 SDOperand LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005950 ExpandOp(Node->getOperand(1), LL, LH);
5951 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00005952 if (getTypeAction(NVT) == Expand)
5953 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00005954 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00005955 if (VT != MVT::f32)
5956 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005957 break;
5958 }
Nate Begeman9373a812005-08-10 20:51:12 +00005959 case ISD::SELECT_CC: {
5960 SDOperand TL, TH, FL, FH;
5961 ExpandOp(Node->getOperand(2), TL, TH);
5962 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00005963 if (getTypeAction(NVT) == Expand)
5964 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00005965 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5966 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00005967 if (VT != MVT::f32)
5968 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
5969 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00005970 break;
5971 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00005972 case ISD::ANY_EXTEND:
5973 // The low part is any extension of the input (which degenerates to a copy).
5974 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
5975 // The high part is undefined.
5976 Hi = DAG.getNode(ISD::UNDEF, NVT);
5977 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005978 case ISD::SIGN_EXTEND: {
5979 // The low part is just a sign extension of the input (which degenerates to
5980 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00005981 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005982
Chris Lattner3e928bb2005-01-07 07:47:09 +00005983 // The high part is obtained by SRA'ing all but one of the bits of the lo
5984 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005985 unsigned LoSize = Lo.getValueType().getSizeInBits();
Chris Lattner8137c9e2006-01-28 05:07:51 +00005986 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
5987 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00005988 break;
5989 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00005990 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00005991 // The low part is just a zero extension of the input (which degenerates to
5992 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00005993 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005994
Chris Lattner3e928bb2005-01-07 07:47:09 +00005995 // The high part is just a zero.
5996 Hi = DAG.getConstant(0, NVT);
5997 break;
Chris Lattner35481892005-12-23 00:16:34 +00005998
Chris Lattner4c948eb2007-02-13 23:55:16 +00005999 case ISD::TRUNCATE: {
6000 // The input value must be larger than this value. Expand *it*.
6001 SDOperand NewLo;
6002 ExpandOp(Node->getOperand(0), NewLo, Hi);
6003
6004 // The low part is now either the right size, or it is closer. If not the
6005 // right size, make an illegal truncate so we recursively expand it.
6006 if (NewLo.getValueType() != Node->getValueType(0))
6007 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6008 ExpandOp(NewLo, Lo, Hi);
6009 break;
6010 }
6011
Chris Lattner35481892005-12-23 00:16:34 +00006012 case ISD::BIT_CONVERT: {
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006013 SDOperand Tmp;
6014 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6015 // If the target wants to, allow it to lower this itself.
6016 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6017 case Expand: assert(0 && "cannot expand FP!");
6018 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6019 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6020 }
6021 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6022 }
6023
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006024 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006025 if (VT == MVT::f32 || VT == MVT::f64) {
6026 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006027 if (getTypeAction(NVT) == Expand)
6028 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006029 break;
6030 }
6031
6032 // If source operand will be expanded to the same type as VT, i.e.
6033 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006034 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006035 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6036 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006037 break;
6038 }
6039
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006040 // Turn this into a load/store pair by default.
6041 if (Tmp.Val == 0)
Chris Lattner1401d152008-01-16 07:45:30 +00006042 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006043
Chris Lattner35481892005-12-23 00:16:34 +00006044 ExpandOp(Tmp, Lo, Hi);
6045 break;
6046 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006047
Chris Lattner27a6c732007-11-24 07:07:01 +00006048 case ISD::READCYCLECOUNTER: {
Chris Lattner308575b2005-11-20 22:56:56 +00006049 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6050 TargetLowering::Custom &&
6051 "Must custom expand ReadCycleCounter");
Chris Lattner27a6c732007-11-24 07:07:01 +00006052 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6053 assert(Tmp.Val && "Node must be custom expanded!");
6054 ExpandOp(Tmp.getValue(0), Lo, Hi);
Chris Lattner308575b2005-11-20 22:56:56 +00006055 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006056 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006057 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006058 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006059
Mon P Wang28873102008-06-25 08:15:39 +00006060 case ISD::ATOMIC_CMP_SWAP: {
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006061 SDOperand Tmp = TLI.LowerOperation(Op, DAG);
6062 assert(Tmp.Val && "Node must be custom expanded!");
6063 ExpandOp(Tmp.getValue(0), Lo, Hi);
6064 AddLegalizedOperand(SDOperand(Node, 1), // Remember we legalized the chain.
6065 LegalizeOp(Tmp.getValue(1)));
6066 break;
6067 }
6068
6069
6070
Chris Lattner4e6c7462005-01-08 19:27:05 +00006071 // These operators cannot be expanded directly, emit them as calls to
6072 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006073 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006074 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Chris Lattnerf20d1832005-07-30 01:40:57 +00006075 SDOperand Op;
6076 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6077 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006078 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6079 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006080 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006081
Chris Lattnerf20d1832005-07-30 01:40:57 +00006082 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6083
Chris Lattner80a3e942005-07-29 00:33:32 +00006084 // Now that the custom expander is done, expand the result, which is still
6085 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00006086 if (Op.Val) {
6087 ExpandOp(Op, Lo, Hi);
6088 break;
6089 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006090 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006091
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006092 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6093 VT);
6094 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6095 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006096 break;
Evan Cheng56966222007-01-12 02:11:51 +00006097 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006098
Evan Cheng56966222007-01-12 02:11:51 +00006099 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006100 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006101 SDOperand Op;
6102 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6103 case Expand: assert(0 && "cannot expand FP!");
6104 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6105 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6106 }
6107
6108 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6109
6110 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00006111 if (Op.Val) {
6112 ExpandOp(Op, Lo, Hi);
6113 break;
6114 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006115 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006116
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006117 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6118 VT);
6119 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6120 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006121 break;
Evan Cheng56966222007-01-12 02:11:51 +00006122 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006123
Evan Cheng05a2d562006-01-09 18:31:59 +00006124 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006125 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006126 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006127 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006128 SDOperand Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006129 Op = TLI.LowerOperation(Op, DAG);
6130 if (Op.Val) {
6131 // Now that the custom expander is done, expand the result, which is
6132 // still VT.
6133 ExpandOp(Op, Lo, Hi);
6134 break;
6135 }
6136 }
6137
Chris Lattner79980b02006-09-13 03:50:39 +00006138 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6139 // this X << 1 as X+X.
6140 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman002e5d02008-03-13 22:13:53 +00006141 if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
Chris Lattner79980b02006-09-13 03:50:39 +00006142 TLI.isOperationLegal(ISD::ADDE, NVT)) {
6143 SDOperand LoOps[2], HiOps[3];
6144 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6145 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6146 LoOps[1] = LoOps[0];
6147 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6148
6149 HiOps[1] = HiOps[0];
6150 HiOps[2] = Lo.getValue(1);
6151 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6152 break;
6153 }
6154 }
6155
Chris Lattnere34b3962005-01-19 04:19:40 +00006156 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006157 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006158 break;
Chris Lattner47599822005-04-02 03:38:53 +00006159
6160 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006161 TargetLowering::LegalizeAction Action =
6162 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6163 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6164 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006165 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006166 break;
6167 }
6168
Chris Lattnere34b3962005-01-19 04:19:40 +00006169 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006170 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006171 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006172 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006173
Evan Cheng05a2d562006-01-09 18:31:59 +00006174 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006175 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006176 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006177 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006178 SDOperand Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006179 Op = TLI.LowerOperation(Op, DAG);
6180 if (Op.Val) {
6181 // Now that the custom expander is done, expand the result, which is
6182 // still VT.
6183 ExpandOp(Op, Lo, Hi);
6184 break;
6185 }
6186 }
6187
Chris Lattnere34b3962005-01-19 04:19:40 +00006188 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006189 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006190 break;
Chris Lattner47599822005-04-02 03:38:53 +00006191
6192 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006193 TargetLowering::LegalizeAction Action =
6194 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6195 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6196 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006197 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006198 break;
6199 }
6200
Chris Lattnere34b3962005-01-19 04:19:40 +00006201 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006202 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006203 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006204 }
6205
6206 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006207 // If the target wants custom lowering, do so.
Chris Lattner348e93c2006-01-21 04:27:00 +00006208 SDOperand ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006209 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Chris Lattner8137c9e2006-01-28 05:07:51 +00006210 SDOperand Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006211 Op = TLI.LowerOperation(Op, DAG);
6212 if (Op.Val) {
6213 // Now that the custom expander is done, expand the result, which is
6214 // still VT.
6215 ExpandOp(Op, Lo, Hi);
6216 break;
6217 }
6218 }
6219
Chris Lattnere34b3962005-01-19 04:19:40 +00006220 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006221 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006222 break;
Chris Lattner47599822005-04-02 03:38:53 +00006223
6224 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006225 TargetLowering::LegalizeAction Action =
6226 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6227 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6228 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006229 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006230 break;
6231 }
6232
Chris Lattnere34b3962005-01-19 04:19:40 +00006233 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006234 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006235 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006236 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006237
Misha Brukmanedf128a2005-04-21 22:36:52 +00006238 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006239 case ISD::SUB: {
6240 // If the target wants to custom expand this, let them.
6241 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6242 TargetLowering::Custom) {
Duncan Sands69bfb152008-06-22 09:42:16 +00006243 SDOperand Result = TLI.LowerOperation(Op, DAG);
6244 if (Result.Val) {
6245 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006246 break;
6247 }
6248 }
6249
6250 // Expand the subcomponents.
6251 SDOperand LHSL, LHSH, RHSL, RHSH;
6252 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6253 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00006254 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6255 SDOperand LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006256 LoOps[0] = LHSL;
6257 LoOps[1] = RHSL;
6258 HiOps[0] = LHSH;
6259 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006260 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00006261 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006262 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006263 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006264 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00006265 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006266 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006267 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006268 }
Chris Lattner84f67882005-01-20 18:52:28 +00006269 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006270 }
Chris Lattnerb429f732007-05-17 18:15:41 +00006271
6272 case ISD::ADDC:
6273 case ISD::SUBC: {
6274 // Expand the subcomponents.
6275 SDOperand LHSL, LHSH, RHSL, RHSH;
6276 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6277 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6278 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6279 SDOperand LoOps[2] = { LHSL, RHSL };
6280 SDOperand HiOps[3] = { LHSH, RHSH };
6281
6282 if (Node->getOpcode() == ISD::ADDC) {
6283 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6284 HiOps[2] = Lo.getValue(1);
6285 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6286 } else {
6287 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6288 HiOps[2] = Lo.getValue(1);
6289 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6290 }
6291 // Remember that we legalized the flag.
6292 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6293 break;
6294 }
6295 case ISD::ADDE:
6296 case ISD::SUBE: {
6297 // Expand the subcomponents.
6298 SDOperand LHSL, LHSH, RHSL, RHSH;
6299 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6300 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6301 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
6302 SDOperand LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6303 SDOperand HiOps[3] = { LHSH, RHSH };
6304
6305 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6306 HiOps[2] = Lo.getValue(1);
6307 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6308
6309 // Remember that we legalized the flag.
6310 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6311 break;
6312 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006313 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006314 // If the target wants to custom expand this, let them.
6315 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Chris Lattner8829dc82006-09-16 05:08:34 +00006316 SDOperand New = TLI.LowerOperation(Op, DAG);
6317 if (New.Val) {
6318 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006319 break;
6320 }
6321 }
6322
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006323 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6324 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00006325 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6326 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6327 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Nate Begemanc7c16572005-04-11 03:01:51 +00006328 SDOperand LL, LH, RL, RH;
6329 ExpandOp(Node->getOperand(0), LL, LH);
6330 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006331 unsigned OuterBitSize = Op.getValueSizeInBits();
6332 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00006333 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6334 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00006335 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6336 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6337 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00006338 // The inputs are both zero-extended.
6339 if (HasUMUL_LOHI) {
6340 // We can emit a umul_lohi.
6341 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6342 Hi = SDOperand(Lo.Val, 1);
6343 break;
6344 }
6345 if (HasMULHU) {
6346 // We can emit a mulhu+mul.
6347 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6348 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6349 break;
6350 }
Dan Gohman525178c2007-10-08 18:33:35 +00006351 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006352 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00006353 // The input values are both sign-extended.
6354 if (HasSMUL_LOHI) {
6355 // We can emit a smul_lohi.
6356 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
6357 Hi = SDOperand(Lo.Val, 1);
6358 break;
6359 }
6360 if (HasMULHS) {
6361 // We can emit a mulhs+mul.
6362 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6363 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6364 break;
6365 }
6366 }
6367 if (HasUMUL_LOHI) {
6368 // Lo,Hi = umul LHS, RHS.
6369 SDOperand UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
6370 DAG.getVTList(NVT, NVT), LL, RL);
6371 Lo = UMulLOHI;
6372 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00006373 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6374 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6375 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6376 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00006377 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00006378 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00006379 if (HasMULHU) {
6380 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6381 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6382 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6383 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6384 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6385 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6386 break;
6387 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006388 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006389
Dan Gohman525178c2007-10-08 18:33:35 +00006390 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006391 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00006392 break;
6393 }
Evan Cheng56966222007-01-12 02:11:51 +00006394 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006395 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006396 break;
6397 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006398 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006399 break;
6400 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006401 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006402 break;
6403 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006404 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006405 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00006406
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006407 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00006408 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6409 RTLIB::ADD_F64,
6410 RTLIB::ADD_F80,
6411 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006412 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006413 break;
6414 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00006415 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6416 RTLIB::SUB_F64,
6417 RTLIB::SUB_F80,
6418 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006419 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006420 break;
6421 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00006422 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6423 RTLIB::MUL_F64,
6424 RTLIB::MUL_F80,
6425 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006426 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006427 break;
6428 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006429 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6430 RTLIB::DIV_F64,
6431 RTLIB::DIV_F80,
6432 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006433 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006434 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006435 case ISD::FP_EXTEND: {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006436 if (VT == MVT::ppcf128) {
6437 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6438 Node->getOperand(0).getValueType()==MVT::f64);
6439 const uint64_t zero = 0;
6440 if (Node->getOperand(0).getValueType()==MVT::f32)
6441 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6442 else
6443 Hi = Node->getOperand(0);
6444 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6445 break;
6446 }
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006447 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
6448 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
6449 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006450 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006451 }
6452 case ISD::FP_ROUND: {
6453 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
6454 VT);
6455 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
6456 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006457 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006458 }
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006459 case ISD::FPOWI:
Duncan Sands460a14e2008-04-12 17:14:18 +00006460 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::POWI_F32,
6461 RTLIB::POWI_F64,
6462 RTLIB::POWI_F80,
6463 RTLIB::POWI_PPCF128),
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006464 Node, false, Hi);
6465 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006466 case ISD::FSQRT:
6467 case ISD::FSIN:
6468 case ISD::FCOS: {
Evan Cheng56966222007-01-12 02:11:51 +00006469 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006470 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00006471 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00006472 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6473 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006474 break;
6475 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00006476 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6477 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006478 break;
6479 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00006480 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6481 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006482 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006483 default: assert(0 && "Unreachable!");
6484 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006485 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00006486 break;
6487 }
Evan Cheng966bf242006-12-16 00:52:40 +00006488 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006489 if (VT == MVT::ppcf128) {
6490 SDOperand Tmp;
6491 ExpandOp(Node->getOperand(0), Lo, Tmp);
6492 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6493 // lo = hi==fabs(hi) ? lo : -lo;
6494 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6495 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6496 DAG.getCondCode(ISD::SETEQ));
6497 break;
6498 }
Evan Cheng966bf242006-12-16 00:52:40 +00006499 SDOperand Mask = (VT == MVT::f64)
6500 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6501 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6502 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6503 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6504 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6505 if (getTypeAction(NVT) == Expand)
6506 ExpandOp(Lo, Lo, Hi);
6507 break;
6508 }
6509 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006510 if (VT == MVT::ppcf128) {
6511 ExpandOp(Node->getOperand(0), Lo, Hi);
6512 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6513 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6514 break;
6515 }
Evan Cheng966bf242006-12-16 00:52:40 +00006516 SDOperand Mask = (VT == MVT::f64)
6517 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6518 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6519 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6520 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6521 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6522 if (getTypeAction(NVT) == Expand)
6523 ExpandOp(Lo, Lo, Hi);
6524 break;
6525 }
Evan Cheng912095b2007-01-04 21:56:39 +00006526 case ISD::FCOPYSIGN: {
6527 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6528 if (getTypeAction(NVT) == Expand)
6529 ExpandOp(Lo, Lo, Hi);
6530 break;
6531 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006532 case ISD::SINT_TO_FP:
6533 case ISD::UINT_TO_FP: {
6534 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006535 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00006536
6537 // Promote the operand if needed. Do this before checking for
6538 // ppcf128 so conversions of i16 and i8 work.
6539 if (getTypeAction(SrcVT) == Promote) {
6540 SDOperand Tmp = PromoteOp(Node->getOperand(0));
6541 Tmp = isSigned
6542 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6543 DAG.getValueType(SrcVT))
6544 : DAG.getZeroExtendInReg(Tmp, SrcVT);
6545 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
6546 SrcVT = Node->getOperand(0).getValueType();
6547 }
6548
Dan Gohmana2e94852008-03-10 23:03:31 +00006549 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006550 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006551 if (isSigned) {
6552 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6553 Node->getOperand(0)));
6554 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6555 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006556 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006557 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6558 Node->getOperand(0)));
6559 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6560 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00006561 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006562 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6563 DAG.getConstant(0, MVT::i32),
6564 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6565 DAG.getConstantFP(
6566 APFloat(APInt(128, 2, TwoE32)),
6567 MVT::ppcf128)),
6568 Hi,
6569 DAG.getCondCode(ISD::SETLT)),
6570 Lo, Hi);
6571 }
6572 break;
6573 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00006574 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6575 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006576 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen6e63e092007-10-12 17:52:03 +00006577 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6578 Lo, Hi);
6579 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6580 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6581 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6582 DAG.getConstant(0, MVT::i64),
6583 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6584 DAG.getConstantFP(
6585 APFloat(APInt(128, 2, TwoE64)),
6586 MVT::ppcf128)),
6587 Hi,
6588 DAG.getCondCode(ISD::SETLT)),
6589 Lo, Hi);
6590 break;
6591 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006592
Dan Gohmana2e94852008-03-10 23:03:31 +00006593 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6594 Node->getOperand(0));
Evan Cheng110cf482008-04-01 01:50:16 +00006595 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00006596 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00006597 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00006598 break;
6599 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00006600 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006601
Chris Lattner83397362005-12-21 18:02:52 +00006602 // Make sure the resultant values have been legalized themselves, unless this
6603 // is a type that requires multi-step expansion.
6604 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6605 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00006606 if (Hi.Val)
6607 // Don't legalize the high part if it is expanded to a single node.
6608 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00006609 }
Evan Cheng05a2d562006-01-09 18:31:59 +00006610
6611 // Remember in a map if the values will be reused later.
Dan Gohman6b345ee2008-07-07 17:46:23 +00006612 bool isNew =
6613 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng05a2d562006-01-09 18:31:59 +00006614 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006615}
6616
Dan Gohman7f321562007-06-25 16:23:39 +00006617/// SplitVectorOp - Given an operand of vector type, break it down into
6618/// two smaller values, still of vector type.
Chris Lattnerc7029802006-03-18 01:44:44 +00006619void SelectionDAGLegalize::SplitVectorOp(SDOperand Op, SDOperand &Lo,
6620 SDOperand &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006621 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006622 SDNode *Node = Op.Val;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006623 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00006624 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00006625
Duncan Sands83ec4b62008-06-06 12:08:01 +00006626 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00006627
6628 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6629 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6630
Duncan Sands83ec4b62008-06-06 12:08:01 +00006631 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
6632 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006633
Chris Lattnerc7029802006-03-18 01:44:44 +00006634 // See if we already split it.
6635 std::map<SDOperand, std::pair<SDOperand, SDOperand> >::iterator I
6636 = SplitNodes.find(Op);
6637 if (I != SplitNodes.end()) {
6638 Lo = I->second.first;
6639 Hi = I->second.second;
6640 return;
6641 }
6642
6643 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006644 default:
6645#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006646 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006647#endif
6648 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00006649 case ISD::UNDEF:
6650 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6651 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6652 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006653 case ISD::BUILD_PAIR:
6654 Lo = Node->getOperand(0);
6655 Hi = Node->getOperand(1);
6656 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00006657 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00006658 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
6659 SplitVectorOp(Node->getOperand(0), Lo, Hi);
6660 unsigned Index = Idx->getValue();
6661 SDOperand ScalarOp = Node->getOperand(1);
6662 if (Index < NewNumElts_Lo)
6663 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
6664 DAG.getIntPtrConstant(Index));
6665 else
6666 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6667 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
6668 break;
6669 }
6670 SDOperand Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
6671 Node->getOperand(1),
6672 Node->getOperand(2));
6673 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00006674 break;
6675 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00006676 case ISD::VECTOR_SHUFFLE: {
6677 // Build the low part.
6678 SDOperand Mask = Node->getOperand(2);
6679 SmallVector<SDOperand, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006680 MVT PtrVT = TLI.getPointerTy();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006681
6682 // Insert all of the elements from the input that are needed. We use
6683 // buildvector of extractelement here because the input vectors will have
6684 // to be legalized, so this makes the code simpler.
6685 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Nate Begeman5922f562008-03-14 00:53:31 +00006686 SDOperand IdxNode = Mask.getOperand(i);
6687 if (IdxNode.getOpcode() == ISD::UNDEF) {
6688 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6689 continue;
6690 }
6691 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006692 SDOperand InVec = Node->getOperand(0);
6693 if (Idx >= NumElements) {
6694 InVec = Node->getOperand(1);
6695 Idx -= NumElements;
6696 }
6697 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6698 DAG.getConstant(Idx, PtrVT)));
6699 }
6700 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6701 Ops.clear();
6702
6703 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Nate Begeman5922f562008-03-14 00:53:31 +00006704 SDOperand IdxNode = Mask.getOperand(i);
6705 if (IdxNode.getOpcode() == ISD::UNDEF) {
6706 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6707 continue;
6708 }
6709 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006710 SDOperand InVec = Node->getOperand(0);
6711 if (Idx >= NumElements) {
6712 InVec = Node->getOperand(1);
6713 Idx -= NumElements;
6714 }
6715 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6716 DAG.getConstant(Idx, PtrVT)));
6717 }
6718 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6719 break;
6720 }
Dan Gohman7f321562007-06-25 16:23:39 +00006721 case ISD::BUILD_VECTOR: {
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006722 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00006723 Node->op_begin()+NewNumElts_Lo);
6724 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006725
Nate Begeman5db1afb2007-11-15 21:15:26 +00006726 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00006727 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006728 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006729 break;
6730 }
Dan Gohman7f321562007-06-25 16:23:39 +00006731 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00006732 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00006733 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6734 if (NewNumSubvectors == 1) {
6735 Lo = Node->getOperand(0);
6736 Hi = Node->getOperand(1);
6737 } else {
6738 SmallVector<SDOperand, 8> LoOps(Node->op_begin(),
6739 Node->op_begin()+NewNumSubvectors);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006740 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00006741
Dan Gohman7f321562007-06-25 16:23:39 +00006742 SmallVector<SDOperand, 8> HiOps(Node->op_begin()+NewNumSubvectors,
6743 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006744 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00006745 }
Dan Gohman65956352007-06-13 15:12:02 +00006746 break;
6747 }
Dan Gohmanc6230962007-10-17 14:48:28 +00006748 case ISD::SELECT: {
6749 SDOperand Cond = Node->getOperand(0);
6750
6751 SDOperand LL, LH, RL, RH;
6752 SplitVectorOp(Node->getOperand(1), LL, LH);
6753 SplitVectorOp(Node->getOperand(2), RL, RH);
6754
Duncan Sands83ec4b62008-06-06 12:08:01 +00006755 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00006756 // Handle a vector merge.
6757 SDOperand CL, CH;
6758 SplitVectorOp(Cond, CL, CH);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006759 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6760 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006761 } else {
6762 // Handle a simple select with vector operands.
Nate Begeman5db1afb2007-11-15 21:15:26 +00006763 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6764 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006765 }
6766 break;
6767 }
Chris Lattner80c1a562008-06-30 02:43:01 +00006768 case ISD::SELECT_CC: {
6769 SDOperand CondLHS = Node->getOperand(0);
6770 SDOperand CondRHS = Node->getOperand(1);
6771 SDOperand CondCode = Node->getOperand(4);
6772
6773 SDOperand LL, LH, RL, RH;
6774 SplitVectorOp(Node->getOperand(2), LL, LH);
6775 SplitVectorOp(Node->getOperand(3), RL, RH);
6776
6777 // Handle a simple select with vector operands.
6778 Lo = DAG.getNode(ISD::SELECT_CC, NewVT_Lo, CondLHS, CondRHS,
6779 LL, RL, CondCode);
6780 Hi = DAG.getNode(ISD::SELECT_CC, NewVT_Hi, CondLHS, CondRHS,
6781 LH, RH, CondCode);
6782 break;
6783 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00006784 case ISD::VSETCC: {
6785 SDOperand LL, LH, RL, RH;
6786 SplitVectorOp(Node->getOperand(0), LL, LH);
6787 SplitVectorOp(Node->getOperand(1), RL, RH);
6788 Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2));
6789 Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2));
6790 break;
6791 }
Dan Gohman7f321562007-06-25 16:23:39 +00006792 case ISD::ADD:
6793 case ISD::SUB:
6794 case ISD::MUL:
6795 case ISD::FADD:
6796 case ISD::FSUB:
6797 case ISD::FMUL:
6798 case ISD::SDIV:
6799 case ISD::UDIV:
6800 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00006801 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006802 case ISD::AND:
6803 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00006804 case ISD::XOR:
6805 case ISD::UREM:
6806 case ISD::SREM:
6807 case ISD::FREM: {
Chris Lattnerc7029802006-03-18 01:44:44 +00006808 SDOperand LL, LH, RL, RH;
6809 SplitVectorOp(Node->getOperand(0), LL, LH);
6810 SplitVectorOp(Node->getOperand(1), RL, RH);
6811
Nate Begeman5db1afb2007-11-15 21:15:26 +00006812 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
6813 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00006814 break;
6815 }
Dan Gohman82669522007-10-11 23:57:53 +00006816 case ISD::FPOWI: {
6817 SDOperand L, H;
6818 SplitVectorOp(Node->getOperand(0), L, H);
6819
Nate Begeman5db1afb2007-11-15 21:15:26 +00006820 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
6821 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00006822 break;
6823 }
6824 case ISD::CTTZ:
6825 case ISD::CTLZ:
6826 case ISD::CTPOP:
6827 case ISD::FNEG:
6828 case ISD::FABS:
6829 case ISD::FSQRT:
6830 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00006831 case ISD::FCOS:
6832 case ISD::FP_TO_SINT:
6833 case ISD::FP_TO_UINT:
6834 case ISD::SINT_TO_FP:
6835 case ISD::UINT_TO_FP: {
Dan Gohman82669522007-10-11 23:57:53 +00006836 SDOperand L, H;
6837 SplitVectorOp(Node->getOperand(0), L, H);
6838
Nate Begeman5db1afb2007-11-15 21:15:26 +00006839 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
6840 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00006841 break;
6842 }
Dan Gohman7f321562007-06-25 16:23:39 +00006843 case ISD::LOAD: {
6844 LoadSDNode *LD = cast<LoadSDNode>(Node);
6845 SDOperand Ch = LD->getChain();
6846 SDOperand Ptr = LD->getBasePtr();
6847 const Value *SV = LD->getSrcValue();
6848 int SVOffset = LD->getSrcValueOffset();
6849 unsigned Alignment = LD->getAlignment();
6850 bool isVolatile = LD->isVolatile();
6851
Nate Begeman5db1afb2007-11-15 21:15:26 +00006852 Lo = DAG.getLoad(NewVT_Lo, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006853 unsigned IncrementSize = NewNumElts_Lo * NewEltVT.getSizeInBits()/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00006854 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006855 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006856 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006857 Alignment = MinAlign(Alignment, IncrementSize);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006858 Hi = DAG.getLoad(NewVT_Hi, Ch, Ptr, SV, SVOffset, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00006859
6860 // Build a factor node to remember that this load is independent of the
6861 // other one.
6862 SDOperand TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
6863 Hi.getValue(1));
6864
6865 // Remember that we legalized the chain.
6866 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00006867 break;
6868 }
Dan Gohman7f321562007-06-25 16:23:39 +00006869 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00006870 // We know the result is a vector. The input may be either a vector or a
6871 // scalar value.
Dan Gohman10a7aa62007-06-29 00:09:08 +00006872 SDOperand InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006873 if (!InOp.getValueType().isVector() ||
6874 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00006875 // The input is a scalar or single-element vector.
6876 // Lower to a store/load so that it can be split.
6877 // FIXME: this could be improved probably.
Mon P Wang2920d2b2008-07-15 05:28:34 +00006878 unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment(
6879 Op.getValueType().getTypeForMVT());
6880 SDOperand Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Dan Gohmana54cf172008-07-11 22:44:52 +00006881 int FI = cast<FrameIndexSDNode>(Ptr.Val)->getIndex();
Chris Lattner7692eb42006-03-23 21:16:34 +00006882
Evan Cheng786225a2006-10-05 23:01:46 +00006883 SDOperand St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00006884 InOp, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00006885 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohman69de1932008-02-06 22:27:42 +00006886 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00006887 PseudoSourceValue::getFixedStack(FI), 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00006888 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00006889 // Split the vector and convert each of the pieces now.
6890 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006891 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
6892 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00006893 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00006894 }
Chris Lattnerc7029802006-03-18 01:44:44 +00006895 }
6896
6897 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00006898 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00006899 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00006900 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00006901}
6902
6903
Dan Gohman89b20c02007-06-27 14:06:22 +00006904/// ScalarizeVectorOp - Given an operand of single-element vector type
6905/// (e.g. v1f32), convert it into the equivalent operation that returns a
6906/// scalar (e.g. f32) value.
Dan Gohman7f321562007-06-25 16:23:39 +00006907SDOperand SelectionDAGLegalize::ScalarizeVectorOp(SDOperand Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006908 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006909 SDNode *Node = Op.Val;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006910 MVT NewVT = Op.getValueType().getVectorElementType();
6911 assert(Op.getValueType().getVectorNumElements() == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00006912
Dan Gohman7f321562007-06-25 16:23:39 +00006913 // See if we already scalarized it.
6914 std::map<SDOperand, SDOperand>::iterator I = ScalarizedNodes.find(Op);
6915 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00006916
6917 SDOperand Result;
6918 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00006919 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006920#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006921 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006922#endif
Dan Gohman7f321562007-06-25 16:23:39 +00006923 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
6924 case ISD::ADD:
6925 case ISD::FADD:
6926 case ISD::SUB:
6927 case ISD::FSUB:
6928 case ISD::MUL:
6929 case ISD::FMUL:
6930 case ISD::SDIV:
6931 case ISD::UDIV:
6932 case ISD::FDIV:
6933 case ISD::SREM:
6934 case ISD::UREM:
6935 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00006936 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006937 case ISD::AND:
6938 case ISD::OR:
6939 case ISD::XOR:
6940 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00006941 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00006942 ScalarizeVectorOp(Node->getOperand(0)),
6943 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00006944 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006945 case ISD::FNEG:
6946 case ISD::FABS:
6947 case ISD::FSQRT:
6948 case ISD::FSIN:
6949 case ISD::FCOS:
6950 Result = DAG.getNode(Node->getOpcode(),
6951 NewVT,
6952 ScalarizeVectorOp(Node->getOperand(0)));
6953 break;
Dan Gohman9e04c822007-10-12 14:13:46 +00006954 case ISD::FPOWI:
6955 Result = DAG.getNode(Node->getOpcode(),
6956 NewVT,
6957 ScalarizeVectorOp(Node->getOperand(0)),
6958 Node->getOperand(1));
6959 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006960 case ISD::LOAD: {
6961 LoadSDNode *LD = cast<LoadSDNode>(Node);
6962 SDOperand Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
6963 SDOperand Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Chris Lattnerc7029802006-03-18 01:44:44 +00006964
Dan Gohman7f321562007-06-25 16:23:39 +00006965 const Value *SV = LD->getSrcValue();
6966 int SVOffset = LD->getSrcValueOffset();
6967 Result = DAG.getLoad(NewVT, Ch, Ptr, SV, SVOffset,
6968 LD->isVolatile(), LD->getAlignment());
6969
Chris Lattnerc7029802006-03-18 01:44:44 +00006970 // Remember that we legalized the chain.
6971 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
6972 break;
6973 }
Dan Gohman7f321562007-06-25 16:23:39 +00006974 case ISD::BUILD_VECTOR:
6975 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00006976 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006977 case ISD::INSERT_VECTOR_ELT:
6978 // Returning the inserted scalar element.
6979 Result = Node->getOperand(1);
6980 break;
6981 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00006982 assert(Node->getOperand(0).getValueType() == NewVT &&
6983 "Concat of non-legal vectors not yet supported!");
6984 Result = Node->getOperand(0);
6985 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006986 case ISD::VECTOR_SHUFFLE: {
6987 // Figure out if the scalar is the LHS or RHS and return it.
6988 SDOperand EltNum = Node->getOperand(2).getOperand(0);
6989 if (cast<ConstantSDNode>(EltNum)->getValue())
6990 Result = ScalarizeVectorOp(Node->getOperand(1));
6991 else
6992 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00006993 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006994 }
6995 case ISD::EXTRACT_SUBVECTOR:
6996 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00006997 assert(Result.getValueType() == NewVT);
6998 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00006999 case ISD::BIT_CONVERT: {
7000 SDOperand Op0 = Op.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007001 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007002 Op0 = ScalarizeVectorOp(Op0);
7003 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007004 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007005 }
Dan Gohman7f321562007-06-25 16:23:39 +00007006 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007007 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007008 ScalarizeVectorOp(Op.getOperand(1)),
7009 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007010 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007011 case ISD::SELECT_CC:
7012 Result = DAG.getNode(ISD::SELECT_CC, NewVT, Node->getOperand(0),
7013 Node->getOperand(1),
7014 ScalarizeVectorOp(Op.getOperand(2)),
7015 ScalarizeVectorOp(Op.getOperand(3)),
7016 Node->getOperand(4));
7017 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007018 case ISD::VSETCC: {
7019 SDOperand Op0 = ScalarizeVectorOp(Op.getOperand(0));
7020 SDOperand Op1 = ScalarizeVectorOp(Op.getOperand(1));
7021 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0), Op0, Op1,
7022 Op.getOperand(2));
7023 Result = DAG.getNode(ISD::SELECT, NewVT, Result,
7024 DAG.getConstant(-1ULL, NewVT),
7025 DAG.getConstant(0ULL, NewVT));
7026 break;
7027 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007028 }
7029
7030 if (TLI.isTypeLegal(NewVT))
7031 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007032 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7033 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007034 return Result;
7035}
7036
Chris Lattner3e928bb2005-01-07 07:47:09 +00007037
7038// SelectionDAG::Legalize - This is the entry point for the file.
7039//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00007040void SelectionDAG::Legalize() {
Chris Lattner5e46a192006-04-02 03:07:27 +00007041 if (ViewLegalizeDAGs) viewGraph();
7042
Chris Lattner3e928bb2005-01-07 07:47:09 +00007043 /// run - This is the main entry point to this class.
7044 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00007045 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00007046}
7047