blob: 96eafbe50286fe7c0fad9e4e1bac4de10fe25b18 [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
38//===----------------------------------------------------------------------===//
39/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
40/// hacks on it until the target machine can handle it. This involves
41/// eliminating value sizes the machine cannot handle (promoting small sizes to
42/// large sizes or splitting up large values into small values) as well as
43/// eliminating operations the machine cannot handle.
44///
45/// This code also does a small amount of optimization and recognition of idioms
46/// as part of its processing. For example, if a target does not support a
47/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
48/// will attempt merge setcc and brc instructions into brcc's.
49///
50namespace {
Chris Lattner360e8202006-06-28 21:58:30 +000051class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattner3e928bb2005-01-07 07:47:09 +000052 TargetLowering &TLI;
53 SelectionDAG &DAG;
54
Chris Lattner6831a812006-02-13 09:18:02 +000055 // Libcall insertion helpers.
56
57 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
58 /// legalized. We use this to ensure that calls are properly serialized
59 /// against each other, including inserted libcalls.
Dan Gohman475871a2008-07-27 21:46:04 +000060 SDValue LastCALLSEQ_END;
Chris Lattner6831a812006-02-13 09:18:02 +000061
62 /// IsLegalizingCall - This member is used *only* for purposes of providing
63 /// helpful assertions that a libcall isn't created while another call is
64 /// being legalized (which could lead to non-serialized call sequences).
65 bool IsLegalizingCall;
66
Chris Lattner3e928bb2005-01-07 07:47:09 +000067 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000068 Legal, // The target natively supports this operation.
69 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000070 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000071 };
Chris Lattner6831a812006-02-13 09:18:02 +000072
Chris Lattner3e928bb2005-01-07 07:47:09 +000073 /// ValueTypeActions - This is a bitvector that contains two bits for each
74 /// value type, where the two bits correspond to the LegalizeAction enum.
75 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000076 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000077
Chris Lattner3e928bb2005-01-07 07:47:09 +000078 /// LegalizedNodes - For nodes that are of legal width, and that have more
79 /// than one use, this map indicates what regularized operand to use. This
80 /// allows us to avoid legalizing the same thing more than once.
Dan Gohman475871a2008-07-27 21:46:04 +000081 DenseMap<SDValue, SDValue> LegalizedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000082
Chris Lattner03c85462005-01-15 05:21:40 +000083 /// PromotedNodes - For nodes that are below legal width, and that have more
84 /// than one use, this map indicates what promoted value to use. This allows
85 /// us to avoid promoting the same thing more than once.
Dan Gohman475871a2008-07-27 21:46:04 +000086 DenseMap<SDValue, SDValue> PromotedNodes;
Chris Lattner03c85462005-01-15 05:21:40 +000087
Chris Lattnerc7029802006-03-18 01:44:44 +000088 /// ExpandedNodes - For nodes that need to be expanded this map indicates
89 /// which which operands are the expanded version of the input. This allows
90 /// us to avoid expanding the same node more than once.
Dan Gohman475871a2008-07-27 21:46:04 +000091 DenseMap<SDValue, std::pair<SDValue, SDValue> > ExpandedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000092
Chris Lattnerc7029802006-03-18 01:44:44 +000093 /// SplitNodes - For vector nodes that need to be split, this map indicates
94 /// which which operands are the split version of the input. This allows us
95 /// to avoid splitting the same node more than once.
Dan Gohman475871a2008-07-27 21:46:04 +000096 std::map<SDValue, std::pair<SDValue, SDValue> > SplitNodes;
Chris Lattnerc7029802006-03-18 01:44:44 +000097
Dan Gohman7f321562007-06-25 16:23:39 +000098 /// ScalarizedNodes - For nodes that need to be converted from vector types to
99 /// scalar types, this contains the mapping of ones we have already
Chris Lattnerc7029802006-03-18 01:44:44 +0000100 /// processed to the result.
Dan Gohman475871a2008-07-27 21:46:04 +0000101 std::map<SDValue, SDValue> ScalarizedNodes;
Chris Lattnerc7029802006-03-18 01:44:44 +0000102
Dan Gohman475871a2008-07-27 21:46:04 +0000103 void AddLegalizedOperand(SDValue From, SDValue To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000104 LegalizedNodes.insert(std::make_pair(From, To));
105 // If someone requests legalization of the new node, return itself.
106 if (From != To)
107 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000108 }
Dan Gohman475871a2008-07-27 21:46:04 +0000109 void AddPromotedOperand(SDValue From, SDValue To) {
Dan Gohman6b345ee2008-07-07 17:46:23 +0000110 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
Chris Lattner03c85462005-01-15 05:21:40 +0000111 assert(isNew && "Got into the map somehow?");
Chris Lattner69a889e2005-12-20 00:53:54 +0000112 // If someone requests legalization of the new node, return itself.
113 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000114 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000115
Chris Lattner3e928bb2005-01-07 07:47:09 +0000116public:
Dan Gohman1002c022008-07-07 18:00:37 +0000117 explicit SelectionDAGLegalize(SelectionDAG &DAG);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000118
Chris Lattner3e928bb2005-01-07 07:47:09 +0000119 /// getTypeAction - Return how we should legalize values of this type, either
120 /// it is already legal or we need to expand it into multiple registers of
121 /// smaller integer type, or we need to promote it to a larger type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000122 LegalizeAction getTypeAction(MVT VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000123 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000124 }
125
126 /// isTypeLegal - Return true if this type is legal on this target.
127 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000128 bool isTypeLegal(MVT VT) const {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000129 return getTypeAction(VT) == Legal;
130 }
131
Chris Lattner3e928bb2005-01-07 07:47:09 +0000132 void LegalizeDAG();
133
Chris Lattner456a93a2006-01-28 07:39:30 +0000134private:
Dan Gohman7f321562007-06-25 16:23:39 +0000135 /// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000136 /// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000137 void HandleOp(SDValue Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000138
139 /// LegalizeOp - We know that the specified value has a legal type.
140 /// Recursively ensure that the operands have legal types, then return the
141 /// result.
Dan Gohman475871a2008-07-27 21:46:04 +0000142 SDValue LegalizeOp(SDValue O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000143
Dan Gohman82669522007-10-11 23:57:53 +0000144 /// UnrollVectorOp - We know that the given vector has a legal type, however
145 /// the operation it performs is not legal and is an operation that we have
146 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
147 /// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000148 SDValue UnrollVectorOp(SDValue O);
Nate Begeman68679912008-04-25 18:07:40 +0000149
150 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
151 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
152 /// is necessary to spill the vector being inserted into to memory, perform
153 /// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000154 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
155 SDValue Idx);
Dan Gohman82669522007-10-11 23:57:53 +0000156
Chris Lattnerc7029802006-03-18 01:44:44 +0000157 /// PromoteOp - Given an operation that produces a value in an invalid type,
158 /// promote it to compute the value into a larger type. The produced value
159 /// will have the correct bits for the low portion of the register, but no
160 /// guarantee is made about the top bits: it may be zero, sign-extended, or
161 /// garbage.
Dan Gohman475871a2008-07-27 21:46:04 +0000162 SDValue PromoteOp(SDValue O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000163
Dan Gohman475871a2008-07-27 21:46:04 +0000164 /// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattnerc7029802006-03-18 01:44:44 +0000165 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
166 /// the LegalizeNodes map is filled in for any results that are not expanded,
167 /// the ExpandedNodes map is filled in for any results that are expanded, and
168 /// the Lo/Hi values are returned. This applies to integer types and Vector
169 /// types.
Dan Gohman475871a2008-07-27 21:46:04 +0000170 void ExpandOp(SDValue O, SDValue &Lo, SDValue &Hi);
Chris Lattnerc7029802006-03-18 01:44:44 +0000171
Dan Gohman7f321562007-06-25 16:23:39 +0000172 /// SplitVectorOp - Given an operand of vector type, break it down into
173 /// two smaller values.
Dan Gohman475871a2008-07-27 21:46:04 +0000174 void SplitVectorOp(SDValue O, SDValue &Lo, SDValue &Hi);
Chris Lattnerc7029802006-03-18 01:44:44 +0000175
Dan Gohman89b20c02007-06-27 14:06:22 +0000176 /// ScalarizeVectorOp - Given an operand of single-element vector type
177 /// (e.g. v1f32), convert it into the equivalent operation that returns a
178 /// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +0000179 SDValue ScalarizeVectorOp(SDValue O);
Chris Lattnerc7029802006-03-18 01:44:44 +0000180
Duncan Sandsd038e042008-07-21 10:20:31 +0000181 /// isShuffleLegal - Return non-null if a vector shuffle is legal with the
Chris Lattner4352cc92006-04-04 17:23:26 +0000182 /// specified mask and type. Targets can specify exactly which masks they
183 /// support and the code generator is tasked with not creating illegal masks.
184 ///
185 /// Note that this will also return true for shuffles that are promoted to a
186 /// different type.
187 ///
188 /// If this is a legal shuffle, this method returns the (possibly promoted)
189 /// build_vector Mask. If it's not a legal shuffle, it returns null.
Dan Gohman475871a2008-07-27 21:46:04 +0000190 SDNode *isShuffleLegal(MVT VT, SDValue Mask) const;
Chris Lattner4352cc92006-04-04 17:23:26 +0000191
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000192 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000193 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000194
Dan Gohman475871a2008-07-27 21:46:04 +0000195 void LegalizeSetCCOperands(SDValue &LHS, SDValue &RHS, SDValue &CC);
Nate Begeman750ac1b2006-02-01 07:19:44 +0000196
Dan Gohman475871a2008-07-27 21:46:04 +0000197 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
198 SDValue &Hi);
199 SDValue ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source);
Chris Lattnercad063f2005-07-16 00:19:57 +0000200
Dan Gohman475871a2008-07-27 21:46:04 +0000201 SDValue EmitStackConvert(SDValue SrcOp, MVT SlotVT, MVT DestVT);
202 SDValue ExpandBUILD_VECTOR(SDNode *Node);
203 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Dan Gohman7f8613e2008-08-14 20:04:46 +0000204 SDValue LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op);
Dan Gohman475871a2008-07-27 21:46:04 +0000205 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, MVT DestVT);
206 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, MVT DestVT, bool isSigned);
207 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, MVT DestVT, bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000208
Dan Gohman475871a2008-07-27 21:46:04 +0000209 SDValue ExpandBSWAP(SDValue Op);
210 SDValue ExpandBitCount(unsigned Opc, SDValue Op);
211 bool ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
212 SDValue &Lo, SDValue &Hi);
213 void ExpandShiftParts(unsigned NodeOp, SDValue Op, SDValue Amt,
214 SDValue &Lo, SDValue &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000215
Dan Gohman475871a2008-07-27 21:46:04 +0000216 SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op);
217 SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000218};
219}
220
Chris Lattner4352cc92006-04-04 17:23:26 +0000221/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
222/// specified mask and type. Targets can specify exactly which masks they
223/// support and the code generator is tasked with not creating illegal masks.
224///
225/// Note that this will also return true for shuffles that are promoted to a
226/// different type.
Dan Gohman475871a2008-07-27 21:46:04 +0000227SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDValue Mask) const {
Chris Lattner4352cc92006-04-04 17:23:26 +0000228 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
229 default: return 0;
230 case TargetLowering::Legal:
231 case TargetLowering::Custom:
232 break;
233 case TargetLowering::Promote: {
234 // If this is promoted to a different type, convert the shuffle mask and
235 // ask if it is legal in the promoted type!
Duncan Sands83ec4b62008-06-06 12:08:01 +0000236 MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
Duncan Sandsd038e042008-07-21 10:20:31 +0000237 MVT EltVT = NVT.getVectorElementType();
Chris Lattner4352cc92006-04-04 17:23:26 +0000238
239 // If we changed # elements, change the shuffle mask.
240 unsigned NumEltsGrowth =
Duncan Sands83ec4b62008-06-06 12:08:01 +0000241 NVT.getVectorNumElements() / VT.getVectorNumElements();
Chris Lattner4352cc92006-04-04 17:23:26 +0000242 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
243 if (NumEltsGrowth > 1) {
244 // Renumber the elements.
Dan Gohman475871a2008-07-27 21:46:04 +0000245 SmallVector<SDValue, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000246 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +0000247 SDValue InOp = Mask.getOperand(i);
Chris Lattner4352cc92006-04-04 17:23:26 +0000248 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
249 if (InOp.getOpcode() == ISD::UNDEF)
Duncan Sandsd038e042008-07-21 10:20:31 +0000250 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
Chris Lattner4352cc92006-04-04 17:23:26 +0000251 else {
252 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getValue();
Duncan Sandsd038e042008-07-21 10:20:31 +0000253 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, EltVT));
Chris Lattner4352cc92006-04-04 17:23:26 +0000254 }
255 }
256 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000257 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000258 }
259 VT = NVT;
260 break;
261 }
262 }
263 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.Val : 0;
264}
265
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000266SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
267 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
268 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000269 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000270 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000271}
272
Chris Lattnere10e6f72007-06-18 21:28:10 +0000273/// ComputeTopDownOrdering - Compute a top-down ordering of the dag, where Order
274/// contains all of a nodes operands before it contains the node.
275static void ComputeTopDownOrdering(SelectionDAG &DAG,
276 SmallVector<SDNode*, 64> &Order) {
277
278 DenseMap<SDNode*, unsigned> Visited;
279 std::vector<SDNode*> Worklist;
280 Worklist.reserve(128);
Chris Lattner32fca002005-10-06 01:20:27 +0000281
Chris Lattnere10e6f72007-06-18 21:28:10 +0000282 // Compute ordering from all of the leaves in the graphs, those (like the
283 // entry node) that have no operands.
284 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
285 E = DAG.allnodes_end(); I != E; ++I) {
286 if (I->getNumOperands() == 0) {
287 Visited[I] = 0 - 1U;
288 Worklist.push_back(I);
289 }
Chris Lattner32fca002005-10-06 01:20:27 +0000290 }
291
Chris Lattnere10e6f72007-06-18 21:28:10 +0000292 while (!Worklist.empty()) {
293 SDNode *N = Worklist.back();
294 Worklist.pop_back();
295
296 if (++Visited[N] != N->getNumOperands())
297 continue; // Haven't visited all operands yet
298
299 Order.push_back(N);
300
301 // Now that we have N in, add anything that uses it if all of their operands
302 // are now done.
Dan Gohman89684502008-07-27 20:43:25 +0000303 Worklist.insert(Worklist.end(), N->use_begin(), N->use_end());
Chris Lattnere10e6f72007-06-18 21:28:10 +0000304 }
305
306 assert(Order.size() == Visited.size() &&
Dan Gohman3461cc92008-06-20 17:15:19 +0000307 Order.size() == DAG.allnodes_size() &&
Chris Lattnere10e6f72007-06-18 21:28:10 +0000308 "Error: DAG is cyclic!");
Chris Lattner32fca002005-10-06 01:20:27 +0000309}
310
Chris Lattner1618beb2005-07-29 00:11:56 +0000311
Chris Lattner3e928bb2005-01-07 07:47:09 +0000312void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000313 LastCALLSEQ_END = DAG.getEntryNode();
314 IsLegalizingCall = false;
315
Chris Lattnerab510a72005-10-02 17:49:46 +0000316 // The legalize process is inherently a bottom-up recursive process (users
317 // legalize their uses before themselves). Given infinite stack space, we
318 // could just start legalizing on the root and traverse the whole graph. In
319 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000320 // blocks. To avoid this problem, compute an ordering of the nodes where each
321 // node is only legalized after all of its operands are legalized.
Chris Lattner0ed44172007-02-04 01:20:02 +0000322 SmallVector<SDNode*, 64> Order;
Chris Lattnere10e6f72007-06-18 21:28:10 +0000323 ComputeTopDownOrdering(DAG, Order);
Chris Lattnerab510a72005-10-02 17:49:46 +0000324
Chris Lattnerc7029802006-03-18 01:44:44 +0000325 for (unsigned i = 0, e = Order.size(); i != e; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +0000326 HandleOp(SDValue(Order[i], 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000327
328 // Finally, it's possible the root changed. Get the new root.
Dan Gohman475871a2008-07-27 21:46:04 +0000329 SDValue OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000330 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
331 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000332
333 ExpandedNodes.clear();
334 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000335 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000336 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000337 ScalarizedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000338
339 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000340 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000341}
342
Chris Lattner6831a812006-02-13 09:18:02 +0000343
344/// FindCallEndFromCallStart - Given a chained node that is part of a call
345/// sequence, find the CALLSEQ_END node that terminates the call sequence.
346static SDNode *FindCallEndFromCallStart(SDNode *Node) {
347 if (Node->getOpcode() == ISD::CALLSEQ_END)
348 return Node;
349 if (Node->use_empty())
350 return 0; // No CallSeqEnd
351
352 // The chain is usually at the end.
Dan Gohman475871a2008-07-27 21:46:04 +0000353 SDValue TheChain(Node, Node->getNumValues()-1);
Chris Lattner6831a812006-02-13 09:18:02 +0000354 if (TheChain.getValueType() != MVT::Other) {
355 // Sometimes it's at the beginning.
Dan Gohman475871a2008-07-27 21:46:04 +0000356 TheChain = SDValue(Node, 0);
Chris Lattner6831a812006-02-13 09:18:02 +0000357 if (TheChain.getValueType() != MVT::Other) {
358 // Otherwise, hunt for it.
359 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
360 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman475871a2008-07-27 21:46:04 +0000361 TheChain = SDValue(Node, i);
Chris Lattner6831a812006-02-13 09:18:02 +0000362 break;
363 }
364
365 // Otherwise, we walked into a node without a chain.
366 if (TheChain.getValueType() != MVT::Other)
367 return 0;
368 }
369 }
370
371 for (SDNode::use_iterator UI = Node->use_begin(),
372 E = Node->use_end(); UI != E; ++UI) {
373
374 // Make sure to only follow users of our token chain.
Dan Gohman89684502008-07-27 20:43:25 +0000375 SDNode *User = *UI;
Chris Lattner6831a812006-02-13 09:18:02 +0000376 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
377 if (User->getOperand(i) == TheChain)
378 if (SDNode *Result = FindCallEndFromCallStart(User))
379 return Result;
380 }
381 return 0;
382}
383
384/// FindCallStartFromCallEnd - Given a chained node that is part of a call
385/// sequence, find the CALLSEQ_START node that initiates the call sequence.
386static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
387 assert(Node && "Didn't find callseq_start for a call??");
388 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
389
390 assert(Node->getOperand(0).getValueType() == MVT::Other &&
391 "Node doesn't have a token chain argument!");
392 return FindCallStartFromCallEnd(Node->getOperand(0).Val);
393}
394
395/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
396/// see if any uses can reach Dest. If no dest operands can get to dest,
397/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000398///
399/// Keep track of the nodes we fine that actually do lead to Dest in
400/// NodesLeadingTo. This avoids retraversing them exponential number of times.
401///
402bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000403 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000404 if (N == Dest) return true; // N certainly leads to Dest :)
405
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000406 // If we've already processed this node and it does lead to Dest, there is no
407 // need to reprocess it.
408 if (NodesLeadingTo.count(N)) return true;
409
Chris Lattner6831a812006-02-13 09:18:02 +0000410 // If the first result of this node has been already legalized, then it cannot
411 // reach N.
412 switch (getTypeAction(N->getValueType(0))) {
413 case Legal:
Dan Gohman475871a2008-07-27 21:46:04 +0000414 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000415 break;
416 case Promote:
Dan Gohman475871a2008-07-27 21:46:04 +0000417 if (PromotedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000418 break;
419 case Expand:
Dan Gohman475871a2008-07-27 21:46:04 +0000420 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000421 break;
422 }
423
424 // Okay, this node has not already been legalized. Check and legalize all
425 // operands. If none lead to Dest, then we can legalize this node.
426 bool OperandsLeadToDest = false;
427 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
428 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000429 LegalizeAllNodesNotLeadingTo(N->getOperand(i).Val, Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000430
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000431 if (OperandsLeadToDest) {
432 NodesLeadingTo.insert(N);
433 return true;
434 }
Chris Lattner6831a812006-02-13 09:18:02 +0000435
436 // Okay, this node looks safe, legalize it and return false.
Dan Gohman475871a2008-07-27 21:46:04 +0000437 HandleOp(SDValue(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000438 return false;
439}
440
Dan Gohman7f321562007-06-25 16:23:39 +0000441/// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000442/// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000443void SelectionDAGLegalize::HandleOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000444 MVT VT = Op.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000445 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000446 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000447 case Legal: (void)LegalizeOp(Op); break;
448 case Promote: (void)PromoteOp(Op); break;
Chris Lattnerc7029802006-03-18 01:44:44 +0000449 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000450 if (!VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +0000451 // If this is an illegal scalar, expand it into its two component
452 // pieces.
Dan Gohman475871a2008-07-27 21:46:04 +0000453 SDValue X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000454 if (Op.getOpcode() == ISD::TargetConstant)
455 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000456 ExpandOp(Op, X, Y);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000457 } else if (VT.getVectorNumElements() == 1) {
Dan Gohman7f321562007-06-25 16:23:39 +0000458 // If this is an illegal single element vector, convert it to a
459 // scalar operation.
460 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000461 } else {
Dan Gohman7f321562007-06-25 16:23:39 +0000462 // Otherwise, this is an illegal multiple element vector.
463 // Split it in half and legalize both parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000464 SDValue X, Y;
Dan Gohman7f321562007-06-25 16:23:39 +0000465 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000466 }
467 break;
468 }
469}
Chris Lattner6831a812006-02-13 09:18:02 +0000470
Evan Cheng9f877882006-12-13 20:57:08 +0000471/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
472/// a load from the constant pool.
Dan Gohman475871a2008-07-27 21:46:04 +0000473static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng279101e2006-12-12 22:19:28 +0000474 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000475 bool Extend = false;
476
477 // If a FP immediate is precise when represented as a float and if the
478 // target can do an extending load from float to double, we put it into
479 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000480 // double. This shrinks FP constants and canonicalizes them for targets where
481 // an FP extending load is the same cost as a normal load (such as on the x87
482 // fp stack or PPC FP unit).
Duncan Sands83ec4b62008-06-06 12:08:01 +0000483 MVT VT = CFP->getValueType(0);
Chris Lattner02a260a2008-04-20 00:41:09 +0000484 ConstantFP *LLVMC = ConstantFP::get(CFP->getValueAPF());
Evan Cheng9f877882006-12-13 20:57:08 +0000485 if (!UseCP) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000486 if (VT!=MVT::f64 && VT!=MVT::f32)
487 assert(0 && "Invalid type expansion");
Dan Gohman6cf9b8a2008-03-11 00:11:06 +0000488 return DAG.getConstant(LLVMC->getValueAPF().convertToAPInt(),
Evan Chengef120572008-03-04 08:05:30 +0000489 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000490 }
491
Duncan Sands83ec4b62008-06-06 12:08:01 +0000492 MVT OrigVT = VT;
493 MVT SVT = VT;
Evan Chengef120572008-03-04 08:05:30 +0000494 while (SVT != MVT::f32) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000495 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Chengef120572008-03-04 08:05:30 +0000496 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
497 // Only do this if the target has a native EXTLOAD instruction from
498 // smaller type.
Evan Cheng6fd599f2008-03-05 01:30:59 +0000499 TLI.isLoadXLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000500 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000501 const Type *SType = SVT.getTypeForMVT();
Evan Chengef120572008-03-04 08:05:30 +0000502 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
503 VT = SVT;
504 Extend = true;
505 }
Evan Cheng00495212006-12-12 21:32:44 +0000506 }
507
Dan Gohman475871a2008-07-27 21:46:04 +0000508 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Chengef120572008-03-04 08:05:30 +0000509 if (Extend)
510 return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000511 CPIdx, PseudoSourceValue::getConstantPool(),
Evan Chengef120572008-03-04 08:05:30 +0000512 0, VT);
513 return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx,
514 PseudoSourceValue::getConstantPool(), 0);
Evan Cheng00495212006-12-12 21:32:44 +0000515}
516
Chris Lattner6831a812006-02-13 09:18:02 +0000517
Evan Cheng912095b2007-01-04 21:56:39 +0000518/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
519/// operations.
520static
Dan Gohman475871a2008-07-27 21:46:04 +0000521SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
522 SelectionDAG &DAG, TargetLowering &TLI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000523 MVT VT = Node->getValueType(0);
524 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000525 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
526 "fcopysign expansion only supported for f32 and f64");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000527 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000528
Evan Cheng912095b2007-01-04 21:56:39 +0000529 // First get the sign bit of second operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000530 SDValue Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000531 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
532 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000533 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Dan Gohman475871a2008-07-27 21:46:04 +0000534 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000535 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000536 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000537 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Evan Cheng912095b2007-01-04 21:56:39 +0000538 if (SizeDiff > 0) {
539 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
540 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
541 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000542 } else if (SizeDiff < 0) {
543 SignBit = DAG.getNode(ISD::ZERO_EXTEND, NVT, SignBit);
544 SignBit = DAG.getNode(ISD::SHL, NVT, SignBit,
545 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
546 }
Evan Cheng068c5f42007-01-05 21:31:51 +0000547
548 // Clear the sign bit of first operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000549 SDValue Mask2 = (VT == MVT::f64)
Evan Cheng068c5f42007-01-05 21:31:51 +0000550 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
551 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
552 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Dan Gohman475871a2008-07-27 21:46:04 +0000553 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000554 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
555
556 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000557 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
558 return Result;
559}
560
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000561/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
562static
Dan Gohman475871a2008-07-27 21:46:04 +0000563SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
564 TargetLowering &TLI) {
565 SDValue Chain = ST->getChain();
566 SDValue Ptr = ST->getBasePtr();
567 SDValue Val = ST->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000568 MVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000569 int Alignment = ST->getAlignment();
570 int SVOffset = ST->getSrcValueOffset();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000571 if (ST->getMemoryVT().isFloatingPoint() ||
572 ST->getMemoryVT().isVector()) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000573 // Expand to a bitconvert of the value to the integer type of the
574 // same size, then a (misaligned) int store.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000575 MVT intVT;
576 if (VT.is128BitVector() || VT == MVT::ppcf128 || VT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000577 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000578 else if (VT.is64BitVector() || VT==MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000579 intVT = MVT::i64;
580 else if (VT==MVT::f32)
581 intVT = MVT::i32;
582 else
Dale Johannesencd9f1742008-02-28 18:36:51 +0000583 assert(0 && "Unaligned store of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000584
Dan Gohman475871a2008-07-27 21:46:04 +0000585 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000586 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
587 SVOffset, ST->isVolatile(), Alignment);
588 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000589 assert(ST->getMemoryVT().isInteger() &&
590 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000591 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000592 // Get the half-size VT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000593 MVT NewStoredVT =
594 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
595 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000596 int IncrementSize = NumBits / 8;
597
598 // Divide the stored value in two parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000599 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
600 SDValue Lo = Val;
601 SDValue Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000602
603 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000604 SDValue Store1, Store2;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000605 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
606 ST->getSrcValue(), SVOffset, NewStoredVT,
607 ST->isVolatile(), Alignment);
608 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
609 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000610 Alignment = MinAlign(Alignment, IncrementSize);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000611 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
612 ST->getSrcValue(), SVOffset + IncrementSize,
613 NewStoredVT, ST->isVolatile(), Alignment);
614
615 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
616}
617
618/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
619static
Dan Gohman475871a2008-07-27 21:46:04 +0000620SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
621 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000622 int SVOffset = LD->getSrcValueOffset();
Dan Gohman475871a2008-07-27 21:46:04 +0000623 SDValue Chain = LD->getChain();
624 SDValue Ptr = LD->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000625 MVT VT = LD->getValueType(0);
626 MVT LoadedVT = LD->getMemoryVT();
627 if (VT.isFloatingPoint() || VT.isVector()) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000628 // Expand to a (misaligned) integer load of the same size,
Dale Johannesen8155d642008-02-27 22:36:00 +0000629 // then bitconvert to floating point or vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000630 MVT intVT;
631 if (LoadedVT.is128BitVector() ||
Dale Johannesen3c8b59c2008-03-01 03:40:57 +0000632 LoadedVT == MVT::ppcf128 || LoadedVT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000633 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000634 else if (LoadedVT.is64BitVector() || LoadedVT == MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000635 intVT = MVT::i64;
Chris Lattnere400af82007-11-19 21:38:03 +0000636 else if (LoadedVT == MVT::f32)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000637 intVT = MVT::i32;
638 else
Dale Johannesen8155d642008-02-27 22:36:00 +0000639 assert(0 && "Unaligned load of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000640
Dan Gohman475871a2008-07-27 21:46:04 +0000641 SDValue newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
Dale Johannesen907f28c2007-09-08 19:29:23 +0000642 SVOffset, LD->isVolatile(),
643 LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +0000644 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000645 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000646 Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
647
Dan Gohman475871a2008-07-27 21:46:04 +0000648 SDValue Ops[] = { Result, Chain };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000649 return DAG.getMergeValues(Ops, 2);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000650 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000651 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000652 "Unaligned load of unsupported type.");
653
Dale Johannesen8155d642008-02-27 22:36:00 +0000654 // Compute the new VT that is half the size of the old one. This is an
655 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000656 unsigned NumBits = LoadedVT.getSizeInBits();
657 MVT NewLoadedVT;
658 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000659 NumBits >>= 1;
660
661 unsigned Alignment = LD->getAlignment();
662 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000663 ISD::LoadExtType HiExtType = LD->getExtensionType();
664
665 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
666 if (HiExtType == ISD::NON_EXTLOAD)
667 HiExtType = ISD::ZEXTLOAD;
668
669 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000670 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000671 if (TLI.isLittleEndian()) {
672 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
673 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
674 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
675 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
676 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
677 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000678 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000679 } else {
680 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
681 NewLoadedVT,LD->isVolatile(), Alignment);
682 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
683 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
684 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, 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 }
688
689 // aggregate the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000690 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
691 SDValue Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000692 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
693
Dan Gohman475871a2008-07-27 21:46:04 +0000694 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000695 Hi.getValue(1));
696
Dan Gohman475871a2008-07-27 21:46:04 +0000697 SDValue Ops[] = { Result, TF };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000698 return DAG.getMergeValues(Ops, 2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000699}
Evan Cheng912095b2007-01-04 21:56:39 +0000700
Dan Gohman82669522007-10-11 23:57:53 +0000701/// UnrollVectorOp - We know that the given vector has a legal type, however
702/// the operation it performs is not legal and is an operation that we have
703/// no way of lowering. "Unroll" the vector, splitting out the scalars and
704/// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000705SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000706 MVT VT = Op.getValueType();
Dan Gohman82669522007-10-11 23:57:53 +0000707 assert(isTypeLegal(VT) &&
708 "Caller should expand or promote operands that are not legal!");
709 assert(Op.Val->getNumValues() == 1 &&
710 "Can't unroll a vector with multiple results!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000711 unsigned NE = VT.getVectorNumElements();
712 MVT EltVT = VT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000713
Dan Gohman475871a2008-07-27 21:46:04 +0000714 SmallVector<SDValue, 8> Scalars;
715 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman82669522007-10-11 23:57:53 +0000716 for (unsigned i = 0; i != NE; ++i) {
717 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +0000718 SDValue Operand = Op.getOperand(j);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000719 MVT OperandVT = Operand.getValueType();
720 if (OperandVT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +0000721 // A vector operand; extract a single element.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000722 MVT OperandEltVT = OperandVT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000723 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
724 OperandEltVT,
725 Operand,
726 DAG.getConstant(i, MVT::i32));
727 } else {
728 // A scalar operand; just use it as is.
729 Operands[j] = Operand;
730 }
731 }
732 Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
733 &Operands[0], Operands.size()));
734 }
735
736 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
737}
738
Duncan Sands007f9842008-01-10 10:28:30 +0000739/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000740static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands007f9842008-01-10 10:28:30 +0000741 RTLIB::Libcall Call_F32,
742 RTLIB::Libcall Call_F64,
743 RTLIB::Libcall Call_F80,
744 RTLIB::Libcall Call_PPCF128) {
745 return
746 VT == MVT::f32 ? Call_F32 :
747 VT == MVT::f64 ? Call_F64 :
748 VT == MVT::f80 ? Call_F80 :
749 VT == MVT::ppcf128 ? Call_PPCF128 :
750 RTLIB::UNKNOWN_LIBCALL;
751}
752
Nate Begeman68679912008-04-25 18:07:40 +0000753/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
754/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
755/// is necessary to spill the vector being inserted into to memory, perform
756/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000757SDValue SelectionDAGLegalize::
758PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx) {
759 SDValue Tmp1 = Vec;
760 SDValue Tmp2 = Val;
761 SDValue Tmp3 = Idx;
Nate Begeman68679912008-04-25 18:07:40 +0000762
763 // If the target doesn't support this, we have to spill the input vector
764 // to a temporary stack slot, update the element, then reload it. This is
765 // badness. We could also load the value into a vector register (either
766 // with a "move to register" or "extload into register" instruction, then
767 // permute it into place, if the idx is a constant and if the idx is
768 // supported by the target.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000769 MVT VT = Tmp1.getValueType();
770 MVT EltVT = VT.getVectorElementType();
771 MVT IdxVT = Tmp3.getValueType();
772 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000773 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000774
Dan Gohmana54cf172008-07-11 22:44:52 +0000775 int SPFI = cast<FrameIndexSDNode>(StackPtr.Val)->getIndex();
Nate Begeman68679912008-04-25 18:07:40 +0000776
777 // Store the vector.
Dan Gohman475871a2008-07-27 21:46:04 +0000778 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +0000779 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000780
781 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000782 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Nate Begeman68679912008-04-25 18:07:40 +0000783 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
784 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000785 unsigned EltSize = EltVT.getSizeInBits()/8;
Nate Begeman68679912008-04-25 18:07:40 +0000786 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
Dan Gohman475871a2008-07-27 21:46:04 +0000787 SDValue StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000788 // Store the scalar value.
789 Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2,
Dan Gohmana54cf172008-07-11 22:44:52 +0000790 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman68679912008-04-25 18:07:40 +0000791 // Load the updated vector.
Dan Gohmana54cf172008-07-11 22:44:52 +0000792 return DAG.getLoad(VT, Ch, StackPtr,
793 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000794}
795
Dan Gohmana3466152007-07-13 20:14:11 +0000796/// LegalizeOp - We know that the specified value has a legal type, and
797/// that its operands are legal. Now ensure that the operation itself
798/// is legal, recursively ensuring that the operands' operations remain
799/// legal.
Dan Gohman475871a2008-07-27 21:46:04 +0000800SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000801 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
802 return Op;
803
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000804 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000805 "Caller should expand or promote operands that are not legal!");
Chris Lattner45982da2005-05-12 16:53:42 +0000806 SDNode *Node = Op.Val;
Chris Lattnere3304a32005-01-08 20:35:13 +0000807
Chris Lattner3e928bb2005-01-07 07:47:09 +0000808 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000809 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000810 if (Node->getNumValues() > 1) {
811 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000812 if (getTypeAction(Node->getValueType(i)) != Legal) {
813 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000814 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000815 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000816 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000817 }
818 }
819
Chris Lattner45982da2005-05-12 16:53:42 +0000820 // Note that LegalizeOp may be reentered even from single-use nodes, which
821 // means that we always must cache transformed nodes.
Dan Gohman475871a2008-07-27 21:46:04 +0000822 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000823 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000824
Dan Gohman475871a2008-07-27 21:46:04 +0000825 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
826 SDValue Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000827 bool isCustom = false;
828
Chris Lattner3e928bb2005-01-07 07:47:09 +0000829 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000830 case ISD::FrameIndex:
831 case ISD::EntryToken:
832 case ISD::Register:
833 case ISD::BasicBlock:
834 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000835 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000836 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000837 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000838 case ISD::TargetConstantPool:
839 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000840 case ISD::TargetGlobalTLSAddress:
Chris Lattner948c1b12006-01-28 08:31:04 +0000841 case ISD::TargetExternalSymbol:
842 case ISD::VALUETYPE:
843 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +0000844 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +0000845 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +0000846 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +0000847 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +0000848 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +0000849 "This must be legal!");
850 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000851 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000852 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
853 // If this is a target node, legalize it by legalizing the operands then
854 // passing it through.
Dan Gohman475871a2008-07-27 21:46:04 +0000855 SmallVector<SDValue, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000856 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000857 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000858
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000859 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000860
861 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
862 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
863 return Result.getValue(Op.ResNo);
864 }
865 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000866#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +0000867 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000868#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000869 assert(0 && "Do not know how to legalize this operator!");
870 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +0000871 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000872 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000873 case ISD::GlobalTLSAddress:
Chris Lattner03c0cf82005-01-07 21:45:56 +0000874 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000875 case ISD::ConstantPool:
876 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000877 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
878 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000879 case TargetLowering::Custom:
880 Tmp1 = TLI.LowerOperation(Op, DAG);
881 if (Tmp1.Val) Result = Tmp1;
882 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000883 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000884 break;
885 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000886 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000887 case ISD::FRAMEADDR:
888 case ISD::RETURNADDR:
889 // The only option for these nodes is to custom lower them. If the target
890 // does not custom lower them, then return zero.
891 Tmp1 = TLI.LowerOperation(Op, DAG);
892 if (Tmp1.Val)
893 Result = Tmp1;
894 else
895 Result = DAG.getConstant(0, TLI.getPointerTy());
896 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000897 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000898 MVT VT = Node->getValueType(0);
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000899 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
900 default: assert(0 && "This action is not supported yet!");
901 case TargetLowering::Custom:
902 Result = TLI.LowerOperation(Op, DAG);
903 if (Result.Val) break;
904 // Fall Thru
905 case TargetLowering::Legal:
906 Result = DAG.getConstant(0, VT);
907 break;
908 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000909 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000910 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000911 case ISD::EXCEPTIONADDR: {
912 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000913 MVT VT = Node->getValueType(0);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000914 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
915 default: assert(0 && "This action is not supported yet!");
916 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000917 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000918 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000919 }
920 break;
921 case TargetLowering::Custom:
922 Result = TLI.LowerOperation(Op, DAG);
923 if (Result.Val) break;
924 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000925 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +0000926 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000927 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000928 break;
929 }
930 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000931 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000932 if (Result.Val->getNumValues() == 1) break;
933
934 assert(Result.Val->getNumValues() == 2 &&
935 "Cannot return more than two values!");
936
937 // Since we produced two values, make sure to remember that we
938 // legalized both of them.
939 Tmp1 = LegalizeOp(Result);
940 Tmp2 = LegalizeOp(Result.getValue(1));
941 AddLegalizedOperand(Op.getValue(0), Tmp1);
942 AddLegalizedOperand(Op.getValue(1), Tmp2);
943 return Op.ResNo ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +0000944 case ISD::EHSELECTION: {
945 Tmp1 = LegalizeOp(Node->getOperand(0));
946 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000947 MVT VT = Node->getValueType(0);
Jim Laskey8782d482007-02-28 20:43:58 +0000948 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
949 default: assert(0 && "This action is not supported yet!");
950 case TargetLowering::Expand: {
951 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000952 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +0000953 }
954 break;
955 case TargetLowering::Custom:
956 Result = TLI.LowerOperation(Op, DAG);
957 if (Result.Val) break;
958 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000959 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +0000960 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000961 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey8782d482007-02-28 20:43:58 +0000962 break;
963 }
964 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000965 }
Duncan Sandsb027fa02007-12-31 18:35:50 +0000966 if (Result.Val->getNumValues() == 1) break;
967
968 assert(Result.Val->getNumValues() == 2 &&
969 "Cannot return more than two values!");
970
971 // Since we produced two values, make sure to remember that we
972 // legalized both of them.
973 Tmp1 = LegalizeOp(Result);
974 Tmp2 = LegalizeOp(Result.getValue(1));
975 AddLegalizedOperand(Op.getValue(0), Tmp1);
976 AddLegalizedOperand(Op.getValue(1), Tmp2);
977 return Op.ResNo ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000978 case ISD::EH_RETURN: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000979 MVT VT = Node->getValueType(0);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000980 // The only "good" option for this node is to custom lower it.
981 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
982 default: assert(0 && "This action is not supported at all!");
983 case TargetLowering::Custom:
984 Result = TLI.LowerOperation(Op, DAG);
985 if (Result.Val) break;
986 // Fall Thru
987 case TargetLowering::Legal:
988 // Target does not know, how to lower this, lower to noop
989 Result = LegalizeOp(Node->getOperand(0));
990 break;
991 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000992 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000993 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000994 case ISD::AssertSext:
995 case ISD::AssertZext:
996 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000997 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000998 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000999 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001000 // Legalize eliminates MERGE_VALUES nodes.
Chris Lattner456a93a2006-01-28 07:39:30 +00001001 Result = Node->getOperand(Op.ResNo);
1002 break;
Chris Lattner69a52152005-01-14 22:38:01 +00001003 case ISD::CopyFromReg:
1004 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001005 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001006 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001007 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +00001008 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001009 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001010 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001011 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001012 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1013 } else {
1014 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1015 }
Chris Lattner7310fb12005-12-18 15:27:43 +00001016 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1017 }
Chris Lattner13c184d2005-01-28 06:27:38 +00001018 // Since CopyFromReg produces two values, make sure to remember that we
1019 // legalized both of them.
1020 AddLegalizedOperand(Op.getValue(0), Result);
1021 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1022 return Result.getValue(Op.ResNo);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001023 case ISD::UNDEF: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001024 MVT VT = Op.getValueType();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001025 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +00001026 default: assert(0 && "This action is not supported yet!");
1027 case TargetLowering::Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001028 if (VT.isInteger())
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001029 Result = DAG.getConstant(0, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001030 else if (VT.isFloatingPoint())
1031 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf41db212007-09-26 17:26:49 +00001032 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001033 else
1034 assert(0 && "Unknown value type!");
1035 break;
Nate Begemanea19cd52005-04-02 00:41:14 +00001036 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001037 break;
1038 }
1039 break;
1040 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001041
Chris Lattner48b61a72006-03-28 00:40:33 +00001042 case ISD::INTRINSIC_W_CHAIN:
1043 case ISD::INTRINSIC_WO_CHAIN:
1044 case ISD::INTRINSIC_VOID: {
Dan Gohman475871a2008-07-27 21:46:04 +00001045 SmallVector<SDValue, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001046 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1047 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001048 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +00001049
1050 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +00001051 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001052 TargetLowering::Custom) {
1053 Tmp3 = TLI.LowerOperation(Result, DAG);
1054 if (Tmp3.Val) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001055 }
1056
1057 if (Result.Val->getNumValues() == 1) break;
1058
1059 // Must have return value and chain result.
1060 assert(Result.Val->getNumValues() == 2 &&
1061 "Cannot return more than two values!");
1062
1063 // Since loads produce two values, make sure to remember that we
1064 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001065 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1066 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Chris Lattner13fc2f12006-03-27 20:28:29 +00001067 return Result.getValue(Op.ResNo);
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001068 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001069
Dan Gohman7f460202008-06-30 20:59:49 +00001070 case ISD::DBG_STOPPOINT:
1071 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Chris Lattner36ce6912005-11-29 06:21:05 +00001072 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1073
Dan Gohman7f460202008-06-30 20:59:49 +00001074 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Chris Lattner36ce6912005-11-29 06:21:05 +00001075 case TargetLowering::Promote:
1076 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001077 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001078 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001079 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Dan Gohman44066042008-07-01 00:05:16 +00001080 bool useLABEL = TLI.isOperationLegal(ISD::DBG_LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001081
Dan Gohman7f460202008-06-30 20:59:49 +00001082 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001083 if (MMI && (useDEBUG_LOC || useLABEL)) {
Dan Gohman7f460202008-06-30 20:59:49 +00001084 const CompileUnitDesc *CompileUnit = DSP->getCompileUnit();
1085 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001086
Dan Gohman7f460202008-06-30 20:59:49 +00001087 unsigned Line = DSP->getLine();
1088 unsigned Col = DSP->getColumn();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001089
1090 if (useDEBUG_LOC) {
Dan Gohman475871a2008-07-27 21:46:04 +00001091 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Evan Cheng71e86852008-07-08 20:06:39 +00001092 DAG.getConstant(Col, MVT::i32),
1093 DAG.getConstant(SrcFile, MVT::i32) };
1094 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Ops, 4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001095 } else {
Evan Chenga647c922008-02-01 02:05:57 +00001096 unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
Dan Gohman44066042008-07-01 00:05:16 +00001097 Result = DAG.getLabel(ISD::DBG_LABEL, Tmp1, ID);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001098 }
Jim Laskeye81aecb2005-12-21 20:51:37 +00001099 } else {
1100 Result = Tmp1; // chain
1101 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001102 break;
Chris Lattnere7736732005-12-18 23:54:29 +00001103 }
Evan Cheng71e86852008-07-08 20:06:39 +00001104 case TargetLowering::Legal: {
1105 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1106 if (Action == Legal && Tmp1 == Node->getOperand(0))
1107 break;
1108
Dan Gohman475871a2008-07-27 21:46:04 +00001109 SmallVector<SDValue, 8> Ops;
Evan Cheng71e86852008-07-08 20:06:39 +00001110 Ops.push_back(Tmp1);
1111 if (Action == Legal) {
1112 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1113 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1114 } else {
1115 // Otherwise promote them.
1116 Ops.push_back(PromoteOp(Node->getOperand(1)));
1117 Ops.push_back(PromoteOp(Node->getOperand(2)));
Chris Lattner36ce6912005-11-29 06:21:05 +00001118 }
Evan Cheng71e86852008-07-08 20:06:39 +00001119 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1120 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1121 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001122 break;
1123 }
Evan Cheng71e86852008-07-08 20:06:39 +00001124 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001125 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001126
1127 case ISD::DECLARE:
1128 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1129 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1130 default: assert(0 && "This action is not supported yet!");
1131 case TargetLowering::Legal:
1132 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1133 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1134 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1135 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1136 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001137 case TargetLowering::Expand:
1138 Result = LegalizeOp(Node->getOperand(0));
1139 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001140 }
1141 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001142
1143 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001144 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001145 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001146 default: assert(0 && "This action is not supported yet!");
Evan Cheng71e86852008-07-08 20:06:39 +00001147 case TargetLowering::Legal: {
1148 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001149 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Cheng71e86852008-07-08 20:06:39 +00001150 if (Action == Legal && Tmp1 == Node->getOperand(0))
1151 break;
1152 if (Action == Legal) {
1153 Tmp2 = Node->getOperand(1);
1154 Tmp3 = Node->getOperand(2);
1155 Tmp4 = Node->getOperand(3);
1156 } else {
1157 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1158 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1159 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1160 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001161 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001162 break;
1163 }
Evan Cheng71e86852008-07-08 20:06:39 +00001164 }
Jim Laskeyabf6d172006-01-05 01:25:28 +00001165 break;
1166
Dan Gohman44066042008-07-01 00:05:16 +00001167 case ISD::DBG_LABEL:
1168 case ISD::EH_LABEL:
1169 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1170 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001171 default: assert(0 && "This action is not supported yet!");
1172 case TargetLowering::Legal:
1173 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001174 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001175 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001176 case TargetLowering::Expand:
1177 Result = LegalizeOp(Node->getOperand(0));
1178 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001179 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001180 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001181
Evan Cheng27b7db52008-03-08 00:58:38 +00001182 case ISD::PREFETCH:
1183 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1184 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1185 default: assert(0 && "This action is not supported yet!");
1186 case TargetLowering::Legal:
1187 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1188 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1189 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1190 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1191 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1192 break;
1193 case TargetLowering::Expand:
1194 // It's a noop.
1195 Result = LegalizeOp(Node->getOperand(0));
1196 break;
1197 }
1198 break;
1199
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001200 case ISD::MEMBARRIER: {
1201 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001202 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1203 default: assert(0 && "This action is not supported yet!");
1204 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001205 SDValue Ops[6];
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001206 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001207 for (int x = 1; x < 6; ++x) {
1208 Ops[x] = Node->getOperand(x);
1209 if (!isTypeLegal(Ops[x].getValueType()))
1210 Ops[x] = PromoteOp(Ops[x]);
1211 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001212 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1213 break;
1214 }
1215 case TargetLowering::Expand:
1216 //There is no libgcc call for this op
1217 Result = Node->getOperand(0); // Noop
1218 break;
1219 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001220 break;
1221 }
1222
Mon P Wang28873102008-06-25 08:15:39 +00001223 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001224 unsigned int num_operands = 4;
1225 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001226 SDValue Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001227 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001228 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001229 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1230
1231 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1232 default: assert(0 && "This action is not supported yet!");
1233 case TargetLowering::Custom:
1234 Result = TLI.LowerOperation(Result, DAG);
1235 break;
1236 case TargetLowering::Legal:
1237 break;
1238 }
Dan Gohman475871a2008-07-27 21:46:04 +00001239 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1240 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Mon P Wang63307c32008-05-05 19:05:59 +00001241 return Result.getValue(Op.ResNo);
Duncan Sands126d9072008-07-04 11:47:58 +00001242 }
Mon P Wang28873102008-06-25 08:15:39 +00001243 case ISD::ATOMIC_LOAD_ADD:
1244 case ISD::ATOMIC_LOAD_SUB:
Mon P Wang63307c32008-05-05 19:05:59 +00001245 case ISD::ATOMIC_LOAD_AND:
1246 case ISD::ATOMIC_LOAD_OR:
1247 case ISD::ATOMIC_LOAD_XOR:
Andrew Lenharth507a58a2008-06-14 05:48:15 +00001248 case ISD::ATOMIC_LOAD_NAND:
Mon P Wang63307c32008-05-05 19:05:59 +00001249 case ISD::ATOMIC_LOAD_MIN:
1250 case ISD::ATOMIC_LOAD_MAX:
1251 case ISD::ATOMIC_LOAD_UMIN:
1252 case ISD::ATOMIC_LOAD_UMAX:
1253 case ISD::ATOMIC_SWAP: {
1254 unsigned int num_operands = 3;
1255 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001256 SDValue Ops[3];
Mon P Wang63307c32008-05-05 19:05:59 +00001257 for (unsigned int x = 0; x < num_operands; ++x)
1258 Ops[x] = LegalizeOp(Node->getOperand(x));
1259 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001260
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001261 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001262 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001263 case TargetLowering::Custom:
1264 Result = TLI.LowerOperation(Result, DAG);
1265 break;
Mon P Wang63307c32008-05-05 19:05:59 +00001266 case TargetLowering::Expand:
Dan Gohman475871a2008-07-27 21:46:04 +00001267 Result = SDValue(TLI.ReplaceNodeResults(Op.Val, DAG),0);
Mon P Wang63307c32008-05-05 19:05:59 +00001268 break;
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001269 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001270 break;
1271 }
Dan Gohman475871a2008-07-27 21:46:04 +00001272 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1273 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001274 return Result.getValue(Op.ResNo);
Duncan Sands126d9072008-07-04 11:47:58 +00001275 }
Scott Michelc1513d22007-08-08 23:23:31 +00001276 case ISD::Constant: {
1277 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1278 unsigned opAction =
1279 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1280
Chris Lattner3e928bb2005-01-07 07:47:09 +00001281 // We know we don't need to expand constants here, constants only have one
1282 // value and we check that it is fine above.
1283
Scott Michelc1513d22007-08-08 23:23:31 +00001284 if (opAction == TargetLowering::Custom) {
1285 Tmp1 = TLI.LowerOperation(Result, DAG);
1286 if (Tmp1.Val)
1287 Result = Tmp1;
1288 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001289 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001290 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001291 case ISD::ConstantFP: {
1292 // Spill FP immediates to the constant pool if the target cannot directly
1293 // codegen them. Targets often have some immediate values that can be
1294 // efficiently generated into an FP register without a load. We explicitly
1295 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001296 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1297
Chris Lattner3181a772006-01-29 06:26:56 +00001298 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1299 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001300 case TargetLowering::Legal:
1301 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001302 case TargetLowering::Custom:
1303 Tmp3 = TLI.LowerOperation(Result, DAG);
1304 if (Tmp3.Val) {
1305 Result = Tmp3;
1306 break;
1307 }
1308 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001309 case TargetLowering::Expand: {
1310 // Check to see if this FP immediate is already legal.
1311 bool isLegal = false;
1312 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1313 E = TLI.legal_fpimm_end(); I != E; ++I) {
1314 if (CFP->isExactlyValue(*I)) {
1315 isLegal = true;
1316 break;
1317 }
1318 }
1319 // If this is a legal constant, turn it into a TargetConstantFP node.
1320 if (isLegal)
1321 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001322 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001323 }
Nate Begemane1795842008-02-14 08:57:00 +00001324 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001325 break;
1326 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001327 case ISD::TokenFactor:
1328 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001329 Tmp1 = LegalizeOp(Node->getOperand(0));
1330 Tmp2 = LegalizeOp(Node->getOperand(1));
1331 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1332 } else if (Node->getNumOperands() == 3) {
1333 Tmp1 = LegalizeOp(Node->getOperand(0));
1334 Tmp2 = LegalizeOp(Node->getOperand(1));
1335 Tmp3 = LegalizeOp(Node->getOperand(2));
1336 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001337 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00001338 SmallVector<SDValue, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001339 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001340 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1341 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001342 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001343 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001344 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001345
1346 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001347 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001348 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001349 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
1350 assert(Tmp3.Val && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001351 // A call within a calling sequence must be legalized to something
1352 // other than the normal CALLSEQ_END. Violating this gets Legalize
1353 // into an infinite loop.
1354 assert ((!IsLegalizingCall ||
1355 Node->getOpcode() != ISD::CALL ||
1356 Tmp3.Val->getOpcode() != ISD::CALLSEQ_END) &&
1357 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001358
1359 // The number of incoming and outgoing values should match; unless the final
1360 // outgoing value is a flag.
1361 assert((Tmp3.Val->getNumValues() == Result.Val->getNumValues() ||
1362 (Tmp3.Val->getNumValues() == Result.Val->getNumValues() + 1 &&
1363 Tmp3.Val->getValueType(Tmp3.Val->getNumValues() - 1) ==
1364 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001365 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001366
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001367 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001368 // remember that we legalized all of them, so it doesn't get relegalized.
Chris Lattnerb248e162006-05-17 17:55:45 +00001369 for (unsigned i = 0, e = Tmp3.Val->getNumValues(); i != e; ++i) {
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001370 if (Tmp3.Val->getValueType(i) == MVT::Flag)
1371 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001372 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Chris Lattnere2e41732006-05-16 05:49:56 +00001373 if (Op.ResNo == i)
1374 Tmp2 = Tmp1;
Dan Gohman475871a2008-07-27 21:46:04 +00001375 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Chris Lattnere2e41732006-05-16 05:49:56 +00001376 }
1377 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001378 case ISD::EXTRACT_SUBREG: {
1379 Tmp1 = LegalizeOp(Node->getOperand(0));
1380 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1381 assert(idx && "Operand must be a constant");
1382 Tmp2 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1383 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1384 }
1385 break;
1386 case ISD::INSERT_SUBREG: {
1387 Tmp1 = LegalizeOp(Node->getOperand(0));
1388 Tmp2 = LegalizeOp(Node->getOperand(1));
1389 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1390 assert(idx && "Operand must be a constant");
1391 Tmp3 = DAG.getTargetConstant(idx->getValue(), idx->getValueType(0));
1392 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1393 }
1394 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001395 case ISD::BUILD_VECTOR:
1396 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001397 default: assert(0 && "This action is not supported yet!");
1398 case TargetLowering::Custom:
1399 Tmp3 = TLI.LowerOperation(Result, DAG);
1400 if (Tmp3.Val) {
1401 Result = Tmp3;
1402 break;
1403 }
1404 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001405 case TargetLowering::Expand:
1406 Result = ExpandBUILD_VECTOR(Result.Val);
Chris Lattnerb2827b02006-03-19 00:52:58 +00001407 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001408 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001409 break;
1410 case ISD::INSERT_VECTOR_ELT:
1411 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001412 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001413
1414 // The type of the value to insert may not be legal, even though the vector
1415 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1416 // here.
1417 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1418 default: assert(0 && "Cannot expand insert element operand");
1419 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1420 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1421 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001422 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1423
1424 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1425 Node->getValueType(0))) {
1426 default: assert(0 && "This action is not supported yet!");
1427 case TargetLowering::Legal:
1428 break;
1429 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001430 Tmp4 = TLI.LowerOperation(Result, DAG);
1431 if (Tmp4.Val) {
1432 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001433 break;
1434 }
1435 // FALLTHROUGH
1436 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001437 // If the insert index is a constant, codegen this as a scalar_to_vector,
1438 // then a shuffle that inserts it into the right position in the vector.
1439 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001440 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1441 // match the element type of the vector being created.
1442 if (Tmp2.getValueType() ==
Duncan Sands83ec4b62008-06-06 12:08:01 +00001443 Op.getValueType().getVectorElementType()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001444 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
Nate Begeman0325d902008-02-13 06:43:04 +00001445 Tmp1.getValueType(), Tmp2);
1446
Duncan Sands83ec4b62008-06-06 12:08:01 +00001447 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1448 MVT ShufMaskVT =
1449 MVT::getIntVectorWithNumElements(NumElts);
1450 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Nate Begeman0325d902008-02-13 06:43:04 +00001451
1452 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1453 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1454 // elt 0 of the RHS.
Dan Gohman475871a2008-07-27 21:46:04 +00001455 SmallVector<SDValue, 8> ShufOps;
Nate Begeman0325d902008-02-13 06:43:04 +00001456 for (unsigned i = 0; i != NumElts; ++i) {
1457 if (i != InsertPos->getValue())
1458 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1459 else
1460 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1461 }
Dan Gohman475871a2008-07-27 21:46:04 +00001462 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
Nate Begeman0325d902008-02-13 06:43:04 +00001463 &ShufOps[0], ShufOps.size());
1464
1465 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1466 Tmp1, ScVec, ShufMask);
1467 Result = LegalizeOp(Result);
1468 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001469 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001470 }
Nate Begeman68679912008-04-25 18:07:40 +00001471 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001472 break;
1473 }
1474 }
1475 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001476 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001477 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1478 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1479 break;
1480 }
1481
Chris Lattnerce872152006-03-19 06:31:19 +00001482 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1483 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1484 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1485 Node->getValueType(0))) {
1486 default: assert(0 && "This action is not supported yet!");
1487 case TargetLowering::Legal:
1488 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001489 case TargetLowering::Custom:
1490 Tmp3 = TLI.LowerOperation(Result, DAG);
1491 if (Tmp3.Val) {
1492 Result = Tmp3;
1493 break;
1494 }
1495 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001496 case TargetLowering::Expand:
1497 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001498 break;
1499 }
Chris Lattnerce872152006-03-19 06:31:19 +00001500 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001501 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001502 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1503 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1504 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1505
1506 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001507 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1508 default: assert(0 && "Unknown operation action!");
1509 case TargetLowering::Legal:
1510 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1511 "vector shuffle should not be created if not legal!");
1512 break;
1513 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001514 Tmp3 = TLI.LowerOperation(Result, DAG);
1515 if (Tmp3.Val) {
1516 Result = Tmp3;
1517 break;
1518 }
1519 // FALLTHROUGH
1520 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001521 MVT VT = Node->getValueType(0);
1522 MVT EltVT = VT.getVectorElementType();
1523 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00001524 SDValue Mask = Node->getOperand(2);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001525 unsigned NumElems = Mask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00001526 SmallVector<SDValue,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001527 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001528 SDValue Arg = Mask.getOperand(i);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001529 if (Arg.getOpcode() == ISD::UNDEF) {
1530 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1531 } else {
1532 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
1533 unsigned Idx = cast<ConstantSDNode>(Arg)->getValue();
1534 if (Idx < NumElems)
1535 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1536 DAG.getConstant(Idx, PtrVT)));
1537 else
1538 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1539 DAG.getConstant(Idx - NumElems, PtrVT)));
1540 }
1541 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001542 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001543 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001544 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001545 case TargetLowering::Promote: {
1546 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001547 MVT OVT = Node->getValueType(0);
1548 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001549
1550 // Cast the two input vectors.
1551 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1552 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1553
1554 // Convert the shuffle mask to the right # elements.
Dan Gohman475871a2008-07-27 21:46:04 +00001555 Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00001556 assert(Tmp3.Val && "Shuffle not legal?");
1557 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1558 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1559 break;
1560 }
Chris Lattner87100e02006-03-20 01:52:29 +00001561 }
1562 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001563
1564 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001565 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001566 Tmp2 = LegalizeOp(Node->getOperand(1));
1567 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001568 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001569 break;
1570
Dan Gohman7f321562007-06-25 16:23:39 +00001571 case ISD::EXTRACT_SUBVECTOR:
1572 Tmp1 = Node->getOperand(0);
1573 Tmp2 = LegalizeOp(Node->getOperand(1));
1574 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1575 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001576 break;
1577
Chris Lattner6831a812006-02-13 09:18:02 +00001578 case ISD::CALLSEQ_START: {
1579 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1580
1581 // Recursively Legalize all of the inputs of the call end that do not lead
1582 // to this call start. This ensures that any libcalls that need be inserted
1583 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001584 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001585 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001586 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).Val, Node,
1587 NodesLeadingTo);
1588 }
Chris Lattner6831a812006-02-13 09:18:02 +00001589
1590 // Now that we legalized all of the inputs (which may have inserted
1591 // libcalls) create the new CALLSEQ_START node.
1592 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1593
1594 // Merge in the last call, to ensure that this call start after the last
1595 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001596 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001597 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1598 Tmp1 = LegalizeOp(Tmp1);
1599 }
Chris Lattner6831a812006-02-13 09:18:02 +00001600
1601 // Do not try to legalize the target-specific arguments (#1+).
1602 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001603 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001604 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001605 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001606 }
1607
1608 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001609 AddLegalizedOperand(Op.getValue(0), Result);
1610 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1611 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1612
Chris Lattner6831a812006-02-13 09:18:02 +00001613 // Now that the callseq_start and all of the non-call nodes above this call
1614 // sequence have been legalized, legalize the call itself. During this
1615 // process, no libcalls can/will be inserted, guaranteeing that no calls
1616 // can overlap.
1617 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001618 // Note that we are selecting this call!
Dan Gohman475871a2008-07-27 21:46:04 +00001619 LastCALLSEQ_END = SDValue(CallEnd, 0);
Chris Lattner6831a812006-02-13 09:18:02 +00001620 IsLegalizingCall = true;
1621
1622 // Legalize the call, starting from the CALLSEQ_END.
1623 LegalizeOp(LastCALLSEQ_END);
1624 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1625 return Result;
1626 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001627 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001628 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1629 // will cause this node to be legalized as well as handling libcalls right.
1630 if (LastCALLSEQ_END.Val != Node) {
Dan Gohman475871a2008-07-27 21:46:04 +00001631 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1632 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001633 assert(I != LegalizedNodes.end() &&
1634 "Legalizing the call start should have legalized this node!");
1635 return I->second;
1636 }
1637
1638 // Otherwise, the call start has been legalized and everything is going
1639 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001640 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001641 // Do not try to legalize the target-specific arguments (#1+), except for
1642 // an optional flag input.
1643 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1644 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001645 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001646 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001647 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001648 }
1649 } else {
1650 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1651 if (Tmp1 != Node->getOperand(0) ||
1652 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001653 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001654 Ops[0] = Tmp1;
1655 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001656 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001657 }
Chris Lattner6a542892006-01-24 05:48:21 +00001658 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001659 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001660 // This finishes up call legalization.
1661 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001662
1663 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman475871a2008-07-27 21:46:04 +00001664 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Chris Lattner4b653a02006-02-14 00:55:02 +00001665 if (Node->getNumValues() == 2)
Dan Gohman475871a2008-07-27 21:46:04 +00001666 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Chris Lattner4b653a02006-02-14 00:55:02 +00001667 return Result.getValue(Op.ResNo);
Evan Chenga7dce3c2006-01-11 22:14:47 +00001668 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001669 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001670 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1671 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1672 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001673 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001674
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001675 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001676 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001677 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001678 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001679 case TargetLowering::Expand: {
1680 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1681 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1682 " not tell us which reg is the stack pointer!");
Dan Gohman475871a2008-07-27 21:46:04 +00001683 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001684
1685 // Chain the dynamic stack allocation so that it doesn't modify the stack
1686 // pointer when other instructions are using the stack.
1687 Chain = DAG.getCALLSEQ_START(Chain,
1688 DAG.getConstant(0, TLI.getPointerTy()));
1689
Dan Gohman475871a2008-07-27 21:46:04 +00001690 SDValue Size = Tmp2.getOperand(1);
1691 SDValue SP = DAG.getCopyFromReg(Chain, SPReg, VT);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001692 Chain = SP.getValue(1);
1693 unsigned Align = cast<ConstantSDNode>(Tmp3)->getValue();
1694 unsigned StackAlign =
1695 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1696 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001697 SP = DAG.getNode(ISD::AND, VT, SP,
1698 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001699 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001700 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1701
1702 Tmp2 =
1703 DAG.getCALLSEQ_END(Chain,
1704 DAG.getConstant(0, TLI.getPointerTy()),
1705 DAG.getConstant(0, TLI.getPointerTy()),
Dan Gohman475871a2008-07-27 21:46:04 +00001706 SDValue());
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001707
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001708 Tmp1 = LegalizeOp(Tmp1);
1709 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001710 break;
1711 }
1712 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001713 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
1714 if (Tmp3.Val) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001715 Tmp1 = LegalizeOp(Tmp3);
1716 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001717 }
Chris Lattner903d2782006-01-15 08:54:32 +00001718 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001719 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001720 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001721 }
Chris Lattner903d2782006-01-15 08:54:32 +00001722 // Since this op produce two values, make sure to remember that we
1723 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001724 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1725 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001726 return Op.ResNo ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001727 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001728 case ISD::INLINEASM: {
Dan Gohman475871a2008-07-27 21:46:04 +00001729 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001730 bool Changed = false;
1731 // Legalize all of the operands of the inline asm, in case they are nodes
1732 // that need to be expanded or something. Note we skip the asm string and
1733 // all of the TargetConstant flags.
Dan Gohman475871a2008-07-27 21:46:04 +00001734 SDValue Op = LegalizeOp(Ops[0]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001735 Changed = Op != Ops[0];
1736 Ops[0] = Op;
1737
1738 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1739 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
1740 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getValue() >> 3;
1741 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman475871a2008-07-27 21:46:04 +00001742 SDValue Op = LegalizeOp(Ops[i]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001743 if (Op != Ops[i]) {
1744 Changed = true;
1745 Ops[i] = Op;
1746 }
1747 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001748 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001749
1750 if (HasInFlag) {
1751 Op = LegalizeOp(Ops.back());
1752 Changed |= Op != Ops.back();
1753 Ops.back() = Op;
1754 }
1755
1756 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001757 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001758
1759 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman475871a2008-07-27 21:46:04 +00001760 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1761 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Chris Lattnerce7518c2006-01-26 22:24:51 +00001762 return Result.getValue(Op.ResNo);
Chris Lattner25a022c2006-07-11 01:40:09 +00001763 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001764 case ISD::BR:
1765 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001766 // Ensure that libcalls are emitted before a branch.
1767 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1768 Tmp1 = LegalizeOp(Tmp1);
1769 LastCALLSEQ_END = DAG.getEntryNode();
1770
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001771 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001772 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001773 case ISD::BRIND:
1774 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1775 // Ensure that libcalls are emitted before a branch.
1776 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1777 Tmp1 = LegalizeOp(Tmp1);
1778 LastCALLSEQ_END = DAG.getEntryNode();
1779
1780 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1781 default: assert(0 && "Indirect target must be legal type (pointer)!");
1782 case Legal:
1783 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1784 break;
1785 }
1786 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1787 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001788 case ISD::BR_JT:
1789 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1790 // Ensure that libcalls are emitted before a branch.
1791 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1792 Tmp1 = LegalizeOp(Tmp1);
1793 LastCALLSEQ_END = DAG.getEntryNode();
1794
1795 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1796 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1797
1798 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1799 default: assert(0 && "This action is not supported yet!");
1800 case TargetLowering::Legal: break;
1801 case TargetLowering::Custom:
1802 Tmp1 = TLI.LowerOperation(Result, DAG);
1803 if (Tmp1.Val) Result = Tmp1;
1804 break;
1805 case TargetLowering::Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00001806 SDValue Chain = Result.getOperand(0);
1807 SDValue Table = Result.getOperand(1);
1808 SDValue Index = Result.getOperand(2);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001809
Duncan Sands83ec4b62008-06-06 12:08:01 +00001810 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001811 MachineFunction &MF = DAG.getMachineFunction();
1812 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001813 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
Dan Gohman475871a2008-07-27 21:46:04 +00001814 SDValue Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001815
Dan Gohman475871a2008-07-27 21:46:04 +00001816 SDValue LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001817 switch (EntrySize) {
1818 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001819 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001820 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001821 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001822 PseudoSourceValue::getJumpTable(), 0); break;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001823 }
1824
Evan Chengcc415862007-11-09 01:32:10 +00001825 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001826 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001827 // For PIC, the sequence is:
1828 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00001829 // RelocBase can be JumpTable, GOT or some sort of global base.
1830 if (PTy != MVT::i32)
1831 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1832 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1833 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00001834 }
Evan Chengcc415862007-11-09 01:32:10 +00001835 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001836 }
1837 }
1838 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001839 case ISD::BRCOND:
1840 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001841 // Ensure that libcalls are emitted before a return.
1842 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1843 Tmp1 = LegalizeOp(Tmp1);
1844 LastCALLSEQ_END = DAG.getEntryNode();
1845
Chris Lattner47e92232005-01-18 19:27:06 +00001846 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1847 case Expand: assert(0 && "It's impossible to expand bools");
1848 case Legal:
1849 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1850 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001851 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00001852 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001853
1854 // The top bits of the promoted condition are not necessarily zero, ensure
1855 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001856 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001857 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001858 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerf9908172006-11-27 04:39:56 +00001859 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001860 break;
1861 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001862 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001863
1864 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001865 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001866
1867 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1868 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001869 case TargetLowering::Legal: break;
1870 case TargetLowering::Custom:
1871 Tmp1 = TLI.LowerOperation(Result, DAG);
1872 if (Tmp1.Val) Result = Tmp1;
1873 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001874 case TargetLowering::Expand:
1875 // Expand brcond's setcc into its constituent parts and create a BR_CC
1876 // Node.
1877 if (Tmp2.getOpcode() == ISD::SETCC) {
1878 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1879 Tmp2.getOperand(0), Tmp2.getOperand(1),
1880 Node->getOperand(2));
1881 } else {
1882 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1883 DAG.getCondCode(ISD::SETNE), Tmp2,
1884 DAG.getConstant(0, Tmp2.getValueType()),
1885 Node->getOperand(2));
1886 }
1887 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001888 }
1889 break;
1890 case ISD::BR_CC:
1891 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001892 // Ensure that libcalls are emitted before a branch.
1893 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1894 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001895 Tmp2 = Node->getOperand(2); // LHS
1896 Tmp3 = Node->getOperand(3); // RHS
1897 Tmp4 = Node->getOperand(1); // CC
1898
1899 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001900 LastCALLSEQ_END = DAG.getEntryNode();
1901
Nate Begeman750ac1b2006-02-01 07:19:44 +00001902 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1903 // the LHS is a legal SETCC itself. In this case, we need to compare
1904 // the result against zero to select between true and false values.
1905 if (Tmp3.Val == 0) {
1906 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1907 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001908 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001909
1910 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1911 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001912
Chris Lattner181b7a32005-12-17 23:46:46 +00001913 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1914 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001915 case TargetLowering::Legal: break;
1916 case TargetLowering::Custom:
1917 Tmp4 = TLI.LowerOperation(Result, DAG);
1918 if (Tmp4.Val) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001919 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001920 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001921 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001922 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001923 LoadSDNode *LD = cast<LoadSDNode>(Node);
1924 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1925 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001926
Evan Cheng466685d2006-10-09 20:57:25 +00001927 ISD::LoadExtType ExtType = LD->getExtensionType();
1928 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001929 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00001930 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1931 Tmp3 = Result.getValue(0);
1932 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001933
Evan Cheng466685d2006-10-09 20:57:25 +00001934 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1935 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001936 case TargetLowering::Legal:
1937 // If this is an unaligned load and the target doesn't support it,
1938 // expand it.
1939 if (!TLI.allowsUnalignedMemoryAccesses()) {
1940 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00001941 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001942 if (LD->getAlignment() < ABIAlignment){
1943 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
1944 TLI);
1945 Tmp3 = Result.getOperand(0);
1946 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001947 Tmp3 = LegalizeOp(Tmp3);
1948 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001949 }
1950 }
1951 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001952 case TargetLowering::Custom:
1953 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
1954 if (Tmp1.Val) {
1955 Tmp3 = LegalizeOp(Tmp1);
1956 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001957 }
Evan Cheng466685d2006-10-09 20:57:25 +00001958 break;
1959 case TargetLowering::Promote: {
1960 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001961 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00001962 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001963 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00001964
1965 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001966 LD->getSrcValueOffset(),
1967 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001968 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1969 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001970 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001971 }
Evan Cheng466685d2006-10-09 20:57:25 +00001972 }
1973 // Since loads produce two values, make sure to remember that we
1974 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001975 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
1976 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Evan Cheng466685d2006-10-09 20:57:25 +00001977 return Op.ResNo ? Tmp4 : Tmp3;
1978 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001979 MVT SrcVT = LD->getMemoryVT();
1980 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001981 int SVOffset = LD->getSrcValueOffset();
1982 unsigned Alignment = LD->getAlignment();
1983 bool isVolatile = LD->isVolatile();
1984
Duncan Sands83ec4b62008-06-06 12:08:01 +00001985 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001986 // Some targets pretend to have an i1 loading operation, and actually
1987 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1988 // bits are guaranteed to be zero; it helps the optimizers understand
1989 // that these bits are zero. It is also useful for EXTLOAD, since it
1990 // tells the optimizers that those bits are undefined. It would be
1991 // nice to have an effective generic way of getting these benefits...
1992 // Until such a way is found, don't insist on promoting i1 here.
1993 (SrcVT != MVT::i1 ||
1994 TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
1995 // Promote to a byte-sized load if not loading an integral number of
1996 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001997 unsigned NewWidth = SrcVT.getStoreSizeInBits();
1998 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00001999 SDValue Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002000
2001 // The extra bits are guaranteed to be zero, since we stored them that
2002 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2003
2004 ISD::LoadExtType NewExtType =
2005 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2006
2007 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
2008 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2009 NVT, isVolatile, Alignment);
2010
2011 Ch = Result.getValue(1); // The chain.
2012
2013 if (ExtType == ISD::SEXTLOAD)
2014 // Having the top bits zero doesn't help when sign extending.
2015 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2016 Result, DAG.getValueType(SrcVT));
2017 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2018 // All the top bits are guaranteed to be zero - inform the optimizers.
2019 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2020 DAG.getValueType(SrcVT));
2021
2022 Tmp1 = LegalizeOp(Result);
2023 Tmp2 = LegalizeOp(Ch);
2024 } else if (SrcWidth & (SrcWidth - 1)) {
2025 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002026 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002027 "Unsupported extload!");
2028 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2029 assert(RoundWidth < SrcWidth);
2030 unsigned ExtraWidth = SrcWidth - RoundWidth;
2031 assert(ExtraWidth < RoundWidth);
2032 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2033 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002034 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2035 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002036 SDValue Lo, Hi, Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002037 unsigned IncrementSize;
2038
2039 if (TLI.isLittleEndian()) {
2040 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2041 // Load the bottom RoundWidth bits.
2042 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2043 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2044 Alignment);
2045
2046 // Load the remaining ExtraWidth bits.
2047 IncrementSize = RoundWidth / 8;
2048 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2049 DAG.getIntPtrConstant(IncrementSize));
2050 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2051 LD->getSrcValue(), SVOffset + IncrementSize,
2052 ExtraVT, isVolatile,
2053 MinAlign(Alignment, IncrementSize));
2054
2055 // Build a factor node to remember that this load is independent of the
2056 // other one.
2057 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2058 Hi.getValue(1));
2059
2060 // Move the top bits to the right place.
2061 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2062 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2063
2064 // Join the hi and lo parts.
2065 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002066 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002067 // Big endian - avoid unaligned loads.
2068 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2069 // Load the top RoundWidth bits.
2070 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2071 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2072 Alignment);
2073
2074 // Load the remaining ExtraWidth bits.
2075 IncrementSize = RoundWidth / 8;
2076 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2077 DAG.getIntPtrConstant(IncrementSize));
2078 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2079 LD->getSrcValue(), SVOffset + IncrementSize,
2080 ExtraVT, isVolatile,
2081 MinAlign(Alignment, IncrementSize));
2082
2083 // Build a factor node to remember that this load is independent of the
2084 // other one.
2085 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2086 Hi.getValue(1));
2087
2088 // Move the top bits to the right place.
2089 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2090 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2091
2092 // Join the hi and lo parts.
2093 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2094 }
2095
2096 Tmp1 = LegalizeOp(Result);
2097 Tmp2 = LegalizeOp(Ch);
2098 } else {
2099 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
2100 default: assert(0 && "This action is not supported yet!");
2101 case TargetLowering::Custom:
2102 isCustom = true;
2103 // FALLTHROUGH
2104 case TargetLowering::Legal:
2105 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2106 Tmp1 = Result.getValue(0);
2107 Tmp2 = Result.getValue(1);
2108
2109 if (isCustom) {
2110 Tmp3 = TLI.LowerOperation(Result, DAG);
2111 if (Tmp3.Val) {
2112 Tmp1 = LegalizeOp(Tmp3);
2113 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2114 }
2115 } else {
2116 // If this is an unaligned load and the target doesn't support it,
2117 // expand it.
2118 if (!TLI.allowsUnalignedMemoryAccesses()) {
2119 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002120 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002121 if (LD->getAlignment() < ABIAlignment){
2122 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.Val), DAG,
2123 TLI);
2124 Tmp1 = Result.getOperand(0);
2125 Tmp2 = Result.getOperand(1);
2126 Tmp1 = LegalizeOp(Tmp1);
2127 Tmp2 = LegalizeOp(Tmp2);
2128 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002129 }
2130 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002131 break;
2132 case TargetLowering::Expand:
2133 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2134 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dan Gohman475871a2008-07-27 21:46:04 +00002135 SDValue Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002136 LD->getSrcValueOffset(),
2137 LD->isVolatile(), LD->getAlignment());
2138 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2139 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2140 Tmp2 = LegalizeOp(Load.getValue(1));
2141 break;
2142 }
2143 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2144 // Turn the unsupported load into an EXTLOAD followed by an explicit
2145 // zero/sign extend inreg.
2146 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2147 Tmp1, Tmp2, LD->getSrcValue(),
2148 LD->getSrcValueOffset(), SrcVT,
2149 LD->isVolatile(), LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00002150 SDValue ValRes;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002151 if (ExtType == ISD::SEXTLOAD)
2152 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2153 Result, DAG.getValueType(SrcVT));
2154 else
2155 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2156 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2157 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002158 break;
2159 }
Evan Cheng466685d2006-10-09 20:57:25 +00002160 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002161
Evan Cheng466685d2006-10-09 20:57:25 +00002162 // Since loads produce two values, make sure to remember that we legalized
2163 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002164 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2165 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Evan Cheng466685d2006-10-09 20:57:25 +00002166 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002167 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002168 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002169 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002170 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002171 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002172 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002173 case Legal:
2174 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue()) {
2175 // 1 -> Hi
2176 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002177 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002178 TLI.getShiftAmountTy()));
2179 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2180 } else {
2181 // 0 -> Lo
2182 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2183 Node->getOperand(0));
2184 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002185 break;
2186 case Expand:
2187 // Get both the low and high parts.
2188 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
2189 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
2190 Result = Tmp2; // 1 -> Hi
2191 else
2192 Result = Tmp1; // 0 -> Lo
2193 break;
2194 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002195 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002196 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002197
2198 case ISD::CopyToReg:
2199 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002200
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002201 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002202 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002203 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002204 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002205 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002206 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002207 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002208 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002209 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002210 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002211 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2212 Tmp3);
2213 } else {
2214 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002215 }
2216
2217 // Since this produces two values, make sure to remember that we legalized
2218 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002219 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2220 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002221 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002222 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002223 break;
2224
2225 case ISD::RET:
2226 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002227
2228 // Ensure that libcalls are emitted before a return.
2229 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2230 Tmp1 = LegalizeOp(Tmp1);
2231 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002232
Chris Lattner3e928bb2005-01-07 07:47:09 +00002233 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002234 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002235 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002236 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002237 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002238 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002239 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002240 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002241 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002242 if (!Tmp2.getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002243 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002244 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002245
2246 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002247 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002248 std::swap(Lo, Hi);
2249
Evan Cheng13acce32006-12-11 19:27:14 +00002250 if (Hi.Val)
2251 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2252 else
2253 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002254 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002255 } else {
2256 SDNode *InVal = Tmp2.Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002257 int InIx = Tmp2.ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002258 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2259 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002260
Dan Gohman7f321562007-06-25 16:23:39 +00002261 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002262 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002263 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002264 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002265 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002266 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002267 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002268 } else if (NumElems == 1) {
2269 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002270 Tmp2 = ScalarizeVectorOp(Tmp2);
2271 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002272 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002273
2274 // FIXME: Returns of gcc generic vectors smaller than a legal type
2275 // should be returned in integer registers!
2276
Chris Lattnerf87324e2006-04-11 01:31:51 +00002277 // The scalarized value type may not be legal, e.g. it might require
2278 // promotion or expansion. Relegalize the return.
2279 Result = LegalizeOp(Result);
2280 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002281 // FIXME: Returns of gcc generic vectors larger than a legal vector
2282 // type should be returned by reference!
Dan Gohman475871a2008-07-27 21:46:04 +00002283 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002284 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00002285 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002286 Result = LegalizeOp(Result);
2287 }
2288 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002289 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002290 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002291 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002292 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002293 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002294 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002295 }
2296 break;
2297 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002298 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002299 break;
2300 default: { // ret <values>
Dan Gohman475871a2008-07-27 21:46:04 +00002301 SmallVector<SDValue, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002302 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002303 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002304 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2305 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002306 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002307 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002308 break;
2309 case Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002310 SDValue Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002311 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002312 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002313 ExpandOp(Node->getOperand(i), Lo, Hi);
2314 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002315 NewValues.push_back(Node->getOperand(i+1));
Evan Cheng13acce32006-12-11 19:27:14 +00002316 if (Hi.Val) {
2317 NewValues.push_back(Hi);
2318 NewValues.push_back(Node->getOperand(i+1));
2319 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002320 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002321 }
2322 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002323 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002324 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002325
2326 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002327 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002328 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002329 Result = DAG.getNode(ISD::RET, MVT::Other,
2330 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002331 break;
2332 }
2333 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002334
Chris Lattner6862dbc2006-01-29 21:02:23 +00002335 if (Result.getOpcode() == ISD::RET) {
2336 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2337 default: assert(0 && "This action is not supported yet!");
2338 case TargetLowering::Legal: break;
2339 case TargetLowering::Custom:
2340 Tmp1 = TLI.LowerOperation(Result, DAG);
2341 if (Tmp1.Val) Result = Tmp1;
2342 break;
2343 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002344 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002345 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002346 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002347 StoreSDNode *ST = cast<StoreSDNode>(Node);
2348 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2349 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002350 int SVOffset = ST->getSrcValueOffset();
2351 unsigned Alignment = ST->getAlignment();
2352 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002353
Evan Cheng8b2794a2006-10-13 21:14:26 +00002354 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002355 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2356 // FIXME: We shouldn't do this for TargetConstantFP's.
2357 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2358 // to phase ordering between legalized code and the dag combiner. This
2359 // probably means that we need to integrate dag combiner and legalizer
2360 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002361 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002362 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002363 if (CFP->getValueType(0) == MVT::f32 &&
2364 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002365 Tmp3 = DAG.getConstant(CFP->getValueAPF().
2366 convertToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002367 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002368 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2369 SVOffset, isVolatile, Alignment);
2370 break;
2371 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002372 // If this target supports 64-bit registers, do a single 64-bit store.
2373 if (getTypeAction(MVT::i64) == Legal) {
2374 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002375 zextOrTrunc(64), MVT::i64);
Chris Lattner3cb93512007-10-15 05:46:06 +00002376 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2377 SVOffset, isVolatile, Alignment);
2378 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002379 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002380 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2381 // stores. If the target supports neither 32- nor 64-bits, this
2382 // xform is certainly not worth it.
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002383 const APInt &IntVal =CFP->getValueAPF().convertToAPInt();
Dan Gohman475871a2008-07-27 21:46:04 +00002384 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2385 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002386 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002387
2388 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2389 SVOffset, isVolatile, Alignment);
2390 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002391 DAG.getIntPtrConstant(4));
Chris Lattner3cb93512007-10-15 05:46:06 +00002392 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002393 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002394
2395 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2396 break;
2397 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002398 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002399 }
2400
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002401 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002402 case Legal: {
2403 Tmp3 = LegalizeOp(ST->getValue());
2404 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2405 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002406
Duncan Sands83ec4b62008-06-06 12:08:01 +00002407 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002408 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2409 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002410 case TargetLowering::Legal:
2411 // If this is an unaligned store and the target doesn't support it,
2412 // expand it.
2413 if (!TLI.allowsUnalignedMemoryAccesses()) {
2414 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002415 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002416 if (ST->getAlignment() < ABIAlignment)
2417 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2418 TLI);
2419 }
2420 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002421 case TargetLowering::Custom:
2422 Tmp1 = TLI.LowerOperation(Result, DAG);
2423 if (Tmp1.Val) Result = Tmp1;
2424 break;
2425 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002426 assert(VT.isVector() && "Unknown legal promote case!");
Evan Cheng8b2794a2006-10-13 21:14:26 +00002427 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2428 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2429 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002430 ST->getSrcValue(), SVOffset, isVolatile,
2431 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002432 break;
2433 }
2434 break;
2435 }
2436 case Promote:
2437 // Truncate the value and store the result.
2438 Tmp3 = PromoteOp(ST->getValue());
2439 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002440 SVOffset, ST->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002441 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002442 break;
2443
2444 case Expand:
2445 unsigned IncrementSize = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002446 SDValue Lo, Hi;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002447
2448 // If this is a vector type, then we have to calculate the increment as
2449 // the product of the element size in bytes, and the number of elements
2450 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002451 if (ST->getValue().getValueType().isVector()) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002452 SDNode *InVal = ST->getValue().Val;
Dale Johannesene5269622007-10-20 00:07:52 +00002453 int InIx = ST->getValue().ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002454 MVT InVT = InVal->getValueType(InIx);
2455 unsigned NumElems = InVT.getVectorNumElements();
2456 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002457
Dan Gohman7f321562007-06-25 16:23:39 +00002458 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002459 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002460 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002461 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002462 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002463 Tmp3 = LegalizeOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002464 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002465 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002466 Result = LegalizeOp(Result);
2467 break;
2468 } else if (NumElems == 1) {
2469 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002470 Tmp3 = ScalarizeVectorOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002471 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002472 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002473 // The scalarized value type may not be legal, e.g. it might require
2474 // promotion or expansion. Relegalize the scalar store.
2475 Result = LegalizeOp(Result);
2476 break;
2477 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002478 SplitVectorOp(ST->getValue(), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002479 IncrementSize = Lo.Val->getValueType(0).getVectorNumElements() *
2480 EVT.getSizeInBits()/8;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002481 }
2482 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002483 ExpandOp(ST->getValue(), Lo, Hi);
Duncan Sands83ec4b62008-06-06 12:08:01 +00002484 IncrementSize = Hi.Val ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002485
Duncan Sands0753fc12008-02-11 10:37:04 +00002486 if (TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002487 std::swap(Lo, Hi);
2488 }
2489
2490 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002491 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002492
2493 if (Hi.Val == NULL) {
2494 // Must be int <-> float one-to-one expansion.
2495 Result = Lo;
2496 break;
2497 }
2498
Evan Cheng8b2794a2006-10-13 21:14:26 +00002499 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002500 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002501 assert(isTypeLegal(Tmp2.getValueType()) &&
2502 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002503 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002504 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002505 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002506 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002507 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2508 break;
2509 }
2510 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002511 switch (getTypeAction(ST->getValue().getValueType())) {
2512 case Legal:
2513 Tmp3 = LegalizeOp(ST->getValue());
2514 break;
2515 case Promote:
2516 // We can promote the value, the truncstore will still take care of it.
2517 Tmp3 = PromoteOp(ST->getValue());
2518 break;
2519 case Expand:
2520 // Just store the low part. This may become a non-trunc store, so make
2521 // sure to use getTruncStore, not UpdateNodeOperands below.
2522 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2523 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2524 SVOffset, MVT::i8, isVolatile, Alignment);
2525 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002526
Duncan Sands83ec4b62008-06-06 12:08:01 +00002527 MVT StVT = ST->getMemoryVT();
2528 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002529
Duncan Sands83ec4b62008-06-06 12:08:01 +00002530 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002531 // Promote to a byte-sized store with upper bits zero if not
2532 // storing an integral number of bytes. For example, promote
2533 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002534 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Duncan Sands7e857202008-01-22 07:17:34 +00002535 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2536 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2537 SVOffset, NVT, isVolatile, Alignment);
2538 } else if (StWidth & (StWidth - 1)) {
2539 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002540 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002541 "Unsupported truncstore!");
2542 unsigned RoundWidth = 1 << Log2_32(StWidth);
2543 assert(RoundWidth < StWidth);
2544 unsigned ExtraWidth = StWidth - RoundWidth;
2545 assert(ExtraWidth < RoundWidth);
2546 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2547 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002548 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2549 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002550 SDValue Lo, Hi;
Duncan Sands7e857202008-01-22 07:17:34 +00002551 unsigned IncrementSize;
2552
2553 if (TLI.isLittleEndian()) {
2554 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2555 // Store the bottom RoundWidth bits.
2556 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2557 SVOffset, RoundVT,
2558 isVolatile, Alignment);
2559
2560 // Store the remaining ExtraWidth bits.
2561 IncrementSize = RoundWidth / 8;
2562 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2563 DAG.getIntPtrConstant(IncrementSize));
2564 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2565 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2566 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2567 SVOffset + IncrementSize, ExtraVT, isVolatile,
2568 MinAlign(Alignment, IncrementSize));
2569 } else {
2570 // Big endian - avoid unaligned stores.
2571 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2572 // Store the top RoundWidth bits.
2573 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2574 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2575 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2576 RoundVT, isVolatile, Alignment);
2577
2578 // Store the remaining ExtraWidth bits.
2579 IncrementSize = RoundWidth / 8;
2580 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2581 DAG.getIntPtrConstant(IncrementSize));
2582 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2583 SVOffset + IncrementSize, ExtraVT, isVolatile,
2584 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002585 }
Duncan Sands7e857202008-01-22 07:17:34 +00002586
2587 // The order of the stores doesn't matter.
2588 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2589 } else {
2590 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2591 Tmp2 != ST->getBasePtr())
2592 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2593 ST->getOffset());
2594
2595 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2596 default: assert(0 && "This action is not supported yet!");
2597 case TargetLowering::Legal:
2598 // If this is an unaligned store and the target doesn't support it,
2599 // expand it.
2600 if (!TLI.allowsUnalignedMemoryAccesses()) {
2601 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002602 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002603 if (ST->getAlignment() < ABIAlignment)
2604 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.Val), DAG,
2605 TLI);
2606 }
2607 break;
2608 case TargetLowering::Custom:
2609 Result = TLI.LowerOperation(Result, DAG);
2610 break;
2611 case Expand:
2612 // TRUNCSTORE:i16 i32 -> STORE i16
2613 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2614 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2615 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2616 isVolatile, Alignment);
2617 break;
2618 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002619 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002620 }
2621 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002622 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002623 case ISD::PCMARKER:
2624 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002625 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002626 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002627 case ISD::STACKSAVE:
2628 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002629 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2630 Tmp1 = Result.getValue(0);
2631 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002632
Chris Lattner140d53c2006-01-13 02:50:02 +00002633 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2634 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002635 case TargetLowering::Legal: break;
2636 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002637 Tmp3 = TLI.LowerOperation(Result, DAG);
2638 if (Tmp3.Val) {
2639 Tmp1 = LegalizeOp(Tmp3);
2640 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002641 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002642 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002643 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002644 // Expand to CopyFromReg if the target set
2645 // StackPointerRegisterToSaveRestore.
2646 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002647 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002648 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002649 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002650 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002651 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2652 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002653 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002654 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002655 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002656
2657 // Since stacksave produce two values, make sure to remember that we
2658 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002659 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2660 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002661 return Op.ResNo ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002662
Chris Lattner140d53c2006-01-13 02:50:02 +00002663 case ISD::STACKRESTORE:
2664 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2665 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002666 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002667
2668 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2669 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002670 case TargetLowering::Legal: break;
2671 case TargetLowering::Custom:
2672 Tmp1 = TLI.LowerOperation(Result, DAG);
2673 if (Tmp1.Val) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002674 break;
2675 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002676 // Expand to CopyToReg if the target set
2677 // StackPointerRegisterToSaveRestore.
2678 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2679 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2680 } else {
2681 Result = Tmp1;
2682 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002683 break;
2684 }
2685 break;
2686
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002687 case ISD::READCYCLECOUNTER:
2688 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002689 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002690 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2691 Node->getValueType(0))) {
2692 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002693 case TargetLowering::Legal:
2694 Tmp1 = Result.getValue(0);
2695 Tmp2 = Result.getValue(1);
2696 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002697 case TargetLowering::Custom:
2698 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002699 Tmp1 = LegalizeOp(Result.getValue(0));
2700 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002701 break;
2702 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002703
2704 // Since rdcc produce two values, make sure to remember that we legalized
2705 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002706 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2707 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002708 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002709
Chris Lattner2ee743f2005-01-14 22:08:15 +00002710 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002711 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2712 case Expand: assert(0 && "It's impossible to expand bools");
2713 case Legal:
2714 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2715 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002716 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002717 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002718 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002719 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002720 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002721 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerb6c80602006-11-28 01:03:30 +00002722 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002723 break;
2724 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002725 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002726 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002727 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002728
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002729 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002730
Nate Begemanb942a3d2005-08-23 04:29:48 +00002731 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002732 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002733 case TargetLowering::Legal: break;
2734 case TargetLowering::Custom: {
2735 Tmp1 = TLI.LowerOperation(Result, DAG);
2736 if (Tmp1.Val) Result = Tmp1;
2737 break;
2738 }
Nate Begeman9373a812005-08-10 20:51:12 +00002739 case TargetLowering::Expand:
2740 if (Tmp1.getOpcode() == ISD::SETCC) {
2741 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2742 Tmp2, Tmp3,
2743 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2744 } else {
2745 Result = DAG.getSelectCC(Tmp1,
2746 DAG.getConstant(0, Tmp1.getValueType()),
2747 Tmp2, Tmp3, ISD::SETNE);
2748 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002749 break;
2750 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002751 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002752 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2753 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002754 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002755 ExtOp = ISD::BIT_CONVERT;
2756 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002757 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002758 ExtOp = ISD::ANY_EXTEND;
2759 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002760 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002761 ExtOp = ISD::FP_EXTEND;
2762 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002763 }
2764 // Promote each of the values to the new type.
2765 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2766 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2767 // Perform the larger operation, then round down.
2768 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002769 if (TruncOp != ISD::FP_ROUND)
2770 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2771 else
2772 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2773 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002774 break;
2775 }
2776 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002777 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002778 case ISD::SELECT_CC: {
2779 Tmp1 = Node->getOperand(0); // LHS
2780 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002781 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2782 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman475871a2008-07-27 21:46:04 +00002783 SDValue CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002784
Nate Begeman750ac1b2006-02-01 07:19:44 +00002785 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2786
2787 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2788 // the LHS is a legal SETCC itself. In this case, we need to compare
2789 // the result against zero to select between true and false values.
2790 if (Tmp2.Val == 0) {
2791 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2792 CC = DAG.getCondCode(ISD::SETNE);
2793 }
2794 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2795
2796 // Everything is legal, see if we should expand this op or something.
2797 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2798 default: assert(0 && "This action is not supported yet!");
2799 case TargetLowering::Legal: break;
2800 case TargetLowering::Custom:
2801 Tmp1 = TLI.LowerOperation(Result, DAG);
2802 if (Tmp1.Val) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002803 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002804 }
2805 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002806 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002807 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002808 Tmp1 = Node->getOperand(0);
2809 Tmp2 = Node->getOperand(1);
2810 Tmp3 = Node->getOperand(2);
2811 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2812
2813 // If we had to Expand the SetCC operands into a SELECT node, then it may
2814 // not always be possible to return a true LHS & RHS. In this case, just
2815 // return the value we legalized, returned in the LHS
2816 if (Tmp2.Val == 0) {
2817 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002818 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002819 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002820
Chris Lattner73e142f2006-01-30 22:43:50 +00002821 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002822 default: assert(0 && "Cannot handle this action for SETCC yet!");
2823 case TargetLowering::Custom:
2824 isCustom = true;
2825 // FALLTHROUGH.
2826 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002827 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002828 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002829 Tmp4 = TLI.LowerOperation(Result, DAG);
2830 if (Tmp4.Val) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002831 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002832 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002833 case TargetLowering::Promote: {
2834 // First step, figure out the appropriate operation to use.
2835 // Allow SETCC to not be supported for all legal data types
2836 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00002837 MVT NewInTy = Node->getOperand(0).getValueType();
2838 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002839
2840 // Scan for the appropriate larger type to use.
2841 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002842 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00002843
Duncan Sands83ec4b62008-06-06 12:08:01 +00002844 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002845 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002846 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002847 "Fell off of the edge of the floating point world");
2848
2849 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002850 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002851 break;
2852 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002853 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00002854 assert(0 && "Cannot promote Legal Integer SETCC yet");
2855 else {
2856 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2857 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2858 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002859 Tmp1 = LegalizeOp(Tmp1);
2860 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002861 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002862 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002863 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002864 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002865 case TargetLowering::Expand:
2866 // Expand a setcc node into a select_cc of the same condition, lhs, and
2867 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00002868 MVT VT = Node->getValueType(0);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002869 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2870 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002871 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002872 break;
2873 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002874 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00002875 case ISD::VSETCC: {
2876 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2877 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman475871a2008-07-27 21:46:04 +00002878 SDValue CC = Node->getOperand(2);
Nate Begemanb43e9c12008-05-12 19:40:03 +00002879
2880 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
2881
2882 // Everything is legal, see if we should expand this op or something.
2883 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
2884 default: assert(0 && "This action is not supported yet!");
2885 case TargetLowering::Legal: break;
2886 case TargetLowering::Custom:
2887 Tmp1 = TLI.LowerOperation(Result, DAG);
2888 if (Tmp1.Val) Result = Tmp1;
2889 break;
2890 }
2891 break;
2892 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002893
Chris Lattner5b359c62005-04-02 04:00:59 +00002894 case ISD::SHL_PARTS:
2895 case ISD::SRA_PARTS:
2896 case ISD::SRL_PARTS: {
Dan Gohman475871a2008-07-27 21:46:04 +00002897 SmallVector<SDValue, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002898 bool Changed = false;
2899 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2900 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2901 Changed |= Ops.back() != Node->getOperand(i);
2902 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002903 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002904 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002905
Evan Cheng05a2d562006-01-09 18:31:59 +00002906 switch (TLI.getOperationAction(Node->getOpcode(),
2907 Node->getValueType(0))) {
2908 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002909 case TargetLowering::Legal: break;
2910 case TargetLowering::Custom:
2911 Tmp1 = TLI.LowerOperation(Result, DAG);
2912 if (Tmp1.Val) {
Dan Gohman475871a2008-07-27 21:46:04 +00002913 SDValue Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002914 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002915 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman475871a2008-07-27 21:46:04 +00002916 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Evan Cheng05a2d562006-01-09 18:31:59 +00002917 if (i == Op.ResNo)
Evan Cheng12f22742006-01-19 04:54:52 +00002918 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002919 }
Chris Lattner269f8c02006-01-10 19:43:26 +00002920 assert(RetVal.Val && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002921 return RetVal;
2922 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002923 break;
2924 }
2925
Chris Lattner2c8086f2005-04-02 05:00:07 +00002926 // Since these produce multiple values, make sure to remember that we
2927 // legalized all of them.
2928 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00002929 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Chris Lattner2c8086f2005-04-02 05:00:07 +00002930 return Result.getValue(Op.ResNo);
Chris Lattner84f67882005-01-20 18:52:28 +00002931 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002932
2933 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002934 case ISD::ADD:
2935 case ISD::SUB:
2936 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002937 case ISD::MULHS:
2938 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002939 case ISD::UDIV:
2940 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002941 case ISD::AND:
2942 case ISD::OR:
2943 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002944 case ISD::SHL:
2945 case ISD::SRL:
2946 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002947 case ISD::FADD:
2948 case ISD::FSUB:
2949 case ISD::FMUL:
2950 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00002951 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002952 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002953 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2954 case Expand: assert(0 && "Not possible");
2955 case Legal:
2956 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2957 break;
2958 case Promote:
2959 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2960 break;
2961 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00002962
2963 if ((Node->getOpcode() == ISD::SHL ||
2964 Node->getOpcode() == ISD::SRL ||
2965 Node->getOpcode() == ISD::SRA) &&
2966 !Node->getValueType(0).isVector()) {
2967 if (TLI.getShiftAmountTy().bitsLT(Tmp2.getValueType()))
2968 Tmp2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Tmp2);
2969 else if (TLI.getShiftAmountTy().bitsGT(Tmp2.getValueType()))
2970 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Tmp2);
2971 }
2972
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002973 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002974
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002975 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002976 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002977 case TargetLowering::Legal: break;
2978 case TargetLowering::Custom:
2979 Tmp1 = TLI.LowerOperation(Result, DAG);
Nate Begeman24dc3462008-07-29 19:07:27 +00002980 if (Tmp1.Val) {
Nate Begeman5bc1ea02008-07-29 15:49:41 +00002981 Result = Tmp1;
2982 break;
Nate Begeman24dc3462008-07-29 19:07:27 +00002983 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00002984 // Fall through if the custom lower can't deal with the operation
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002985 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002986 MVT VT = Op.getValueType();
Dan Gohman525178c2007-10-08 18:33:35 +00002987
2988 // See if multiply or divide can be lowered using two-result operations.
2989 SDVTList VTs = DAG.getVTList(VT, VT);
2990 if (Node->getOpcode() == ISD::MUL) {
2991 // We just need the low half of the multiply; try both the signed
2992 // and unsigned forms. If the target supports both SMUL_LOHI and
2993 // UMUL_LOHI, form a preference by checking which forms of plain
2994 // MULH it supports.
2995 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2996 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2997 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2998 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2999 unsigned OpToUse = 0;
3000 if (HasSMUL_LOHI && !HasMULHS) {
3001 OpToUse = ISD::SMUL_LOHI;
3002 } else if (HasUMUL_LOHI && !HasMULHU) {
3003 OpToUse = ISD::UMUL_LOHI;
3004 } else if (HasSMUL_LOHI) {
3005 OpToUse = ISD::SMUL_LOHI;
3006 } else if (HasUMUL_LOHI) {
3007 OpToUse = ISD::UMUL_LOHI;
3008 }
3009 if (OpToUse) {
Dan Gohman475871a2008-07-27 21:46:04 +00003010 Result = SDValue(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).Val, 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003011 break;
3012 }
3013 }
3014 if (Node->getOpcode() == ISD::MULHS &&
3015 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003016 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003017 break;
3018 }
3019 if (Node->getOpcode() == ISD::MULHU &&
3020 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003021 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).Val, 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003022 break;
3023 }
3024 if (Node->getOpcode() == ISD::SDIV &&
3025 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003026 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003027 break;
3028 }
3029 if (Node->getOpcode() == ISD::UDIV &&
3030 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003031 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003032 break;
3033 }
3034
Dan Gohman82669522007-10-11 23:57:53 +00003035 // Check to see if we have a libcall for this operator.
3036 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3037 bool isSigned = false;
3038 switch (Node->getOpcode()) {
3039 case ISD::UDIV:
3040 case ISD::SDIV:
3041 if (VT == MVT::i32) {
3042 LC = Node->getOpcode() == ISD::UDIV
Evan Cheng56966222007-01-12 02:11:51 +00003043 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003044 isSigned = Node->getOpcode() == ISD::SDIV;
3045 }
3046 break;
3047 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003048 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3049 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003050 break;
3051 default: break;
3052 }
3053 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +00003054 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003055 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003056 break;
3057 }
3058
Duncan Sands83ec4b62008-06-06 12:08:01 +00003059 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003060 "Cannot expand this binary operator!");
3061 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003062 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003063 break;
3064 }
Evan Chengcc987612006-04-12 21:20:24 +00003065 case TargetLowering::Promote: {
3066 switch (Node->getOpcode()) {
3067 default: assert(0 && "Do not know how to promote this BinOp!");
3068 case ISD::AND:
3069 case ISD::OR:
3070 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003071 MVT OVT = Node->getValueType(0);
3072 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3073 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003074 // Bit convert each of the values to the new type.
3075 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3076 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3077 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3078 // Bit convert the result back the original type.
3079 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3080 break;
3081 }
3082 }
3083 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003084 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003085 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003086
Dan Gohmane14ea862007-10-05 14:17:22 +00003087 case ISD::SMUL_LOHI:
3088 case ISD::UMUL_LOHI:
3089 case ISD::SDIVREM:
3090 case ISD::UDIVREM:
3091 // These nodes will only be produced by target-specific lowering, so
3092 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003093 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003094 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003095
3096 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3097 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3098 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003099 break;
3100
Chris Lattnera09f8482006-03-05 05:09:38 +00003101 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3102 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3103 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3104 case Expand: assert(0 && "Not possible");
3105 case Legal:
3106 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3107 break;
3108 case Promote:
3109 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3110 break;
3111 }
3112
3113 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3114
3115 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3116 default: assert(0 && "Operation not supported");
3117 case TargetLowering::Custom:
3118 Tmp1 = TLI.LowerOperation(Result, DAG);
3119 if (Tmp1.Val) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003120 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003121 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003122 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003123 // If this target supports fabs/fneg natively and select is cheap,
3124 // do this efficiently.
3125 if (!TLI.isSelectExpensive() &&
3126 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3127 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003128 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003129 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003130 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003131 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003132 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman475871a2008-07-27 21:46:04 +00003133 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003134 SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003135 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3136 // Get the absolute value of the result.
Dan Gohman475871a2008-07-27 21:46:04 +00003137 SDValue AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
Chris Lattner8f4191d2006-03-13 06:08:38 +00003138 // Select between the nabs and abs value based on the sign bit of
3139 // the input.
3140 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3141 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3142 AbsVal),
3143 AbsVal);
3144 Result = LegalizeOp(Result);
3145 break;
3146 }
3147
3148 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003149 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003150 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3151 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3152 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3153 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003154 break;
3155 }
Evan Cheng912095b2007-01-04 21:56:39 +00003156 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003157 break;
3158
Nate Begeman551bf3f2006-02-17 05:43:56 +00003159 case ISD::ADDC:
3160 case ISD::SUBC:
3161 Tmp1 = LegalizeOp(Node->getOperand(0));
3162 Tmp2 = LegalizeOp(Node->getOperand(1));
3163 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3164 // Since this produces two values, make sure to remember that we legalized
3165 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003166 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
3167 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Nate Begeman551bf3f2006-02-17 05:43:56 +00003168 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003169
Nate Begeman551bf3f2006-02-17 05:43:56 +00003170 case ISD::ADDE:
3171 case ISD::SUBE:
3172 Tmp1 = LegalizeOp(Node->getOperand(0));
3173 Tmp2 = LegalizeOp(Node->getOperand(1));
3174 Tmp3 = LegalizeOp(Node->getOperand(2));
3175 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3176 // Since this produces two values, make sure to remember that we legalized
3177 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003178 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
3179 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Nate Begeman551bf3f2006-02-17 05:43:56 +00003180 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00003181
Nate Begeman419f8b62005-10-18 00:27:41 +00003182 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003183 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003184 // TODO: handle the case where the Lo and Hi operands are not of legal type
3185 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3186 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3187 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003188 case TargetLowering::Promote:
3189 case TargetLowering::Custom:
3190 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003191 case TargetLowering::Legal:
3192 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3193 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3194 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003195 case TargetLowering::Expand:
3196 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3197 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3198 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003199 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003200 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00003201 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003202 break;
3203 }
3204 break;
3205 }
3206
Nate Begemanc105e192005-04-06 00:23:54 +00003207 case ISD::UREM:
3208 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003209 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003210 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3211 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003212
Nate Begemanc105e192005-04-06 00:23:54 +00003213 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003214 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3215 case TargetLowering::Custom:
3216 isCustom = true;
3217 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003218 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003219 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003220 if (isCustom) {
3221 Tmp1 = TLI.LowerOperation(Result, DAG);
3222 if (Tmp1.Val) Result = Tmp1;
3223 }
Nate Begemanc105e192005-04-06 00:23:54 +00003224 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003225 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003226 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003227 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003228 MVT VT = Node->getValueType(0);
Dan Gohman525178c2007-10-08 18:33:35 +00003229
3230 // See if remainder can be lowered using two-result operations.
3231 SDVTList VTs = DAG.getVTList(VT, VT);
3232 if (Node->getOpcode() == ISD::SREM &&
3233 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003234 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).Val, 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003235 break;
3236 }
3237 if (Node->getOpcode() == ISD::UREM &&
3238 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00003239 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).Val, 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003240 break;
3241 }
3242
Duncan Sands83ec4b62008-06-06 12:08:01 +00003243 if (VT.isInteger()) {
Dan Gohman525178c2007-10-08 18:33:35 +00003244 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003245 TargetLowering::Legal) {
3246 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00003247 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003248 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3249 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003250 } else if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003251 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003252 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003253 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003254 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003255 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3256 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman475871a2008-07-27 21:46:04 +00003257 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003258 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003259 }
Dan Gohman0d974262007-11-06 22:11:54 +00003260 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003261 assert(VT.isFloatingPoint() &&
Dan Gohman0d974262007-11-06 22:11:54 +00003262 "remainder op must have integer or floating-point type");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003263 if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003264 Result = LegalizeOp(UnrollVectorOp(Op));
3265 } else {
3266 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003267 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3268 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003269 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003270 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003271 }
Nate Begemanc105e192005-04-06 00:23:54 +00003272 }
3273 break;
3274 }
Dan Gohman525178c2007-10-08 18:33:35 +00003275 }
Nate Begemanc105e192005-04-06 00:23:54 +00003276 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003277 case ISD::VAARG: {
3278 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3279 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3280
Duncan Sands83ec4b62008-06-06 12:08:01 +00003281 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003282 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3283 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003284 case TargetLowering::Custom:
3285 isCustom = true;
3286 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003287 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003288 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3289 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003290 Tmp1 = Result.getValue(1);
3291
3292 if (isCustom) {
3293 Tmp2 = TLI.LowerOperation(Result, DAG);
3294 if (Tmp2.Val) {
3295 Result = LegalizeOp(Tmp2);
3296 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3297 }
3298 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003299 break;
3300 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003301 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman475871a2008-07-27 21:46:04 +00003302 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003303 // Increment the pointer, VAList, to the next vaarg
3304 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003305 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begemanacc398c2006-01-25 18:21:52 +00003306 TLI.getPointerTy()));
3307 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00003308 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003309 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003310 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003311 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003312 Result = LegalizeOp(Result);
3313 break;
3314 }
3315 }
3316 // Since VAARG produces two values, make sure to remember that we
3317 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003318 AddLegalizedOperand(SDValue(Node, 0), Result);
3319 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003320 return Op.ResNo ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003321 }
3322
3323 case ISD::VACOPY:
3324 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3325 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3326 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3327
3328 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3329 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003330 case TargetLowering::Custom:
3331 isCustom = true;
3332 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003333 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003334 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3335 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003336 if (isCustom) {
3337 Tmp1 = TLI.LowerOperation(Result, DAG);
3338 if (Tmp1.Val) Result = Tmp1;
3339 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003340 break;
3341 case TargetLowering::Expand:
3342 // This defaults to loading a pointer from the input and storing it to the
3343 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003344 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3345 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dan Gohman499c1bd2008-04-17 02:09:26 +00003346 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3347 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003348 break;
3349 }
3350 break;
3351
3352 case ISD::VAEND:
3353 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3354 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3355
3356 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3357 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003358 case TargetLowering::Custom:
3359 isCustom = true;
3360 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003361 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003362 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003363 if (isCustom) {
3364 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
3365 if (Tmp1.Val) Result = Tmp1;
3366 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003367 break;
3368 case TargetLowering::Expand:
3369 Result = Tmp1; // Default to a no-op, return the chain
3370 break;
3371 }
3372 break;
3373
3374 case ISD::VASTART:
3375 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3376 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3377
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003378 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3379
Nate Begemanacc398c2006-01-25 18:21:52 +00003380 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3381 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003382 case TargetLowering::Legal: break;
3383 case TargetLowering::Custom:
3384 Tmp1 = TLI.LowerOperation(Result, DAG);
3385 if (Tmp1.Val) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003386 break;
3387 }
3388 break;
3389
Nate Begeman35ef9132006-01-11 21:21:00 +00003390 case ISD::ROTL:
3391 case ISD::ROTR:
3392 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3393 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003394 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003395 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3396 default:
3397 assert(0 && "ROTL/ROTR legalize operation not supported");
3398 break;
3399 case TargetLowering::Legal:
3400 break;
3401 case TargetLowering::Custom:
3402 Tmp1 = TLI.LowerOperation(Result, DAG);
3403 if (Tmp1.Val) Result = Tmp1;
3404 break;
3405 case TargetLowering::Promote:
3406 assert(0 && "Do not know how to promote ROTL/ROTR");
3407 break;
3408 case TargetLowering::Expand:
3409 assert(0 && "Do not know how to expand ROTL/ROTR");
3410 break;
3411 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003412 break;
3413
Nate Begemand88fc032006-01-14 03:14:10 +00003414 case ISD::BSWAP:
3415 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3416 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003417 case TargetLowering::Custom:
3418 assert(0 && "Cannot custom legalize this yet!");
3419 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003420 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003421 break;
3422 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003423 MVT OVT = Tmp1.getValueType();
3424 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3425 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003426
Chris Lattner456a93a2006-01-28 07:39:30 +00003427 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3428 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3429 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3430 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3431 break;
3432 }
3433 case TargetLowering::Expand:
3434 Result = ExpandBSWAP(Tmp1);
3435 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003436 }
3437 break;
3438
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003439 case ISD::CTPOP:
3440 case ISD::CTTZ:
3441 case ISD::CTLZ:
3442 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3443 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003444 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003445 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003446 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003447 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003448 TargetLowering::Custom) {
3449 Tmp1 = TLI.LowerOperation(Result, DAG);
3450 if (Tmp1.Val) {
3451 Result = Tmp1;
3452 }
Scott Michel910b66d2007-07-30 21:00:31 +00003453 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003454 break;
3455 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003456 MVT OVT = Tmp1.getValueType();
3457 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003458
3459 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003460 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3461 // Perform the larger operation, then subtract if needed.
3462 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003463 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003464 case ISD::CTPOP:
3465 Result = Tmp1;
3466 break;
3467 case ISD::CTTZ:
3468 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00003469 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003470 DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003471 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003472 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003473 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003474 break;
3475 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003476 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003477 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003478 DAG.getConstant(NVT.getSizeInBits() -
3479 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003480 break;
3481 }
3482 break;
3483 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003484 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003485 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003486 break;
3487 }
3488 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003489
Chris Lattner2c8086f2005-04-02 05:00:07 +00003490 // Unary operators
3491 case ISD::FABS:
3492 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003493 case ISD::FSQRT:
3494 case ISD::FSIN:
3495 case ISD::FCOS:
Dan Gohman509e84f2008-08-21 17:55:02 +00003496 case ISD::FTRUNC:
3497 case ISD::FFLOOR:
3498 case ISD::FCEIL:
3499 case ISD::FRINT:
3500 case ISD::FNEARBYINT:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003501 Tmp1 = LegalizeOp(Node->getOperand(0));
3502 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003503 case TargetLowering::Promote:
3504 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003505 isCustom = true;
3506 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003507 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003508 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003509 if (isCustom) {
3510 Tmp1 = TLI.LowerOperation(Result, DAG);
3511 if (Tmp1.Val) Result = Tmp1;
3512 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003513 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003514 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003515 switch (Node->getOpcode()) {
3516 default: assert(0 && "Unreachable!");
3517 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003518 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3519 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003520 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003521 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003522 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003523 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003524 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003525 Tmp2 = DAG.getConstantFP(0.0, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003526 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00003527 ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003528 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3529 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003530 break;
3531 }
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003532 case ISD::FTRUNC:
3533 case ISD::FFLOOR:
3534 case ISD::FCEIL:
3535 case ISD::FRINT:
3536 case ISD::FNEARBYINT:
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003537 case ISD::FSQRT:
3538 case ISD::FSIN:
3539 case ISD::FCOS: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003540 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003541
3542 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003543 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003544 Result = LegalizeOp(UnrollVectorOp(Op));
3545 break;
3546 }
3547
Evan Cheng56966222007-01-12 02:11:51 +00003548 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003549 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003550 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003551 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3552 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003553 break;
3554 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003555 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3556 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003557 break;
3558 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003559 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3560 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003561 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003562 case ISD::FTRUNC:
3563 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3564 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3565 break;
3566 case ISD::FFLOOR:
3567 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3568 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3569 break;
3570 case ISD::FCEIL:
3571 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3572 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3573 break;
3574 case ISD::FRINT:
3575 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3576 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3577 break;
3578 case ISD::FNEARBYINT:
3579 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3580 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3581 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003582 default: assert(0 && "Unreachable!");
3583 }
Dan Gohman475871a2008-07-27 21:46:04 +00003584 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003585 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003586 break;
3587 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003588 }
3589 break;
3590 }
3591 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003592 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003593 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003594
3595 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003596 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003597 Result = LegalizeOp(UnrollVectorOp(Op));
3598 break;
3599 }
3600
3601 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003602 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3603 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003604 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003605 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003606 break;
3607 }
Chris Lattner35481892005-12-23 00:16:34 +00003608 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003609 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003610 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3611 Node->getValueType(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003612 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003613 // The input has to be a vector type, we have to either scalarize it, pack
3614 // it, or convert it based on whether the input vector type is legal.
3615 SDNode *InVal = Node->getOperand(0).Val;
Dale Johannesene5269622007-10-20 00:07:52 +00003616 int InIx = Node->getOperand(0).ResNo;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003617 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3618 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohman7f321562007-06-25 16:23:39 +00003619
3620 // Figure out if there is a simple type corresponding to this Vector
3621 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003622 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00003623 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003624 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003625 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3626 LegalizeOp(Node->getOperand(0)));
3627 break;
3628 } else if (NumElems == 1) {
3629 // Turn this into a bit convert of the scalar input.
3630 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3631 ScalarizeVectorOp(Node->getOperand(0)));
3632 break;
3633 } else {
3634 // FIXME: UNIMP! Store then reload
3635 assert(0 && "Cast from unsupported vector type not implemented yet!");
3636 }
Chris Lattner67993f72006-01-23 07:30:46 +00003637 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003638 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3639 Node->getOperand(0).getValueType())) {
3640 default: assert(0 && "Unknown operation action!");
3641 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003642 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3643 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003644 break;
3645 case TargetLowering::Legal:
3646 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003647 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003648 break;
3649 }
3650 }
3651 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003652
Chris Lattner2c8086f2005-04-02 05:00:07 +00003653 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003654 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003655 case ISD::UINT_TO_FP: {
3656 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman7f8613e2008-08-14 20:04:46 +00003657 Result = LegalizeINT_TO_FP(Result, isSigned,
3658 Node->getValueType(0), Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003659 break;
3660 }
3661 case ISD::TRUNCATE:
3662 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3663 case Legal:
3664 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003665 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003666 break;
3667 case Expand:
3668 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3669
3670 // Since the result is legal, we should just be able to truncate the low
3671 // part of the source.
3672 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3673 break;
3674 case Promote:
3675 Result = PromoteOp(Node->getOperand(0));
3676 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3677 break;
3678 }
3679 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003680
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003681 case ISD::FP_TO_SINT:
3682 case ISD::FP_TO_UINT:
3683 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3684 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003685 Tmp1 = LegalizeOp(Node->getOperand(0));
3686
Chris Lattner1618beb2005-07-29 00:11:56 +00003687 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3688 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003689 case TargetLowering::Custom:
3690 isCustom = true;
3691 // FALLTHROUGH
3692 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003693 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003694 if (isCustom) {
3695 Tmp1 = TLI.LowerOperation(Result, DAG);
3696 if (Tmp1.Val) Result = Tmp1;
3697 }
3698 break;
3699 case TargetLowering::Promote:
3700 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3701 Node->getOpcode() == ISD::FP_TO_SINT);
3702 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003703 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003704 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman475871a2008-07-27 21:46:04 +00003705 SDValue True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003706 MVT VT = Node->getOperand(0).getValueType();
3707 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00003708 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00003709 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
3710 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003711 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00003712 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003713 Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
Nate Begemand2558e32005-08-14 01:20:53 +00003714 Node->getOperand(0), Tmp2, ISD::SETLT);
3715 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3716 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003717 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003718 Tmp2));
3719 False = DAG.getNode(ISD::XOR, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003720 DAG.getConstant(x, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003721 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3722 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003723 } else {
3724 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3725 }
3726 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003727 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003728 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003729 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003730 MVT VT = Op.getValueType();
3731 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003732 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003733 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003734 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3735 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3736 Node->getOperand(0), DAG.getValueType(MVT::f64));
3737 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3738 DAG.getIntPtrConstant(1));
3739 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3740 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003741 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3742 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3743 Tmp2 = DAG.getConstantFP(apf, OVT);
3744 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3745 // FIXME: generated code sucks.
3746 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3747 DAG.getNode(ISD::ADD, MVT::i32,
3748 DAG.getNode(ISD::FP_TO_SINT, VT,
3749 DAG.getNode(ISD::FSUB, OVT,
3750 Node->getOperand(0), Tmp2)),
3751 DAG.getConstant(0x80000000, MVT::i32)),
3752 DAG.getNode(ISD::FP_TO_SINT, VT,
3753 Node->getOperand(0)),
3754 DAG.getCondCode(ISD::SETGE));
3755 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003756 break;
3757 }
Dan Gohmana2e94852008-03-10 23:03:31 +00003758 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsb2ff8852008-07-17 02:36:29 +00003759 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
3760 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
3761 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman475871a2008-07-27 21:46:04 +00003762 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003763 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003764 break;
3765 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003766 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003767 Tmp1 = PromoteOp(Node->getOperand(0));
3768 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3769 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003770 break;
3771 }
3772 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003773
Chris Lattnerf2670a82008-01-16 06:57:07 +00003774 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003775 MVT DstVT = Op.getValueType();
3776 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003777 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3778 // The only other way we can lower this is to turn it into a STORE,
3779 // LOAD pair, targetting a temporary location (a stack slot).
3780 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3781 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00003782 }
3783 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3784 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3785 case Legal:
3786 Tmp1 = LegalizeOp(Node->getOperand(0));
3787 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3788 break;
3789 case Promote:
3790 Tmp1 = PromoteOp(Node->getOperand(0));
3791 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3792 break;
3793 }
3794 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003795 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003796 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003797 MVT DstVT = Op.getValueType();
3798 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003799 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3800 if (SrcVT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00003801 SDValue Lo;
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003802 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003803 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003804 if (DstVT!=MVT::f64)
3805 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00003806 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00003807 }
Chris Lattner0bd48932008-01-17 07:00:52 +00003808 // The only other way we can lower this is to turn it into a STORE,
3809 // LOAD pair, targetting a temporary location (a stack slot).
3810 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3811 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00003812 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00003813 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3814 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3815 case Legal:
3816 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003817 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003818 break;
3819 case Promote:
3820 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003821 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3822 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003823 break;
3824 }
3825 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003826 }
Chris Lattner13c78e22005-09-02 00:18:10 +00003827 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003828 case ISD::ZERO_EXTEND:
3829 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003830 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003831 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003832 case Legal:
3833 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00003834 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00003835 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3836 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00003837 Tmp1 = TLI.LowerOperation(Result, DAG);
3838 if (Tmp1.Val) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00003839 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003840 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003841 case Promote:
3842 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003843 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003844 Tmp1 = PromoteOp(Node->getOperand(0));
3845 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003846 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003847 case ISD::ZERO_EXTEND:
3848 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003849 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003850 Result = DAG.getZeroExtendInReg(Result,
3851 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003852 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003853 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003854 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003855 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003856 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003857 Result,
3858 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003859 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003860 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003861 }
3862 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003863 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003864 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003865 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003866 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003867
3868 // If this operation is not supported, convert it to a shl/shr or load/store
3869 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003870 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3871 default: assert(0 && "This action not supported for this op yet!");
3872 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003873 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003874 break;
3875 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003876 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003877 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003878 // NOTE: we could fall back on load/store here too for targets without
3879 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003880 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
3881 ExtraVT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003882 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003883 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3884 Node->getOperand(0), ShiftCst);
3885 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3886 Result, ShiftCst);
3887 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003888 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003889 // EXTLOAD pair, targetting a temporary location (a stack slot).
3890
3891 // NOTE: there is a choice here between constantly creating new stack
3892 // slots and always reusing the same one. We currently always create
3893 // new ones, as reuse may inhibit scheduling.
Chris Lattnera66bb392008-01-16 07:51:34 +00003894 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3895 Node->getValueType(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00003896 } else {
3897 assert(0 && "Unknown op");
3898 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003899 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003900 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003901 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003902 }
Duncan Sands36397f52007-07-27 12:58:54 +00003903 case ISD::TRAMPOLINE: {
Dan Gohman475871a2008-07-27 21:46:04 +00003904 SDValue Ops[6];
Duncan Sands36397f52007-07-27 12:58:54 +00003905 for (unsigned i = 0; i != 6; ++i)
3906 Ops[i] = LegalizeOp(Node->getOperand(i));
3907 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3908 // The only option for this node is to custom lower it.
3909 Result = TLI.LowerOperation(Result, DAG);
3910 assert(Result.Val && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00003911
3912 // Since trampoline produces two values, make sure to remember that we
3913 // legalized both of them.
3914 Tmp1 = LegalizeOp(Result.getValue(1));
3915 Result = LegalizeOp(Result);
Dan Gohman475871a2008-07-27 21:46:04 +00003916 AddLegalizedOperand(SDValue(Node, 0), Result);
3917 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Duncan Sandsf7331b32007-09-11 14:10:23 +00003918 return Op.ResNo ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00003919 }
Dan Gohman9c78a392008-05-14 00:43:10 +00003920 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003921 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003922 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3923 default: assert(0 && "This action not supported for this op yet!");
3924 case TargetLowering::Custom:
3925 Result = TLI.LowerOperation(Op, DAG);
3926 if (Result.Val) break;
3927 // Fall Thru
3928 case TargetLowering::Legal:
3929 // If this operation is not supported, lower it to constant 1
3930 Result = DAG.getConstant(1, VT);
3931 break;
3932 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00003933 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003934 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003935 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003936 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003937 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3938 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00003939 case TargetLowering::Legal:
3940 Tmp1 = LegalizeOp(Node->getOperand(0));
3941 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3942 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003943 case TargetLowering::Custom:
3944 Result = TLI.LowerOperation(Op, DAG);
3945 if (Result.Val) break;
3946 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00003947 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003948 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00003949 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003950 TargetLowering::ArgListTy Args;
Dan Gohman475871a2008-07-27 21:46:04 +00003951 std::pair<SDValue,SDValue> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00003952 TLI.LowerCallTo(Tmp1, Type::VoidTy,
3953 false, false, false, CallingConv::C, false,
Chris Lattner034f12e2008-01-15 22:09:33 +00003954 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
3955 Args, DAG);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003956 Result = CallResult.second;
3957 break;
3958 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003959 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003960 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00003961 }
Chris Lattner456a93a2006-01-28 07:39:30 +00003962
Chris Lattner4ddd2832006-04-08 04:13:17 +00003963 assert(Result.getValueType() == Op.getValueType() &&
3964 "Bad legalization!");
3965
Chris Lattner456a93a2006-01-28 07:39:30 +00003966 // Make sure that the generated code is itself legal.
3967 if (Result != Op)
3968 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003969
Chris Lattner45982da2005-05-12 16:53:42 +00003970 // Note that LegalizeOp may be reentered even from single-use nodes, which
3971 // means that we always must cache transformed nodes.
3972 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003973 return Result;
3974}
3975
Chris Lattner8b6fa222005-01-15 22:16:26 +00003976/// PromoteOp - Given an operation that produces a value in an invalid type,
3977/// promote it to compute the value into a larger type. The produced value will
3978/// have the correct bits for the low portion of the register, but no guarantee
3979/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman475871a2008-07-27 21:46:04 +00003980SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003981 MVT VT = Op.getValueType();
3982 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00003983 assert(getTypeAction(VT) == Promote &&
3984 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00003985 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00003986 "Cannot promote to smaller type!");
3987
Dan Gohman475871a2008-07-27 21:46:04 +00003988 SDValue Tmp1, Tmp2, Tmp3;
3989 SDValue Result;
Chris Lattner03c85462005-01-15 05:21:40 +00003990 SDNode *Node = Op.Val;
3991
Dan Gohman475871a2008-07-27 21:46:04 +00003992 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00003993 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00003994
Chris Lattner03c85462005-01-15 05:21:40 +00003995 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00003996 case ISD::CopyFromReg:
3997 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00003998 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00003999#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004000 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004001#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004002 assert(0 && "Do not know how to promote this operator!");
4003 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004004 case ISD::UNDEF:
4005 Result = DAG.getNode(ISD::UNDEF, NVT);
4006 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004007 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004008 if (VT != MVT::i1)
4009 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4010 else
4011 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004012 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4013 break;
4014 case ISD::ConstantFP:
4015 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4016 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4017 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004018
Chris Lattner82fbfb62005-01-18 02:59:52 +00004019 case ISD::SETCC:
Scott Michel5b8f82e2008-03-10 15:42:14 +00004020 assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
Nate Begeman5922f562008-03-14 00:53:31 +00004021 && "SetCC type is not legal??");
Scott Michel5b8f82e2008-03-10 15:42:14 +00004022 Result = DAG.getNode(ISD::SETCC,
Nate Begeman5922f562008-03-14 00:53:31 +00004023 TLI.getSetCCResultType(Node->getOperand(0)),
4024 Node->getOperand(0), Node->getOperand(1),
4025 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004026 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00004027
Chris Lattner03c85462005-01-15 05:21:40 +00004028 case ISD::TRUNCATE:
4029 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4030 case Legal:
4031 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004032 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004033 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004034 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Chris Lattner03c85462005-01-15 05:21:40 +00004035 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4036 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004037 case Promote:
4038 // The truncation is not required, because we don't guarantee anything
4039 // about high bits anyway.
4040 Result = PromoteOp(Node->getOperand(0));
4041 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004042 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004043 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4044 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00004045 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004046 }
4047 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004048 case ISD::SIGN_EXTEND:
4049 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004050 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004051 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4052 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4053 case Legal:
4054 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00004055 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004056 break;
4057 case Promote:
4058 // Promote the reg if it's smaller.
4059 Result = PromoteOp(Node->getOperand(0));
4060 // The high bits are not guaranteed to be anything. Insert an extend.
4061 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00004062 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004063 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004064 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00004065 Result = DAG.getZeroExtendInReg(Result,
4066 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004067 break;
4068 }
4069 break;
Chris Lattner35481892005-12-23 00:16:34 +00004070 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004071 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4072 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00004073 Result = PromoteOp(Result);
4074 break;
4075
Chris Lattner8b6fa222005-01-15 22:16:26 +00004076 case ISD::FP_EXTEND:
4077 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4078 case ISD::FP_ROUND:
4079 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4080 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4081 case Promote: assert(0 && "Unreachable with 2 FP types!");
4082 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004083 if (Node->getConstantOperandVal(1) == 0) {
4084 // Input is legal? Do an FP_ROUND_INREG.
4085 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4086 DAG.getValueType(VT));
4087 } else {
4088 // Just remove the truncate, it isn't affecting the value.
4089 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4090 Node->getOperand(1));
4091 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004092 break;
4093 }
4094 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004095 case ISD::SINT_TO_FP:
4096 case ISD::UINT_TO_FP:
4097 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4098 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004099 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00004100 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004101 break;
4102
4103 case Promote:
4104 Result = PromoteOp(Node->getOperand(0));
4105 if (Node->getOpcode() == ISD::SINT_TO_FP)
4106 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004107 Result,
4108 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004109 else
Chris Lattner23993562005-04-13 02:38:47 +00004110 Result = DAG.getZeroExtendInReg(Result,
4111 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004112 // No extra round required here.
4113 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004114 break;
4115 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004116 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4117 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00004118 // Round if we cannot tolerate excess precision.
4119 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004120 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4121 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004122 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004123 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004124 break;
4125
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004126 case ISD::SIGN_EXTEND_INREG:
4127 Result = PromoteOp(Node->getOperand(0));
4128 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4129 Node->getOperand(1));
4130 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004131 case ISD::FP_TO_SINT:
4132 case ISD::FP_TO_UINT:
4133 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4134 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004135 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004136 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004137 break;
4138 case Promote:
4139 // The input result is prerounded, so we don't have to do anything
4140 // special.
4141 Tmp1 = PromoteOp(Node->getOperand(0));
4142 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004143 }
Nate Begemand2558e32005-08-14 01:20:53 +00004144 // If we're promoting a UINT to a larger size, check to see if the new node
4145 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4146 // we can use that instead. This allows us to generate better code for
4147 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4148 // legal, such as PowerPC.
4149 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004150 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004151 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4152 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00004153 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4154 } else {
4155 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4156 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004157 break;
4158
Chris Lattner2c8086f2005-04-02 05:00:07 +00004159 case ISD::FABS:
4160 case ISD::FNEG:
4161 Tmp1 = PromoteOp(Node->getOperand(0));
4162 assert(Tmp1.getValueType() == NVT);
4163 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4164 // NOTE: we do not have to do any extra rounding here for
4165 // NoExcessFPPrecision, because we know the input will have the appropriate
4166 // precision, and these operations don't modify precision at all.
4167 break;
4168
Chris Lattnerda6ba872005-04-28 21:44:33 +00004169 case ISD::FSQRT:
4170 case ISD::FSIN:
4171 case ISD::FCOS:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00004172 case ISD::FTRUNC:
4173 case ISD::FFLOOR:
4174 case ISD::FCEIL:
4175 case ISD::FRINT:
4176 case ISD::FNEARBYINT:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004177 Tmp1 = PromoteOp(Node->getOperand(0));
4178 assert(Tmp1.getValueType() == NVT);
4179 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004180 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004181 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4182 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004183 break;
4184
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004185 case ISD::FPOWI: {
4186 // Promote f32 powi to f64 powi. Note that this could insert a libcall
4187 // directly as well, which may be better.
4188 Tmp1 = PromoteOp(Node->getOperand(0));
4189 assert(Tmp1.getValueType() == NVT);
4190 Result = DAG.getNode(ISD::FPOWI, NVT, Tmp1, Node->getOperand(1));
4191 if (NoExcessFPPrecision)
4192 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4193 DAG.getValueType(VT));
4194 break;
4195 }
4196
Mon P Wang28873102008-06-25 08:15:39 +00004197 case ISD::ATOMIC_CMP_SWAP: {
4198 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004199 Tmp2 = PromoteOp(Node->getOperand(2));
4200 Tmp3 = PromoteOp(Node->getOperand(3));
Mon P Wang28873102008-06-25 08:15:39 +00004201 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4202 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004203 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004204 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004205 // Remember that we legalized the chain.
4206 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4207 break;
4208 }
Mon P Wang28873102008-06-25 08:15:39 +00004209 case ISD::ATOMIC_LOAD_ADD:
4210 case ISD::ATOMIC_LOAD_SUB:
Mon P Wang63307c32008-05-05 19:05:59 +00004211 case ISD::ATOMIC_LOAD_AND:
4212 case ISD::ATOMIC_LOAD_OR:
4213 case ISD::ATOMIC_LOAD_XOR:
Andrew Lenharth507a58a2008-06-14 05:48:15 +00004214 case ISD::ATOMIC_LOAD_NAND:
Mon P Wang63307c32008-05-05 19:05:59 +00004215 case ISD::ATOMIC_LOAD_MIN:
4216 case ISD::ATOMIC_LOAD_MAX:
4217 case ISD::ATOMIC_LOAD_UMIN:
4218 case ISD::ATOMIC_LOAD_UMAX:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004219 case ISD::ATOMIC_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004220 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004221 Tmp2 = PromoteOp(Node->getOperand(2));
Mon P Wang28873102008-06-25 08:15:39 +00004222 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4223 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004224 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004225 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004226 // Remember that we legalized the chain.
4227 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4228 break;
4229 }
4230
Chris Lattner03c85462005-01-15 05:21:40 +00004231 case ISD::AND:
4232 case ISD::OR:
4233 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004234 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004235 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004236 case ISD::MUL:
4237 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004238 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004239 // that too is okay if they are integer operations.
4240 Tmp1 = PromoteOp(Node->getOperand(0));
4241 Tmp2 = PromoteOp(Node->getOperand(1));
4242 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4243 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004244 break;
4245 case ISD::FADD:
4246 case ISD::FSUB:
4247 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004248 Tmp1 = PromoteOp(Node->getOperand(0));
4249 Tmp2 = PromoteOp(Node->getOperand(1));
4250 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4251 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4252
4253 // Floating point operations will give excess precision that we may not be
4254 // able to tolerate. If we DO allow excess precision, just leave it,
4255 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004256 // FIXME: Why would we need to round FP ops more than integer ones?
4257 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004258 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004259 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4260 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004261 break;
4262
Chris Lattner8b6fa222005-01-15 22:16:26 +00004263 case ISD::SDIV:
4264 case ISD::SREM:
4265 // These operators require that their input be sign extended.
4266 Tmp1 = PromoteOp(Node->getOperand(0));
4267 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004268 if (NVT.isInteger()) {
Chris Lattner15e4b012005-07-10 00:07:11 +00004269 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4270 DAG.getValueType(VT));
4271 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4272 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004273 }
4274 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4275
4276 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004277 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004278 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4279 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004280 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004281 case ISD::FDIV:
4282 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004283 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004284 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004285 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004286 case Expand: assert(0 && "not implemented");
4287 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4288 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004289 }
4290 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004291 case Expand: assert(0 && "not implemented");
4292 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4293 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004294 }
Chris Lattner01b3d732005-09-28 22:28:18 +00004295 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4296
4297 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004298 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00004299 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4300 DAG.getValueType(VT));
4301 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004302
4303 case ISD::UDIV:
4304 case ISD::UREM:
4305 // These operators require that their input be zero extended.
4306 Tmp1 = PromoteOp(Node->getOperand(0));
4307 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004308 assert(NVT.isInteger() && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00004309 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4310 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004311 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4312 break;
4313
4314 case ISD::SHL:
4315 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00004316 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004317 break;
4318 case ISD::SRA:
4319 // The input value must be properly sign extended.
4320 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00004321 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4322 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00004323 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004324 break;
4325 case ISD::SRL:
4326 // The input value must be properly zero extended.
4327 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00004328 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004329 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004330 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004331
4332 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004333 Tmp1 = Node->getOperand(0); // Get the chain.
4334 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004335 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4336 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004337 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004338 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004339 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman475871a2008-07-27 21:46:04 +00004340 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004341 // Increment the pointer, VAList, to the next vaarg
4342 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004343 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004344 TLI.getPointerTy()));
4345 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00004346 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004347 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004348 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004349 }
4350 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004351 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004352 break;
4353
Evan Cheng466685d2006-10-09 20:57:25 +00004354 case ISD::LOAD: {
4355 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004356 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4357 ? ISD::EXTLOAD : LD->getExtensionType();
4358 Result = DAG.getExtLoad(ExtType, NVT,
4359 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004360 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004361 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004362 LD->isVolatile(),
4363 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004364 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004365 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004366 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004367 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004368 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004369 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4370 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004371
Duncan Sands83ec4b62008-06-06 12:08:01 +00004372 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004373 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004374 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4375 // Ensure that the resulting node is at least the same size as the operands'
4376 // value types, because we cannot assume that TLI.getSetCCValueType() is
4377 // constant.
4378 Result = DAG.getNode(ISD::SELECT, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004379 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004380 }
Nate Begeman9373a812005-08-10 20:51:12 +00004381 case ISD::SELECT_CC:
4382 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4383 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4384 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004385 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004386 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004387 case ISD::BSWAP:
4388 Tmp1 = Node->getOperand(0);
4389 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4390 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4391 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004392 DAG.getConstant(NVT.getSizeInBits() -
4393 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004394 TLI.getShiftAmountTy()));
4395 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004396 case ISD::CTPOP:
4397 case ISD::CTTZ:
4398 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004399 // Zero extend the argument
4400 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004401 // Perform the larger operation, then subtract if needed.
4402 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004403 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004404 case ISD::CTPOP:
4405 Result = Tmp1;
4406 break;
4407 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004408 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004409 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004410 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004411 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004412 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004413 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004414 break;
4415 case ISD::CTLZ:
4416 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004417 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004418 DAG.getConstant(NVT.getSizeInBits() -
4419 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004420 break;
4421 }
4422 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004423 case ISD::EXTRACT_SUBVECTOR:
4424 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004425 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004426 case ISD::EXTRACT_VECTOR_ELT:
4427 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4428 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004429 }
4430
4431 assert(Result.Val && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004432
4433 // Make sure the result is itself legal.
4434 Result = LegalizeOp(Result);
4435
4436 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004437 AddPromotedOperand(Op, Result);
4438 return Result;
4439}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004440
Dan Gohman7f321562007-06-25 16:23:39 +00004441/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4442/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4443/// based on the vector type. The return type of this matches the element type
4444/// of the vector, which may not be legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00004445SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004446 // We know that operand #0 is the Vec vector. If the index is a constant
4447 // or if the invec is a supported hardware type, we can use it. Otherwise,
4448 // lower to a store then an indexed load.
Dan Gohman475871a2008-07-27 21:46:04 +00004449 SDValue Vec = Op.getOperand(0);
4450 SDValue Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00004451
Duncan Sands83ec4b62008-06-06 12:08:01 +00004452 MVT TVT = Vec.getValueType();
4453 unsigned NumElems = TVT.getVectorNumElements();
Chris Lattner15972212006-03-31 17:55:51 +00004454
Dan Gohman7f321562007-06-25 16:23:39 +00004455 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4456 default: assert(0 && "This action is not supported yet!");
4457 case TargetLowering::Custom: {
4458 Vec = LegalizeOp(Vec);
4459 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004460 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Dan Gohman7f321562007-06-25 16:23:39 +00004461 if (Tmp3.Val)
4462 return Tmp3;
4463 break;
4464 }
4465 case TargetLowering::Legal:
4466 if (isTypeLegal(TVT)) {
4467 Vec = LegalizeOp(Vec);
4468 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004469 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004470 }
4471 break;
4472 case TargetLowering::Expand:
4473 break;
4474 }
4475
4476 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004477 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004478 Op = ScalarizeVectorOp(Vec);
4479 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00004480 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00004481 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004482 SDValue Lo, Hi;
Chris Lattner15972212006-03-31 17:55:51 +00004483 SplitVectorOp(Vec, Lo, Hi);
Nate Begeman55030dc2008-01-29 02:24:00 +00004484 if (CIdx->getValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00004485 Vec = Lo;
4486 } else {
4487 Vec = Hi;
Nate Begeman55030dc2008-01-29 02:24:00 +00004488 Idx = DAG.getConstant(CIdx->getValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00004489 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00004490 }
Dan Gohman7f321562007-06-25 16:23:39 +00004491
Chris Lattner15972212006-03-31 17:55:51 +00004492 // It's now an extract from the appropriate high or low part. Recurse.
4493 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004494 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00004495 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004496 // Store the value to a temporary stack slot, then LOAD the scalar
4497 // element back out.
Dan Gohman475871a2008-07-27 21:46:04 +00004498 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
4499 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
Dan Gohman7f321562007-06-25 16:23:39 +00004500
4501 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004502 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dan Gohman7f321562007-06-25 16:23:39 +00004503 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4504 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004505
Duncan Sands8e4eb092008-06-08 20:54:56 +00004506 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Chris Lattnerf185e672007-10-19 16:47:35 +00004507 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004508 else
Chris Lattnerf185e672007-10-19 16:47:35 +00004509 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004510
Dan Gohman7f321562007-06-25 16:23:39 +00004511 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4512
4513 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00004514 }
Dan Gohman7f321562007-06-25 16:23:39 +00004515 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00004516}
4517
Dan Gohman7f321562007-06-25 16:23:39 +00004518/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00004519/// we assume the operation can be split if it is not already legal.
Dan Gohman475871a2008-07-27 21:46:04 +00004520SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohman65956352007-06-13 15:12:02 +00004521 // We know that operand #0 is the Vec vector. For now we assume the index
4522 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman475871a2008-07-27 21:46:04 +00004523 SDValue Vec = Op.getOperand(0);
4524 SDValue Idx = LegalizeOp(Op.getOperand(1));
Dan Gohman65956352007-06-13 15:12:02 +00004525
Duncan Sands83ec4b62008-06-06 12:08:01 +00004526 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Dan Gohman65956352007-06-13 15:12:02 +00004527
Duncan Sands83ec4b62008-06-06 12:08:01 +00004528 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00004529 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004530 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00004531 }
4532
4533 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004534 SDValue Lo, Hi;
Dan Gohman65956352007-06-13 15:12:02 +00004535 SplitVectorOp(Vec, Lo, Hi);
4536 if (CIdx->getValue() < NumElems/2) {
4537 Vec = Lo;
4538 } else {
4539 Vec = Hi;
4540 Idx = DAG.getConstant(CIdx->getValue() - NumElems/2, Idx.getValueType());
4541 }
4542
4543 // It's now an extract from the appropriate high or low part. Recurse.
4544 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004545 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00004546}
4547
Nate Begeman750ac1b2006-02-01 07:19:44 +00004548/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4549/// with condition CC on the current target. This usually involves legalizing
4550/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4551/// there may be no choice but to create a new SetCC node to represent the
4552/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman475871a2008-07-27 21:46:04 +00004553/// LHS, and the SDValue returned in RHS has a nil SDNode value.
4554void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
4555 SDValue &RHS,
4556 SDValue &CC) {
4557 SDValue Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004558
4559 switch (getTypeAction(LHS.getValueType())) {
4560 case Legal:
4561 Tmp1 = LegalizeOp(LHS); // LHS
4562 Tmp2 = LegalizeOp(RHS); // RHS
4563 break;
4564 case Promote:
4565 Tmp1 = PromoteOp(LHS); // LHS
4566 Tmp2 = PromoteOp(RHS); // RHS
4567
4568 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004569 if (LHS.getValueType().isInteger()) {
4570 MVT VT = LHS.getValueType();
4571 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00004572
4573 // Otherwise, we have to insert explicit sign or zero extends. Note
4574 // that we could insert sign extends for ALL conditions, but zero extend
4575 // is cheaper on many machines (an AND instead of two shifts), so prefer
4576 // it.
4577 switch (cast<CondCodeSDNode>(CC)->get()) {
4578 default: assert(0 && "Unknown integer comparison!");
4579 case ISD::SETEQ:
4580 case ISD::SETNE:
4581 case ISD::SETUGE:
4582 case ISD::SETUGT:
4583 case ISD::SETULE:
4584 case ISD::SETULT:
4585 // ALL of these operations will work if we either sign or zero extend
4586 // the operands (including the unsigned comparisons!). Zero extend is
4587 // usually a simpler/cheaper operation, so prefer it.
4588 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4589 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4590 break;
4591 case ISD::SETGE:
4592 case ISD::SETGT:
4593 case ISD::SETLT:
4594 case ISD::SETLE:
4595 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4596 DAG.getValueType(VT));
4597 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4598 DAG.getValueType(VT));
4599 break;
4600 }
4601 }
4602 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004603 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004604 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00004605 if (VT == MVT::f32 || VT == MVT::f64) {
4606 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00004607 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00004608 switch (cast<CondCodeSDNode>(CC)->get()) {
4609 case ISD::SETEQ:
4610 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00004611 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004612 break;
4613 case ISD::SETNE:
4614 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00004615 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004616 break;
4617 case ISD::SETGE:
4618 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00004619 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004620 break;
4621 case ISD::SETLT:
4622 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00004623 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004624 break;
4625 case ISD::SETLE:
4626 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00004627 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004628 break;
4629 case ISD::SETGT:
4630 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00004631 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004632 break;
4633 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00004634 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4635 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004636 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00004637 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004638 break;
4639 default:
Evan Cheng56966222007-01-12 02:11:51 +00004640 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004641 switch (cast<CondCodeSDNode>(CC)->get()) {
4642 case ISD::SETONE:
4643 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004644 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004645 // Fallthrough
4646 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004647 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004648 break;
4649 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004650 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004651 break;
4652 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004653 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004654 break;
4655 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004656 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004657 break;
Evan Cheng56966222007-01-12 02:11:51 +00004658 case ISD::SETUEQ:
4659 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004660 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004661 default: assert(0 && "Unsupported FP setcc!");
4662 }
4663 }
Duncan Sandsf9516202008-06-30 10:19:09 +00004664
Dan Gohman475871a2008-07-27 21:46:04 +00004665 SDValue Dummy;
4666 SDValue Ops[2] = { LHS, RHS };
Duncan Sands4bdcb612008-07-02 17:40:58 +00004667 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004668 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004669 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004670 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004671 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004672 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00004673 CC);
Duncan Sands4bdcb612008-07-02 17:40:58 +00004674 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2).Val,
Reid Spencerb47b25c2007-01-03 04:22:32 +00004675 false /*sign irrelevant*/, Dummy);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004676 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004677 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004678 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman475871a2008-07-27 21:46:04 +00004679 Tmp2 = SDValue();
Evan Cheng2b49c502006-12-15 02:59:56 +00004680 }
Evan Cheng21cacc42008-07-07 07:18:09 +00004681 LHS = LegalizeOp(Tmp1);
Evan Cheng2b49c502006-12-15 02:59:56 +00004682 RHS = Tmp2;
4683 return;
4684 }
4685
Dan Gohman475871a2008-07-27 21:46:04 +00004686 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004687 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004688 ExpandOp(RHS, RHSLo, RHSHi);
4689 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4690
4691 if (VT==MVT::ppcf128) {
4692 // FIXME: This generated code sucks. We want to generate
4693 // FCMP crN, hi1, hi2
4694 // BNE crN, L:
4695 // FCMP crN, lo1, lo2
4696 // The following can be improved, but not that much.
Scott Michel5b8f82e2008-03-10 15:42:14 +00004697 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETEQ);
4698 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004699 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004700 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, ISD::SETNE);
4701 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004702 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4703 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman475871a2008-07-27 21:46:04 +00004704 Tmp2 = SDValue();
Dale Johannesen638ccd52007-10-06 01:24:11 +00004705 break;
4706 }
4707
4708 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004709 case ISD::SETEQ:
4710 case ISD::SETNE:
4711 if (RHSLo == RHSHi)
4712 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4713 if (RHSCST->isAllOnesValue()) {
4714 // Comparison to -1.
4715 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4716 Tmp2 = RHSLo;
4717 break;
4718 }
4719
4720 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4721 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4722 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4723 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4724 break;
4725 default:
4726 // If this is a comparison of the sign bit, just look at the top part.
4727 // X > -1, x < 0
4728 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4729 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004730 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00004731 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4732 CST->isAllOnesValue())) { // X > -1
4733 Tmp1 = LHSHi;
4734 Tmp2 = RHSHi;
4735 break;
4736 }
4737
4738 // FIXME: This generated code sucks.
4739 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004740 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004741 default: assert(0 && "Unknown integer setcc!");
4742 case ISD::SETLT:
4743 case ISD::SETULT: LowCC = ISD::SETULT; break;
4744 case ISD::SETGT:
4745 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4746 case ISD::SETLE:
4747 case ISD::SETULE: LowCC = ISD::SETULE; break;
4748 case ISD::SETGE:
4749 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4750 }
4751
4752 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4753 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4754 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4755
4756 // NOTE: on targets without efficient SELECT of bools, we can always use
4757 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004758 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004759 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
Nate Begeman5922f562008-03-14 00:53:31 +00004760 LowCC, false, DagCombineInfo);
Evan Cheng2e677812007-02-08 22:16:19 +00004761 if (!Tmp1.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004762 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4763 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004764 CCCode, false, DagCombineInfo);
4765 if (!Tmp2.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004766 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004767 RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00004768
4769 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.Val);
4770 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.Val);
Dan Gohman002e5d02008-03-13 22:13:53 +00004771 if ((Tmp1C && Tmp1C->isNullValue()) ||
4772 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00004773 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4774 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00004775 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00004776 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4777 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4778 // low part is known false, returns high part.
4779 // For LE / GE, if high part is known false, ignore the low part.
4780 // For LT / GT, if high part is known true, ignore the low part.
4781 Tmp1 = Tmp2;
Dan Gohman475871a2008-07-27 21:46:04 +00004782 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00004783 } else {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004784 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004785 ISD::SETEQ, false, DagCombineInfo);
4786 if (!Result.Val)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004787 Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004788 ISD::SETEQ);
Evan Cheng2e677812007-02-08 22:16:19 +00004789 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4790 Result, Tmp1, Tmp2));
4791 Tmp1 = Result;
Dan Gohman475871a2008-07-27 21:46:04 +00004792 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00004793 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004794 }
4795 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004796 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004797 LHS = Tmp1;
4798 RHS = Tmp2;
4799}
4800
Chris Lattner1401d152008-01-16 07:45:30 +00004801/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4802/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4803/// a load from the stack slot to DestVT, extending it if needed.
4804/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00004805SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
4806 MVT SlotVT,
4807 MVT DestVT) {
Chris Lattner35481892005-12-23 00:16:34 +00004808 // Create the stack frame object.
Mon P Wang364d73d2008-07-05 20:40:31 +00004809 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
4810 SrcOp.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00004811 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Mon P Wang364d73d2008-07-05 20:40:31 +00004812
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004813 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004814 int SPFI = StackPtrFI->getIndex();
Mon P Wang364d73d2008-07-05 20:40:31 +00004815
Duncan Sands83ec4b62008-06-06 12:08:01 +00004816 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
4817 unsigned SlotSize = SlotVT.getSizeInBits();
4818 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang364d73d2008-07-05 20:40:31 +00004819 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
4820 DestVT.getTypeForMVT());
Chris Lattner35481892005-12-23 00:16:34 +00004821
Chris Lattner1401d152008-01-16 07:45:30 +00004822 // Emit a store to the stack slot. Use a truncstore if the input value is
4823 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00004824 SDValue Store;
Mon P Wang364d73d2008-07-05 20:40:31 +00004825
Chris Lattner1401d152008-01-16 07:45:30 +00004826 if (SrcSize > SlotSize)
Dan Gohman69de1932008-02-06 22:27:42 +00004827 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004828 PseudoSourceValue::getFixedStack(SPFI), 0,
4829 SlotVT, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004830 else {
4831 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman69de1932008-02-06 22:27:42 +00004832 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004833 PseudoSourceValue::getFixedStack(SPFI), 0,
Mon P Wang364d73d2008-07-05 20:40:31 +00004834 false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004835 }
4836
Chris Lattner35481892005-12-23 00:16:34 +00004837 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00004838 if (SlotSize == DestSize)
Mon P Wang364d73d2008-07-05 20:40:31 +00004839 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0, false, DestAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004840
4841 assert(SlotSize < DestSize && "Unknown extension!");
Mon P Wang364d73d2008-07-05 20:40:31 +00004842 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT,
4843 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00004844}
4845
Dan Gohman475871a2008-07-27 21:46:04 +00004846SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Chris Lattner4352cc92006-04-04 17:23:26 +00004847 // Create a vector sized/aligned stack slot, store the value to element #0,
4848 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00004849 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00004850
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004851 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004852 int SPFI = StackPtrFI->getIndex();
4853
Dan Gohman475871a2008-07-27 21:46:04 +00004854 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004855 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohman69de1932008-02-06 22:27:42 +00004856 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004857 PseudoSourceValue::getFixedStack(SPFI), 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00004858}
4859
4860
Chris Lattnerce872152006-03-19 06:31:19 +00004861/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004862/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00004863SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Chris Lattnerce872152006-03-19 06:31:19 +00004864
4865 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004866 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004867 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004868 bool isOnlyLowElement = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004869 SDValue SplatValue = Node->getOperand(0);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004870
Dan Gohman475871a2008-07-27 21:46:04 +00004871 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004872 // and use a bitmask instead of a list of elements.
Dan Gohman475871a2008-07-27 21:46:04 +00004873 std::map<SDValue, std::vector<unsigned> > Values;
Evan Cheng033e6812006-03-24 01:17:21 +00004874 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004875 bool isConstant = true;
4876 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4877 SplatValue.getOpcode() != ISD::UNDEF)
4878 isConstant = false;
4879
Evan Cheng033e6812006-03-24 01:17:21 +00004880 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004881 SDValue V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004882 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004883 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004884 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004885 if (SplatValue != V)
Dan Gohman475871a2008-07-27 21:46:04 +00004886 SplatValue = SDValue(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004887
4888 // If this isn't a constant element or an undef, we can't use a constant
4889 // pool load.
4890 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4891 V.getOpcode() != ISD::UNDEF)
4892 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004893 }
4894
4895 if (isOnlyLowElement) {
4896 // If the low element is an undef too, then this whole things is an undef.
4897 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4898 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4899 // Otherwise, turn this into a scalar_to_vector node.
4900 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4901 Node->getOperand(0));
4902 }
4903
Chris Lattner2eb86532006-03-24 07:29:17 +00004904 // If all elements are constants, create a load from the constant pool.
4905 if (isConstant) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004906 MVT VT = Node->getValueType(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004907 std::vector<Constant*> CV;
4908 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4909 if (ConstantFPSDNode *V =
4910 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Chris Lattner02a260a2008-04-20 00:41:09 +00004911 CV.push_back(ConstantFP::get(V->getValueAPF()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004912 } else if (ConstantSDNode *V =
Chris Lattner02a260a2008-04-20 00:41:09 +00004913 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
4914 CV.push_back(ConstantInt::get(V->getAPIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004915 } else {
4916 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner02a260a2008-04-20 00:41:09 +00004917 const Type *OpNTy =
Duncan Sands83ec4b62008-06-06 12:08:01 +00004918 Node->getOperand(0).getValueType().getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00004919 CV.push_back(UndefValue::get(OpNTy));
4920 }
4921 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00004922 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00004923 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman69de1932008-02-06 22:27:42 +00004924 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00004925 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004926 }
4927
Chris Lattner87100e02006-03-20 01:52:29 +00004928 if (SplatValue.Val) { // Splat of one value?
4929 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands83ec4b62008-06-06 12:08:01 +00004930 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman475871a2008-07-27 21:46:04 +00004931 SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
4932 std::vector<SDValue> ZeroVec(NumElems, Zero);
4933 SDValue SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004934 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00004935
4936 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004937 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00004938 // Get the splatted value into the low element of a vector register.
Dan Gohman475871a2008-07-27 21:46:04 +00004939 SDValue LowValVec =
Chris Lattner87100e02006-03-20 01:52:29 +00004940 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
4941
4942 // Return shuffle(LowValVec, undef, <0,0,0,0>)
4943 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
4944 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
4945 SplatMask);
4946 }
4947 }
4948
Evan Cheng033e6812006-03-24 01:17:21 +00004949 // If there are only two unique elements, we may be able to turn this into a
4950 // vector shuffle.
4951 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004952 // Get the two values in deterministic order.
Dan Gohman475871a2008-07-27 21:46:04 +00004953 SDValue Val1 = Node->getOperand(1);
4954 SDValue Val2;
4955 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004956 if (MI->first != Val1)
4957 Val2 = MI->first;
4958 else
4959 Val2 = (++MI)->first;
4960
4961 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
4962 // vector shuffle has the undef vector on the RHS.
4963 if (Val1.getOpcode() == ISD::UNDEF)
4964 std::swap(Val1, Val2);
4965
Evan Cheng033e6812006-03-24 01:17:21 +00004966 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands83ec4b62008-06-06 12:08:01 +00004967 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
4968 MVT MaskEltVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00004969 std::vector<SDValue> MaskVec(NumElems);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004970
4971 // Set elements of the shuffle mask for Val1.
4972 std::vector<unsigned> &Val1Elts = Values[Val1];
4973 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
4974 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
4975
4976 // Set elements of the shuffle mask for Val2.
4977 std::vector<unsigned> &Val2Elts = Values[Val2];
4978 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
4979 if (Val2.getOpcode() != ISD::UNDEF)
4980 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
4981 else
4982 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
4983
Dan Gohman475871a2008-07-27 21:46:04 +00004984 SDValue ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00004985 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00004986
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004987 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00004988 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
4989 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004990 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
4991 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
Dan Gohman475871a2008-07-27 21:46:04 +00004992 SDValue Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng033e6812006-03-24 01:17:21 +00004993
4994 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004995 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Evan Cheng033e6812006-03-24 01:17:21 +00004996 }
4997 }
Chris Lattnerce872152006-03-19 06:31:19 +00004998
4999 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5000 // aligned object on the stack, store each element into it, then load
5001 // the result as a vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005002 MVT VT = Node->getValueType(0);
Chris Lattnerce872152006-03-19 06:31:19 +00005003 // Create the stack frame object.
Dan Gohman475871a2008-07-27 21:46:04 +00005004 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005005
5006 // Emit a store of each element to the stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00005007 SmallVector<SDValue, 8> Stores;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005008 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Chris Lattnerce872152006-03-19 06:31:19 +00005009 // Store (in the right endianness) the elements to memory.
5010 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5011 // Ignore undef elements.
5012 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5013
Chris Lattner841c8822006-03-22 01:46:54 +00005014 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00005015
Dan Gohman475871a2008-07-27 21:46:04 +00005016 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Chris Lattnerce872152006-03-19 06:31:19 +00005017 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5018
Evan Cheng786225a2006-10-05 23:01:46 +00005019 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00005020 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00005021 }
5022
Dan Gohman475871a2008-07-27 21:46:04 +00005023 SDValue StoreChain;
Chris Lattnerce872152006-03-19 06:31:19 +00005024 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005025 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5026 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005027 else
5028 StoreChain = DAG.getEntryNode();
5029
5030 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00005031 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005032}
5033
Chris Lattner5b359c62005-04-02 04:00:59 +00005034void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman475871a2008-07-27 21:46:04 +00005035 SDValue Op, SDValue Amt,
5036 SDValue &Lo, SDValue &Hi) {
Chris Lattner5b359c62005-04-02 04:00:59 +00005037 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00005038 SDValue LHSL, LHSH;
Chris Lattner5b359c62005-04-02 04:00:59 +00005039 ExpandOp(Op, LHSL, LHSH);
5040
Dan Gohman475871a2008-07-27 21:46:04 +00005041 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005042 MVT VT = LHSL.getValueType();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00005043 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005044 Hi = Lo.getValue(1);
5045}
5046
5047
Chris Lattnere34b3962005-01-19 04:19:40 +00005048/// ExpandShift - Try to find a clever way to expand this shift operation out to
5049/// smaller elements. If we can't find a way that is more efficient than a
5050/// libcall on this target, return false. Otherwise, return true with the
5051/// low-parts expanded into Lo and Hi.
Dan Gohman475871a2008-07-27 21:46:04 +00005052bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op,SDValue Amt,
5053 SDValue &Lo, SDValue &Hi) {
Chris Lattnere34b3962005-01-19 04:19:40 +00005054 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5055 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005056
Duncan Sands83ec4b62008-06-06 12:08:01 +00005057 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman475871a2008-07-27 21:46:04 +00005058 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005059 MVT ShTy = ShAmt.getValueType();
5060 unsigned ShBits = ShTy.getSizeInBits();
5061 unsigned VTBits = Op.getValueType().getSizeInBits();
5062 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005063
Chris Lattner7a3c8552007-10-14 20:35:12 +00005064 // Handle the case when Amt is an immediate.
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005065 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.Val)) {
5066 unsigned Cst = CN->getValue();
5067 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005068 SDValue InL, InH;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005069 ExpandOp(Op, InL, InH);
5070 switch(Opc) {
5071 case ISD::SHL:
5072 if (Cst > VTBits) {
5073 Lo = DAG.getConstant(0, NVT);
5074 Hi = DAG.getConstant(0, NVT);
5075 } else if (Cst > NVTBits) {
5076 Lo = DAG.getConstant(0, NVT);
5077 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005078 } else if (Cst == NVTBits) {
5079 Lo = DAG.getConstant(0, NVT);
5080 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005081 } else {
5082 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5083 Hi = DAG.getNode(ISD::OR, NVT,
5084 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5085 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5086 }
5087 return true;
5088 case ISD::SRL:
5089 if (Cst > VTBits) {
5090 Lo = DAG.getConstant(0, NVT);
5091 Hi = DAG.getConstant(0, NVT);
5092 } else if (Cst > NVTBits) {
5093 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5094 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005095 } else if (Cst == NVTBits) {
5096 Lo = InH;
5097 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005098 } else {
5099 Lo = DAG.getNode(ISD::OR, NVT,
5100 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5101 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5102 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5103 }
5104 return true;
5105 case ISD::SRA:
5106 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005107 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005108 DAG.getConstant(NVTBits-1, ShTy));
5109 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005110 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005111 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005112 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005113 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005114 } else if (Cst == NVTBits) {
5115 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00005116 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005117 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005118 } else {
5119 Lo = DAG.getNode(ISD::OR, NVT,
5120 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5121 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5122 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5123 }
5124 return true;
5125 }
5126 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005127
5128 // Okay, the shift amount isn't constant. However, if we can tell that it is
5129 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005130 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5131 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005132 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005133
Dan Gohman9e255b72008-02-22 01:12:31 +00005134 // If we know that if any of the high bits of the shift amount are one, then
5135 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005136 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005137 // Mask out the high bit, which we know is set.
5138 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005139 DAG.getConstant(~Mask, Amt.getValueType()));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005140
5141 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005142 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005143 ExpandOp(Op, InL, InH);
5144 switch(Opc) {
5145 case ISD::SHL:
5146 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5147 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5148 return true;
5149 case ISD::SRL:
5150 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5151 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5152 return true;
5153 case ISD::SRA:
5154 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5155 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5156 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5157 return true;
5158 }
5159 }
5160
Dan Gohman9e255b72008-02-22 01:12:31 +00005161 // If we know that the high bits of the shift amount are all zero, then we can
5162 // do this as a couple of simple shifts.
5163 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005164 // Compute 32-amt.
Dan Gohman475871a2008-07-27 21:46:04 +00005165 SDValue Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005166 DAG.getConstant(NVTBits, Amt.getValueType()),
5167 Amt);
5168
5169 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005170 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005171 ExpandOp(Op, InL, InH);
5172 switch(Opc) {
5173 case ISD::SHL:
5174 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5175 Hi = DAG.getNode(ISD::OR, NVT,
5176 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5177 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5178 return true;
5179 case ISD::SRL:
5180 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5181 Lo = DAG.getNode(ISD::OR, NVT,
5182 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5183 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5184 return true;
5185 case ISD::SRA:
5186 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5187 Lo = DAG.getNode(ISD::OR, NVT,
5188 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5189 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5190 return true;
5191 }
5192 }
5193
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005194 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005195}
Chris Lattner77e77a62005-01-21 06:05:23 +00005196
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005197
Chris Lattner77e77a62005-01-21 06:05:23 +00005198// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5199// does not fit into a register, return the lo part and set the hi part to the
5200// by-reg argument. If it does fit into a single register, return the result
5201// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00005202SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5203 bool isSigned, SDValue &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005204 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5205 // The input chain to this libcall is the entry node of the function.
5206 // Legalizing the call will automatically add the previous call to the
5207 // dependence.
Dan Gohman475871a2008-07-27 21:46:04 +00005208 SDValue InChain = DAG.getEntryNode();
Chris Lattner6831a812006-02-13 09:18:02 +00005209
Chris Lattner77e77a62005-01-21 06:05:23 +00005210 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005211 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005212 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005213 MVT ArgVT = Node->getOperand(i).getValueType();
5214 const Type *ArgTy = ArgVT.getTypeForMVT();
Reid Spencer47857812006-12-31 05:55:36 +00005215 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005216 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005217 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005218 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005219 }
Dan Gohman475871a2008-07-27 21:46:04 +00005220 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Duncan Sands460a14e2008-04-12 17:14:18 +00005221 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005222
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005223 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005224 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Dan Gohman475871a2008-07-27 21:46:04 +00005225 std::pair<SDValue,SDValue> CallInfo =
Duncan Sands00fee652008-02-14 17:28:50 +00005226 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, CallingConv::C,
5227 false, Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005228
Chris Lattner6831a812006-02-13 09:18:02 +00005229 // Legalize the call sequence, starting with the chain. This will advance
5230 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5231 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5232 LegalizeOp(CallInfo.second);
Dan Gohman475871a2008-07-27 21:46:04 +00005233 SDValue Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005234 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005235 default: assert(0 && "Unknown thing");
5236 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005237 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005238 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005239 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005240 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005241 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005242 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005243 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005244}
5245
Dan Gohman7f8613e2008-08-14 20:04:46 +00005246/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5247///
5248SDValue SelectionDAGLegalize::
5249LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op) {
5250 bool isCustom = false;
5251 SDValue Tmp1;
5252 switch (getTypeAction(Op.getValueType())) {
5253 case Legal:
5254 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5255 Op.getValueType())) {
5256 default: assert(0 && "Unknown operation action!");
5257 case TargetLowering::Custom:
5258 isCustom = true;
5259 // FALLTHROUGH
5260 case TargetLowering::Legal:
5261 Tmp1 = LegalizeOp(Op);
5262 if (Result.Val)
5263 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5264 else
5265 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5266 DestTy, Tmp1);
5267 if (isCustom) {
5268 Tmp1 = TLI.LowerOperation(Result, DAG);
5269 if (Tmp1.Val) Result = Tmp1;
5270 }
5271 break;
5272 case TargetLowering::Expand:
5273 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy);
5274 break;
5275 case TargetLowering::Promote:
5276 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned);
5277 break;
5278 }
5279 break;
5280 case Expand:
5281 Result = ExpandIntToFP(isSigned, DestTy, Op);
5282 break;
5283 case Promote:
5284 Tmp1 = PromoteOp(Op);
5285 if (isSigned) {
5286 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
5287 Tmp1, DAG.getValueType(Op.getValueType()));
5288 } else {
5289 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
5290 Op.getValueType());
5291 }
5292 if (Result.Val)
5293 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5294 else
5295 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5296 DestTy, Tmp1);
5297 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5298 break;
5299 }
5300 return Result;
5301}
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005302
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005303/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5304///
Dan Gohman475871a2008-07-27 21:46:04 +00005305SDValue SelectionDAGLegalize::
5306ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005307 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005308 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005309
Dan Gohman7f8613e2008-08-14 20:04:46 +00005310 // Expand unsupported int-to-fp vector casts by unrolling them.
5311 if (DestTy.isVector()) {
5312 if (!ExpandSource)
5313 return LegalizeOp(UnrollVectorOp(Source));
5314 MVT DestEltTy = DestTy.getVectorElementType();
5315 if (DestTy.getVectorNumElements() == 1) {
5316 SDValue Scalar = ScalarizeVectorOp(Source);
5317 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
5318 DestEltTy, Scalar);
5319 return DAG.getNode(ISD::BUILD_VECTOR, DestTy, Result);
5320 }
5321 SDValue Lo, Hi;
5322 SplitVectorOp(Source, Lo, Hi);
5323 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5324 DestTy.getVectorNumElements() / 2);
5325 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Lo);
5326 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Hi);
5327 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, DestTy, LoResult, HiResult));
5328 }
5329
Evan Cheng9845eb52008-04-01 02:18:22 +00005330 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5331 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005332 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005333 // incoming integer is set. To handle this, we dynamically test to see if
5334 // it is set, and, if so, add a fudge factor.
Dan Gohman475871a2008-07-27 21:46:04 +00005335 SDValue Hi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005336 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005337 SDValue Lo;
Dan Gohman034f60e2008-03-11 01:59:03 +00005338 ExpandOp(Source, Lo, Hi);
5339 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5340 } else {
5341 // The comparison for the sign bit will use the entire operand.
5342 Hi = Source;
5343 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005344
Chris Lattner66de05b2005-05-13 04:45:13 +00005345 // If this is unsigned, and not supported, first perform the conversion to
5346 // signed, then adjust the result if the sign bit is set.
Dan Gohman475871a2008-07-27 21:46:04 +00005347 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source);
Chris Lattner66de05b2005-05-13 04:45:13 +00005348
Dan Gohman475871a2008-07-27 21:46:04 +00005349 SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005350 DAG.getConstant(0, Hi.getValueType()),
5351 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00005352 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5353 SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
Chris Lattnere9c35e72005-04-13 05:09:42 +00005354 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005355 uint64_t FF = 0x5f800000ULL;
5356 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohman34bc1782008-03-05 02:07:31 +00005357 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005358
Dan Gohman475871a2008-07-27 21:46:04 +00005359 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00005360 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman475871a2008-07-27 21:46:04 +00005361 SDValue FudgeInReg;
Chris Lattnere9c35e72005-04-13 05:09:42 +00005362 if (DestTy == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005363 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005364 PseudoSourceValue::getConstantPool(), 0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005365 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005366 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005367 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005368 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005369 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005370 MVT::f32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005371 else
5372 assert(0 && "Unexpected conversion");
5373
Duncan Sands83ec4b62008-06-06 12:08:01 +00005374 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005375 if (SCVT != DestTy) {
5376 // Destination type needs to be expanded as well. The FADD now we are
5377 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005378 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5379 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dan Gohmand91446d2008-03-05 01:08:17 +00005380 SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005381 SignedConv, SignedConv.getValue(1));
5382 }
5383 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5384 }
Chris Lattner473a9902005-09-29 06:44:39 +00005385 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005386 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005387
Chris Lattnera88a2602005-05-14 05:33:54 +00005388 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00005389 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00005390 default: assert(0 && "This action not implemented for this operation!");
5391 case TargetLowering::Legal:
5392 case TargetLowering::Expand:
5393 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005394 case TargetLowering::Custom: {
Dan Gohman475871a2008-07-27 21:46:04 +00005395 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
Chris Lattner07dffd62005-08-26 00:14:16 +00005396 Source), DAG);
5397 if (NV.Val)
5398 return LegalizeOp(NV);
5399 break; // The target decided this was legal after all
5400 }
Chris Lattnera88a2602005-05-14 05:33:54 +00005401 }
5402
Chris Lattner13689e22005-05-12 07:00:44 +00005403 // Expand the source, then glue it back together for the call. We must expand
5404 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00005405 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005406 SDValue SrcLo, SrcHi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005407 ExpandOp(Source, SrcLo, SrcHi);
5408 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5409 }
Chris Lattner13689e22005-05-12 07:00:44 +00005410
Duncan Sandsb2ff8852008-07-17 02:36:29 +00005411 RTLIB::Libcall LC = isSigned ?
5412 RTLIB::getSINTTOFP(SourceVT, DestTy) :
5413 RTLIB::getUINTTOFP(SourceVT, DestTy);
5414 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
5415
Chris Lattner6831a812006-02-13 09:18:02 +00005416 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
Dan Gohman475871a2008-07-27 21:46:04 +00005417 SDValue HiPart;
5418 SDValue Result = ExpandLibCall(LC, Source.Val, isSigned, HiPart);
Evan Cheng110cf482008-04-01 01:50:16 +00005419 if (Result.getValueType() != DestTy && HiPart.Val)
Dan Gohmana2e94852008-03-10 23:03:31 +00005420 Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5421 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005422}
Misha Brukmanedf128a2005-04-21 22:36:52 +00005423
Chris Lattner22cde6a2006-01-28 08:25:58 +00005424/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5425/// INT_TO_FP operation of the specified operand when the target requests that
5426/// we expand it. At this point, we know that the result and operand types are
5427/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00005428SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5429 SDValue Op0,
5430 MVT DestVT) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005431 if (Op0.getValueType() == MVT::i32) {
5432 // simple 32-bit [signed|unsigned] integer to float/double expansion
5433
Chris Lattner23594d42008-01-16 07:03:22 +00005434 // Get the stack frame index of a 8 byte buffer.
Dan Gohman475871a2008-07-27 21:46:04 +00005435 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Chris Lattner23594d42008-01-16 07:03:22 +00005436
Chris Lattner22cde6a2006-01-28 08:25:58 +00005437 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00005438 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00005439 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00005440 SDValue Hi = StackSlot;
5441 SDValue Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00005442 if (TLI.isLittleEndian())
5443 std::swap(Hi, Lo);
5444
Chris Lattner22cde6a2006-01-28 08:25:58 +00005445 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00005446 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005447 if (isSigned) {
5448 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman475871a2008-07-27 21:46:04 +00005449 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005450 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5451 } else {
5452 Op0Mapped = Op0;
5453 }
5454 // store the lo of the constructed double - based on integer input
Dan Gohman475871a2008-07-27 21:46:04 +00005455 SDValue Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005456 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005457 // initial hi portion of constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00005458 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005459 // store the hi of the constructed double - biased exponent
Dan Gohman475871a2008-07-27 21:46:04 +00005460 SDValue Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005461 // load the constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00005462 SDValue Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005463 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00005464 SDValue Bias = DAG.getConstantFP(isSigned ?
Chris Lattner22cde6a2006-01-28 08:25:58 +00005465 BitsToDouble(0x4330000080000000ULL)
5466 : BitsToDouble(0x4330000000000000ULL),
5467 MVT::f64);
5468 // subtract the bias
Dan Gohman475871a2008-07-27 21:46:04 +00005469 SDValue Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005470 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00005471 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005472 // handle final rounding
5473 if (DestVT == MVT::f64) {
5474 // do nothing
5475 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00005476 } else if (DestVT.bitsLT(MVT::f64)) {
Chris Lattner0bd48932008-01-17 07:00:52 +00005477 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5478 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005479 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005480 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005481 }
5482 return Result;
5483 }
5484 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dan Gohman475871a2008-07-27 21:46:04 +00005485 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005486
Dan Gohman475871a2008-07-27 21:46:04 +00005487 SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005488 DAG.getConstant(0, Op0.getValueType()),
5489 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00005490 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5491 SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005492 SignSet, Four, Zero);
5493
5494 // If the sign bit of the integer is set, the large number will be treated
5495 // as a negative number. To counteract this, the dynamic code adds an
5496 // offset depending on the data type.
5497 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005498 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005499 default: assert(0 && "Unsupported integer type!");
5500 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5501 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5502 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5503 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5504 }
5505 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005506 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005507
Dan Gohman475871a2008-07-27 21:46:04 +00005508 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00005509 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman475871a2008-07-27 21:46:04 +00005510 SDValue FudgeInReg;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005511 if (DestVT == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005512 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005513 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005514 else {
Dan Gohman69de1932008-02-06 22:27:42 +00005515 FudgeInReg =
5516 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5517 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005518 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005519 MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00005520 }
5521
5522 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5523}
5524
5525/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5526/// *INT_TO_FP operation of the specified operand when the target requests that
5527/// we promote it. At this point, we know that the result and operand types are
5528/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5529/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00005530SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
5531 MVT DestVT,
5532 bool isSigned) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005533 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005534 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005535
5536 unsigned OpToUse = 0;
5537
5538 // Scan for the appropriate larger type to use.
5539 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005540 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
5541 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005542
5543 // If the target supports SINT_TO_FP of this type, use it.
5544 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5545 default: break;
5546 case TargetLowering::Legal:
5547 if (!TLI.isTypeLegal(NewInTy))
5548 break; // Can't use this datatype.
5549 // FALL THROUGH.
5550 case TargetLowering::Custom:
5551 OpToUse = ISD::SINT_TO_FP;
5552 break;
5553 }
5554 if (OpToUse) break;
5555 if (isSigned) continue;
5556
5557 // If the target supports UINT_TO_FP of this type, use it.
5558 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5559 default: break;
5560 case TargetLowering::Legal:
5561 if (!TLI.isTypeLegal(NewInTy))
5562 break; // Can't use this datatype.
5563 // FALL THROUGH.
5564 case TargetLowering::Custom:
5565 OpToUse = ISD::UINT_TO_FP;
5566 break;
5567 }
5568 if (OpToUse) break;
5569
5570 // Otherwise, try a larger type.
5571 }
5572
5573 // Okay, we found the operation and type to use. Zero extend our input to the
5574 // desired type then run the operation on it.
5575 return DAG.getNode(OpToUse, DestVT,
5576 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5577 NewInTy, LegalOp));
5578}
5579
5580/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5581/// FP_TO_*INT operation of the specified operand when the target requests that
5582/// we promote it. At this point, we know that the result and operand types are
5583/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5584/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00005585SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
5586 MVT DestVT,
5587 bool isSigned) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005588 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005589 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005590
5591 unsigned OpToUse = 0;
5592
5593 // Scan for the appropriate larger type to use.
5594 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005595 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
5596 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005597
5598 // If the target supports FP_TO_SINT returning this type, use it.
5599 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5600 default: break;
5601 case TargetLowering::Legal:
5602 if (!TLI.isTypeLegal(NewOutTy))
5603 break; // Can't use this datatype.
5604 // FALL THROUGH.
5605 case TargetLowering::Custom:
5606 OpToUse = ISD::FP_TO_SINT;
5607 break;
5608 }
5609 if (OpToUse) break;
5610
5611 // If the target supports FP_TO_UINT of this type, use it.
5612 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5613 default: break;
5614 case TargetLowering::Legal:
5615 if (!TLI.isTypeLegal(NewOutTy))
5616 break; // Can't use this datatype.
5617 // FALL THROUGH.
5618 case TargetLowering::Custom:
5619 OpToUse = ISD::FP_TO_UINT;
5620 break;
5621 }
5622 if (OpToUse) break;
5623
5624 // Otherwise, try a larger type.
5625 }
5626
Chris Lattner27a6c732007-11-24 07:07:01 +00005627
5628 // Okay, we found the operation and type to use.
Dan Gohman475871a2008-07-27 21:46:04 +00005629 SDValue Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00005630
Chris Lattner27a6c732007-11-24 07:07:01 +00005631 // If the operation produces an invalid type, it must be custom lowered. Use
5632 // the target lowering hooks to expand it. Just keep the low part of the
5633 // expanded operation, we know that we're truncating anyway.
5634 if (getTypeAction(NewOutTy) == Expand) {
Dan Gohman475871a2008-07-27 21:46:04 +00005635 Operation = SDValue(TLI.ReplaceNodeResults(Operation.Val, DAG), 0);
Chris Lattner27a6c732007-11-24 07:07:01 +00005636 assert(Operation.Val && "Didn't return anything");
5637 }
Duncan Sands126d9072008-07-04 11:47:58 +00005638
Chris Lattner27a6c732007-11-24 07:07:01 +00005639 // Truncate the result of the extended FP_TO_*INT operation to the desired
5640 // size.
5641 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005642}
5643
5644/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5645///
Dan Gohman475871a2008-07-27 21:46:04 +00005646SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005647 MVT VT = Op.getValueType();
5648 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman475871a2008-07-27 21:46:04 +00005649 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005650 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005651 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5652 case MVT::i16:
5653 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5654 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5655 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5656 case MVT::i32:
5657 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5658 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5659 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5660 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5661 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5662 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5663 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5664 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5665 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5666 case MVT::i64:
5667 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5668 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5669 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5670 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5671 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5672 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5673 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5674 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5675 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5676 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5677 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5678 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5679 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5680 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5681 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5682 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5683 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5684 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5685 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5686 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5687 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5688 }
5689}
5690
5691/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5692///
Dan Gohman475871a2008-07-27 21:46:04 +00005693SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005694 switch (Opc) {
5695 default: assert(0 && "Cannot expand this yet!");
5696 case ISD::CTPOP: {
5697 static const uint64_t mask[6] = {
5698 0x5555555555555555ULL, 0x3333333333333333ULL,
5699 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5700 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5701 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005702 MVT VT = Op.getValueType();
5703 MVT ShVT = TLI.getShiftAmountTy();
5704 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005705 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5706 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Dan Gohman475871a2008-07-27 21:46:04 +00005707 SDValue Tmp2 = DAG.getConstant(mask[i], VT);
5708 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005709 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5710 DAG.getNode(ISD::AND, VT,
5711 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5712 }
5713 return Op;
5714 }
5715 case ISD::CTLZ: {
5716 // for now, we do this:
5717 // x = x | (x >> 1);
5718 // x = x | (x >> 2);
5719 // ...
5720 // x = x | (x >>16);
5721 // x = x | (x >>32); // for 64-bit input
5722 // return popcount(~x);
5723 //
5724 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005725 MVT VT = Op.getValueType();
5726 MVT ShVT = TLI.getShiftAmountTy();
5727 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005728 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005729 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005730 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5731 }
5732 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5733 return DAG.getNode(ISD::CTPOP, VT, Op);
5734 }
5735 case ISD::CTTZ: {
5736 // for now, we use: { return popcount(~x & (x - 1)); }
5737 // unless the target has ctlz but not ctpop, in which case we use:
5738 // { return 32 - nlz(~x & (x-1)); }
5739 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005740 MVT VT = Op.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00005741 SDValue Tmp2 = DAG.getConstant(~0ULL, VT);
5742 SDValue Tmp3 = DAG.getNode(ISD::AND, VT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005743 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5744 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5745 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5746 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5747 TLI.isOperationLegal(ISD::CTLZ, VT))
5748 return DAG.getNode(ISD::SUB, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005749 DAG.getConstant(VT.getSizeInBits(), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005750 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5751 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5752 }
5753 }
5754}
Chris Lattnere34b3962005-01-19 04:19:40 +00005755
Dan Gohman475871a2008-07-27 21:46:04 +00005756/// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattner3e928bb2005-01-07 07:47:09 +00005757/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5758/// LegalizeNodes map is filled in for any results that are not expanded, the
5759/// ExpandedNodes map is filled in for any results that are expanded, and the
5760/// Lo/Hi values are returned.
Dan Gohman475871a2008-07-27 21:46:04 +00005761void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00005762 MVT VT = Op.getValueType();
5763 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005764 SDNode *Node = Op.Val;
5765 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00005766 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00005767 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00005768
Chris Lattner6fdcb252005-09-02 20:32:45 +00005769 // See if we already expanded it.
Dan Gohman475871a2008-07-27 21:46:04 +00005770 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00005771 = ExpandedNodes.find(Op);
5772 if (I != ExpandedNodes.end()) {
5773 Lo = I->second.first;
5774 Hi = I->second.second;
5775 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005776 }
5777
Chris Lattner3e928bb2005-01-07 07:47:09 +00005778 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005779 case ISD::CopyFromReg:
5780 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005781 case ISD::FP_ROUND_INREG:
5782 if (VT == MVT::ppcf128 &&
5783 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5784 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00005785 SDValue SrcLo, SrcHi, Src;
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005786 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5787 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
Dan Gohman475871a2008-07-27 21:46:04 +00005788 SDValue Result = TLI.LowerOperation(
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005789 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005790 assert(Result.Val->getOpcode() == ISD::BUILD_PAIR);
5791 Lo = Result.Val->getOperand(0);
5792 Hi = Result.Val->getOperand(1);
5793 break;
5794 }
5795 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00005796 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005797#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005798 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005799#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00005800 assert(0 && "Do not know how to expand this operator!");
5801 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00005802 case ISD::EXTRACT_ELEMENT:
5803 ExpandOp(Node->getOperand(0), Lo, Hi);
5804 if (cast<ConstantSDNode>(Node->getOperand(1))->getValue())
5805 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00005806 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00005807 case ISD::EXTRACT_VECTOR_ELT:
5808 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5809 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5810 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5811 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005812 case ISD::UNDEF:
5813 Lo = DAG.getNode(ISD::UNDEF, NVT);
5814 Hi = DAG.getNode(ISD::UNDEF, NVT);
5815 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005816 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005817 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00005818 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5819 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5820 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005821 break;
5822 }
Evan Cheng00495212006-12-12 21:32:44 +00005823 case ISD::ConstantFP: {
5824 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00005825 if (CFP->getValueType(0) == MVT::ppcf128) {
5826 APInt api = CFP->getValueAPF().convertToAPInt();
5827 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5828 MVT::f64);
5829 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5830 MVT::f64);
5831 break;
5832 }
Evan Cheng279101e2006-12-12 22:19:28 +00005833 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005834 if (getTypeAction(Lo.getValueType()) == Expand)
5835 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005836 break;
5837 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005838 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005839 // Return the operands.
5840 Lo = Node->getOperand(0);
5841 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005842 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005843
5844 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00005845 if (Node->getNumValues() == 1) {
5846 ExpandOp(Op.getOperand(0), Lo, Hi);
5847 break;
5848 }
Chris Lattner27a6c732007-11-24 07:07:01 +00005849 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
5850 assert(Op.ResNo == 0 && Node->getNumValues() == 2 &&
5851 Op.getValue(1).getValueType() == MVT::Other &&
5852 "unhandled MERGE_VALUES");
5853 ExpandOp(Op.getOperand(0), Lo, Hi);
5854 // Remember that we legalized the chain.
5855 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5856 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005857
5858 case ISD::SIGN_EXTEND_INREG:
5859 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005860 // sext_inreg the low part if needed.
5861 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5862
5863 // The high part gets the sign extension from the lo-part. This handles
5864 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005865 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005866 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00005867 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005868 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005869
Nate Begemand88fc032006-01-14 03:14:10 +00005870 case ISD::BSWAP: {
5871 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00005872 SDValue TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
Nate Begemand88fc032006-01-14 03:14:10 +00005873 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5874 Lo = TempLo;
5875 break;
5876 }
5877
Chris Lattneredb1add2005-05-11 04:51:16 +00005878 case ISD::CTPOP:
5879 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005880 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5881 DAG.getNode(ISD::CTPOP, NVT, Lo),
5882 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005883 Hi = DAG.getConstant(0, NVT);
5884 break;
5885
Chris Lattner39a8f332005-05-12 19:05:01 +00005886 case ISD::CTLZ: {
5887 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005888 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00005889 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
5890 SDValue HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
5891 SDValue TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005892 ISD::SETNE);
Dan Gohman475871a2008-07-27 21:46:04 +00005893 SDValue LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
Chris Lattner39a8f332005-05-12 19:05:01 +00005894 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5895
5896 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5897 Hi = DAG.getConstant(0, NVT);
5898 break;
5899 }
5900
5901 case ISD::CTTZ: {
5902 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005903 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00005904 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
5905 SDValue LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
5906 SDValue BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005907 ISD::SETNE);
Dan Gohman475871a2008-07-27 21:46:04 +00005908 SDValue HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005909 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5910
5911 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5912 Hi = DAG.getConstant(0, NVT);
5913 break;
5914 }
Chris Lattneredb1add2005-05-11 04:51:16 +00005915
Nate Begemanacc398c2006-01-25 18:21:52 +00005916 case ISD::VAARG: {
Dan Gohman475871a2008-07-27 21:46:04 +00005917 SDValue Ch = Node->getOperand(0); // Legalize the chain.
5918 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00005919 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5920 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5921
5922 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005923 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00005924 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00005925 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00005926 std::swap(Lo, Hi);
5927 break;
5928 }
5929
Chris Lattner3e928bb2005-01-07 07:47:09 +00005930 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00005931 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00005932 SDValue Ch = LD->getChain(); // Legalize the chain.
5933 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Evan Cheng466685d2006-10-09 20:57:25 +00005934 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f8613e2008-08-14 20:04:46 +00005935 const Value *SV = LD->getSrcValue();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005936 int SVOffset = LD->getSrcValueOffset();
5937 unsigned Alignment = LD->getAlignment();
5938 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005939
Evan Cheng466685d2006-10-09 20:57:25 +00005940 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00005941 Lo = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005942 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00005943 if (VT == MVT::f32 || VT == MVT::f64) {
5944 // f32->i32 or f64->i64 one to one expansion.
5945 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00005946 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00005947 // Recursively expand the new load.
5948 if (getTypeAction(NVT) == Expand)
5949 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005950 break;
5951 }
Chris Lattnerec39a452005-01-19 18:02:17 +00005952
Evan Cheng466685d2006-10-09 20:57:25 +00005953 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005954 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Evan Cheng466685d2006-10-09 20:57:25 +00005955 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00005956 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00005957 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00005958 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005959 Hi = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005960 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00005961
Evan Cheng466685d2006-10-09 20:57:25 +00005962 // Build a factor node to remember that this load is independent of the
5963 // other one.
Dan Gohman475871a2008-07-27 21:46:04 +00005964 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Evan Cheng466685d2006-10-09 20:57:25 +00005965 Hi.getValue(1));
5966
5967 // Remember that we legalized the chain.
5968 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00005969 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00005970 std::swap(Lo, Hi);
5971 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005972 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00005973
Dale Johannesenb6210fc2007-10-19 20:29:00 +00005974 if ((VT == MVT::f64 && EVT == MVT::f32) ||
5975 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00005976 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dan Gohman7f8613e2008-08-14 20:04:46 +00005977 SDValue Load = DAG.getLoad(EVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005978 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00005979 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00005980 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Evan Cheng548f6112006-12-13 03:19:57 +00005981 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
5982 break;
5983 }
Evan Cheng466685d2006-10-09 20:57:25 +00005984
5985 if (EVT == NVT)
Dan Gohman7f8613e2008-08-14 20:04:46 +00005986 Lo = DAG.getLoad(NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005987 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005988 else
Dan Gohman7f8613e2008-08-14 20:04:46 +00005989 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00005990 SVOffset, EVT, isVolatile,
5991 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00005992
5993 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00005994 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng466685d2006-10-09 20:57:25 +00005995
5996 if (ExtType == ISD::SEXTLOAD) {
5997 // The high part is obtained by SRA'ing all but one of the bits of the
5998 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005999 unsigned LoSize = Lo.getValueType().getSizeInBits();
Evan Cheng466685d2006-10-09 20:57:25 +00006000 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6001 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6002 } else if (ExtType == ISD::ZEXTLOAD) {
6003 // The high part is just a zero.
6004 Hi = DAG.getConstant(0, NVT);
6005 } else /* if (ExtType == ISD::EXTLOAD) */ {
6006 // The high part is undefined.
6007 Hi = DAG.getNode(ISD::UNDEF, NVT);
6008 }
6009 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006010 break;
6011 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006012 case ISD::AND:
6013 case ISD::OR:
6014 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman475871a2008-07-27 21:46:04 +00006015 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006016 ExpandOp(Node->getOperand(0), LL, LH);
6017 ExpandOp(Node->getOperand(1), RL, RH);
6018 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
6019 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
6020 break;
6021 }
6022 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006023 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006024 ExpandOp(Node->getOperand(1), LL, LH);
6025 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006026 if (getTypeAction(NVT) == Expand)
6027 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00006028 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006029 if (VT != MVT::f32)
6030 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006031 break;
6032 }
Nate Begeman9373a812005-08-10 20:51:12 +00006033 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006034 SDValue TL, TH, FL, FH;
Nate Begeman9373a812005-08-10 20:51:12 +00006035 ExpandOp(Node->getOperand(2), TL, TH);
6036 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006037 if (getTypeAction(NVT) == Expand)
6038 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00006039 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6040 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006041 if (VT != MVT::f32)
6042 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6043 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006044 break;
6045 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006046 case ISD::ANY_EXTEND:
6047 // The low part is any extension of the input (which degenerates to a copy).
6048 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
6049 // The high part is undefined.
6050 Hi = DAG.getNode(ISD::UNDEF, NVT);
6051 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006052 case ISD::SIGN_EXTEND: {
6053 // The low part is just a sign extension of the input (which degenerates to
6054 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006055 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006056
Chris Lattner3e928bb2005-01-07 07:47:09 +00006057 // The high part is obtained by SRA'ing all but one of the bits of the lo
6058 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006059 unsigned LoSize = Lo.getValueType().getSizeInBits();
Chris Lattner8137c9e2006-01-28 05:07:51 +00006060 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6061 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006062 break;
6063 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006064 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006065 // The low part is just a zero extension of the input (which degenerates to
6066 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006067 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006068
Chris Lattner3e928bb2005-01-07 07:47:09 +00006069 // The high part is just a zero.
6070 Hi = DAG.getConstant(0, NVT);
6071 break;
Chris Lattner35481892005-12-23 00:16:34 +00006072
Chris Lattner4c948eb2007-02-13 23:55:16 +00006073 case ISD::TRUNCATE: {
6074 // The input value must be larger than this value. Expand *it*.
Dan Gohman475871a2008-07-27 21:46:04 +00006075 SDValue NewLo;
Chris Lattner4c948eb2007-02-13 23:55:16 +00006076 ExpandOp(Node->getOperand(0), NewLo, Hi);
6077
6078 // The low part is now either the right size, or it is closer. If not the
6079 // right size, make an illegal truncate so we recursively expand it.
6080 if (NewLo.getValueType() != Node->getValueType(0))
6081 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6082 ExpandOp(NewLo, Lo, Hi);
6083 break;
6084 }
6085
Chris Lattner35481892005-12-23 00:16:34 +00006086 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006087 SDValue Tmp;
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006088 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6089 // If the target wants to, allow it to lower this itself.
6090 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6091 case Expand: assert(0 && "cannot expand FP!");
6092 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6093 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6094 }
6095 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6096 }
6097
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006098 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006099 if (VT == MVT::f32 || VT == MVT::f64) {
6100 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006101 if (getTypeAction(NVT) == Expand)
6102 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006103 break;
6104 }
6105
6106 // If source operand will be expanded to the same type as VT, i.e.
6107 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006108 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006109 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6110 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006111 break;
6112 }
6113
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006114 // Turn this into a load/store pair by default.
6115 if (Tmp.Val == 0)
Chris Lattner1401d152008-01-16 07:45:30 +00006116 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006117
Chris Lattner35481892005-12-23 00:16:34 +00006118 ExpandOp(Tmp, Lo, Hi);
6119 break;
6120 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006121
Chris Lattner27a6c732007-11-24 07:07:01 +00006122 case ISD::READCYCLECOUNTER: {
Chris Lattner308575b2005-11-20 22:56:56 +00006123 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6124 TargetLowering::Custom &&
6125 "Must custom expand ReadCycleCounter");
Dan Gohman475871a2008-07-27 21:46:04 +00006126 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Chris Lattner27a6c732007-11-24 07:07:01 +00006127 assert(Tmp.Val && "Node must be custom expanded!");
6128 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006129 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006130 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006131 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006132 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006133
Mon P Wang28873102008-06-25 08:15:39 +00006134 case ISD::ATOMIC_CMP_SWAP: {
Dan Gohman475871a2008-07-27 21:46:04 +00006135 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006136 assert(Tmp.Val && "Node must be custom expanded!");
6137 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006138 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006139 LegalizeOp(Tmp.getValue(1)));
6140 break;
6141 }
6142
6143
6144
Chris Lattner4e6c7462005-01-08 19:27:05 +00006145 // These operators cannot be expanded directly, emit them as calls to
6146 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006147 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006148 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006149 SDValue Op;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006150 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6151 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006152 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6153 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006154 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006155
Chris Lattnerf20d1832005-07-30 01:40:57 +00006156 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6157
Chris Lattner80a3e942005-07-29 00:33:32 +00006158 // Now that the custom expander is done, expand the result, which is still
6159 // VT.
Chris Lattner07dffd62005-08-26 00:14:16 +00006160 if (Op.Val) {
6161 ExpandOp(Op, Lo, Hi);
6162 break;
6163 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006164 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006165
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006166 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6167 VT);
6168 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6169 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006170 break;
Evan Cheng56966222007-01-12 02:11:51 +00006171 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006172
Evan Cheng56966222007-01-12 02:11:51 +00006173 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006174 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006175 SDValue Op;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006176 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6177 case Expand: assert(0 && "cannot expand FP!");
6178 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6179 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6180 }
6181
6182 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6183
6184 // Now that the custom expander is done, expand the result.
Chris Lattner07dffd62005-08-26 00:14:16 +00006185 if (Op.Val) {
6186 ExpandOp(Op, Lo, Hi);
6187 break;
6188 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006189 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006190
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006191 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6192 VT);
6193 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6194 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006195 break;
Evan Cheng56966222007-01-12 02:11:51 +00006196 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006197
Evan Cheng05a2d562006-01-09 18:31:59 +00006198 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006199 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006200 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006201 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006202 SDValue Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006203 Op = TLI.LowerOperation(Op, DAG);
6204 if (Op.Val) {
6205 // Now that the custom expander is done, expand the result, which is
6206 // still VT.
6207 ExpandOp(Op, Lo, Hi);
6208 break;
6209 }
6210 }
6211
Chris Lattner79980b02006-09-13 03:50:39 +00006212 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6213 // this X << 1 as X+X.
6214 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman002e5d02008-03-13 22:13:53 +00006215 if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
Chris Lattner79980b02006-09-13 03:50:39 +00006216 TLI.isOperationLegal(ISD::ADDE, NVT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006217 SDValue LoOps[2], HiOps[3];
Chris Lattner79980b02006-09-13 03:50:39 +00006218 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6219 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6220 LoOps[1] = LoOps[0];
6221 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6222
6223 HiOps[1] = HiOps[0];
6224 HiOps[2] = Lo.getValue(1);
6225 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6226 break;
6227 }
6228 }
6229
Chris Lattnere34b3962005-01-19 04:19:40 +00006230 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006231 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006232 break;
Chris Lattner47599822005-04-02 03:38:53 +00006233
6234 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006235 TargetLowering::LegalizeAction Action =
6236 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6237 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6238 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006239 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006240 break;
6241 }
6242
Chris Lattnere34b3962005-01-19 04:19:40 +00006243 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006244 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006245 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006246 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006247
Evan Cheng05a2d562006-01-09 18:31:59 +00006248 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006249 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006250 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006251 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006252 SDValue Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006253 Op = TLI.LowerOperation(Op, DAG);
6254 if (Op.Val) {
6255 // Now that the custom expander is done, expand the result, which is
6256 // still VT.
6257 ExpandOp(Op, Lo, Hi);
6258 break;
6259 }
6260 }
6261
Chris Lattnere34b3962005-01-19 04:19:40 +00006262 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006263 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006264 break;
Chris Lattner47599822005-04-02 03:38:53 +00006265
6266 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006267 TargetLowering::LegalizeAction Action =
6268 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6269 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6270 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006271 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006272 break;
6273 }
6274
Chris Lattnere34b3962005-01-19 04:19:40 +00006275 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006276 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006277 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006278 }
6279
6280 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006281 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006282 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006283 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006284 SDValue Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006285 Op = TLI.LowerOperation(Op, DAG);
6286 if (Op.Val) {
6287 // Now that the custom expander is done, expand the result, which is
6288 // still VT.
6289 ExpandOp(Op, Lo, Hi);
6290 break;
6291 }
6292 }
6293
Chris Lattnere34b3962005-01-19 04:19:40 +00006294 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006295 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006296 break;
Chris Lattner47599822005-04-02 03:38:53 +00006297
6298 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006299 TargetLowering::LegalizeAction Action =
6300 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6301 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6302 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006303 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006304 break;
6305 }
6306
Chris Lattnere34b3962005-01-19 04:19:40 +00006307 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006308 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006309 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006310 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006311
Misha Brukmanedf128a2005-04-21 22:36:52 +00006312 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006313 case ISD::SUB: {
6314 // If the target wants to custom expand this, let them.
6315 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6316 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006317 SDValue Result = TLI.LowerOperation(Op, DAG);
Duncan Sands69bfb152008-06-22 09:42:16 +00006318 if (Result.Val) {
6319 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006320 break;
6321 }
6322 }
6323
6324 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006325 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006326 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6327 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00006328 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006329 SDValue LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006330 LoOps[0] = LHSL;
6331 LoOps[1] = RHSL;
6332 HiOps[0] = LHSH;
6333 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006334 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00006335 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006336 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006337 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006338 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00006339 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006340 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006341 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006342 }
Chris Lattner84f67882005-01-20 18:52:28 +00006343 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006344 }
Chris Lattnerb429f732007-05-17 18:15:41 +00006345
6346 case ISD::ADDC:
6347 case ISD::SUBC: {
6348 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006349 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00006350 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6351 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6352 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006353 SDValue LoOps[2] = { LHSL, RHSL };
6354 SDValue HiOps[3] = { LHSH, RHSH };
Chris Lattnerb429f732007-05-17 18:15:41 +00006355
6356 if (Node->getOpcode() == ISD::ADDC) {
6357 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6358 HiOps[2] = Lo.getValue(1);
6359 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6360 } else {
6361 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6362 HiOps[2] = Lo.getValue(1);
6363 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6364 }
6365 // Remember that we legalized the flag.
6366 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6367 break;
6368 }
6369 case ISD::ADDE:
6370 case ISD::SUBE: {
6371 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006372 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00006373 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6374 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6375 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006376 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6377 SDValue HiOps[3] = { LHSH, RHSH };
Chris Lattnerb429f732007-05-17 18:15:41 +00006378
6379 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6380 HiOps[2] = Lo.getValue(1);
6381 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6382
6383 // Remember that we legalized the flag.
6384 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6385 break;
6386 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006387 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006388 // If the target wants to custom expand this, let them.
6389 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006390 SDValue New = TLI.LowerOperation(Op, DAG);
Chris Lattner8829dc82006-09-16 05:08:34 +00006391 if (New.Val) {
6392 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006393 break;
6394 }
6395 }
6396
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006397 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6398 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00006399 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6400 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6401 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman475871a2008-07-27 21:46:04 +00006402 SDValue LL, LH, RL, RH;
Nate Begemanc7c16572005-04-11 03:01:51 +00006403 ExpandOp(Node->getOperand(0), LL, LH);
6404 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006405 unsigned OuterBitSize = Op.getValueSizeInBits();
6406 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00006407 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6408 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00006409 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6410 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6411 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00006412 // The inputs are both zero-extended.
6413 if (HasUMUL_LOHI) {
6414 // We can emit a umul_lohi.
6415 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Dan Gohman475871a2008-07-27 21:46:04 +00006416 Hi = SDValue(Lo.Val, 1);
Dan Gohman525178c2007-10-08 18:33:35 +00006417 break;
6418 }
6419 if (HasMULHU) {
6420 // We can emit a mulhu+mul.
6421 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6422 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6423 break;
6424 }
Dan Gohman525178c2007-10-08 18:33:35 +00006425 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006426 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00006427 // The input values are both sign-extended.
6428 if (HasSMUL_LOHI) {
6429 // We can emit a smul_lohi.
6430 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Dan Gohman475871a2008-07-27 21:46:04 +00006431 Hi = SDValue(Lo.Val, 1);
Dan Gohman525178c2007-10-08 18:33:35 +00006432 break;
6433 }
6434 if (HasMULHS) {
6435 // We can emit a mulhs+mul.
6436 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6437 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6438 break;
6439 }
6440 }
6441 if (HasUMUL_LOHI) {
6442 // Lo,Hi = umul LHS, RHS.
Dan Gohman475871a2008-07-27 21:46:04 +00006443 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
Dan Gohman525178c2007-10-08 18:33:35 +00006444 DAG.getVTList(NVT, NVT), LL, RL);
6445 Lo = UMulLOHI;
6446 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00006447 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6448 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6449 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6450 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00006451 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00006452 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00006453 if (HasMULHU) {
6454 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6455 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6456 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6457 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6458 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6459 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6460 break;
6461 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006462 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006463
Dan Gohman525178c2007-10-08 18:33:35 +00006464 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006465 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00006466 break;
6467 }
Evan Cheng56966222007-01-12 02:11:51 +00006468 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006469 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006470 break;
6471 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006472 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006473 break;
6474 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006475 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006476 break;
6477 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006478 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006479 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00006480
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006481 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00006482 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6483 RTLIB::ADD_F64,
6484 RTLIB::ADD_F80,
6485 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006486 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006487 break;
6488 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00006489 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6490 RTLIB::SUB_F64,
6491 RTLIB::SUB_F80,
6492 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006493 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006494 break;
6495 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00006496 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6497 RTLIB::MUL_F64,
6498 RTLIB::MUL_F80,
6499 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006500 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006501 break;
6502 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006503 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6504 RTLIB::DIV_F64,
6505 RTLIB::DIV_F80,
6506 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006507 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006508 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006509 case ISD::FP_EXTEND: {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006510 if (VT == MVT::ppcf128) {
6511 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6512 Node->getOperand(0).getValueType()==MVT::f64);
6513 const uint64_t zero = 0;
6514 if (Node->getOperand(0).getValueType()==MVT::f32)
6515 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6516 else
6517 Hi = Node->getOperand(0);
6518 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6519 break;
6520 }
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006521 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
6522 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
6523 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006524 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006525 }
6526 case ISD::FP_ROUND: {
6527 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
6528 VT);
6529 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
6530 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006531 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006532 }
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006533 case ISD::FPOWI:
Duncan Sands460a14e2008-04-12 17:14:18 +00006534 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::POWI_F32,
6535 RTLIB::POWI_F64,
6536 RTLIB::POWI_F80,
6537 RTLIB::POWI_PPCF128),
Lauro Ramos Venancioc90f0892007-08-15 22:13:27 +00006538 Node, false, Hi);
6539 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00006540 case ISD::FTRUNC:
6541 case ISD::FFLOOR:
6542 case ISD::FCEIL:
6543 case ISD::FRINT:
6544 case ISD::FNEARBYINT:
Evan Cheng98ff3b92006-12-13 02:38:13 +00006545 case ISD::FSQRT:
6546 case ISD::FSIN:
6547 case ISD::FCOS: {
Evan Cheng56966222007-01-12 02:11:51 +00006548 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006549 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00006550 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00006551 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6552 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006553 break;
6554 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00006555 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6556 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006557 break;
6558 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00006559 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6560 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006561 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00006562 case ISD::FTRUNC:
6563 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
6564 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
6565 break;
6566 case ISD::FFLOOR:
6567 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
6568 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
6569 break;
6570 case ISD::FCEIL:
6571 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
6572 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
6573 break;
6574 case ISD::FRINT:
6575 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
6576 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
6577 break;
6578 case ISD::FNEARBYINT:
6579 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
6580 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
6581 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006582 default: assert(0 && "Unreachable!");
6583 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006584 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00006585 break;
6586 }
Evan Cheng966bf242006-12-16 00:52:40 +00006587 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006588 if (VT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00006589 SDValue Tmp;
Dale Johannesenf6467742007-10-12 19:02:17 +00006590 ExpandOp(Node->getOperand(0), Lo, Tmp);
6591 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6592 // lo = hi==fabs(hi) ? lo : -lo;
6593 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6594 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6595 DAG.getCondCode(ISD::SETEQ));
6596 break;
6597 }
Dan Gohman475871a2008-07-27 21:46:04 +00006598 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00006599 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6600 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6601 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6602 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6603 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6604 if (getTypeAction(NVT) == Expand)
6605 ExpandOp(Lo, Lo, Hi);
6606 break;
6607 }
6608 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006609 if (VT == MVT::ppcf128) {
6610 ExpandOp(Node->getOperand(0), Lo, Hi);
6611 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6612 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6613 break;
6614 }
Dan Gohman475871a2008-07-27 21:46:04 +00006615 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00006616 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6617 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6618 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6619 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6620 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6621 if (getTypeAction(NVT) == Expand)
6622 ExpandOp(Lo, Lo, Hi);
6623 break;
6624 }
Evan Cheng912095b2007-01-04 21:56:39 +00006625 case ISD::FCOPYSIGN: {
6626 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6627 if (getTypeAction(NVT) == Expand)
6628 ExpandOp(Lo, Lo, Hi);
6629 break;
6630 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006631 case ISD::SINT_TO_FP:
6632 case ISD::UINT_TO_FP: {
6633 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006634 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00006635
6636 // Promote the operand if needed. Do this before checking for
6637 // ppcf128 so conversions of i16 and i8 work.
6638 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman475871a2008-07-27 21:46:04 +00006639 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesencf498192008-03-18 17:28:38 +00006640 Tmp = isSigned
6641 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6642 DAG.getValueType(SrcVT))
6643 : DAG.getZeroExtendInReg(Tmp, SrcVT);
6644 Node = DAG.UpdateNodeOperands(Op, Tmp).Val;
6645 SrcVT = Node->getOperand(0).getValueType();
6646 }
6647
Dan Gohmana2e94852008-03-10 23:03:31 +00006648 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006649 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006650 if (isSigned) {
6651 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6652 Node->getOperand(0)));
6653 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6654 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006655 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006656 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6657 Node->getOperand(0)));
6658 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6659 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00006660 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006661 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6662 DAG.getConstant(0, MVT::i32),
6663 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6664 DAG.getConstantFP(
6665 APFloat(APInt(128, 2, TwoE32)),
6666 MVT::ppcf128)),
6667 Hi,
6668 DAG.getCondCode(ISD::SETLT)),
6669 Lo, Hi);
6670 }
6671 break;
6672 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00006673 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6674 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006675 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen6e63e092007-10-12 17:52:03 +00006676 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6677 Lo, Hi);
6678 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6679 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6680 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6681 DAG.getConstant(0, MVT::i64),
6682 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6683 DAG.getConstantFP(
6684 APFloat(APInt(128, 2, TwoE64)),
6685 MVT::ppcf128)),
6686 Hi,
6687 DAG.getCondCode(ISD::SETLT)),
6688 Lo, Hi);
6689 break;
6690 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006691
Dan Gohmana2e94852008-03-10 23:03:31 +00006692 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6693 Node->getOperand(0));
Evan Cheng110cf482008-04-01 01:50:16 +00006694 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00006695 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00006696 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00006697 break;
6698 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00006699 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006700
Chris Lattner83397362005-12-21 18:02:52 +00006701 // Make sure the resultant values have been legalized themselves, unless this
6702 // is a type that requires multi-step expansion.
6703 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6704 Lo = LegalizeOp(Lo);
Evan Cheng13acce32006-12-11 19:27:14 +00006705 if (Hi.Val)
6706 // Don't legalize the high part if it is expanded to a single node.
6707 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00006708 }
Evan Cheng05a2d562006-01-09 18:31:59 +00006709
6710 // Remember in a map if the values will be reused later.
Dan Gohman6b345ee2008-07-07 17:46:23 +00006711 bool isNew =
6712 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng05a2d562006-01-09 18:31:59 +00006713 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006714}
6715
Dan Gohman7f321562007-06-25 16:23:39 +00006716/// SplitVectorOp - Given an operand of vector type, break it down into
6717/// two smaller values, still of vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00006718void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
6719 SDValue &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006720 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Chris Lattnerc7029802006-03-18 01:44:44 +00006721 SDNode *Node = Op.Val;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006722 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00006723 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00006724
Duncan Sands83ec4b62008-06-06 12:08:01 +00006725 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00006726
6727 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6728 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6729
Duncan Sands83ec4b62008-06-06 12:08:01 +00006730 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
6731 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006732
Chris Lattnerc7029802006-03-18 01:44:44 +00006733 // See if we already split it.
Dan Gohman475871a2008-07-27 21:46:04 +00006734 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattnerc7029802006-03-18 01:44:44 +00006735 = SplitNodes.find(Op);
6736 if (I != SplitNodes.end()) {
6737 Lo = I->second.first;
6738 Hi = I->second.second;
6739 return;
6740 }
6741
6742 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006743 default:
6744#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006745 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006746#endif
6747 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00006748 case ISD::UNDEF:
6749 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6750 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6751 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006752 case ISD::BUILD_PAIR:
6753 Lo = Node->getOperand(0);
6754 Hi = Node->getOperand(1);
6755 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00006756 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00006757 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
6758 SplitVectorOp(Node->getOperand(0), Lo, Hi);
6759 unsigned Index = Idx->getValue();
Dan Gohman475871a2008-07-27 21:46:04 +00006760 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman68679912008-04-25 18:07:40 +00006761 if (Index < NewNumElts_Lo)
6762 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
6763 DAG.getIntPtrConstant(Index));
6764 else
6765 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6766 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
6767 break;
6768 }
Dan Gohman475871a2008-07-27 21:46:04 +00006769 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Nate Begeman68679912008-04-25 18:07:40 +00006770 Node->getOperand(1),
6771 Node->getOperand(2));
6772 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00006773 break;
6774 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00006775 case ISD::VECTOR_SHUFFLE: {
6776 // Build the low part.
Dan Gohman475871a2008-07-27 21:46:04 +00006777 SDValue Mask = Node->getOperand(2);
6778 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006779 MVT PtrVT = TLI.getPointerTy();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006780
6781 // Insert all of the elements from the input that are needed. We use
6782 // buildvector of extractelement here because the input vectors will have
6783 // to be legalized, so this makes the code simpler.
6784 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00006785 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00006786 if (IdxNode.getOpcode() == ISD::UNDEF) {
6787 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6788 continue;
6789 }
6790 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Dan Gohman475871a2008-07-27 21:46:04 +00006791 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00006792 if (Idx >= NumElements) {
6793 InVec = Node->getOperand(1);
6794 Idx -= NumElements;
6795 }
6796 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6797 DAG.getConstant(Idx, PtrVT)));
6798 }
6799 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6800 Ops.clear();
6801
6802 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00006803 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00006804 if (IdxNode.getOpcode() == ISD::UNDEF) {
6805 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6806 continue;
6807 }
6808 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getValue();
Dan Gohman475871a2008-07-27 21:46:04 +00006809 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00006810 if (Idx >= NumElements) {
6811 InVec = Node->getOperand(1);
6812 Idx -= NumElements;
6813 }
6814 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6815 DAG.getConstant(Idx, PtrVT)));
6816 }
Mon P Wang92879f32008-07-25 01:30:26 +00006817 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00006818 break;
6819 }
Dan Gohman7f321562007-06-25 16:23:39 +00006820 case ISD::BUILD_VECTOR: {
Dan Gohman475871a2008-07-27 21:46:04 +00006821 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00006822 Node->op_begin()+NewNumElts_Lo);
6823 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006824
Dan Gohman475871a2008-07-27 21:46:04 +00006825 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00006826 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006827 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006828 break;
6829 }
Dan Gohman7f321562007-06-25 16:23:39 +00006830 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00006831 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00006832 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6833 if (NewNumSubvectors == 1) {
6834 Lo = Node->getOperand(0);
6835 Hi = Node->getOperand(1);
6836 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00006837 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Dan Gohman7f321562007-06-25 16:23:39 +00006838 Node->op_begin()+NewNumSubvectors);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006839 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00006840
Dan Gohman475871a2008-07-27 21:46:04 +00006841 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Dan Gohman7f321562007-06-25 16:23:39 +00006842 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006843 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00006844 }
Dan Gohman65956352007-06-13 15:12:02 +00006845 break;
6846 }
Dan Gohmanc6230962007-10-17 14:48:28 +00006847 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006848 SDValue Cond = Node->getOperand(0);
Dan Gohmanc6230962007-10-17 14:48:28 +00006849
Dan Gohman475871a2008-07-27 21:46:04 +00006850 SDValue LL, LH, RL, RH;
Dan Gohmanc6230962007-10-17 14:48:28 +00006851 SplitVectorOp(Node->getOperand(1), LL, LH);
6852 SplitVectorOp(Node->getOperand(2), RL, RH);
6853
Duncan Sands83ec4b62008-06-06 12:08:01 +00006854 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00006855 // Handle a vector merge.
Dan Gohman475871a2008-07-27 21:46:04 +00006856 SDValue CL, CH;
Dan Gohmanc6230962007-10-17 14:48:28 +00006857 SplitVectorOp(Cond, CL, CH);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006858 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6859 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006860 } else {
6861 // Handle a simple select with vector operands.
Nate Begeman5db1afb2007-11-15 21:15:26 +00006862 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6863 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006864 }
6865 break;
6866 }
Chris Lattner80c1a562008-06-30 02:43:01 +00006867 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006868 SDValue CondLHS = Node->getOperand(0);
6869 SDValue CondRHS = Node->getOperand(1);
6870 SDValue CondCode = Node->getOperand(4);
Chris Lattner80c1a562008-06-30 02:43:01 +00006871
Dan Gohman475871a2008-07-27 21:46:04 +00006872 SDValue LL, LH, RL, RH;
Chris Lattner80c1a562008-06-30 02:43:01 +00006873 SplitVectorOp(Node->getOperand(2), LL, LH);
6874 SplitVectorOp(Node->getOperand(3), RL, RH);
6875
6876 // Handle a simple select with vector operands.
6877 Lo = DAG.getNode(ISD::SELECT_CC, NewVT_Lo, CondLHS, CondRHS,
6878 LL, RL, CondCode);
6879 Hi = DAG.getNode(ISD::SELECT_CC, NewVT_Hi, CondLHS, CondRHS,
6880 LH, RH, CondCode);
6881 break;
6882 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00006883 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006884 SDValue LL, LH, RL, RH;
Nate Begemanb43e9c12008-05-12 19:40:03 +00006885 SplitVectorOp(Node->getOperand(0), LL, LH);
6886 SplitVectorOp(Node->getOperand(1), RL, RH);
6887 Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2));
6888 Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2));
6889 break;
6890 }
Dan Gohman7f321562007-06-25 16:23:39 +00006891 case ISD::ADD:
6892 case ISD::SUB:
6893 case ISD::MUL:
6894 case ISD::FADD:
6895 case ISD::FSUB:
6896 case ISD::FMUL:
6897 case ISD::SDIV:
6898 case ISD::UDIV:
6899 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00006900 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00006901 case ISD::AND:
6902 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00006903 case ISD::XOR:
6904 case ISD::UREM:
6905 case ISD::SREM:
6906 case ISD::FREM: {
Dan Gohman475871a2008-07-27 21:46:04 +00006907 SDValue LL, LH, RL, RH;
Chris Lattnerc7029802006-03-18 01:44:44 +00006908 SplitVectorOp(Node->getOperand(0), LL, LH);
6909 SplitVectorOp(Node->getOperand(1), RL, RH);
6910
Nate Begeman5db1afb2007-11-15 21:15:26 +00006911 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
6912 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00006913 break;
6914 }
Dan Gohman7f8613e2008-08-14 20:04:46 +00006915 case ISD::FP_ROUND:
Dan Gohman82669522007-10-11 23:57:53 +00006916 case ISD::FPOWI: {
Dan Gohman475871a2008-07-27 21:46:04 +00006917 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00006918 SplitVectorOp(Node->getOperand(0), L, H);
6919
Nate Begeman5db1afb2007-11-15 21:15:26 +00006920 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
6921 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00006922 break;
6923 }
6924 case ISD::CTTZ:
6925 case ISD::CTLZ:
6926 case ISD::CTPOP:
6927 case ISD::FNEG:
6928 case ISD::FABS:
6929 case ISD::FSQRT:
6930 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00006931 case ISD::FCOS:
6932 case ISD::FP_TO_SINT:
6933 case ISD::FP_TO_UINT:
6934 case ISD::SINT_TO_FP:
Dan Gohman7f8613e2008-08-14 20:04:46 +00006935 case ISD::UINT_TO_FP:
6936 case ISD::TRUNCATE:
6937 case ISD::ANY_EXTEND:
6938 case ISD::SIGN_EXTEND:
6939 case ISD::ZERO_EXTEND:
6940 case ISD::FP_EXTEND: {
Dan Gohman475871a2008-07-27 21:46:04 +00006941 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00006942 SplitVectorOp(Node->getOperand(0), L, H);
6943
Nate Begeman5db1afb2007-11-15 21:15:26 +00006944 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
6945 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00006946 break;
6947 }
Dan Gohman7f321562007-06-25 16:23:39 +00006948 case ISD::LOAD: {
6949 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00006950 SDValue Ch = LD->getChain();
6951 SDValue Ptr = LD->getBasePtr();
Dan Gohman7f8613e2008-08-14 20:04:46 +00006952 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00006953 const Value *SV = LD->getSrcValue();
6954 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00006955 MVT MemoryVT = LD->getMemoryVT();
Dan Gohman7f321562007-06-25 16:23:39 +00006956 unsigned Alignment = LD->getAlignment();
6957 bool isVolatile = LD->isVolatile();
6958
Dan Gohman7f8613e2008-08-14 20:04:46 +00006959 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
6960 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
6961
6962 MVT MemNewEltVT = MemoryVT.getVectorElementType();
6963 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
6964 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
6965
6966 Lo = DAG.getLoad(ISD::UNINDEXED, ExtType,
6967 NewVT_Lo, Ch, Ptr, Offset,
6968 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
6969 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00006970 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006971 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006972 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006973 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman7f8613e2008-08-14 20:04:46 +00006974 Hi = DAG.getLoad(ISD::UNINDEXED, ExtType,
6975 NewVT_Hi, Ch, Ptr, Offset,
6976 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00006977
6978 // Build a factor node to remember that this load is independent of the
6979 // other one.
Dan Gohman475871a2008-07-27 21:46:04 +00006980 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Chris Lattnerc7029802006-03-18 01:44:44 +00006981 Hi.getValue(1));
6982
6983 // Remember that we legalized the chain.
6984 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00006985 break;
6986 }
Dan Gohman7f321562007-06-25 16:23:39 +00006987 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00006988 // We know the result is a vector. The input may be either a vector or a
6989 // scalar value.
Dan Gohman475871a2008-07-27 21:46:04 +00006990 SDValue InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00006991 if (!InOp.getValueType().isVector() ||
6992 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00006993 // The input is a scalar or single-element vector.
6994 // Lower to a store/load so that it can be split.
6995 // FIXME: this could be improved probably.
Mon P Wang2920d2b2008-07-15 05:28:34 +00006996 unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment(
6997 Op.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00006998 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Dan Gohmana54cf172008-07-11 22:44:52 +00006999 int FI = cast<FrameIndexSDNode>(Ptr.Val)->getIndex();
Chris Lattner7692eb42006-03-23 21:16:34 +00007000
Dan Gohman475871a2008-07-27 21:46:04 +00007001 SDValue St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00007002 InOp, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007003 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohman69de1932008-02-06 22:27:42 +00007004 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007005 PseudoSourceValue::getFixedStack(FI), 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00007006 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007007 // Split the vector and convert each of the pieces now.
7008 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007009 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
7010 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007011 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007012 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007013 }
7014
7015 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00007016 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007017 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007018 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007019}
7020
7021
Dan Gohman89b20c02007-06-27 14:06:22 +00007022/// ScalarizeVectorOp - Given an operand of single-element vector type
7023/// (e.g. v1f32), convert it into the equivalent operation that returns a
7024/// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +00007025SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007026 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Chris Lattnerc7029802006-03-18 01:44:44 +00007027 SDNode *Node = Op.Val;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007028 MVT NewVT = Op.getValueType().getVectorElementType();
7029 assert(Op.getValueType().getVectorNumElements() == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00007030
Dan Gohman7f321562007-06-25 16:23:39 +00007031 // See if we already scalarized it.
Dan Gohman475871a2008-07-27 21:46:04 +00007032 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohman7f321562007-06-25 16:23:39 +00007033 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00007034
Dan Gohman475871a2008-07-27 21:46:04 +00007035 SDValue Result;
Chris Lattnerc7029802006-03-18 01:44:44 +00007036 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00007037 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007038#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007039 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007040#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007041 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7042 case ISD::ADD:
7043 case ISD::FADD:
7044 case ISD::SUB:
7045 case ISD::FSUB:
7046 case ISD::MUL:
7047 case ISD::FMUL:
7048 case ISD::SDIV:
7049 case ISD::UDIV:
7050 case ISD::FDIV:
7051 case ISD::SREM:
7052 case ISD::UREM:
7053 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007054 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007055 case ISD::AND:
7056 case ISD::OR:
7057 case ISD::XOR:
7058 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00007059 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007060 ScalarizeVectorOp(Node->getOperand(0)),
7061 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007062 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007063 case ISD::FNEG:
7064 case ISD::FABS:
7065 case ISD::FSQRT:
7066 case ISD::FSIN:
7067 case ISD::FCOS:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007068 case ISD::FP_TO_SINT:
7069 case ISD::FP_TO_UINT:
7070 case ISD::SINT_TO_FP:
7071 case ISD::UINT_TO_FP:
7072 case ISD::SIGN_EXTEND:
7073 case ISD::ZERO_EXTEND:
7074 case ISD::ANY_EXTEND:
7075 case ISD::TRUNCATE:
7076 case ISD::FP_EXTEND:
Dan Gohman7f321562007-06-25 16:23:39 +00007077 Result = DAG.getNode(Node->getOpcode(),
7078 NewVT,
7079 ScalarizeVectorOp(Node->getOperand(0)));
7080 break;
Dan Gohman9e04c822007-10-12 14:13:46 +00007081 case ISD::FPOWI:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007082 case ISD::FP_ROUND:
Dan Gohman9e04c822007-10-12 14:13:46 +00007083 Result = DAG.getNode(Node->getOpcode(),
7084 NewVT,
7085 ScalarizeVectorOp(Node->getOperand(0)),
7086 Node->getOperand(1));
7087 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007088 case ISD::LOAD: {
7089 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007090 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7091 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman7f8613e2008-08-14 20:04:46 +00007092 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007093 const Value *SV = LD->getSrcValue();
7094 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007095 MVT MemoryVT = LD->getMemoryVT();
7096 unsigned Alignment = LD->getAlignment();
7097 bool isVolatile = LD->isVolatile();
7098
7099 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
7100 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
7101
7102 Result = DAG.getLoad(ISD::UNINDEXED, ExtType,
7103 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7104 MemoryVT.getVectorElementType(),
7105 isVolatile, Alignment);
Dan Gohman7f321562007-06-25 16:23:39 +00007106
Chris Lattnerc7029802006-03-18 01:44:44 +00007107 // Remember that we legalized the chain.
7108 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7109 break;
7110 }
Dan Gohman7f321562007-06-25 16:23:39 +00007111 case ISD::BUILD_VECTOR:
7112 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007113 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007114 case ISD::INSERT_VECTOR_ELT:
7115 // Returning the inserted scalar element.
7116 Result = Node->getOperand(1);
7117 break;
7118 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007119 assert(Node->getOperand(0).getValueType() == NewVT &&
7120 "Concat of non-legal vectors not yet supported!");
7121 Result = Node->getOperand(0);
7122 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007123 case ISD::VECTOR_SHUFFLE: {
7124 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman475871a2008-07-27 21:46:04 +00007125 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohman7f321562007-06-25 16:23:39 +00007126 if (cast<ConstantSDNode>(EltNum)->getValue())
7127 Result = ScalarizeVectorOp(Node->getOperand(1));
7128 else
7129 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007130 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007131 }
7132 case ISD::EXTRACT_SUBVECTOR:
7133 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00007134 assert(Result.getValueType() == NewVT);
7135 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007136 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007137 SDValue Op0 = Op.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007138 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007139 Op0 = ScalarizeVectorOp(Op0);
7140 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007141 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007142 }
Dan Gohman7f321562007-06-25 16:23:39 +00007143 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007144 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007145 ScalarizeVectorOp(Op.getOperand(1)),
7146 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007147 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007148 case ISD::SELECT_CC:
7149 Result = DAG.getNode(ISD::SELECT_CC, NewVT, Node->getOperand(0),
7150 Node->getOperand(1),
7151 ScalarizeVectorOp(Op.getOperand(2)),
7152 ScalarizeVectorOp(Op.getOperand(3)),
7153 Node->getOperand(4));
7154 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007155 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007156 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7157 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Nate Begeman0d1704b2008-05-12 23:09:43 +00007158 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0), Op0, Op1,
7159 Op.getOperand(2));
7160 Result = DAG.getNode(ISD::SELECT, NewVT, Result,
7161 DAG.getConstant(-1ULL, NewVT),
7162 DAG.getConstant(0ULL, NewVT));
7163 break;
7164 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007165 }
7166
7167 if (TLI.isTypeLegal(NewVT))
7168 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007169 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7170 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007171 return Result;
7172}
7173
Chris Lattner3e928bb2005-01-07 07:47:09 +00007174
7175// SelectionDAG::Legalize - This is the entry point for the file.
7176//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00007177void SelectionDAG::Legalize() {
Chris Lattner3e928bb2005-01-07 07:47:09 +00007178 /// run - This is the main entry point to this class.
7179 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00007180 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00007181}
7182