blob: ba78b8166a60979028e85b8ed2d0507a6fe9aeb4 [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 {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000252 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getZExtValue();
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 }
Gabor Greifba36cb52008-08-28 21:40:38 +0000263 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.getNode() : 0;
Chris Lattner4352cc92006-04-04 17:23:26 +0000264}
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 Lattner3e928bb2005-01-07 07:47:09 +0000273void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000274 LastCALLSEQ_END = DAG.getEntryNode();
275 IsLegalizingCall = false;
276
Chris Lattnerab510a72005-10-02 17:49:46 +0000277 // The legalize process is inherently a bottom-up recursive process (users
278 // legalize their uses before themselves). Given infinite stack space, we
279 // could just start legalizing on the root and traverse the whole graph. In
280 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000281 // blocks. To avoid this problem, compute an ordering of the nodes where each
282 // node is only legalized after all of its operands are legalized.
Dan Gohman3200d922008-08-26 21:42:18 +0000283 std::vector<SDNode *> TopOrder;
284 unsigned N = DAG.AssignTopologicalOrder(TopOrder);
285 for (unsigned i = N; i != 0; --i)
286 HandleOp(SDValue(TopOrder[i-1], 0));
287 TopOrder.clear();
Chris Lattner32fca002005-10-06 01:20:27 +0000288
289 // Finally, it's possible the root changed. Get the new root.
Dan Gohman475871a2008-07-27 21:46:04 +0000290 SDValue OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000291 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
292 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000293
294 ExpandedNodes.clear();
295 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000296 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000297 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000298 ScalarizedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000299
300 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000301 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000302}
303
Chris Lattner6831a812006-02-13 09:18:02 +0000304
305/// FindCallEndFromCallStart - Given a chained node that is part of a call
306/// sequence, find the CALLSEQ_END node that terminates the call sequence.
307static SDNode *FindCallEndFromCallStart(SDNode *Node) {
308 if (Node->getOpcode() == ISD::CALLSEQ_END)
309 return Node;
310 if (Node->use_empty())
311 return 0; // No CallSeqEnd
312
313 // The chain is usually at the end.
Dan Gohman475871a2008-07-27 21:46:04 +0000314 SDValue TheChain(Node, Node->getNumValues()-1);
Chris Lattner6831a812006-02-13 09:18:02 +0000315 if (TheChain.getValueType() != MVT::Other) {
316 // Sometimes it's at the beginning.
Dan Gohman475871a2008-07-27 21:46:04 +0000317 TheChain = SDValue(Node, 0);
Chris Lattner6831a812006-02-13 09:18:02 +0000318 if (TheChain.getValueType() != MVT::Other) {
319 // Otherwise, hunt for it.
320 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
321 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman475871a2008-07-27 21:46:04 +0000322 TheChain = SDValue(Node, i);
Chris Lattner6831a812006-02-13 09:18:02 +0000323 break;
324 }
325
326 // Otherwise, we walked into a node without a chain.
327 if (TheChain.getValueType() != MVT::Other)
328 return 0;
329 }
330 }
331
332 for (SDNode::use_iterator UI = Node->use_begin(),
333 E = Node->use_end(); UI != E; ++UI) {
334
335 // Make sure to only follow users of our token chain.
Dan Gohman89684502008-07-27 20:43:25 +0000336 SDNode *User = *UI;
Chris Lattner6831a812006-02-13 09:18:02 +0000337 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
338 if (User->getOperand(i) == TheChain)
339 if (SDNode *Result = FindCallEndFromCallStart(User))
340 return Result;
341 }
342 return 0;
343}
344
345/// FindCallStartFromCallEnd - Given a chained node that is part of a call
346/// sequence, find the CALLSEQ_START node that initiates the call sequence.
347static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
348 assert(Node && "Didn't find callseq_start for a call??");
349 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
350
351 assert(Node->getOperand(0).getValueType() == MVT::Other &&
352 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000353 return FindCallStartFromCallEnd(Node->getOperand(0).getNode());
Chris Lattner6831a812006-02-13 09:18:02 +0000354}
355
356/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
357/// see if any uses can reach Dest. If no dest operands can get to dest,
358/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000359///
360/// Keep track of the nodes we fine that actually do lead to Dest in
361/// NodesLeadingTo. This avoids retraversing them exponential number of times.
362///
363bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000364 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000365 if (N == Dest) return true; // N certainly leads to Dest :)
366
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000367 // If we've already processed this node and it does lead to Dest, there is no
368 // need to reprocess it.
369 if (NodesLeadingTo.count(N)) return true;
370
Chris Lattner6831a812006-02-13 09:18:02 +0000371 // If the first result of this node has been already legalized, then it cannot
372 // reach N.
373 switch (getTypeAction(N->getValueType(0))) {
374 case Legal:
Dan Gohman475871a2008-07-27 21:46:04 +0000375 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000376 break;
377 case Promote:
Dan Gohman475871a2008-07-27 21:46:04 +0000378 if (PromotedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000379 break;
380 case Expand:
Dan Gohman475871a2008-07-27 21:46:04 +0000381 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000382 break;
383 }
384
385 // Okay, this node has not already been legalized. Check and legalize all
386 // operands. If none lead to Dest, then we can legalize this node.
387 bool OperandsLeadToDest = false;
388 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
389 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Gabor Greifba36cb52008-08-28 21:40:38 +0000390 LegalizeAllNodesNotLeadingTo(N->getOperand(i).getNode(), Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000391
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000392 if (OperandsLeadToDest) {
393 NodesLeadingTo.insert(N);
394 return true;
395 }
Chris Lattner6831a812006-02-13 09:18:02 +0000396
397 // Okay, this node looks safe, legalize it and return false.
Dan Gohman475871a2008-07-27 21:46:04 +0000398 HandleOp(SDValue(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000399 return false;
400}
401
Dan Gohman7f321562007-06-25 16:23:39 +0000402/// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000403/// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000404void SelectionDAGLegalize::HandleOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000405 MVT VT = Op.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000406 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000407 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000408 case Legal: (void)LegalizeOp(Op); break;
409 case Promote: (void)PromoteOp(Op); break;
Chris Lattnerc7029802006-03-18 01:44:44 +0000410 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000411 if (!VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +0000412 // If this is an illegal scalar, expand it into its two component
413 // pieces.
Dan Gohman475871a2008-07-27 21:46:04 +0000414 SDValue X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000415 if (Op.getOpcode() == ISD::TargetConstant)
416 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000417 ExpandOp(Op, X, Y);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000418 } else if (VT.getVectorNumElements() == 1) {
Dan Gohman7f321562007-06-25 16:23:39 +0000419 // If this is an illegal single element vector, convert it to a
420 // scalar operation.
421 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000422 } else {
Dan Gohman7f321562007-06-25 16:23:39 +0000423 // Otherwise, this is an illegal multiple element vector.
424 // Split it in half and legalize both parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000425 SDValue X, Y;
Dan Gohman7f321562007-06-25 16:23:39 +0000426 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000427 }
428 break;
429 }
430}
Chris Lattner6831a812006-02-13 09:18:02 +0000431
Evan Cheng9f877882006-12-13 20:57:08 +0000432/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
433/// a load from the constant pool.
Dan Gohman475871a2008-07-27 21:46:04 +0000434static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng279101e2006-12-12 22:19:28 +0000435 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000436 bool Extend = false;
437
438 // If a FP immediate is precise when represented as a float and if the
439 // target can do an extending load from float to double, we put it into
440 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000441 // double. This shrinks FP constants and canonicalizes them for targets where
442 // an FP extending load is the same cost as a normal load (such as on the x87
443 // fp stack or PPC FP unit).
Duncan Sands83ec4b62008-06-06 12:08:01 +0000444 MVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000445 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000446 if (!UseCP) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000447 if (VT!=MVT::f64 && VT!=MVT::f32)
448 assert(0 && "Invalid type expansion");
Dan Gohman6cf9b8a2008-03-11 00:11:06 +0000449 return DAG.getConstant(LLVMC->getValueAPF().convertToAPInt(),
Evan Chengef120572008-03-04 08:05:30 +0000450 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000451 }
452
Duncan Sands83ec4b62008-06-06 12:08:01 +0000453 MVT OrigVT = VT;
454 MVT SVT = VT;
Evan Chengef120572008-03-04 08:05:30 +0000455 while (SVT != MVT::f32) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000456 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Chengef120572008-03-04 08:05:30 +0000457 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
458 // Only do this if the target has a native EXTLOAD instruction from
459 // smaller type.
Evan Cheng6fd599f2008-03-05 01:30:59 +0000460 TLI.isLoadXLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000461 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000462 const Type *SType = SVT.getTypeForMVT();
Evan Chengef120572008-03-04 08:05:30 +0000463 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
464 VT = SVT;
465 Extend = true;
466 }
Evan Cheng00495212006-12-12 21:32:44 +0000467 }
468
Dan Gohman475871a2008-07-27 21:46:04 +0000469 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Chengef120572008-03-04 08:05:30 +0000470 if (Extend)
471 return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000472 CPIdx, PseudoSourceValue::getConstantPool(),
Evan Chengef120572008-03-04 08:05:30 +0000473 0, VT);
474 return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx,
475 PseudoSourceValue::getConstantPool(), 0);
Evan Cheng00495212006-12-12 21:32:44 +0000476}
477
Chris Lattner6831a812006-02-13 09:18:02 +0000478
Evan Cheng912095b2007-01-04 21:56:39 +0000479/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
480/// operations.
481static
Dan Gohman475871a2008-07-27 21:46:04 +0000482SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
483 SelectionDAG &DAG, TargetLowering &TLI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000484 MVT VT = Node->getValueType(0);
485 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000486 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
487 "fcopysign expansion only supported for f32 and f64");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000488 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000489
Evan Cheng912095b2007-01-04 21:56:39 +0000490 // First get the sign bit of second operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000491 SDValue Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000492 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
493 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000494 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Dan Gohman475871a2008-07-27 21:46:04 +0000495 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000496 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000497 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000498 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Evan Cheng912095b2007-01-04 21:56:39 +0000499 if (SizeDiff > 0) {
500 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
501 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
502 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000503 } else if (SizeDiff < 0) {
504 SignBit = DAG.getNode(ISD::ZERO_EXTEND, NVT, SignBit);
505 SignBit = DAG.getNode(ISD::SHL, NVT, SignBit,
506 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
507 }
Evan Cheng068c5f42007-01-05 21:31:51 +0000508
509 // Clear the sign bit of first operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000510 SDValue Mask2 = (VT == MVT::f64)
Evan Cheng068c5f42007-01-05 21:31:51 +0000511 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
512 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
513 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Dan Gohman475871a2008-07-27 21:46:04 +0000514 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000515 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
516
517 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000518 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
519 return Result;
520}
521
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000522/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
523static
Dan Gohman475871a2008-07-27 21:46:04 +0000524SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
525 TargetLowering &TLI) {
526 SDValue Chain = ST->getChain();
527 SDValue Ptr = ST->getBasePtr();
528 SDValue Val = ST->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000529 MVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000530 int Alignment = ST->getAlignment();
531 int SVOffset = ST->getSrcValueOffset();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000532 if (ST->getMemoryVT().isFloatingPoint() ||
533 ST->getMemoryVT().isVector()) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000534 // Expand to a bitconvert of the value to the integer type of the
535 // same size, then a (misaligned) int store.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000536 MVT intVT;
537 if (VT.is128BitVector() || VT == MVT::ppcf128 || VT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000538 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000539 else if (VT.is64BitVector() || VT==MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000540 intVT = MVT::i64;
541 else if (VT==MVT::f32)
542 intVT = MVT::i32;
543 else
Dale Johannesencd9f1742008-02-28 18:36:51 +0000544 assert(0 && "Unaligned store of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000545
Dan Gohman475871a2008-07-27 21:46:04 +0000546 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000547 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
548 SVOffset, ST->isVolatile(), Alignment);
549 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000550 assert(ST->getMemoryVT().isInteger() &&
551 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000552 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000553 // Get the half-size VT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000554 MVT NewStoredVT =
555 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
556 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000557 int IncrementSize = NumBits / 8;
558
559 // Divide the stored value in two parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000560 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
561 SDValue Lo = Val;
562 SDValue Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000563
564 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000565 SDValue Store1, Store2;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000566 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
567 ST->getSrcValue(), SVOffset, NewStoredVT,
568 ST->isVolatile(), Alignment);
569 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
570 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000571 Alignment = MinAlign(Alignment, IncrementSize);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000572 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
573 ST->getSrcValue(), SVOffset + IncrementSize,
574 NewStoredVT, ST->isVolatile(), Alignment);
575
576 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
577}
578
579/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
580static
Dan Gohman475871a2008-07-27 21:46:04 +0000581SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
582 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000583 int SVOffset = LD->getSrcValueOffset();
Dan Gohman475871a2008-07-27 21:46:04 +0000584 SDValue Chain = LD->getChain();
585 SDValue Ptr = LD->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000586 MVT VT = LD->getValueType(0);
587 MVT LoadedVT = LD->getMemoryVT();
588 if (VT.isFloatingPoint() || VT.isVector()) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000589 // Expand to a (misaligned) integer load of the same size,
Dale Johannesen8155d642008-02-27 22:36:00 +0000590 // then bitconvert to floating point or vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000591 MVT intVT;
592 if (LoadedVT.is128BitVector() ||
Dale Johannesen3c8b59c2008-03-01 03:40:57 +0000593 LoadedVT == MVT::ppcf128 || LoadedVT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000594 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000595 else if (LoadedVT.is64BitVector() || LoadedVT == MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000596 intVT = MVT::i64;
Chris Lattnere400af82007-11-19 21:38:03 +0000597 else if (LoadedVT == MVT::f32)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000598 intVT = MVT::i32;
599 else
Dale Johannesen8155d642008-02-27 22:36:00 +0000600 assert(0 && "Unaligned load of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000601
Dan Gohman475871a2008-07-27 21:46:04 +0000602 SDValue newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
Dale Johannesen907f28c2007-09-08 19:29:23 +0000603 SVOffset, LD->isVolatile(),
604 LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +0000605 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000606 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000607 Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
608
Dan Gohman475871a2008-07-27 21:46:04 +0000609 SDValue Ops[] = { Result, Chain };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000610 return DAG.getMergeValues(Ops, 2);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000611 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000612 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000613 "Unaligned load of unsupported type.");
614
Dale Johannesen8155d642008-02-27 22:36:00 +0000615 // Compute the new VT that is half the size of the old one. This is an
616 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000617 unsigned NumBits = LoadedVT.getSizeInBits();
618 MVT NewLoadedVT;
619 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000620 NumBits >>= 1;
621
622 unsigned Alignment = LD->getAlignment();
623 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000624 ISD::LoadExtType HiExtType = LD->getExtensionType();
625
626 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
627 if (HiExtType == ISD::NON_EXTLOAD)
628 HiExtType = ISD::ZEXTLOAD;
629
630 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000631 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000632 if (TLI.isLittleEndian()) {
633 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
634 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
635 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
636 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
637 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
638 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000639 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000640 } else {
641 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
642 NewLoadedVT,LD->isVolatile(), Alignment);
643 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
644 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
645 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
646 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000647 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000648 }
649
650 // aggregate the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000651 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
652 SDValue Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000653 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
654
Dan Gohman475871a2008-07-27 21:46:04 +0000655 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000656 Hi.getValue(1));
657
Dan Gohman475871a2008-07-27 21:46:04 +0000658 SDValue Ops[] = { Result, TF };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000659 return DAG.getMergeValues(Ops, 2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000660}
Evan Cheng912095b2007-01-04 21:56:39 +0000661
Dan Gohman82669522007-10-11 23:57:53 +0000662/// UnrollVectorOp - We know that the given vector has a legal type, however
663/// the operation it performs is not legal and is an operation that we have
664/// no way of lowering. "Unroll" the vector, splitting out the scalars and
665/// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000666SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000667 MVT VT = Op.getValueType();
Dan Gohman82669522007-10-11 23:57:53 +0000668 assert(isTypeLegal(VT) &&
669 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000670 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman82669522007-10-11 23:57:53 +0000671 "Can't unroll a vector with multiple results!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000672 unsigned NE = VT.getVectorNumElements();
673 MVT EltVT = VT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000674
Dan Gohman475871a2008-07-27 21:46:04 +0000675 SmallVector<SDValue, 8> Scalars;
676 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman82669522007-10-11 23:57:53 +0000677 for (unsigned i = 0; i != NE; ++i) {
678 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +0000679 SDValue Operand = Op.getOperand(j);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000680 MVT OperandVT = Operand.getValueType();
681 if (OperandVT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +0000682 // A vector operand; extract a single element.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000683 MVT OperandEltVT = OperandVT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000684 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
685 OperandEltVT,
686 Operand,
687 DAG.getConstant(i, MVT::i32));
688 } else {
689 // A scalar operand; just use it as is.
690 Operands[j] = Operand;
691 }
692 }
693 Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
694 &Operands[0], Operands.size()));
695 }
696
697 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
698}
699
Duncan Sands007f9842008-01-10 10:28:30 +0000700/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000701static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands007f9842008-01-10 10:28:30 +0000702 RTLIB::Libcall Call_F32,
703 RTLIB::Libcall Call_F64,
704 RTLIB::Libcall Call_F80,
705 RTLIB::Libcall Call_PPCF128) {
706 return
707 VT == MVT::f32 ? Call_F32 :
708 VT == MVT::f64 ? Call_F64 :
709 VT == MVT::f80 ? Call_F80 :
710 VT == MVT::ppcf128 ? Call_PPCF128 :
711 RTLIB::UNKNOWN_LIBCALL;
712}
713
Nate Begeman68679912008-04-25 18:07:40 +0000714/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
715/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
716/// is necessary to spill the vector being inserted into to memory, perform
717/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000718SDValue SelectionDAGLegalize::
719PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx) {
720 SDValue Tmp1 = Vec;
721 SDValue Tmp2 = Val;
722 SDValue Tmp3 = Idx;
Nate Begeman68679912008-04-25 18:07:40 +0000723
724 // If the target doesn't support this, we have to spill the input vector
725 // to a temporary stack slot, update the element, then reload it. This is
726 // badness. We could also load the value into a vector register (either
727 // with a "move to register" or "extload into register" instruction, then
728 // permute it into place, if the idx is a constant and if the idx is
729 // supported by the target.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000730 MVT VT = Tmp1.getValueType();
731 MVT EltVT = VT.getVectorElementType();
732 MVT IdxVT = Tmp3.getValueType();
733 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000734 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000735
Gabor Greifba36cb52008-08-28 21:40:38 +0000736 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman68679912008-04-25 18:07:40 +0000737
738 // Store the vector.
Dan Gohman475871a2008-07-27 21:46:04 +0000739 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +0000740 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000741
742 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000743 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Nate Begeman68679912008-04-25 18:07:40 +0000744 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
745 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000746 unsigned EltSize = EltVT.getSizeInBits()/8;
Nate Begeman68679912008-04-25 18:07:40 +0000747 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
Dan Gohman475871a2008-07-27 21:46:04 +0000748 SDValue StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000749 // Store the scalar value.
750 Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2,
Dan Gohmana54cf172008-07-11 22:44:52 +0000751 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman68679912008-04-25 18:07:40 +0000752 // Load the updated vector.
Dan Gohmana54cf172008-07-11 22:44:52 +0000753 return DAG.getLoad(VT, Ch, StackPtr,
754 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000755}
756
Dan Gohmana3466152007-07-13 20:14:11 +0000757/// LegalizeOp - We know that the specified value has a legal type, and
758/// that its operands are legal. Now ensure that the operation itself
759/// is legal, recursively ensuring that the operands' operations remain
760/// legal.
Dan Gohman475871a2008-07-27 21:46:04 +0000761SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000762 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
763 return Op;
764
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000765 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000766 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000767 SDNode *Node = Op.getNode();
Chris Lattnere3304a32005-01-08 20:35:13 +0000768
Chris Lattner3e928bb2005-01-07 07:47:09 +0000769 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000770 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000771 if (Node->getNumValues() > 1) {
772 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000773 if (getTypeAction(Node->getValueType(i)) != Legal) {
774 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000775 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000776 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000777 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000778 }
779 }
780
Chris Lattner45982da2005-05-12 16:53:42 +0000781 // Note that LegalizeOp may be reentered even from single-use nodes, which
782 // means that we always must cache transformed nodes.
Dan Gohman475871a2008-07-27 21:46:04 +0000783 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000784 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000785
Dan Gohman475871a2008-07-27 21:46:04 +0000786 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
787 SDValue Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000788 bool isCustom = false;
789
Chris Lattner3e928bb2005-01-07 07:47:09 +0000790 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000791 case ISD::FrameIndex:
792 case ISD::EntryToken:
793 case ISD::Register:
794 case ISD::BasicBlock:
795 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000796 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000797 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000798 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000799 case ISD::TargetConstantPool:
800 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000801 case ISD::TargetGlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +0000802 case ISD::TargetExternalSymbol:
Chris Lattner948c1b12006-01-28 08:31:04 +0000803 case ISD::VALUETYPE:
804 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +0000805 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +0000806 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +0000807 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +0000808 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +0000809 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +0000810 "This must be legal!");
811 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000812 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000813 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
814 // If this is a target node, legalize it by legalizing the operands then
815 // passing it through.
Dan Gohman475871a2008-07-27 21:46:04 +0000816 SmallVector<SDValue, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000817 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000818 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000819
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000820 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000821
822 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
823 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +0000824 return Result.getValue(Op.getResNo());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000825 }
826 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000827#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +0000828 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000829#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000830 assert(0 && "Do not know how to legalize this operator!");
831 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +0000832 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000833 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000834 case ISD::GlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +0000835 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000836 case ISD::ConstantPool:
837 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000838 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
839 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000840 case TargetLowering::Custom:
841 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000842 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner948c1b12006-01-28 08:31:04 +0000843 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000844 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000845 break;
846 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000847 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000848 case ISD::FRAMEADDR:
849 case ISD::RETURNADDR:
850 // The only option for these nodes is to custom lower them. If the target
851 // does not custom lower them, then return zero.
852 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000853 if (Tmp1.getNode())
Nate Begemanbcc5f362007-01-29 22:58:52 +0000854 Result = Tmp1;
855 else
856 Result = DAG.getConstant(0, TLI.getPointerTy());
857 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000858 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000859 MVT VT = Node->getValueType(0);
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000860 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
861 default: assert(0 && "This action is not supported yet!");
862 case TargetLowering::Custom:
863 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000864 if (Result.getNode()) break;
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000865 // Fall Thru
866 case TargetLowering::Legal:
867 Result = DAG.getConstant(0, VT);
868 break;
869 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000870 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000871 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000872 case ISD::EXCEPTIONADDR: {
873 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000874 MVT VT = Node->getValueType(0);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000875 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
876 default: assert(0 && "This action is not supported yet!");
877 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000878 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000879 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000880 }
881 break;
882 case TargetLowering::Custom:
883 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000884 if (Result.getNode()) break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000885 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000886 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +0000887 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000888 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000889 break;
890 }
891 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000892 }
Gabor Greifba36cb52008-08-28 21:40:38 +0000893 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +0000894
Gabor Greifba36cb52008-08-28 21:40:38 +0000895 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +0000896 "Cannot return more than two values!");
897
898 // Since we produced two values, make sure to remember that we
899 // legalized both of them.
900 Tmp1 = LegalizeOp(Result);
901 Tmp2 = LegalizeOp(Result.getValue(1));
902 AddLegalizedOperand(Op.getValue(0), Tmp1);
903 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +0000904 return Op.getResNo() ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +0000905 case ISD::EHSELECTION: {
906 Tmp1 = LegalizeOp(Node->getOperand(0));
907 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000908 MVT VT = Node->getValueType(0);
Jim Laskey8782d482007-02-28 20:43:58 +0000909 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
910 default: assert(0 && "This action is not supported yet!");
911 case TargetLowering::Expand: {
912 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000913 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +0000914 }
915 break;
916 case TargetLowering::Custom:
917 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000918 if (Result.getNode()) break;
Jim Laskey8782d482007-02-28 20:43:58 +0000919 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000920 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +0000921 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000922 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey8782d482007-02-28 20:43:58 +0000923 break;
924 }
925 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000926 }
Gabor Greifba36cb52008-08-28 21:40:38 +0000927 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +0000928
Gabor Greifba36cb52008-08-28 21:40:38 +0000929 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +0000930 "Cannot return more than two values!");
931
932 // Since we produced two values, make sure to remember that we
933 // legalized both of them.
934 Tmp1 = LegalizeOp(Result);
935 Tmp2 = LegalizeOp(Result.getValue(1));
936 AddLegalizedOperand(Op.getValue(0), Tmp1);
937 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +0000938 return Op.getResNo() ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000939 case ISD::EH_RETURN: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000940 MVT VT = Node->getValueType(0);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000941 // The only "good" option for this node is to custom lower it.
942 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
943 default: assert(0 && "This action is not supported at all!");
944 case TargetLowering::Custom:
945 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000946 if (Result.getNode()) break;
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000947 // Fall Thru
948 case TargetLowering::Legal:
949 // Target does not know, how to lower this, lower to noop
950 Result = LegalizeOp(Node->getOperand(0));
951 break;
952 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000953 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000954 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000955 case ISD::AssertSext:
956 case ISD::AssertZext:
957 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000958 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000959 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000960 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000961 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif99a6cb92008-08-26 22:36:50 +0000962 Result = Node->getOperand(Op.getResNo());
Chris Lattner456a93a2006-01-28 07:39:30 +0000963 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000964 case ISD::CopyFromReg:
965 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000966 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000967 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000968 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000969 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000970 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000971 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000972 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000973 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
974 } else {
975 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
976 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000977 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
978 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000979 // Since CopyFromReg produces two values, make sure to remember that we
980 // legalized both of them.
981 AddLegalizedOperand(Op.getValue(0), Result);
982 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +0000983 return Result.getValue(Op.getResNo());
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000984 case ISD::UNDEF: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000985 MVT VT = Op.getValueType();
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000986 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000987 default: assert(0 && "This action is not supported yet!");
988 case TargetLowering::Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000989 if (VT.isInteger())
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000990 Result = DAG.getConstant(0, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000991 else if (VT.isFloatingPoint())
992 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf41db212007-09-26 17:26:49 +0000993 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000994 else
995 assert(0 && "Unknown value type!");
996 break;
Nate Begemanea19cd52005-04-02 00:41:14 +0000997 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000998 break;
999 }
1000 break;
1001 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001002
Chris Lattner48b61a72006-03-28 00:40:33 +00001003 case ISD::INTRINSIC_W_CHAIN:
1004 case ISD::INTRINSIC_WO_CHAIN:
1005 case ISD::INTRINSIC_VOID: {
Dan Gohman475871a2008-07-27 21:46:04 +00001006 SmallVector<SDValue, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001007 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1008 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001009 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +00001010
1011 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +00001012 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001013 TargetLowering::Custom) {
1014 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001015 if (Tmp3.getNode()) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001016 }
1017
Gabor Greifba36cb52008-08-28 21:40:38 +00001018 if (Result.getNode()->getNumValues() == 1) break;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001019
1020 // Must have return value and chain result.
Gabor Greifba36cb52008-08-28 21:40:38 +00001021 assert(Result.getNode()->getNumValues() == 2 &&
Chris Lattner13fc2f12006-03-27 20:28:29 +00001022 "Cannot return more than two values!");
1023
1024 // Since loads produce two values, make sure to remember that we
1025 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001026 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1027 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001028 return Result.getValue(Op.getResNo());
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001029 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001030
Dan Gohman7f460202008-06-30 20:59:49 +00001031 case ISD::DBG_STOPPOINT:
1032 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Chris Lattner36ce6912005-11-29 06:21:05 +00001033 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1034
Dan Gohman7f460202008-06-30 20:59:49 +00001035 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Chris Lattner36ce6912005-11-29 06:21:05 +00001036 case TargetLowering::Promote:
1037 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001038 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001039 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001040 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Dan Gohman44066042008-07-01 00:05:16 +00001041 bool useLABEL = TLI.isOperationLegal(ISD::DBG_LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001042
Dan Gohman7f460202008-06-30 20:59:49 +00001043 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001044 if (MMI && (useDEBUG_LOC || useLABEL)) {
Dan Gohman7f460202008-06-30 20:59:49 +00001045 const CompileUnitDesc *CompileUnit = DSP->getCompileUnit();
1046 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001047
Dan Gohman7f460202008-06-30 20:59:49 +00001048 unsigned Line = DSP->getLine();
1049 unsigned Col = DSP->getColumn();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001050
1051 if (useDEBUG_LOC) {
Dan Gohman475871a2008-07-27 21:46:04 +00001052 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Evan Cheng71e86852008-07-08 20:06:39 +00001053 DAG.getConstant(Col, MVT::i32),
1054 DAG.getConstant(SrcFile, MVT::i32) };
1055 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Ops, 4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001056 } else {
Evan Chenga647c922008-02-01 02:05:57 +00001057 unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
Dan Gohman44066042008-07-01 00:05:16 +00001058 Result = DAG.getLabel(ISD::DBG_LABEL, Tmp1, ID);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001059 }
Jim Laskeye81aecb2005-12-21 20:51:37 +00001060 } else {
1061 Result = Tmp1; // chain
1062 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001063 break;
Chris Lattnere7736732005-12-18 23:54:29 +00001064 }
Evan Cheng71e86852008-07-08 20:06:39 +00001065 case TargetLowering::Legal: {
1066 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1067 if (Action == Legal && Tmp1 == Node->getOperand(0))
1068 break;
1069
Dan Gohman475871a2008-07-27 21:46:04 +00001070 SmallVector<SDValue, 8> Ops;
Evan Cheng71e86852008-07-08 20:06:39 +00001071 Ops.push_back(Tmp1);
1072 if (Action == Legal) {
1073 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1074 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1075 } else {
1076 // Otherwise promote them.
1077 Ops.push_back(PromoteOp(Node->getOperand(1)));
1078 Ops.push_back(PromoteOp(Node->getOperand(2)));
Chris Lattner36ce6912005-11-29 06:21:05 +00001079 }
Evan Cheng71e86852008-07-08 20:06:39 +00001080 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1081 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1082 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001083 break;
1084 }
Evan Cheng71e86852008-07-08 20:06:39 +00001085 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001086 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001087
1088 case ISD::DECLARE:
1089 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1090 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1091 default: assert(0 && "This action is not supported yet!");
1092 case TargetLowering::Legal:
1093 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1094 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1095 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1096 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1097 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001098 case TargetLowering::Expand:
1099 Result = LegalizeOp(Node->getOperand(0));
1100 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001101 }
1102 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001103
1104 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001105 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001106 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001107 default: assert(0 && "This action is not supported yet!");
Evan Cheng71e86852008-07-08 20:06:39 +00001108 case TargetLowering::Legal: {
1109 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001110 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Cheng71e86852008-07-08 20:06:39 +00001111 if (Action == Legal && Tmp1 == Node->getOperand(0))
1112 break;
1113 if (Action == Legal) {
1114 Tmp2 = Node->getOperand(1);
1115 Tmp3 = Node->getOperand(2);
1116 Tmp4 = Node->getOperand(3);
1117 } else {
1118 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1119 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1120 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1121 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001122 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001123 break;
1124 }
Evan Cheng71e86852008-07-08 20:06:39 +00001125 }
Jim Laskeyabf6d172006-01-05 01:25:28 +00001126 break;
1127
Dan Gohman44066042008-07-01 00:05:16 +00001128 case ISD::DBG_LABEL:
1129 case ISD::EH_LABEL:
1130 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1131 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001132 default: assert(0 && "This action is not supported yet!");
1133 case TargetLowering::Legal:
1134 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001135 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001136 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001137 case TargetLowering::Expand:
1138 Result = LegalizeOp(Node->getOperand(0));
1139 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001140 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001141 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001142
Evan Cheng27b7db52008-03-08 00:58:38 +00001143 case ISD::PREFETCH:
1144 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1145 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1146 default: assert(0 && "This action is not supported yet!");
1147 case TargetLowering::Legal:
1148 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1149 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1150 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1151 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1152 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1153 break;
1154 case TargetLowering::Expand:
1155 // It's a noop.
1156 Result = LegalizeOp(Node->getOperand(0));
1157 break;
1158 }
1159 break;
1160
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001161 case ISD::MEMBARRIER: {
1162 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001163 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1164 default: assert(0 && "This action is not supported yet!");
1165 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001166 SDValue Ops[6];
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001167 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001168 for (int x = 1; x < 6; ++x) {
1169 Ops[x] = Node->getOperand(x);
1170 if (!isTypeLegal(Ops[x].getValueType()))
1171 Ops[x] = PromoteOp(Ops[x]);
1172 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001173 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1174 break;
1175 }
1176 case TargetLowering::Expand:
1177 //There is no libgcc call for this op
1178 Result = Node->getOperand(0); // Noop
1179 break;
1180 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001181 break;
1182 }
1183
Dale Johannesene00a8a22008-08-28 02:44:49 +00001184 case ISD::ATOMIC_CMP_SWAP_8:
1185 case ISD::ATOMIC_CMP_SWAP_16:
1186 case ISD::ATOMIC_CMP_SWAP_32:
1187 case ISD::ATOMIC_CMP_SWAP_64: {
Mon P Wang63307c32008-05-05 19:05:59 +00001188 unsigned int num_operands = 4;
1189 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001190 SDValue Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001191 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001192 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001193 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1194
1195 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1196 default: assert(0 && "This action is not supported yet!");
1197 case TargetLowering::Custom:
1198 Result = TLI.LowerOperation(Result, DAG);
1199 break;
1200 case TargetLowering::Legal:
1201 break;
1202 }
Dan Gohman475871a2008-07-27 21:46:04 +00001203 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1204 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001205 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001206 }
Dale Johannesene00a8a22008-08-28 02:44:49 +00001207 case ISD::ATOMIC_LOAD_ADD_8:
1208 case ISD::ATOMIC_LOAD_SUB_8:
1209 case ISD::ATOMIC_LOAD_AND_8:
1210 case ISD::ATOMIC_LOAD_OR_8:
1211 case ISD::ATOMIC_LOAD_XOR_8:
1212 case ISD::ATOMIC_LOAD_NAND_8:
1213 case ISD::ATOMIC_LOAD_MIN_8:
1214 case ISD::ATOMIC_LOAD_MAX_8:
1215 case ISD::ATOMIC_LOAD_UMIN_8:
1216 case ISD::ATOMIC_LOAD_UMAX_8:
1217 case ISD::ATOMIC_SWAP_8:
1218 case ISD::ATOMIC_LOAD_ADD_16:
1219 case ISD::ATOMIC_LOAD_SUB_16:
1220 case ISD::ATOMIC_LOAD_AND_16:
1221 case ISD::ATOMIC_LOAD_OR_16:
1222 case ISD::ATOMIC_LOAD_XOR_16:
1223 case ISD::ATOMIC_LOAD_NAND_16:
1224 case ISD::ATOMIC_LOAD_MIN_16:
1225 case ISD::ATOMIC_LOAD_MAX_16:
1226 case ISD::ATOMIC_LOAD_UMIN_16:
1227 case ISD::ATOMIC_LOAD_UMAX_16:
1228 case ISD::ATOMIC_SWAP_16:
1229 case ISD::ATOMIC_LOAD_ADD_32:
1230 case ISD::ATOMIC_LOAD_SUB_32:
1231 case ISD::ATOMIC_LOAD_AND_32:
1232 case ISD::ATOMIC_LOAD_OR_32:
1233 case ISD::ATOMIC_LOAD_XOR_32:
1234 case ISD::ATOMIC_LOAD_NAND_32:
1235 case ISD::ATOMIC_LOAD_MIN_32:
1236 case ISD::ATOMIC_LOAD_MAX_32:
1237 case ISD::ATOMIC_LOAD_UMIN_32:
1238 case ISD::ATOMIC_LOAD_UMAX_32:
1239 case ISD::ATOMIC_SWAP_32:
1240 case ISD::ATOMIC_LOAD_ADD_64:
1241 case ISD::ATOMIC_LOAD_SUB_64:
1242 case ISD::ATOMIC_LOAD_AND_64:
1243 case ISD::ATOMIC_LOAD_OR_64:
1244 case ISD::ATOMIC_LOAD_XOR_64:
1245 case ISD::ATOMIC_LOAD_NAND_64:
1246 case ISD::ATOMIC_LOAD_MIN_64:
1247 case ISD::ATOMIC_LOAD_MAX_64:
1248 case ISD::ATOMIC_LOAD_UMIN_64:
1249 case ISD::ATOMIC_LOAD_UMAX_64:
1250 case ISD::ATOMIC_SWAP_64: {
Mon P Wang63307c32008-05-05 19:05:59 +00001251 unsigned int num_operands = 3;
1252 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001253 SDValue Ops[3];
Mon P Wang63307c32008-05-05 19:05:59 +00001254 for (unsigned int x = 0; x < num_operands; ++x)
1255 Ops[x] = LegalizeOp(Node->getOperand(x));
1256 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001257
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001258 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001259 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001260 case TargetLowering::Custom:
1261 Result = TLI.LowerOperation(Result, DAG);
1262 break;
Mon P Wang63307c32008-05-05 19:05:59 +00001263 case TargetLowering::Expand:
Gabor Greifba36cb52008-08-28 21:40:38 +00001264 Result = SDValue(TLI.ReplaceNodeResults(Op.getNode(), DAG),0);
Mon P Wang63307c32008-05-05 19:05:59 +00001265 break;
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001266 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001267 break;
1268 }
Dan Gohman475871a2008-07-27 21:46:04 +00001269 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1270 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001271 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001272 }
Scott Michelc1513d22007-08-08 23:23:31 +00001273 case ISD::Constant: {
1274 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1275 unsigned opAction =
1276 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1277
Chris Lattner3e928bb2005-01-07 07:47:09 +00001278 // We know we don't need to expand constants here, constants only have one
1279 // value and we check that it is fine above.
1280
Scott Michelc1513d22007-08-08 23:23:31 +00001281 if (opAction == TargetLowering::Custom) {
1282 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001283 if (Tmp1.getNode())
Scott Michelc1513d22007-08-08 23:23:31 +00001284 Result = Tmp1;
1285 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001286 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001287 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001288 case ISD::ConstantFP: {
1289 // Spill FP immediates to the constant pool if the target cannot directly
1290 // codegen them. Targets often have some immediate values that can be
1291 // efficiently generated into an FP register without a load. We explicitly
1292 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001293 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1294
Chris Lattner3181a772006-01-29 06:26:56 +00001295 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1296 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001297 case TargetLowering::Legal:
1298 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001299 case TargetLowering::Custom:
1300 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001301 if (Tmp3.getNode()) {
Chris Lattner3181a772006-01-29 06:26:56 +00001302 Result = Tmp3;
1303 break;
1304 }
1305 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001306 case TargetLowering::Expand: {
1307 // Check to see if this FP immediate is already legal.
1308 bool isLegal = false;
1309 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1310 E = TLI.legal_fpimm_end(); I != E; ++I) {
1311 if (CFP->isExactlyValue(*I)) {
1312 isLegal = true;
1313 break;
1314 }
1315 }
1316 // If this is a legal constant, turn it into a TargetConstantFP node.
1317 if (isLegal)
1318 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001319 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001320 }
Nate Begemane1795842008-02-14 08:57:00 +00001321 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001322 break;
1323 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001324 case ISD::TokenFactor:
1325 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001326 Tmp1 = LegalizeOp(Node->getOperand(0));
1327 Tmp2 = LegalizeOp(Node->getOperand(1));
1328 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1329 } else if (Node->getNumOperands() == 3) {
1330 Tmp1 = LegalizeOp(Node->getOperand(0));
1331 Tmp2 = LegalizeOp(Node->getOperand(1));
1332 Tmp3 = LegalizeOp(Node->getOperand(2));
1333 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001334 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00001335 SmallVector<SDValue, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001336 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001337 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1338 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001339 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001340 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001341 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001342
1343 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001344 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001345 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001346 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001347 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001348 // A call within a calling sequence must be legalized to something
1349 // other than the normal CALLSEQ_END. Violating this gets Legalize
1350 // into an infinite loop.
1351 assert ((!IsLegalizingCall ||
1352 Node->getOpcode() != ISD::CALL ||
Gabor Greifba36cb52008-08-28 21:40:38 +00001353 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesen0ea03562008-03-05 19:14:03 +00001354 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001355
1356 // The number of incoming and outgoing values should match; unless the final
1357 // outgoing value is a flag.
Gabor Greifba36cb52008-08-28 21:40:38 +00001358 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1359 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1360 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001361 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001362 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001363
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001364 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001365 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greifba36cb52008-08-28 21:40:38 +00001366 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1367 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001368 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001369 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001370 if (Op.getResNo() == i)
Chris Lattnere2e41732006-05-16 05:49:56 +00001371 Tmp2 = Tmp1;
Dan Gohman475871a2008-07-27 21:46:04 +00001372 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Chris Lattnere2e41732006-05-16 05:49:56 +00001373 }
1374 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001375 case ISD::EXTRACT_SUBREG: {
1376 Tmp1 = LegalizeOp(Node->getOperand(0));
1377 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1378 assert(idx && "Operand must be a constant");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001379 Tmp2 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lamb557c3632007-07-26 07:34:40 +00001380 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1381 }
1382 break;
1383 case ISD::INSERT_SUBREG: {
1384 Tmp1 = LegalizeOp(Node->getOperand(0));
1385 Tmp2 = LegalizeOp(Node->getOperand(1));
1386 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1387 assert(idx && "Operand must be a constant");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001388 Tmp3 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lamb557c3632007-07-26 07:34:40 +00001389 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1390 }
1391 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001392 case ISD::BUILD_VECTOR:
1393 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001394 default: assert(0 && "This action is not supported yet!");
1395 case TargetLowering::Custom:
1396 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001397 if (Tmp3.getNode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001398 Result = Tmp3;
1399 break;
1400 }
1401 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001402 case TargetLowering::Expand:
Gabor Greifba36cb52008-08-28 21:40:38 +00001403 Result = ExpandBUILD_VECTOR(Result.getNode());
Chris Lattnerb2827b02006-03-19 00:52:58 +00001404 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001405 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001406 break;
1407 case ISD::INSERT_VECTOR_ELT:
1408 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001409 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001410
1411 // The type of the value to insert may not be legal, even though the vector
1412 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1413 // here.
1414 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1415 default: assert(0 && "Cannot expand insert element operand");
1416 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1417 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1418 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001419 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1420
1421 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1422 Node->getValueType(0))) {
1423 default: assert(0 && "This action is not supported yet!");
1424 case TargetLowering::Legal:
1425 break;
1426 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001427 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001428 if (Tmp4.getNode()) {
Nate Begeman2281a992008-01-05 20:47:37 +00001429 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001430 break;
1431 }
1432 // FALLTHROUGH
1433 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001434 // If the insert index is a constant, codegen this as a scalar_to_vector,
1435 // then a shuffle that inserts it into the right position in the vector.
1436 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001437 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1438 // match the element type of the vector being created.
1439 if (Tmp2.getValueType() ==
Duncan Sands83ec4b62008-06-06 12:08:01 +00001440 Op.getValueType().getVectorElementType()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001441 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
Nate Begeman0325d902008-02-13 06:43:04 +00001442 Tmp1.getValueType(), Tmp2);
1443
Duncan Sands83ec4b62008-06-06 12:08:01 +00001444 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1445 MVT ShufMaskVT =
1446 MVT::getIntVectorWithNumElements(NumElts);
1447 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Nate Begeman0325d902008-02-13 06:43:04 +00001448
1449 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1450 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1451 // elt 0 of the RHS.
Dan Gohman475871a2008-07-27 21:46:04 +00001452 SmallVector<SDValue, 8> ShufOps;
Nate Begeman0325d902008-02-13 06:43:04 +00001453 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001454 if (i != InsertPos->getZExtValue())
Nate Begeman0325d902008-02-13 06:43:04 +00001455 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1456 else
1457 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1458 }
Dan Gohman475871a2008-07-27 21:46:04 +00001459 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
Nate Begeman0325d902008-02-13 06:43:04 +00001460 &ShufOps[0], ShufOps.size());
1461
1462 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1463 Tmp1, ScVec, ShufMask);
1464 Result = LegalizeOp(Result);
1465 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001466 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001467 }
Nate Begeman68679912008-04-25 18:07:40 +00001468 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001469 break;
1470 }
1471 }
1472 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001473 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001474 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1475 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1476 break;
1477 }
1478
Chris Lattnerce872152006-03-19 06:31:19 +00001479 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1480 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1481 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1482 Node->getValueType(0))) {
1483 default: assert(0 && "This action is not supported yet!");
1484 case TargetLowering::Legal:
1485 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001486 case TargetLowering::Custom:
1487 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001488 if (Tmp3.getNode()) {
Chris Lattner4d3abee2006-03-19 06:47:21 +00001489 Result = Tmp3;
1490 break;
1491 }
1492 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001493 case TargetLowering::Expand:
1494 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001495 break;
1496 }
Chris Lattnerce872152006-03-19 06:31:19 +00001497 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001498 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001499 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1500 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1501 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1502
1503 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001504 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1505 default: assert(0 && "Unknown operation action!");
1506 case TargetLowering::Legal:
1507 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1508 "vector shuffle should not be created if not legal!");
1509 break;
1510 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001511 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001512 if (Tmp3.getNode()) {
Evan Cheng18dd6d02006-04-05 06:07:11 +00001513 Result = Tmp3;
1514 break;
1515 }
1516 // FALLTHROUGH
1517 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001518 MVT VT = Node->getValueType(0);
1519 MVT EltVT = VT.getVectorElementType();
1520 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00001521 SDValue Mask = Node->getOperand(2);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001522 unsigned NumElems = Mask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00001523 SmallVector<SDValue,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001524 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001525 SDValue Arg = Mask.getOperand(i);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001526 if (Arg.getOpcode() == ISD::UNDEF) {
1527 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1528 } else {
1529 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001530 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng18dd6d02006-04-05 06:07:11 +00001531 if (Idx < NumElems)
1532 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1533 DAG.getConstant(Idx, PtrVT)));
1534 else
1535 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1536 DAG.getConstant(Idx - NumElems, PtrVT)));
1537 }
1538 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001539 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001540 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001541 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001542 case TargetLowering::Promote: {
1543 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001544 MVT OVT = Node->getValueType(0);
1545 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001546
1547 // Cast the two input vectors.
1548 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1549 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1550
1551 // Convert the shuffle mask to the right # elements.
Dan Gohman475871a2008-07-27 21:46:04 +00001552 Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001553 assert(Tmp3.getNode() && "Shuffle not legal?");
Chris Lattner4352cc92006-04-04 17:23:26 +00001554 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1555 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1556 break;
1557 }
Chris Lattner87100e02006-03-20 01:52:29 +00001558 }
1559 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001560
1561 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001562 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001563 Tmp2 = LegalizeOp(Node->getOperand(1));
1564 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001565 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001566 break;
1567
Dan Gohman7f321562007-06-25 16:23:39 +00001568 case ISD::EXTRACT_SUBVECTOR:
1569 Tmp1 = Node->getOperand(0);
1570 Tmp2 = LegalizeOp(Node->getOperand(1));
1571 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1572 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001573 break;
1574
Chris Lattner6831a812006-02-13 09:18:02 +00001575 case ISD::CALLSEQ_START: {
1576 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1577
1578 // Recursively Legalize all of the inputs of the call end that do not lead
1579 // to this call start. This ensures that any libcalls that need be inserted
1580 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001581 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001582 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00001583 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001584 NodesLeadingTo);
1585 }
Chris Lattner6831a812006-02-13 09:18:02 +00001586
1587 // Now that we legalized all of the inputs (which may have inserted
1588 // libcalls) create the new CALLSEQ_START node.
1589 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1590
1591 // Merge in the last call, to ensure that this call start after the last
1592 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001593 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001594 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1595 Tmp1 = LegalizeOp(Tmp1);
1596 }
Chris Lattner6831a812006-02-13 09:18:02 +00001597
1598 // Do not try to legalize the target-specific arguments (#1+).
1599 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001600 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001601 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001602 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001603 }
1604
1605 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001606 AddLegalizedOperand(Op.getValue(0), Result);
1607 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1608 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1609
Chris Lattner6831a812006-02-13 09:18:02 +00001610 // Now that the callseq_start and all of the non-call nodes above this call
1611 // sequence have been legalized, legalize the call itself. During this
1612 // process, no libcalls can/will be inserted, guaranteeing that no calls
1613 // can overlap.
1614 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001615 // Note that we are selecting this call!
Dan Gohman475871a2008-07-27 21:46:04 +00001616 LastCALLSEQ_END = SDValue(CallEnd, 0);
Chris Lattner6831a812006-02-13 09:18:02 +00001617 IsLegalizingCall = true;
1618
1619 // Legalize the call, starting from the CALLSEQ_END.
1620 LegalizeOp(LastCALLSEQ_END);
1621 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1622 return Result;
1623 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001624 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001625 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1626 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greifba36cb52008-08-28 21:40:38 +00001627 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman475871a2008-07-27 21:46:04 +00001628 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1629 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001630 assert(I != LegalizedNodes.end() &&
1631 "Legalizing the call start should have legalized this node!");
1632 return I->second;
1633 }
1634
1635 // Otherwise, the call start has been legalized and everything is going
1636 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001637 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001638 // Do not try to legalize the target-specific arguments (#1+), except for
1639 // an optional flag input.
1640 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1641 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001642 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001643 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001644 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001645 }
1646 } else {
1647 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1648 if (Tmp1 != Node->getOperand(0) ||
1649 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001650 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001651 Ops[0] = Tmp1;
1652 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001653 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001654 }
Chris Lattner6a542892006-01-24 05:48:21 +00001655 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001656 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001657 // This finishes up call legalization.
1658 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001659
1660 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman475871a2008-07-27 21:46:04 +00001661 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Chris Lattner4b653a02006-02-14 00:55:02 +00001662 if (Node->getNumValues() == 2)
Dan Gohman475871a2008-07-27 21:46:04 +00001663 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001664 return Result.getValue(Op.getResNo());
Evan Chenga7dce3c2006-01-11 22:14:47 +00001665 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001666 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001667 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1668 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1669 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001670 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001671
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001672 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001673 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001674 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001675 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001676 case TargetLowering::Expand: {
1677 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1678 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1679 " not tell us which reg is the stack pointer!");
Dan Gohman475871a2008-07-27 21:46:04 +00001680 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001681
1682 // Chain the dynamic stack allocation so that it doesn't modify the stack
1683 // pointer when other instructions are using the stack.
1684 Chain = DAG.getCALLSEQ_START(Chain,
1685 DAG.getConstant(0, TLI.getPointerTy()));
1686
Dan Gohman475871a2008-07-27 21:46:04 +00001687 SDValue Size = Tmp2.getOperand(1);
1688 SDValue SP = DAG.getCopyFromReg(Chain, SPReg, VT);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001689 Chain = SP.getValue(1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001690 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Cheng61bbbab2007-08-16 23:50:06 +00001691 unsigned StackAlign =
1692 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1693 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001694 SP = DAG.getNode(ISD::AND, VT, SP,
1695 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001696 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001697 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1698
1699 Tmp2 =
1700 DAG.getCALLSEQ_END(Chain,
1701 DAG.getConstant(0, TLI.getPointerTy()),
1702 DAG.getConstant(0, TLI.getPointerTy()),
Dan Gohman475871a2008-07-27 21:46:04 +00001703 SDValue());
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001704
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001705 Tmp1 = LegalizeOp(Tmp1);
1706 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001707 break;
1708 }
1709 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001710 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001711 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001712 Tmp1 = LegalizeOp(Tmp3);
1713 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001714 }
Chris Lattner903d2782006-01-15 08:54:32 +00001715 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001716 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001717 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001718 }
Chris Lattner903d2782006-01-15 08:54:32 +00001719 // Since this op produce two values, make sure to remember that we
1720 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001721 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1722 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001723 return Op.getResNo() ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001724 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001725 case ISD::INLINEASM: {
Dan Gohman475871a2008-07-27 21:46:04 +00001726 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001727 bool Changed = false;
1728 // Legalize all of the operands of the inline asm, in case they are nodes
1729 // that need to be expanded or something. Note we skip the asm string and
1730 // all of the TargetConstant flags.
Dan Gohman475871a2008-07-27 21:46:04 +00001731 SDValue Op = LegalizeOp(Ops[0]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001732 Changed = Op != Ops[0];
1733 Ops[0] = Op;
1734
1735 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1736 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001737 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getZExtValue() >> 3;
Chris Lattner25a022c2006-07-11 01:40:09 +00001738 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman475871a2008-07-27 21:46:04 +00001739 SDValue Op = LegalizeOp(Ops[i]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001740 if (Op != Ops[i]) {
1741 Changed = true;
1742 Ops[i] = Op;
1743 }
1744 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001745 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001746
1747 if (HasInFlag) {
1748 Op = LegalizeOp(Ops.back());
1749 Changed |= Op != Ops.back();
1750 Ops.back() = Op;
1751 }
1752
1753 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001754 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001755
1756 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman475871a2008-07-27 21:46:04 +00001757 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1758 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001759 return Result.getValue(Op.getResNo());
Chris Lattner25a022c2006-07-11 01:40:09 +00001760 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001761 case ISD::BR:
1762 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001763 // Ensure that libcalls are emitted before a branch.
1764 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1765 Tmp1 = LegalizeOp(Tmp1);
1766 LastCALLSEQ_END = DAG.getEntryNode();
1767
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001768 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001769 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001770 case ISD::BRIND:
1771 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1772 // Ensure that libcalls are emitted before a branch.
1773 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1774 Tmp1 = LegalizeOp(Tmp1);
1775 LastCALLSEQ_END = DAG.getEntryNode();
1776
1777 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1778 default: assert(0 && "Indirect target must be legal type (pointer)!");
1779 case Legal:
1780 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1781 break;
1782 }
1783 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1784 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001785 case ISD::BR_JT:
1786 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1787 // Ensure that libcalls are emitted before a branch.
1788 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1789 Tmp1 = LegalizeOp(Tmp1);
1790 LastCALLSEQ_END = DAG.getEntryNode();
1791
1792 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1793 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1794
1795 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1796 default: assert(0 && "This action is not supported yet!");
1797 case TargetLowering::Legal: break;
1798 case TargetLowering::Custom:
1799 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001800 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001801 break;
1802 case TargetLowering::Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00001803 SDValue Chain = Result.getOperand(0);
1804 SDValue Table = Result.getOperand(1);
1805 SDValue Index = Result.getOperand(2);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001806
Duncan Sands83ec4b62008-06-06 12:08:01 +00001807 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001808 MachineFunction &MF = DAG.getMachineFunction();
1809 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001810 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
Dan Gohman475871a2008-07-27 21:46:04 +00001811 SDValue Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001812
Dan Gohman475871a2008-07-27 21:46:04 +00001813 SDValue LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001814 switch (EntrySize) {
1815 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001816 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001817 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001818 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001819 PseudoSourceValue::getJumpTable(), 0); break;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001820 }
1821
Evan Chengcc415862007-11-09 01:32:10 +00001822 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001823 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001824 // For PIC, the sequence is:
1825 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00001826 // RelocBase can be JumpTable, GOT or some sort of global base.
1827 if (PTy != MVT::i32)
1828 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1829 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1830 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00001831 }
Evan Chengcc415862007-11-09 01:32:10 +00001832 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001833 }
1834 }
1835 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001836 case ISD::BRCOND:
1837 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001838 // Ensure that libcalls are emitted before a return.
1839 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1840 Tmp1 = LegalizeOp(Tmp1);
1841 LastCALLSEQ_END = DAG.getEntryNode();
1842
Chris Lattner47e92232005-01-18 19:27:06 +00001843 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1844 case Expand: assert(0 && "It's impossible to expand bools");
1845 case Legal:
1846 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1847 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001848 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00001849 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001850
1851 // The top bits of the promoted condition are not necessarily zero, ensure
1852 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001853 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001854 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001855 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerf9908172006-11-27 04:39:56 +00001856 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001857 break;
1858 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001859 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001860
1861 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001862 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001863
1864 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1865 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001866 case TargetLowering::Legal: break;
1867 case TargetLowering::Custom:
1868 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001869 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00001870 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001871 case TargetLowering::Expand:
1872 // Expand brcond's setcc into its constituent parts and create a BR_CC
1873 // Node.
1874 if (Tmp2.getOpcode() == ISD::SETCC) {
1875 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1876 Tmp2.getOperand(0), Tmp2.getOperand(1),
1877 Node->getOperand(2));
1878 } else {
1879 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1880 DAG.getCondCode(ISD::SETNE), Tmp2,
1881 DAG.getConstant(0, Tmp2.getValueType()),
1882 Node->getOperand(2));
1883 }
1884 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001885 }
1886 break;
1887 case ISD::BR_CC:
1888 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001889 // Ensure that libcalls are emitted before a branch.
1890 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1891 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001892 Tmp2 = Node->getOperand(2); // LHS
1893 Tmp3 = Node->getOperand(3); // RHS
1894 Tmp4 = Node->getOperand(1); // CC
1895
1896 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001897 LastCALLSEQ_END = DAG.getEntryNode();
1898
Nate Begeman750ac1b2006-02-01 07:19:44 +00001899 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1900 // the LHS is a legal SETCC itself. In this case, we need to compare
1901 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00001902 if (Tmp3.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00001903 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1904 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001905 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001906
1907 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1908 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001909
Chris Lattner181b7a32005-12-17 23:46:46 +00001910 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1911 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001912 case TargetLowering::Legal: break;
1913 case TargetLowering::Custom:
1914 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001915 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001916 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001917 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001918 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001919 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001920 LoadSDNode *LD = cast<LoadSDNode>(Node);
1921 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1922 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001923
Evan Cheng466685d2006-10-09 20:57:25 +00001924 ISD::LoadExtType ExtType = LD->getExtensionType();
1925 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001926 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00001927 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1928 Tmp3 = Result.getValue(0);
1929 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001930
Evan Cheng466685d2006-10-09 20:57:25 +00001931 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1932 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001933 case TargetLowering::Legal:
1934 // If this is an unaligned load and the target doesn't support it,
1935 // expand it.
1936 if (!TLI.allowsUnalignedMemoryAccesses()) {
1937 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00001938 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001939 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00001940 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001941 TLI);
1942 Tmp3 = Result.getOperand(0);
1943 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001944 Tmp3 = LegalizeOp(Tmp3);
1945 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001946 }
1947 }
1948 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001949 case TargetLowering::Custom:
1950 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001951 if (Tmp1.getNode()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001952 Tmp3 = LegalizeOp(Tmp1);
1953 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001954 }
Evan Cheng466685d2006-10-09 20:57:25 +00001955 break;
1956 case TargetLowering::Promote: {
1957 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001958 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00001959 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001960 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00001961
1962 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001963 LD->getSrcValueOffset(),
1964 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001965 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1966 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001967 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001968 }
Evan Cheng466685d2006-10-09 20:57:25 +00001969 }
1970 // Since loads produce two values, make sure to remember that we
1971 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001972 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
1973 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001974 return Op.getResNo() ? Tmp4 : Tmp3;
Evan Cheng466685d2006-10-09 20:57:25 +00001975 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001976 MVT SrcVT = LD->getMemoryVT();
1977 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001978 int SVOffset = LD->getSrcValueOffset();
1979 unsigned Alignment = LD->getAlignment();
1980 bool isVolatile = LD->isVolatile();
1981
Duncan Sands83ec4b62008-06-06 12:08:01 +00001982 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001983 // Some targets pretend to have an i1 loading operation, and actually
1984 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1985 // bits are guaranteed to be zero; it helps the optimizers understand
1986 // that these bits are zero. It is also useful for EXTLOAD, since it
1987 // tells the optimizers that those bits are undefined. It would be
1988 // nice to have an effective generic way of getting these benefits...
1989 // Until such a way is found, don't insist on promoting i1 here.
1990 (SrcVT != MVT::i1 ||
1991 TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
1992 // Promote to a byte-sized load if not loading an integral number of
1993 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001994 unsigned NewWidth = SrcVT.getStoreSizeInBits();
1995 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00001996 SDValue Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001997
1998 // The extra bits are guaranteed to be zero, since we stored them that
1999 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2000
2001 ISD::LoadExtType NewExtType =
2002 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2003
2004 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
2005 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2006 NVT, isVolatile, Alignment);
2007
2008 Ch = Result.getValue(1); // The chain.
2009
2010 if (ExtType == ISD::SEXTLOAD)
2011 // Having the top bits zero doesn't help when sign extending.
2012 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2013 Result, DAG.getValueType(SrcVT));
2014 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2015 // All the top bits are guaranteed to be zero - inform the optimizers.
2016 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2017 DAG.getValueType(SrcVT));
2018
2019 Tmp1 = LegalizeOp(Result);
2020 Tmp2 = LegalizeOp(Ch);
2021 } else if (SrcWidth & (SrcWidth - 1)) {
2022 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002023 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002024 "Unsupported extload!");
2025 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2026 assert(RoundWidth < SrcWidth);
2027 unsigned ExtraWidth = SrcWidth - RoundWidth;
2028 assert(ExtraWidth < RoundWidth);
2029 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2030 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002031 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2032 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002033 SDValue Lo, Hi, Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002034 unsigned IncrementSize;
2035
2036 if (TLI.isLittleEndian()) {
2037 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2038 // Load the bottom RoundWidth bits.
2039 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2040 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2041 Alignment);
2042
2043 // Load the remaining ExtraWidth bits.
2044 IncrementSize = RoundWidth / 8;
2045 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2046 DAG.getIntPtrConstant(IncrementSize));
2047 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2048 LD->getSrcValue(), SVOffset + IncrementSize,
2049 ExtraVT, isVolatile,
2050 MinAlign(Alignment, IncrementSize));
2051
2052 // Build a factor node to remember that this load is independent of the
2053 // other one.
2054 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2055 Hi.getValue(1));
2056
2057 // Move the top bits to the right place.
2058 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2059 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2060
2061 // Join the hi and lo parts.
2062 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002063 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002064 // Big endian - avoid unaligned loads.
2065 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2066 // Load the top RoundWidth bits.
2067 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2068 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2069 Alignment);
2070
2071 // Load the remaining ExtraWidth bits.
2072 IncrementSize = RoundWidth / 8;
2073 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2074 DAG.getIntPtrConstant(IncrementSize));
2075 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2076 LD->getSrcValue(), SVOffset + IncrementSize,
2077 ExtraVT, isVolatile,
2078 MinAlign(Alignment, IncrementSize));
2079
2080 // Build a factor node to remember that this load is independent of the
2081 // other one.
2082 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2083 Hi.getValue(1));
2084
2085 // Move the top bits to the right place.
2086 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2087 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2088
2089 // Join the hi and lo parts.
2090 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2091 }
2092
2093 Tmp1 = LegalizeOp(Result);
2094 Tmp2 = LegalizeOp(Ch);
2095 } else {
2096 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
2097 default: assert(0 && "This action is not supported yet!");
2098 case TargetLowering::Custom:
2099 isCustom = true;
2100 // FALLTHROUGH
2101 case TargetLowering::Legal:
2102 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2103 Tmp1 = Result.getValue(0);
2104 Tmp2 = Result.getValue(1);
2105
2106 if (isCustom) {
2107 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002108 if (Tmp3.getNode()) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002109 Tmp1 = LegalizeOp(Tmp3);
2110 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2111 }
2112 } else {
2113 // If this is an unaligned load and the target doesn't support it,
2114 // expand it.
2115 if (!TLI.allowsUnalignedMemoryAccesses()) {
2116 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002117 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002118 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002119 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002120 TLI);
2121 Tmp1 = Result.getOperand(0);
2122 Tmp2 = Result.getOperand(1);
2123 Tmp1 = LegalizeOp(Tmp1);
2124 Tmp2 = LegalizeOp(Tmp2);
2125 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002126 }
2127 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002128 break;
2129 case TargetLowering::Expand:
2130 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2131 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dan Gohman475871a2008-07-27 21:46:04 +00002132 SDValue Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002133 LD->getSrcValueOffset(),
2134 LD->isVolatile(), LD->getAlignment());
2135 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2136 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2137 Tmp2 = LegalizeOp(Load.getValue(1));
2138 break;
2139 }
2140 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2141 // Turn the unsupported load into an EXTLOAD followed by an explicit
2142 // zero/sign extend inreg.
2143 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2144 Tmp1, Tmp2, LD->getSrcValue(),
2145 LD->getSrcValueOffset(), SrcVT,
2146 LD->isVolatile(), LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00002147 SDValue ValRes;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002148 if (ExtType == ISD::SEXTLOAD)
2149 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2150 Result, DAG.getValueType(SrcVT));
2151 else
2152 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2153 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2154 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002155 break;
2156 }
Evan Cheng466685d2006-10-09 20:57:25 +00002157 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002158
Evan Cheng466685d2006-10-09 20:57:25 +00002159 // Since loads produce two values, make sure to remember that we legalized
2160 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002161 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2162 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002163 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002164 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002165 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002166 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002167 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002168 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002169 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002170 case Legal:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002171 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Nate Begeman5dc897b2005-10-19 00:06:56 +00002172 // 1 -> Hi
2173 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002174 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002175 TLI.getShiftAmountTy()));
2176 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2177 } else {
2178 // 0 -> Lo
2179 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2180 Node->getOperand(0));
2181 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002182 break;
2183 case Expand:
2184 // Get both the low and high parts.
2185 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002186 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Nate Begeman5dc897b2005-10-19 00:06:56 +00002187 Result = Tmp2; // 1 -> Hi
2188 else
2189 Result = Tmp1; // 0 -> Lo
2190 break;
2191 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002192 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002193 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002194
2195 case ISD::CopyToReg:
2196 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002197
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002198 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002199 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002200 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002201 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002202 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002203 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002204 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002205 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002206 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002207 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002208 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2209 Tmp3);
2210 } else {
2211 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002212 }
2213
2214 // Since this produces two values, make sure to remember that we legalized
2215 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002216 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2217 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002218 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002219 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002220 break;
2221
2222 case ISD::RET:
2223 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002224
2225 // Ensure that libcalls are emitted before a return.
2226 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2227 Tmp1 = LegalizeOp(Tmp1);
2228 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002229
Chris Lattner3e928bb2005-01-07 07:47:09 +00002230 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002231 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002232 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002233 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002234 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002235 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002236 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002237 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002238 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002239 if (!Tmp2.getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002240 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002241 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002242
2243 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002244 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002245 std::swap(Lo, Hi);
2246
Gabor Greifba36cb52008-08-28 21:40:38 +00002247 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00002248 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2249 else
2250 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002251 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002252 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00002253 SDNode *InVal = Tmp2.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002254 int InIx = Tmp2.getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002255 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2256 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002257
Dan Gohman7f321562007-06-25 16:23:39 +00002258 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002259 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002260 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002261 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002262 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002263 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002264 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002265 } else if (NumElems == 1) {
2266 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002267 Tmp2 = ScalarizeVectorOp(Tmp2);
2268 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002269 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002270
2271 // FIXME: Returns of gcc generic vectors smaller than a legal type
2272 // should be returned in integer registers!
2273
Chris Lattnerf87324e2006-04-11 01:31:51 +00002274 // The scalarized value type may not be legal, e.g. it might require
2275 // promotion or expansion. Relegalize the return.
2276 Result = LegalizeOp(Result);
2277 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002278 // FIXME: Returns of gcc generic vectors larger than a legal vector
2279 // type should be returned by reference!
Dan Gohman475871a2008-07-27 21:46:04 +00002280 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002281 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00002282 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002283 Result = LegalizeOp(Result);
2284 }
2285 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002286 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002287 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002288 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002289 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002290 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002291 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002292 }
2293 break;
2294 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002295 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002296 break;
2297 default: { // ret <values>
Dan Gohman475871a2008-07-27 21:46:04 +00002298 SmallVector<SDValue, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002299 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002300 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002301 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2302 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002303 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002304 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002305 break;
2306 case Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002307 SDValue Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002308 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002309 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002310 ExpandOp(Node->getOperand(i), Lo, Hi);
2311 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002312 NewValues.push_back(Node->getOperand(i+1));
Gabor Greifba36cb52008-08-28 21:40:38 +00002313 if (Hi.getNode()) {
Evan Cheng13acce32006-12-11 19:27:14 +00002314 NewValues.push_back(Hi);
2315 NewValues.push_back(Node->getOperand(i+1));
2316 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002317 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002318 }
2319 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002320 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002321 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002322
2323 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002324 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002325 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002326 Result = DAG.getNode(ISD::RET, MVT::Other,
2327 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002328 break;
2329 }
2330 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002331
Chris Lattner6862dbc2006-01-29 21:02:23 +00002332 if (Result.getOpcode() == ISD::RET) {
2333 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2334 default: assert(0 && "This action is not supported yet!");
2335 case TargetLowering::Legal: break;
2336 case TargetLowering::Custom:
2337 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002338 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner6862dbc2006-01-29 21:02:23 +00002339 break;
2340 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002341 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002342 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002343 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002344 StoreSDNode *ST = cast<StoreSDNode>(Node);
2345 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2346 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002347 int SVOffset = ST->getSrcValueOffset();
2348 unsigned Alignment = ST->getAlignment();
2349 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002350
Evan Cheng8b2794a2006-10-13 21:14:26 +00002351 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002352 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2353 // FIXME: We shouldn't do this for TargetConstantFP's.
2354 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2355 // to phase ordering between legalized code and the dag combiner. This
2356 // probably means that we need to integrate dag combiner and legalizer
2357 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002358 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002359 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002360 if (CFP->getValueType(0) == MVT::f32 &&
2361 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002362 Tmp3 = DAG.getConstant(CFP->getValueAPF().
2363 convertToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002364 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002365 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2366 SVOffset, isVolatile, Alignment);
2367 break;
2368 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002369 // If this target supports 64-bit registers, do a single 64-bit store.
2370 if (getTypeAction(MVT::i64) == Legal) {
2371 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002372 zextOrTrunc(64), MVT::i64);
Chris Lattner3cb93512007-10-15 05:46:06 +00002373 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2374 SVOffset, isVolatile, Alignment);
2375 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002376 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002377 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2378 // stores. If the target supports neither 32- nor 64-bits, this
2379 // xform is certainly not worth it.
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002380 const APInt &IntVal =CFP->getValueAPF().convertToAPInt();
Dan Gohman475871a2008-07-27 21:46:04 +00002381 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2382 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002383 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002384
2385 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2386 SVOffset, isVolatile, Alignment);
2387 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002388 DAG.getIntPtrConstant(4));
Chris Lattner3cb93512007-10-15 05:46:06 +00002389 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002390 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002391
2392 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2393 break;
2394 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002395 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002396 }
2397
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002398 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002399 case Legal: {
2400 Tmp3 = LegalizeOp(ST->getValue());
2401 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2402 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002403
Duncan Sands83ec4b62008-06-06 12:08:01 +00002404 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002405 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2406 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002407 case TargetLowering::Legal:
2408 // If this is an unaligned store and the target doesn't support it,
2409 // expand it.
2410 if (!TLI.allowsUnalignedMemoryAccesses()) {
2411 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002412 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002413 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002414 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002415 TLI);
2416 }
2417 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002418 case TargetLowering::Custom:
2419 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002420 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002421 break;
2422 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002423 assert(VT.isVector() && "Unknown legal promote case!");
Evan Cheng8b2794a2006-10-13 21:14:26 +00002424 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2425 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2426 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002427 ST->getSrcValue(), SVOffset, isVolatile,
2428 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002429 break;
2430 }
2431 break;
2432 }
2433 case Promote:
2434 // Truncate the value and store the result.
2435 Tmp3 = PromoteOp(ST->getValue());
2436 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002437 SVOffset, ST->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002438 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002439 break;
2440
2441 case Expand:
2442 unsigned IncrementSize = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002443 SDValue Lo, Hi;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002444
2445 // If this is a vector type, then we have to calculate the increment as
2446 // the product of the element size in bytes, and the number of elements
2447 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002448 if (ST->getValue().getValueType().isVector()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002449 SDNode *InVal = ST->getValue().getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002450 int InIx = ST->getValue().getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002451 MVT InVT = InVal->getValueType(InIx);
2452 unsigned NumElems = InVT.getVectorNumElements();
2453 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002454
Dan Gohman7f321562007-06-25 16:23:39 +00002455 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002456 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002457 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002458 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002459 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002460 Tmp3 = LegalizeOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002461 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002462 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002463 Result = LegalizeOp(Result);
2464 break;
2465 } else if (NumElems == 1) {
2466 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002467 Tmp3 = ScalarizeVectorOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002468 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002469 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002470 // The scalarized value type may not be legal, e.g. it might require
2471 // promotion or expansion. Relegalize the scalar store.
2472 Result = LegalizeOp(Result);
2473 break;
2474 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002475 SplitVectorOp(ST->getValue(), Lo, Hi);
Gabor Greifba36cb52008-08-28 21:40:38 +00002476 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
Duncan Sands83ec4b62008-06-06 12:08:01 +00002477 EVT.getSizeInBits()/8;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002478 }
2479 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002480 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greifba36cb52008-08-28 21:40:38 +00002481 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002482
Duncan Sands0753fc12008-02-11 10:37:04 +00002483 if (TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002484 std::swap(Lo, Hi);
2485 }
2486
2487 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002488 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002489
Gabor Greifba36cb52008-08-28 21:40:38 +00002490 if (Hi.getNode() == NULL) {
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002491 // Must be int <-> float one-to-one expansion.
2492 Result = Lo;
2493 break;
2494 }
2495
Evan Cheng8b2794a2006-10-13 21:14:26 +00002496 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002497 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002498 assert(isTypeLegal(Tmp2.getValueType()) &&
2499 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002500 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002501 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002502 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002503 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002504 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2505 break;
2506 }
2507 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002508 switch (getTypeAction(ST->getValue().getValueType())) {
2509 case Legal:
2510 Tmp3 = LegalizeOp(ST->getValue());
2511 break;
2512 case Promote:
2513 // We can promote the value, the truncstore will still take care of it.
2514 Tmp3 = PromoteOp(ST->getValue());
2515 break;
2516 case Expand:
2517 // Just store the low part. This may become a non-trunc store, so make
2518 // sure to use getTruncStore, not UpdateNodeOperands below.
2519 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2520 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2521 SVOffset, MVT::i8, isVolatile, Alignment);
2522 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002523
Duncan Sands83ec4b62008-06-06 12:08:01 +00002524 MVT StVT = ST->getMemoryVT();
2525 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002526
Duncan Sands83ec4b62008-06-06 12:08:01 +00002527 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002528 // Promote to a byte-sized store with upper bits zero if not
2529 // storing an integral number of bytes. For example, promote
2530 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002531 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Duncan Sands7e857202008-01-22 07:17:34 +00002532 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2533 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2534 SVOffset, NVT, isVolatile, Alignment);
2535 } else if (StWidth & (StWidth - 1)) {
2536 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002537 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002538 "Unsupported truncstore!");
2539 unsigned RoundWidth = 1 << Log2_32(StWidth);
2540 assert(RoundWidth < StWidth);
2541 unsigned ExtraWidth = StWidth - RoundWidth;
2542 assert(ExtraWidth < RoundWidth);
2543 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2544 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002545 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2546 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002547 SDValue Lo, Hi;
Duncan Sands7e857202008-01-22 07:17:34 +00002548 unsigned IncrementSize;
2549
2550 if (TLI.isLittleEndian()) {
2551 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2552 // Store the bottom RoundWidth bits.
2553 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2554 SVOffset, RoundVT,
2555 isVolatile, Alignment);
2556
2557 // Store the remaining ExtraWidth bits.
2558 IncrementSize = RoundWidth / 8;
2559 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2560 DAG.getIntPtrConstant(IncrementSize));
2561 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2562 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2563 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2564 SVOffset + IncrementSize, ExtraVT, isVolatile,
2565 MinAlign(Alignment, IncrementSize));
2566 } else {
2567 // Big endian - avoid unaligned stores.
2568 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2569 // Store the top RoundWidth bits.
2570 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2571 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2572 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2573 RoundVT, isVolatile, Alignment);
2574
2575 // Store the remaining ExtraWidth bits.
2576 IncrementSize = RoundWidth / 8;
2577 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2578 DAG.getIntPtrConstant(IncrementSize));
2579 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2580 SVOffset + IncrementSize, ExtraVT, isVolatile,
2581 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002582 }
Duncan Sands7e857202008-01-22 07:17:34 +00002583
2584 // The order of the stores doesn't matter.
2585 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2586 } else {
2587 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2588 Tmp2 != ST->getBasePtr())
2589 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2590 ST->getOffset());
2591
2592 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2593 default: assert(0 && "This action is not supported yet!");
2594 case TargetLowering::Legal:
2595 // If this is an unaligned store and the target doesn't support it,
2596 // expand it.
2597 if (!TLI.allowsUnalignedMemoryAccesses()) {
2598 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002599 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002600 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002601 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands7e857202008-01-22 07:17:34 +00002602 TLI);
2603 }
2604 break;
2605 case TargetLowering::Custom:
2606 Result = TLI.LowerOperation(Result, DAG);
2607 break;
2608 case Expand:
2609 // TRUNCSTORE:i16 i32 -> STORE i16
2610 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2611 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2612 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2613 isVolatile, Alignment);
2614 break;
2615 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002616 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002617 }
2618 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002619 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002620 case ISD::PCMARKER:
2621 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002622 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002623 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002624 case ISD::STACKSAVE:
2625 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002626 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2627 Tmp1 = Result.getValue(0);
2628 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002629
Chris Lattner140d53c2006-01-13 02:50:02 +00002630 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2631 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002632 case TargetLowering::Legal: break;
2633 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002634 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002635 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002636 Tmp1 = LegalizeOp(Tmp3);
2637 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002638 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002639 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002640 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002641 // Expand to CopyFromReg if the target set
2642 // StackPointerRegisterToSaveRestore.
2643 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002644 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002645 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002646 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002647 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002648 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2649 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002650 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002651 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002652 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002653
2654 // Since stacksave produce two values, make sure to remember that we
2655 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002656 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2657 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002658 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002659
Chris Lattner140d53c2006-01-13 02:50:02 +00002660 case ISD::STACKRESTORE:
2661 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2662 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002663 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002664
2665 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2666 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002667 case TargetLowering::Legal: break;
2668 case TargetLowering::Custom:
2669 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002670 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002671 break;
2672 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002673 // Expand to CopyToReg if the target set
2674 // StackPointerRegisterToSaveRestore.
2675 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2676 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2677 } else {
2678 Result = Tmp1;
2679 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002680 break;
2681 }
2682 break;
2683
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002684 case ISD::READCYCLECOUNTER:
2685 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002686 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002687 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2688 Node->getValueType(0))) {
2689 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002690 case TargetLowering::Legal:
2691 Tmp1 = Result.getValue(0);
2692 Tmp2 = Result.getValue(1);
2693 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002694 case TargetLowering::Custom:
2695 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002696 Tmp1 = LegalizeOp(Result.getValue(0));
2697 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002698 break;
2699 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002700
2701 // Since rdcc produce two values, make sure to remember that we legalized
2702 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002703 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2704 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002705 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002706
Chris Lattner2ee743f2005-01-14 22:08:15 +00002707 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002708 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2709 case Expand: assert(0 && "It's impossible to expand bools");
2710 case Legal:
2711 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2712 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002713 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002714 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002715 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002716 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002717 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002718 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerb6c80602006-11-28 01:03:30 +00002719 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002720 break;
2721 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002722 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002723 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002724 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002725
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002726 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002727
Nate Begemanb942a3d2005-08-23 04:29:48 +00002728 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002729 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002730 case TargetLowering::Legal: break;
2731 case TargetLowering::Custom: {
2732 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002733 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002734 break;
2735 }
Nate Begeman9373a812005-08-10 20:51:12 +00002736 case TargetLowering::Expand:
2737 if (Tmp1.getOpcode() == ISD::SETCC) {
2738 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2739 Tmp2, Tmp3,
2740 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2741 } else {
2742 Result = DAG.getSelectCC(Tmp1,
2743 DAG.getConstant(0, Tmp1.getValueType()),
2744 Tmp2, Tmp3, ISD::SETNE);
2745 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002746 break;
2747 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002748 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002749 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2750 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002751 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002752 ExtOp = ISD::BIT_CONVERT;
2753 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002754 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002755 ExtOp = ISD::ANY_EXTEND;
2756 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002757 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002758 ExtOp = ISD::FP_EXTEND;
2759 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002760 }
2761 // Promote each of the values to the new type.
2762 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2763 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2764 // Perform the larger operation, then round down.
2765 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002766 if (TruncOp != ISD::FP_ROUND)
2767 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2768 else
2769 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2770 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002771 break;
2772 }
2773 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002774 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002775 case ISD::SELECT_CC: {
2776 Tmp1 = Node->getOperand(0); // LHS
2777 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002778 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2779 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman475871a2008-07-27 21:46:04 +00002780 SDValue CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002781
Nate Begeman750ac1b2006-02-01 07:19:44 +00002782 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2783
2784 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2785 // the LHS is a legal SETCC itself. In this case, we need to compare
2786 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00002787 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002788 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2789 CC = DAG.getCondCode(ISD::SETNE);
2790 }
2791 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2792
2793 // Everything is legal, see if we should expand this op or something.
2794 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2795 default: assert(0 && "This action is not supported yet!");
2796 case TargetLowering::Legal: break;
2797 case TargetLowering::Custom:
2798 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002799 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002800 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002801 }
2802 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002803 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002804 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002805 Tmp1 = Node->getOperand(0);
2806 Tmp2 = Node->getOperand(1);
2807 Tmp3 = Node->getOperand(2);
2808 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2809
2810 // If we had to Expand the SetCC operands into a SELECT node, then it may
2811 // not always be possible to return a true LHS & RHS. In this case, just
2812 // return the value we legalized, returned in the LHS
Gabor Greifba36cb52008-08-28 21:40:38 +00002813 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002814 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002815 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002816 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002817
Chris Lattner73e142f2006-01-30 22:43:50 +00002818 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002819 default: assert(0 && "Cannot handle this action for SETCC yet!");
2820 case TargetLowering::Custom:
2821 isCustom = true;
2822 // FALLTHROUGH.
2823 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002824 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002825 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002826 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002827 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002828 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002829 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002830 case TargetLowering::Promote: {
2831 // First step, figure out the appropriate operation to use.
2832 // Allow SETCC to not be supported for all legal data types
2833 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00002834 MVT NewInTy = Node->getOperand(0).getValueType();
2835 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002836
2837 // Scan for the appropriate larger type to use.
2838 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002839 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00002840
Duncan Sands83ec4b62008-06-06 12:08:01 +00002841 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002842 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002843 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002844 "Fell off of the edge of the floating point world");
2845
2846 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002847 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002848 break;
2849 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002850 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00002851 assert(0 && "Cannot promote Legal Integer SETCC yet");
2852 else {
2853 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2854 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2855 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002856 Tmp1 = LegalizeOp(Tmp1);
2857 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002858 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002859 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002860 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002861 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002862 case TargetLowering::Expand:
2863 // Expand a setcc node into a select_cc of the same condition, lhs, and
2864 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00002865 MVT VT = Node->getValueType(0);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002866 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2867 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002868 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002869 break;
2870 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002871 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00002872 case ISD::VSETCC: {
2873 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2874 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman475871a2008-07-27 21:46:04 +00002875 SDValue CC = Node->getOperand(2);
Nate Begemanb43e9c12008-05-12 19:40:03 +00002876
2877 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
2878
2879 // Everything is legal, see if we should expand this op or something.
2880 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
2881 default: assert(0 && "This action is not supported yet!");
2882 case TargetLowering::Legal: break;
2883 case TargetLowering::Custom:
2884 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002885 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanb43e9c12008-05-12 19:40:03 +00002886 break;
2887 }
2888 break;
2889 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002890
Chris Lattner5b359c62005-04-02 04:00:59 +00002891 case ISD::SHL_PARTS:
2892 case ISD::SRA_PARTS:
2893 case ISD::SRL_PARTS: {
Dan Gohman475871a2008-07-27 21:46:04 +00002894 SmallVector<SDValue, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002895 bool Changed = false;
2896 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2897 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2898 Changed |= Ops.back() != Node->getOperand(i);
2899 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002900 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002901 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002902
Evan Cheng05a2d562006-01-09 18:31:59 +00002903 switch (TLI.getOperationAction(Node->getOpcode(),
2904 Node->getValueType(0))) {
2905 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002906 case TargetLowering::Legal: break;
2907 case TargetLowering::Custom:
2908 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002909 if (Tmp1.getNode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002910 SDValue Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002911 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002912 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman475871a2008-07-27 21:46:04 +00002913 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002914 if (i == Op.getResNo())
Evan Cheng12f22742006-01-19 04:54:52 +00002915 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002916 }
Gabor Greifba36cb52008-08-28 21:40:38 +00002917 assert(RetVal.getNode() && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002918 return RetVal;
2919 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002920 break;
2921 }
2922
Chris Lattner2c8086f2005-04-02 05:00:07 +00002923 // Since these produce multiple values, make sure to remember that we
2924 // legalized all of them.
2925 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00002926 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00002927 return Result.getValue(Op.getResNo());
Chris Lattner84f67882005-01-20 18:52:28 +00002928 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002929
2930 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002931 case ISD::ADD:
2932 case ISD::SUB:
2933 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002934 case ISD::MULHS:
2935 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002936 case ISD::UDIV:
2937 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002938 case ISD::AND:
2939 case ISD::OR:
2940 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002941 case ISD::SHL:
2942 case ISD::SRL:
2943 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002944 case ISD::FADD:
2945 case ISD::FSUB:
2946 case ISD::FMUL:
2947 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00002948 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002949 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002950 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2951 case Expand: assert(0 && "Not possible");
2952 case Legal:
2953 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2954 break;
2955 case Promote:
2956 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2957 break;
2958 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00002959
2960 if ((Node->getOpcode() == ISD::SHL ||
2961 Node->getOpcode() == ISD::SRL ||
2962 Node->getOpcode() == ISD::SRA) &&
2963 !Node->getValueType(0).isVector()) {
2964 if (TLI.getShiftAmountTy().bitsLT(Tmp2.getValueType()))
2965 Tmp2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Tmp2);
2966 else if (TLI.getShiftAmountTy().bitsGT(Tmp2.getValueType()))
2967 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Tmp2);
2968 }
2969
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002970 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002971
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002972 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002973 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002974 case TargetLowering::Legal: break;
2975 case TargetLowering::Custom:
2976 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002977 if (Tmp1.getNode()) {
Nate Begeman5bc1ea02008-07-29 15:49:41 +00002978 Result = Tmp1;
2979 break;
Nate Begeman24dc3462008-07-29 19:07:27 +00002980 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00002981 // Fall through if the custom lower can't deal with the operation
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002982 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002983 MVT VT = Op.getValueType();
Dan Gohman525178c2007-10-08 18:33:35 +00002984
2985 // See if multiply or divide can be lowered using two-result operations.
2986 SDVTList VTs = DAG.getVTList(VT, VT);
2987 if (Node->getOpcode() == ISD::MUL) {
2988 // We just need the low half of the multiply; try both the signed
2989 // and unsigned forms. If the target supports both SMUL_LOHI and
2990 // UMUL_LOHI, form a preference by checking which forms of plain
2991 // MULH it supports.
2992 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2993 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2994 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2995 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2996 unsigned OpToUse = 0;
2997 if (HasSMUL_LOHI && !HasMULHS) {
2998 OpToUse = ISD::SMUL_LOHI;
2999 } else if (HasUMUL_LOHI && !HasMULHU) {
3000 OpToUse = ISD::UMUL_LOHI;
3001 } else if (HasSMUL_LOHI) {
3002 OpToUse = ISD::SMUL_LOHI;
3003 } else if (HasUMUL_LOHI) {
3004 OpToUse = ISD::UMUL_LOHI;
3005 }
3006 if (OpToUse) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003007 Result = SDValue(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).getNode(), 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003008 break;
3009 }
3010 }
3011 if (Node->getOpcode() == ISD::MULHS &&
3012 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003013 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003014 break;
3015 }
3016 if (Node->getOpcode() == ISD::MULHU &&
3017 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003018 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003019 break;
3020 }
3021 if (Node->getOpcode() == ISD::SDIV &&
3022 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003023 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).getNode(), 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003024 break;
3025 }
3026 if (Node->getOpcode() == ISD::UDIV &&
3027 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003028 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).getNode(), 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003029 break;
3030 }
3031
Dan Gohman82669522007-10-11 23:57:53 +00003032 // Check to see if we have a libcall for this operator.
3033 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3034 bool isSigned = false;
3035 switch (Node->getOpcode()) {
3036 case ISD::UDIV:
3037 case ISD::SDIV:
3038 if (VT == MVT::i32) {
3039 LC = Node->getOpcode() == ISD::UDIV
Evan Cheng56966222007-01-12 02:11:51 +00003040 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003041 isSigned = Node->getOpcode() == ISD::SDIV;
3042 }
3043 break;
3044 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003045 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3046 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003047 break;
3048 default: break;
3049 }
3050 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +00003051 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003052 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003053 break;
3054 }
3055
Duncan Sands83ec4b62008-06-06 12:08:01 +00003056 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003057 "Cannot expand this binary operator!");
3058 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003059 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003060 break;
3061 }
Evan Chengcc987612006-04-12 21:20:24 +00003062 case TargetLowering::Promote: {
3063 switch (Node->getOpcode()) {
3064 default: assert(0 && "Do not know how to promote this BinOp!");
3065 case ISD::AND:
3066 case ISD::OR:
3067 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003068 MVT OVT = Node->getValueType(0);
3069 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3070 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003071 // Bit convert each of the values to the new type.
3072 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3073 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3074 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3075 // Bit convert the result back the original type.
3076 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3077 break;
3078 }
3079 }
3080 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003081 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003082 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003083
Dan Gohmane14ea862007-10-05 14:17:22 +00003084 case ISD::SMUL_LOHI:
3085 case ISD::UMUL_LOHI:
3086 case ISD::SDIVREM:
3087 case ISD::UDIVREM:
3088 // These nodes will only be produced by target-specific lowering, so
3089 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003090 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003091 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003092
3093 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3094 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3095 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003096 break;
3097
Chris Lattnera09f8482006-03-05 05:09:38 +00003098 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3099 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3100 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3101 case Expand: assert(0 && "Not possible");
3102 case Legal:
3103 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3104 break;
3105 case Promote:
3106 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3107 break;
3108 }
3109
3110 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3111
3112 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3113 default: assert(0 && "Operation not supported");
3114 case TargetLowering::Custom:
3115 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003116 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003117 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003118 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003119 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003120 // If this target supports fabs/fneg natively and select is cheap,
3121 // do this efficiently.
3122 if (!TLI.isSelectExpensive() &&
3123 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3124 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003125 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003126 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003127 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003128 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003129 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman475871a2008-07-27 21:46:04 +00003130 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003131 SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003132 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3133 // Get the absolute value of the result.
Dan Gohman475871a2008-07-27 21:46:04 +00003134 SDValue AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
Chris Lattner8f4191d2006-03-13 06:08:38 +00003135 // Select between the nabs and abs value based on the sign bit of
3136 // the input.
3137 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3138 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3139 AbsVal),
3140 AbsVal);
3141 Result = LegalizeOp(Result);
3142 break;
3143 }
3144
3145 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003146 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003147 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3148 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3149 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3150 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003151 break;
3152 }
Evan Cheng912095b2007-01-04 21:56:39 +00003153 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003154 break;
3155
Nate Begeman551bf3f2006-02-17 05:43:56 +00003156 case ISD::ADDC:
3157 case ISD::SUBC:
3158 Tmp1 = LegalizeOp(Node->getOperand(0));
3159 Tmp2 = LegalizeOp(Node->getOperand(1));
3160 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3161 // Since this produces two values, make sure to remember that we legalized
3162 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003163 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
3164 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Nate Begeman551bf3f2006-02-17 05:43:56 +00003165 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003166
Nate Begeman551bf3f2006-02-17 05:43:56 +00003167 case ISD::ADDE:
3168 case ISD::SUBE:
3169 Tmp1 = LegalizeOp(Node->getOperand(0));
3170 Tmp2 = LegalizeOp(Node->getOperand(1));
3171 Tmp3 = LegalizeOp(Node->getOperand(2));
3172 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3173 // Since this produces two values, make sure to remember that we legalized
3174 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003175 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
3176 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Nate Begeman551bf3f2006-02-17 05:43:56 +00003177 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00003178
Nate Begeman419f8b62005-10-18 00:27:41 +00003179 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003180 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003181 // TODO: handle the case where the Lo and Hi operands are not of legal type
3182 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3183 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3184 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003185 case TargetLowering::Promote:
3186 case TargetLowering::Custom:
3187 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003188 case TargetLowering::Legal:
3189 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3190 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3191 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003192 case TargetLowering::Expand:
3193 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3194 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3195 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003196 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003197 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00003198 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003199 break;
3200 }
3201 break;
3202 }
3203
Nate Begemanc105e192005-04-06 00:23:54 +00003204 case ISD::UREM:
3205 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003206 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003207 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3208 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003209
Nate Begemanc105e192005-04-06 00:23:54 +00003210 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003211 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3212 case TargetLowering::Custom:
3213 isCustom = true;
3214 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003215 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003216 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003217 if (isCustom) {
3218 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003219 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003220 }
Nate Begemanc105e192005-04-06 00:23:54 +00003221 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003222 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003223 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003224 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003225 MVT VT = Node->getValueType(0);
Dan Gohman525178c2007-10-08 18:33:35 +00003226
3227 // See if remainder can be lowered using two-result operations.
3228 SDVTList VTs = DAG.getVTList(VT, VT);
3229 if (Node->getOpcode() == ISD::SREM &&
3230 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003231 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003232 break;
3233 }
3234 if (Node->getOpcode() == ISD::UREM &&
3235 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003236 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003237 break;
3238 }
3239
Duncan Sands83ec4b62008-06-06 12:08:01 +00003240 if (VT.isInteger()) {
Dan Gohman525178c2007-10-08 18:33:35 +00003241 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003242 TargetLowering::Legal) {
3243 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00003244 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003245 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3246 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003247 } else if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003248 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003249 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003250 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003251 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003252 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3253 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman475871a2008-07-27 21:46:04 +00003254 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003255 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003256 }
Dan Gohman0d974262007-11-06 22:11:54 +00003257 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003258 assert(VT.isFloatingPoint() &&
Dan Gohman0d974262007-11-06 22:11:54 +00003259 "remainder op must have integer or floating-point type");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003260 if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003261 Result = LegalizeOp(UnrollVectorOp(Op));
3262 } else {
3263 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003264 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3265 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003266 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003267 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003268 }
Nate Begemanc105e192005-04-06 00:23:54 +00003269 }
3270 break;
3271 }
Dan Gohman525178c2007-10-08 18:33:35 +00003272 }
Nate Begemanc105e192005-04-06 00:23:54 +00003273 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003274 case ISD::VAARG: {
3275 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3276 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3277
Duncan Sands83ec4b62008-06-06 12:08:01 +00003278 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003279 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3280 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003281 case TargetLowering::Custom:
3282 isCustom = true;
3283 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003284 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003285 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3286 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003287 Tmp1 = Result.getValue(1);
3288
3289 if (isCustom) {
3290 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003291 if (Tmp2.getNode()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003292 Result = LegalizeOp(Tmp2);
3293 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3294 }
3295 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003296 break;
3297 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003298 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman475871a2008-07-27 21:46:04 +00003299 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003300 // Increment the pointer, VAList, to the next vaarg
3301 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003302 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begemanacc398c2006-01-25 18:21:52 +00003303 TLI.getPointerTy()));
3304 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00003305 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003306 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003307 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003308 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003309 Result = LegalizeOp(Result);
3310 break;
3311 }
3312 }
3313 // Since VAARG produces two values, make sure to remember that we
3314 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003315 AddLegalizedOperand(SDValue(Node, 0), Result);
3316 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003317 return Op.getResNo() ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003318 }
3319
3320 case ISD::VACOPY:
3321 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3322 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3323 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3324
3325 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3326 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003327 case TargetLowering::Custom:
3328 isCustom = true;
3329 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003330 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003331 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3332 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003333 if (isCustom) {
3334 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003335 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003336 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003337 break;
3338 case TargetLowering::Expand:
3339 // This defaults to loading a pointer from the input and storing it to the
3340 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003341 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3342 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dan Gohman499c1bd2008-04-17 02:09:26 +00003343 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3344 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003345 break;
3346 }
3347 break;
3348
3349 case ISD::VAEND:
3350 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3351 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3352
3353 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3354 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003355 case TargetLowering::Custom:
3356 isCustom = true;
3357 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003358 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003359 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003360 if (isCustom) {
3361 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003362 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003363 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003364 break;
3365 case TargetLowering::Expand:
3366 Result = Tmp1; // Default to a no-op, return the chain
3367 break;
3368 }
3369 break;
3370
3371 case ISD::VASTART:
3372 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3373 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3374
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003375 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3376
Nate Begemanacc398c2006-01-25 18:21:52 +00003377 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3378 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003379 case TargetLowering::Legal: break;
3380 case TargetLowering::Custom:
3381 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003382 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003383 break;
3384 }
3385 break;
3386
Nate Begeman35ef9132006-01-11 21:21:00 +00003387 case ISD::ROTL:
3388 case ISD::ROTR:
3389 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3390 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003391 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003392 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3393 default:
3394 assert(0 && "ROTL/ROTR legalize operation not supported");
3395 break;
3396 case TargetLowering::Legal:
3397 break;
3398 case TargetLowering::Custom:
3399 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003400 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelc9dc1142007-04-02 21:36:32 +00003401 break;
3402 case TargetLowering::Promote:
3403 assert(0 && "Do not know how to promote ROTL/ROTR");
3404 break;
3405 case TargetLowering::Expand:
3406 assert(0 && "Do not know how to expand ROTL/ROTR");
3407 break;
3408 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003409 break;
3410
Nate Begemand88fc032006-01-14 03:14:10 +00003411 case ISD::BSWAP:
3412 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3413 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003414 case TargetLowering::Custom:
3415 assert(0 && "Cannot custom legalize this yet!");
3416 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003417 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003418 break;
3419 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003420 MVT OVT = Tmp1.getValueType();
3421 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3422 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003423
Chris Lattner456a93a2006-01-28 07:39:30 +00003424 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3425 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3426 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3427 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3428 break;
3429 }
3430 case TargetLowering::Expand:
3431 Result = ExpandBSWAP(Tmp1);
3432 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003433 }
3434 break;
3435
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003436 case ISD::CTPOP:
3437 case ISD::CTTZ:
3438 case ISD::CTLZ:
3439 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3440 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003441 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003442 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003443 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003444 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003445 TargetLowering::Custom) {
3446 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003447 if (Tmp1.getNode()) {
Scott Michel335f4f72007-08-02 02:22:46 +00003448 Result = Tmp1;
3449 }
Scott Michel910b66d2007-07-30 21:00:31 +00003450 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003451 break;
3452 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003453 MVT OVT = Tmp1.getValueType();
3454 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003455
3456 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003457 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3458 // Perform the larger operation, then subtract if needed.
3459 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003460 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003461 case ISD::CTPOP:
3462 Result = Tmp1;
3463 break;
3464 case ISD::CTTZ:
3465 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00003466 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003467 DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003468 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003469 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003470 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003471 break;
3472 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003473 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003474 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003475 DAG.getConstant(NVT.getSizeInBits() -
3476 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003477 break;
3478 }
3479 break;
3480 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003481 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003482 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003483 break;
3484 }
3485 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003486
Chris Lattner2c8086f2005-04-02 05:00:07 +00003487 // Unary operators
3488 case ISD::FABS:
3489 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003490 case ISD::FSQRT:
3491 case ISD::FSIN:
3492 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003493 case ISD::FLOG:
3494 case ISD::FLOG2:
3495 case ISD::FLOG10:
3496 case ISD::FEXP:
3497 case ISD::FEXP2:
Dan Gohman509e84f2008-08-21 17:55:02 +00003498 case ISD::FTRUNC:
3499 case ISD::FFLOOR:
3500 case ISD::FCEIL:
3501 case ISD::FRINT:
3502 case ISD::FNEARBYINT:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003503 Tmp1 = LegalizeOp(Node->getOperand(0));
3504 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003505 case TargetLowering::Promote:
3506 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003507 isCustom = true;
3508 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003509 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003510 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003511 if (isCustom) {
3512 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003513 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng59ad7812006-01-31 18:14:25 +00003514 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003515 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003516 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003517 switch (Node->getOpcode()) {
3518 default: assert(0 && "Unreachable!");
3519 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003520 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3521 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003522 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003523 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003524 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003525 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003526 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003527 Tmp2 = DAG.getConstantFP(0.0, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003528 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00003529 ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003530 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3531 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003532 break;
3533 }
Evan Cheng9d24ac52008-09-09 23:35:53 +00003534 case ISD::FSQRT:
3535 case ISD::FSIN:
3536 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003537 case ISD::FLOG:
3538 case ISD::FLOG2:
3539 case ISD::FLOG10:
3540 case ISD::FEXP:
3541 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003542 case ISD::FTRUNC:
3543 case ISD::FFLOOR:
3544 case ISD::FCEIL:
3545 case ISD::FRINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00003546 case ISD::FNEARBYINT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003547 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003548
3549 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003550 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003551 Result = LegalizeOp(UnrollVectorOp(Op));
3552 break;
3553 }
3554
Evan Cheng56966222007-01-12 02:11:51 +00003555 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003556 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003557 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003558 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3559 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003560 break;
3561 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003562 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3563 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003564 break;
3565 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003566 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3567 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003568 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003569 case ISD::FLOG:
3570 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3571 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3572 break;
3573 case ISD::FLOG2:
3574 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3575 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3576 break;
3577 case ISD::FLOG10:
3578 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3579 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3580 break;
3581 case ISD::FEXP:
3582 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3583 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3584 break;
3585 case ISD::FEXP2:
3586 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3587 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3588 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003589 case ISD::FTRUNC:
3590 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3591 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3592 break;
3593 case ISD::FFLOOR:
3594 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3595 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3596 break;
3597 case ISD::FCEIL:
3598 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3599 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3600 break;
3601 case ISD::FRINT:
3602 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3603 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3604 break;
3605 case ISD::FNEARBYINT:
3606 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3607 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3608 break;
Evan Cheng9d24ac52008-09-09 23:35:53 +00003609 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003610 default: assert(0 && "Unreachable!");
3611 }
Dan Gohman475871a2008-07-27 21:46:04 +00003612 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003613 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003614 break;
3615 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003616 }
3617 break;
3618 }
3619 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003620 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003621 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003622
3623 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003624 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003625 Result = LegalizeOp(UnrollVectorOp(Op));
3626 break;
3627 }
3628
3629 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003630 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3631 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003632 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003633 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003634 break;
3635 }
Chris Lattner35481892005-12-23 00:16:34 +00003636 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003637 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003638 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3639 Node->getValueType(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003640 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003641 // The input has to be a vector type, we have to either scalarize it, pack
3642 // it, or convert it based on whether the input vector type is legal.
Gabor Greifba36cb52008-08-28 21:40:38 +00003643 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00003644 int InIx = Node->getOperand(0).getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003645 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3646 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohman7f321562007-06-25 16:23:39 +00003647
3648 // Figure out if there is a simple type corresponding to this Vector
3649 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003650 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00003651 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003652 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003653 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3654 LegalizeOp(Node->getOperand(0)));
3655 break;
3656 } else if (NumElems == 1) {
3657 // Turn this into a bit convert of the scalar input.
3658 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3659 ScalarizeVectorOp(Node->getOperand(0)));
3660 break;
3661 } else {
3662 // FIXME: UNIMP! Store then reload
3663 assert(0 && "Cast from unsupported vector type not implemented yet!");
3664 }
Chris Lattner67993f72006-01-23 07:30:46 +00003665 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003666 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3667 Node->getOperand(0).getValueType())) {
3668 default: assert(0 && "Unknown operation action!");
3669 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003670 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3671 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003672 break;
3673 case TargetLowering::Legal:
3674 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003675 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003676 break;
3677 }
3678 }
3679 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003680
Chris Lattner2c8086f2005-04-02 05:00:07 +00003681 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003682 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003683 case ISD::UINT_TO_FP: {
3684 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman7f8613e2008-08-14 20:04:46 +00003685 Result = LegalizeINT_TO_FP(Result, isSigned,
3686 Node->getValueType(0), Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003687 break;
3688 }
3689 case ISD::TRUNCATE:
3690 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3691 case Legal:
3692 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003693 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003694 break;
3695 case Expand:
3696 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3697
3698 // Since the result is legal, we should just be able to truncate the low
3699 // part of the source.
3700 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3701 break;
3702 case Promote:
3703 Result = PromoteOp(Node->getOperand(0));
3704 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3705 break;
3706 }
3707 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003708
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003709 case ISD::FP_TO_SINT:
3710 case ISD::FP_TO_UINT:
3711 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3712 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003713 Tmp1 = LegalizeOp(Node->getOperand(0));
3714
Chris Lattner1618beb2005-07-29 00:11:56 +00003715 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3716 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003717 case TargetLowering::Custom:
3718 isCustom = true;
3719 // FALLTHROUGH
3720 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003721 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003722 if (isCustom) {
3723 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003724 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003725 }
3726 break;
3727 case TargetLowering::Promote:
3728 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3729 Node->getOpcode() == ISD::FP_TO_SINT);
3730 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003731 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003732 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman475871a2008-07-27 21:46:04 +00003733 SDValue True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003734 MVT VT = Node->getOperand(0).getValueType();
3735 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00003736 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00003737 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
3738 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003739 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00003740 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003741 Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
Nate Begemand2558e32005-08-14 01:20:53 +00003742 Node->getOperand(0), Tmp2, ISD::SETLT);
3743 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3744 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003745 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003746 Tmp2));
3747 False = DAG.getNode(ISD::XOR, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003748 DAG.getConstant(x, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003749 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3750 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003751 } else {
3752 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3753 }
3754 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003755 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003756 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003757 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003758 MVT VT = Op.getValueType();
3759 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003760 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003761 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003762 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3763 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3764 Node->getOperand(0), DAG.getValueType(MVT::f64));
3765 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3766 DAG.getIntPtrConstant(1));
3767 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3768 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003769 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3770 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3771 Tmp2 = DAG.getConstantFP(apf, OVT);
3772 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3773 // FIXME: generated code sucks.
3774 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3775 DAG.getNode(ISD::ADD, MVT::i32,
3776 DAG.getNode(ISD::FP_TO_SINT, VT,
3777 DAG.getNode(ISD::FSUB, OVT,
3778 Node->getOperand(0), Tmp2)),
3779 DAG.getConstant(0x80000000, MVT::i32)),
3780 DAG.getNode(ISD::FP_TO_SINT, VT,
3781 Node->getOperand(0)),
3782 DAG.getCondCode(ISD::SETGE));
3783 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003784 break;
3785 }
Dan Gohmana2e94852008-03-10 23:03:31 +00003786 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsb2ff8852008-07-17 02:36:29 +00003787 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
3788 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
3789 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman475871a2008-07-27 21:46:04 +00003790 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003791 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003792 break;
3793 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003794 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003795 Tmp1 = PromoteOp(Node->getOperand(0));
3796 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3797 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003798 break;
3799 }
3800 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003801
Chris Lattnerf2670a82008-01-16 06:57:07 +00003802 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003803 MVT DstVT = Op.getValueType();
3804 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003805 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3806 // The only other way we can lower this is to turn it into a STORE,
3807 // LOAD pair, targetting a temporary location (a stack slot).
3808 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3809 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00003810 }
3811 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3812 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3813 case Legal:
3814 Tmp1 = LegalizeOp(Node->getOperand(0));
3815 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3816 break;
3817 case Promote:
3818 Tmp1 = PromoteOp(Node->getOperand(0));
3819 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3820 break;
3821 }
3822 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003823 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003824 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003825 MVT DstVT = Op.getValueType();
3826 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003827 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3828 if (SrcVT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00003829 SDValue Lo;
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003830 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003831 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003832 if (DstVT!=MVT::f64)
3833 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00003834 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00003835 }
Chris Lattner0bd48932008-01-17 07:00:52 +00003836 // The only other way we can lower this is to turn it into a STORE,
3837 // LOAD pair, targetting a temporary location (a stack slot).
3838 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3839 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00003840 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00003841 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3842 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3843 case Legal:
3844 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003845 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003846 break;
3847 case Promote:
3848 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003849 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3850 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003851 break;
3852 }
3853 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003854 }
Chris Lattner13c78e22005-09-02 00:18:10 +00003855 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003856 case ISD::ZERO_EXTEND:
3857 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003858 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003859 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003860 case Legal:
3861 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00003862 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00003863 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3864 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00003865 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003866 if (Tmp1.getNode()) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00003867 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003868 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003869 case Promote:
3870 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003871 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003872 Tmp1 = PromoteOp(Node->getOperand(0));
3873 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003874 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003875 case ISD::ZERO_EXTEND:
3876 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003877 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003878 Result = DAG.getZeroExtendInReg(Result,
3879 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003880 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003881 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003882 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003883 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003884 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003885 Result,
3886 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003887 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003888 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003889 }
3890 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003891 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003892 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003893 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003894 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003895
3896 // If this operation is not supported, convert it to a shl/shr or load/store
3897 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003898 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3899 default: assert(0 && "This action not supported for this op yet!");
3900 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003901 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003902 break;
3903 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003904 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003905 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003906 // NOTE: we could fall back on load/store here too for targets without
3907 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003908 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
3909 ExtraVT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003910 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003911 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3912 Node->getOperand(0), ShiftCst);
3913 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3914 Result, ShiftCst);
3915 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003916 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003917 // EXTLOAD pair, targetting a temporary location (a stack slot).
3918
3919 // NOTE: there is a choice here between constantly creating new stack
3920 // slots and always reusing the same one. We currently always create
3921 // new ones, as reuse may inhibit scheduling.
Chris Lattnera66bb392008-01-16 07:51:34 +00003922 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3923 Node->getValueType(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00003924 } else {
3925 assert(0 && "Unknown op");
3926 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003927 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003928 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003929 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003930 }
Duncan Sands36397f52007-07-27 12:58:54 +00003931 case ISD::TRAMPOLINE: {
Dan Gohman475871a2008-07-27 21:46:04 +00003932 SDValue Ops[6];
Duncan Sands36397f52007-07-27 12:58:54 +00003933 for (unsigned i = 0; i != 6; ++i)
3934 Ops[i] = LegalizeOp(Node->getOperand(i));
3935 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3936 // The only option for this node is to custom lower it.
3937 Result = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003938 assert(Result.getNode() && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00003939
3940 // Since trampoline produces two values, make sure to remember that we
3941 // legalized both of them.
3942 Tmp1 = LegalizeOp(Result.getValue(1));
3943 Result = LegalizeOp(Result);
Dan Gohman475871a2008-07-27 21:46:04 +00003944 AddLegalizedOperand(SDValue(Node, 0), Result);
3945 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003946 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00003947 }
Dan Gohman9c78a392008-05-14 00:43:10 +00003948 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003949 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003950 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3951 default: assert(0 && "This action not supported for this op yet!");
3952 case TargetLowering::Custom:
3953 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003954 if (Result.getNode()) break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003955 // Fall Thru
3956 case TargetLowering::Legal:
3957 // If this operation is not supported, lower it to constant 1
3958 Result = DAG.getConstant(1, VT);
3959 break;
3960 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00003961 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003962 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003963 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003964 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003965 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3966 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00003967 case TargetLowering::Legal:
3968 Tmp1 = LegalizeOp(Node->getOperand(0));
3969 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3970 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003971 case TargetLowering::Custom:
3972 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003973 if (Result.getNode()) break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003974 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00003975 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003976 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00003977 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003978 TargetLowering::ArgListTy Args;
Dan Gohman475871a2008-07-27 21:46:04 +00003979 std::pair<SDValue,SDValue> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00003980 TLI.LowerCallTo(Tmp1, Type::VoidTy,
3981 false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003982 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Chris Lattner034f12e2008-01-15 22:09:33 +00003983 Args, DAG);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003984 Result = CallResult.second;
3985 break;
3986 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003987 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003988 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00003989 }
Chris Lattner456a93a2006-01-28 07:39:30 +00003990
Chris Lattner4ddd2832006-04-08 04:13:17 +00003991 assert(Result.getValueType() == Op.getValueType() &&
3992 "Bad legalization!");
3993
Chris Lattner456a93a2006-01-28 07:39:30 +00003994 // Make sure that the generated code is itself legal.
3995 if (Result != Op)
3996 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003997
Chris Lattner45982da2005-05-12 16:53:42 +00003998 // Note that LegalizeOp may be reentered even from single-use nodes, which
3999 // means that we always must cache transformed nodes.
4000 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004001 return Result;
4002}
4003
Chris Lattner8b6fa222005-01-15 22:16:26 +00004004/// PromoteOp - Given an operation that produces a value in an invalid type,
4005/// promote it to compute the value into a larger type. The produced value will
4006/// have the correct bits for the low portion of the register, but no guarantee
4007/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman475871a2008-07-27 21:46:04 +00004008SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004009 MVT VT = Op.getValueType();
4010 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004011 assert(getTypeAction(VT) == Promote &&
4012 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004013 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00004014 "Cannot promote to smaller type!");
4015
Dan Gohman475871a2008-07-27 21:46:04 +00004016 SDValue Tmp1, Tmp2, Tmp3;
4017 SDValue Result;
Gabor Greifba36cb52008-08-28 21:40:38 +00004018 SDNode *Node = Op.getNode();
Chris Lattner03c85462005-01-15 05:21:40 +00004019
Dan Gohman475871a2008-07-27 21:46:04 +00004020 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004021 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004022
Chris Lattner03c85462005-01-15 05:21:40 +00004023 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004024 case ISD::CopyFromReg:
4025 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004026 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004027#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004028 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004029#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004030 assert(0 && "Do not know how to promote this operator!");
4031 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004032 case ISD::UNDEF:
4033 Result = DAG.getNode(ISD::UNDEF, NVT);
4034 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004035 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004036 if (VT != MVT::i1)
4037 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4038 else
4039 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004040 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4041 break;
4042 case ISD::ConstantFP:
4043 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4044 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4045 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004046
Chris Lattner82fbfb62005-01-18 02:59:52 +00004047 case ISD::SETCC:
Scott Michel5b8f82e2008-03-10 15:42:14 +00004048 assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
Nate Begeman5922f562008-03-14 00:53:31 +00004049 && "SetCC type is not legal??");
Scott Michel5b8f82e2008-03-10 15:42:14 +00004050 Result = DAG.getNode(ISD::SETCC,
Nate Begeman5922f562008-03-14 00:53:31 +00004051 TLI.getSetCCResultType(Node->getOperand(0)),
4052 Node->getOperand(0), Node->getOperand(1),
4053 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004054 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00004055
Chris Lattner03c85462005-01-15 05:21:40 +00004056 case ISD::TRUNCATE:
4057 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4058 case Legal:
4059 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004060 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004061 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004062 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Chris Lattner03c85462005-01-15 05:21:40 +00004063 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4064 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004065 case Promote:
4066 // The truncation is not required, because we don't guarantee anything
4067 // about high bits anyway.
4068 Result = PromoteOp(Node->getOperand(0));
4069 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004070 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004071 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4072 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00004073 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004074 }
4075 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004076 case ISD::SIGN_EXTEND:
4077 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004078 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004079 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4080 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4081 case Legal:
4082 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00004083 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004084 break;
4085 case Promote:
4086 // Promote the reg if it's smaller.
4087 Result = PromoteOp(Node->getOperand(0));
4088 // The high bits are not guaranteed to be anything. Insert an extend.
4089 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00004090 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004091 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004092 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00004093 Result = DAG.getZeroExtendInReg(Result,
4094 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004095 break;
4096 }
4097 break;
Chris Lattner35481892005-12-23 00:16:34 +00004098 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004099 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4100 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00004101 Result = PromoteOp(Result);
4102 break;
4103
Chris Lattner8b6fa222005-01-15 22:16:26 +00004104 case ISD::FP_EXTEND:
4105 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4106 case ISD::FP_ROUND:
4107 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4108 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4109 case Promote: assert(0 && "Unreachable with 2 FP types!");
4110 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004111 if (Node->getConstantOperandVal(1) == 0) {
4112 // Input is legal? Do an FP_ROUND_INREG.
4113 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4114 DAG.getValueType(VT));
4115 } else {
4116 // Just remove the truncate, it isn't affecting the value.
4117 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4118 Node->getOperand(1));
4119 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004120 break;
4121 }
4122 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004123 case ISD::SINT_TO_FP:
4124 case ISD::UINT_TO_FP:
4125 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4126 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004127 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00004128 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004129 break;
4130
4131 case Promote:
4132 Result = PromoteOp(Node->getOperand(0));
4133 if (Node->getOpcode() == ISD::SINT_TO_FP)
4134 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004135 Result,
4136 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004137 else
Chris Lattner23993562005-04-13 02:38:47 +00004138 Result = DAG.getZeroExtendInReg(Result,
4139 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004140 // No extra round required here.
4141 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004142 break;
4143 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004144 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4145 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00004146 // Round if we cannot tolerate excess precision.
4147 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004148 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4149 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004150 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004151 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004152 break;
4153
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004154 case ISD::SIGN_EXTEND_INREG:
4155 Result = PromoteOp(Node->getOperand(0));
4156 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4157 Node->getOperand(1));
4158 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004159 case ISD::FP_TO_SINT:
4160 case ISD::FP_TO_UINT:
4161 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4162 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004163 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004164 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004165 break;
4166 case Promote:
4167 // The input result is prerounded, so we don't have to do anything
4168 // special.
4169 Tmp1 = PromoteOp(Node->getOperand(0));
4170 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004171 }
Nate Begemand2558e32005-08-14 01:20:53 +00004172 // If we're promoting a UINT to a larger size, check to see if the new node
4173 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4174 // we can use that instead. This allows us to generate better code for
4175 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4176 // legal, such as PowerPC.
4177 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004178 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004179 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4180 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00004181 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4182 } else {
4183 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4184 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004185 break;
4186
Chris Lattner2c8086f2005-04-02 05:00:07 +00004187 case ISD::FABS:
4188 case ISD::FNEG:
4189 Tmp1 = PromoteOp(Node->getOperand(0));
4190 assert(Tmp1.getValueType() == NVT);
4191 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4192 // NOTE: we do not have to do any extra rounding here for
4193 // NoExcessFPPrecision, because we know the input will have the appropriate
4194 // precision, and these operations don't modify precision at all.
4195 break;
4196
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004197 case ISD::FLOG:
4198 case ISD::FLOG2:
4199 case ISD::FLOG10:
4200 case ISD::FEXP:
4201 case ISD::FEXP2:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004202 case ISD::FSQRT:
4203 case ISD::FSIN:
4204 case ISD::FCOS:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00004205 case ISD::FTRUNC:
4206 case ISD::FFLOOR:
4207 case ISD::FCEIL:
4208 case ISD::FRINT:
4209 case ISD::FNEARBYINT:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004210 Tmp1 = PromoteOp(Node->getOperand(0));
4211 assert(Tmp1.getValueType() == NVT);
4212 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004213 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004214 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4215 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004216 break;
4217
Evan Cheng9d24ac52008-09-09 23:35:53 +00004218 case ISD::FPOW:
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004219 case ISD::FPOWI: {
Evan Cheng9d24ac52008-09-09 23:35:53 +00004220 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004221 // directly as well, which may be better.
4222 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng9d24ac52008-09-09 23:35:53 +00004223 Tmp2 = Node->getOperand(1);
4224 if (Node->getOpcode() == ISD::FPOW)
4225 Tmp2 = PromoteOp(Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004226 assert(Tmp1.getValueType() == NVT);
Evan Cheng9d24ac52008-09-09 23:35:53 +00004227 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004228 if (NoExcessFPPrecision)
4229 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4230 DAG.getValueType(VT));
4231 break;
4232 }
4233
Dale Johannesene00a8a22008-08-28 02:44:49 +00004234 case ISD::ATOMIC_CMP_SWAP_8:
4235 case ISD::ATOMIC_CMP_SWAP_16:
4236 case ISD::ATOMIC_CMP_SWAP_32:
4237 case ISD::ATOMIC_CMP_SWAP_64: {
Mon P Wang28873102008-06-25 08:15:39 +00004238 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004239 Tmp2 = PromoteOp(Node->getOperand(2));
4240 Tmp3 = PromoteOp(Node->getOperand(3));
Mon P Wang28873102008-06-25 08:15:39 +00004241 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4242 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004243 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004244 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004245 // Remember that we legalized the chain.
4246 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4247 break;
4248 }
Dale Johannesene00a8a22008-08-28 02:44:49 +00004249 case ISD::ATOMIC_LOAD_ADD_8:
4250 case ISD::ATOMIC_LOAD_SUB_8:
4251 case ISD::ATOMIC_LOAD_AND_8:
4252 case ISD::ATOMIC_LOAD_OR_8:
4253 case ISD::ATOMIC_LOAD_XOR_8:
4254 case ISD::ATOMIC_LOAD_NAND_8:
4255 case ISD::ATOMIC_LOAD_MIN_8:
4256 case ISD::ATOMIC_LOAD_MAX_8:
4257 case ISD::ATOMIC_LOAD_UMIN_8:
4258 case ISD::ATOMIC_LOAD_UMAX_8:
4259 case ISD::ATOMIC_SWAP_8:
4260 case ISD::ATOMIC_LOAD_ADD_16:
4261 case ISD::ATOMIC_LOAD_SUB_16:
4262 case ISD::ATOMIC_LOAD_AND_16:
4263 case ISD::ATOMIC_LOAD_OR_16:
4264 case ISD::ATOMIC_LOAD_XOR_16:
4265 case ISD::ATOMIC_LOAD_NAND_16:
4266 case ISD::ATOMIC_LOAD_MIN_16:
4267 case ISD::ATOMIC_LOAD_MAX_16:
4268 case ISD::ATOMIC_LOAD_UMIN_16:
4269 case ISD::ATOMIC_LOAD_UMAX_16:
4270 case ISD::ATOMIC_SWAP_16:
4271 case ISD::ATOMIC_LOAD_ADD_32:
4272 case ISD::ATOMIC_LOAD_SUB_32:
4273 case ISD::ATOMIC_LOAD_AND_32:
4274 case ISD::ATOMIC_LOAD_OR_32:
4275 case ISD::ATOMIC_LOAD_XOR_32:
4276 case ISD::ATOMIC_LOAD_NAND_32:
4277 case ISD::ATOMIC_LOAD_MIN_32:
4278 case ISD::ATOMIC_LOAD_MAX_32:
4279 case ISD::ATOMIC_LOAD_UMIN_32:
4280 case ISD::ATOMIC_LOAD_UMAX_32:
4281 case ISD::ATOMIC_SWAP_32:
4282 case ISD::ATOMIC_LOAD_ADD_64:
4283 case ISD::ATOMIC_LOAD_SUB_64:
4284 case ISD::ATOMIC_LOAD_AND_64:
4285 case ISD::ATOMIC_LOAD_OR_64:
4286 case ISD::ATOMIC_LOAD_XOR_64:
4287 case ISD::ATOMIC_LOAD_NAND_64:
4288 case ISD::ATOMIC_LOAD_MIN_64:
4289 case ISD::ATOMIC_LOAD_MAX_64:
4290 case ISD::ATOMIC_LOAD_UMIN_64:
4291 case ISD::ATOMIC_LOAD_UMAX_64:
4292 case ISD::ATOMIC_SWAP_64: {
Mon P Wang28873102008-06-25 08:15:39 +00004293 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004294 Tmp2 = PromoteOp(Node->getOperand(2));
Mon P Wang28873102008-06-25 08:15:39 +00004295 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4296 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004297 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004298 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004299 // Remember that we legalized the chain.
4300 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4301 break;
4302 }
4303
Chris Lattner03c85462005-01-15 05:21:40 +00004304 case ISD::AND:
4305 case ISD::OR:
4306 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004307 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004308 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004309 case ISD::MUL:
4310 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004311 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004312 // that too is okay if they are integer operations.
4313 Tmp1 = PromoteOp(Node->getOperand(0));
4314 Tmp2 = PromoteOp(Node->getOperand(1));
4315 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4316 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004317 break;
4318 case ISD::FADD:
4319 case ISD::FSUB:
4320 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004321 Tmp1 = PromoteOp(Node->getOperand(0));
4322 Tmp2 = PromoteOp(Node->getOperand(1));
4323 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4324 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4325
4326 // Floating point operations will give excess precision that we may not be
4327 // able to tolerate. If we DO allow excess precision, just leave it,
4328 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004329 // FIXME: Why would we need to round FP ops more than integer ones?
4330 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004331 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004332 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4333 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004334 break;
4335
Chris Lattner8b6fa222005-01-15 22:16:26 +00004336 case ISD::SDIV:
4337 case ISD::SREM:
4338 // These operators require that their input be sign extended.
4339 Tmp1 = PromoteOp(Node->getOperand(0));
4340 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004341 if (NVT.isInteger()) {
Chris Lattner15e4b012005-07-10 00:07:11 +00004342 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4343 DAG.getValueType(VT));
4344 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4345 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004346 }
4347 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4348
4349 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004350 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004351 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4352 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004353 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004354 case ISD::FDIV:
4355 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004356 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004357 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004358 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004359 case Expand: assert(0 && "not implemented");
4360 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4361 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004362 }
4363 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004364 case Expand: assert(0 && "not implemented");
4365 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4366 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004367 }
Chris Lattner01b3d732005-09-28 22:28:18 +00004368 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4369
4370 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004371 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00004372 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4373 DAG.getValueType(VT));
4374 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004375
4376 case ISD::UDIV:
4377 case ISD::UREM:
4378 // These operators require that their input be zero extended.
4379 Tmp1 = PromoteOp(Node->getOperand(0));
4380 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004381 assert(NVT.isInteger() && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00004382 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4383 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004384 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4385 break;
4386
4387 case ISD::SHL:
4388 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00004389 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004390 break;
4391 case ISD::SRA:
4392 // The input value must be properly sign extended.
4393 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00004394 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4395 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00004396 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004397 break;
4398 case ISD::SRL:
4399 // The input value must be properly zero extended.
4400 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00004401 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004402 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004403 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004404
4405 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004406 Tmp1 = Node->getOperand(0); // Get the chain.
4407 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004408 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4409 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004410 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004411 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004412 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman475871a2008-07-27 21:46:04 +00004413 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004414 // Increment the pointer, VAList, to the next vaarg
4415 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004416 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004417 TLI.getPointerTy()));
4418 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00004419 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004420 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004421 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004422 }
4423 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004424 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004425 break;
4426
Evan Cheng466685d2006-10-09 20:57:25 +00004427 case ISD::LOAD: {
4428 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004429 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4430 ? ISD::EXTLOAD : LD->getExtensionType();
4431 Result = DAG.getExtLoad(ExtType, NVT,
4432 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004433 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004434 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004435 LD->isVolatile(),
4436 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004437 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004438 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004439 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004440 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004441 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004442 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4443 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004444
Duncan Sands83ec4b62008-06-06 12:08:01 +00004445 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004446 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004447 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4448 // Ensure that the resulting node is at least the same size as the operands'
4449 // value types, because we cannot assume that TLI.getSetCCValueType() is
4450 // constant.
4451 Result = DAG.getNode(ISD::SELECT, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004452 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004453 }
Nate Begeman9373a812005-08-10 20:51:12 +00004454 case ISD::SELECT_CC:
4455 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4456 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4457 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004458 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004459 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004460 case ISD::BSWAP:
4461 Tmp1 = Node->getOperand(0);
4462 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4463 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4464 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004465 DAG.getConstant(NVT.getSizeInBits() -
4466 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004467 TLI.getShiftAmountTy()));
4468 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004469 case ISD::CTPOP:
4470 case ISD::CTTZ:
4471 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004472 // Zero extend the argument
4473 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004474 // Perform the larger operation, then subtract if needed.
4475 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004476 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004477 case ISD::CTPOP:
4478 Result = Tmp1;
4479 break;
4480 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004481 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004482 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004483 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004484 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004485 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004486 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004487 break;
4488 case ISD::CTLZ:
4489 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004490 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004491 DAG.getConstant(NVT.getSizeInBits() -
4492 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004493 break;
4494 }
4495 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004496 case ISD::EXTRACT_SUBVECTOR:
4497 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004498 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004499 case ISD::EXTRACT_VECTOR_ELT:
4500 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4501 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004502 }
4503
Gabor Greifba36cb52008-08-28 21:40:38 +00004504 assert(Result.getNode() && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004505
4506 // Make sure the result is itself legal.
4507 Result = LegalizeOp(Result);
4508
4509 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004510 AddPromotedOperand(Op, Result);
4511 return Result;
4512}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004513
Dan Gohman7f321562007-06-25 16:23:39 +00004514/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4515/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4516/// based on the vector type. The return type of this matches the element type
4517/// of the vector, which may not be legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00004518SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004519 // We know that operand #0 is the Vec vector. If the index is a constant
4520 // or if the invec is a supported hardware type, we can use it. Otherwise,
4521 // lower to a store then an indexed load.
Dan Gohman475871a2008-07-27 21:46:04 +00004522 SDValue Vec = Op.getOperand(0);
4523 SDValue Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00004524
Duncan Sands83ec4b62008-06-06 12:08:01 +00004525 MVT TVT = Vec.getValueType();
4526 unsigned NumElems = TVT.getVectorNumElements();
Chris Lattner15972212006-03-31 17:55:51 +00004527
Dan Gohman7f321562007-06-25 16:23:39 +00004528 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4529 default: assert(0 && "This action is not supported yet!");
4530 case TargetLowering::Custom: {
4531 Vec = LegalizeOp(Vec);
4532 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004533 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004534 if (Tmp3.getNode())
Dan Gohman7f321562007-06-25 16:23:39 +00004535 return Tmp3;
4536 break;
4537 }
4538 case TargetLowering::Legal:
4539 if (isTypeLegal(TVT)) {
4540 Vec = LegalizeOp(Vec);
4541 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004542 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004543 }
4544 break;
4545 case TargetLowering::Expand:
4546 break;
4547 }
4548
4549 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004550 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004551 Op = ScalarizeVectorOp(Vec);
4552 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00004553 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00004554 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004555 SDValue Lo, Hi;
Chris Lattner15972212006-03-31 17:55:51 +00004556 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004557 if (CIdx->getZExtValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00004558 Vec = Lo;
4559 } else {
4560 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004561 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00004562 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00004563 }
Dan Gohman7f321562007-06-25 16:23:39 +00004564
Chris Lattner15972212006-03-31 17:55:51 +00004565 // It's now an extract from the appropriate high or low part. Recurse.
4566 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004567 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00004568 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004569 // Store the value to a temporary stack slot, then LOAD the scalar
4570 // element back out.
Dan Gohman475871a2008-07-27 21:46:04 +00004571 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
4572 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
Dan Gohman7f321562007-06-25 16:23:39 +00004573
4574 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004575 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dan Gohman7f321562007-06-25 16:23:39 +00004576 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4577 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004578
Duncan Sands8e4eb092008-06-08 20:54:56 +00004579 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Chris Lattnerf185e672007-10-19 16:47:35 +00004580 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004581 else
Chris Lattnerf185e672007-10-19 16:47:35 +00004582 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004583
Dan Gohman7f321562007-06-25 16:23:39 +00004584 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4585
4586 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00004587 }
Dan Gohman7f321562007-06-25 16:23:39 +00004588 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00004589}
4590
Dan Gohman7f321562007-06-25 16:23:39 +00004591/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00004592/// we assume the operation can be split if it is not already legal.
Dan Gohman475871a2008-07-27 21:46:04 +00004593SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohman65956352007-06-13 15:12:02 +00004594 // We know that operand #0 is the Vec vector. For now we assume the index
4595 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman475871a2008-07-27 21:46:04 +00004596 SDValue Vec = Op.getOperand(0);
4597 SDValue Idx = LegalizeOp(Op.getOperand(1));
Dan Gohman65956352007-06-13 15:12:02 +00004598
Duncan Sands83ec4b62008-06-06 12:08:01 +00004599 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Dan Gohman65956352007-06-13 15:12:02 +00004600
Duncan Sands83ec4b62008-06-06 12:08:01 +00004601 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00004602 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004603 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00004604 }
4605
4606 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004607 SDValue Lo, Hi;
Dan Gohman65956352007-06-13 15:12:02 +00004608 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004609 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohman65956352007-06-13 15:12:02 +00004610 Vec = Lo;
4611 } else {
4612 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004613 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
4614 Idx.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00004615 }
4616
4617 // It's now an extract from the appropriate high or low part. Recurse.
4618 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004619 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00004620}
4621
Nate Begeman750ac1b2006-02-01 07:19:44 +00004622/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4623/// with condition CC on the current target. This usually involves legalizing
4624/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4625/// there may be no choice but to create a new SetCC node to represent the
4626/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman475871a2008-07-27 21:46:04 +00004627/// LHS, and the SDValue returned in RHS has a nil SDNode value.
4628void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
4629 SDValue &RHS,
4630 SDValue &CC) {
4631 SDValue Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004632
4633 switch (getTypeAction(LHS.getValueType())) {
4634 case Legal:
4635 Tmp1 = LegalizeOp(LHS); // LHS
4636 Tmp2 = LegalizeOp(RHS); // RHS
4637 break;
4638 case Promote:
4639 Tmp1 = PromoteOp(LHS); // LHS
4640 Tmp2 = PromoteOp(RHS); // RHS
4641
4642 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004643 if (LHS.getValueType().isInteger()) {
4644 MVT VT = LHS.getValueType();
4645 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00004646
4647 // Otherwise, we have to insert explicit sign or zero extends. Note
4648 // that we could insert sign extends for ALL conditions, but zero extend
4649 // is cheaper on many machines (an AND instead of two shifts), so prefer
4650 // it.
4651 switch (cast<CondCodeSDNode>(CC)->get()) {
4652 default: assert(0 && "Unknown integer comparison!");
4653 case ISD::SETEQ:
4654 case ISD::SETNE:
4655 case ISD::SETUGE:
4656 case ISD::SETUGT:
4657 case ISD::SETULE:
4658 case ISD::SETULT:
4659 // ALL of these operations will work if we either sign or zero extend
4660 // the operands (including the unsigned comparisons!). Zero extend is
4661 // usually a simpler/cheaper operation, so prefer it.
4662 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4663 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4664 break;
4665 case ISD::SETGE:
4666 case ISD::SETGT:
4667 case ISD::SETLT:
4668 case ISD::SETLE:
4669 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4670 DAG.getValueType(VT));
4671 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4672 DAG.getValueType(VT));
4673 break;
4674 }
4675 }
4676 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004677 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004678 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00004679 if (VT == MVT::f32 || VT == MVT::f64) {
4680 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00004681 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00004682 switch (cast<CondCodeSDNode>(CC)->get()) {
4683 case ISD::SETEQ:
4684 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00004685 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004686 break;
4687 case ISD::SETNE:
4688 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00004689 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004690 break;
4691 case ISD::SETGE:
4692 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00004693 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004694 break;
4695 case ISD::SETLT:
4696 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00004697 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004698 break;
4699 case ISD::SETLE:
4700 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00004701 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004702 break;
4703 case ISD::SETGT:
4704 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00004705 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004706 break;
4707 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00004708 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4709 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004710 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00004711 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004712 break;
4713 default:
Evan Cheng56966222007-01-12 02:11:51 +00004714 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004715 switch (cast<CondCodeSDNode>(CC)->get()) {
4716 case ISD::SETONE:
4717 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004718 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004719 // Fallthrough
4720 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004721 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004722 break;
4723 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004724 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004725 break;
4726 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004727 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004728 break;
4729 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004730 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004731 break;
Evan Cheng56966222007-01-12 02:11:51 +00004732 case ISD::SETUEQ:
4733 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004734 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004735 default: assert(0 && "Unsupported FP setcc!");
4736 }
4737 }
Duncan Sandsf9516202008-06-30 10:19:09 +00004738
Dan Gohman475871a2008-07-27 21:46:04 +00004739 SDValue Dummy;
4740 SDValue Ops[2] = { LHS, RHS };
Gabor Greifba36cb52008-08-28 21:40:38 +00004741 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00004742 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004743 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004744 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004745 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004746 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00004747 CC);
Gabor Greifba36cb52008-08-28 21:40:38 +00004748 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00004749 false /*sign irrelevant*/, Dummy);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004750 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004751 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004752 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman475871a2008-07-27 21:46:04 +00004753 Tmp2 = SDValue();
Evan Cheng2b49c502006-12-15 02:59:56 +00004754 }
Evan Cheng21cacc42008-07-07 07:18:09 +00004755 LHS = LegalizeOp(Tmp1);
Evan Cheng2b49c502006-12-15 02:59:56 +00004756 RHS = Tmp2;
4757 return;
4758 }
4759
Dan Gohman475871a2008-07-27 21:46:04 +00004760 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004761 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004762 ExpandOp(RHS, RHSLo, RHSHi);
4763 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4764
4765 if (VT==MVT::ppcf128) {
4766 // FIXME: This generated code sucks. We want to generate
Dale Johannesene2f20832008-09-12 00:30:56 +00004767 // FCMPU crN, hi1, hi2
Dale Johannesen638ccd52007-10-06 01:24:11 +00004768 // BNE crN, L:
Dale Johannesene2f20832008-09-12 00:30:56 +00004769 // FCMPU crN, lo1, lo2
Dale Johannesen638ccd52007-10-06 01:24:11 +00004770 // The following can be improved, but not that much.
Dale Johannesene2f20832008-09-12 00:30:56 +00004771 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
4772 ISD::SETOEQ);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004773 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004774 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
Dale Johannesene2f20832008-09-12 00:30:56 +00004775 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
4776 ISD::SETUNE);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004777 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004778 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4779 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman475871a2008-07-27 21:46:04 +00004780 Tmp2 = SDValue();
Dale Johannesen638ccd52007-10-06 01:24:11 +00004781 break;
4782 }
4783
4784 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004785 case ISD::SETEQ:
4786 case ISD::SETNE:
4787 if (RHSLo == RHSHi)
4788 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4789 if (RHSCST->isAllOnesValue()) {
4790 // Comparison to -1.
4791 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4792 Tmp2 = RHSLo;
4793 break;
4794 }
4795
4796 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4797 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4798 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4799 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4800 break;
4801 default:
4802 // If this is a comparison of the sign bit, just look at the top part.
4803 // X > -1, x < 0
4804 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4805 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004806 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00004807 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4808 CST->isAllOnesValue())) { // X > -1
4809 Tmp1 = LHSHi;
4810 Tmp2 = RHSHi;
4811 break;
4812 }
4813
4814 // FIXME: This generated code sucks.
4815 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004816 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004817 default: assert(0 && "Unknown integer setcc!");
4818 case ISD::SETLT:
4819 case ISD::SETULT: LowCC = ISD::SETULT; break;
4820 case ISD::SETGT:
4821 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4822 case ISD::SETLE:
4823 case ISD::SETULE: LowCC = ISD::SETULE; break;
4824 case ISD::SETGE:
4825 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4826 }
4827
4828 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4829 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4830 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4831
4832 // NOTE: on targets without efficient SELECT of bools, we can always use
4833 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004834 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004835 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
Nate Begeman5922f562008-03-14 00:53:31 +00004836 LowCC, false, DagCombineInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00004837 if (!Tmp1.getNode())
Scott Michel5b8f82e2008-03-10 15:42:14 +00004838 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4839 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004840 CCCode, false, DagCombineInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00004841 if (!Tmp2.getNode())
Scott Michel5b8f82e2008-03-10 15:42:14 +00004842 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004843 RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00004844
Gabor Greifba36cb52008-08-28 21:40:38 +00004845 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
4846 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman002e5d02008-03-13 22:13:53 +00004847 if ((Tmp1C && Tmp1C->isNullValue()) ||
4848 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00004849 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4850 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00004851 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00004852 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4853 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4854 // low part is known false, returns high part.
4855 // For LE / GE, if high part is known false, ignore the low part.
4856 // For LT / GT, if high part is known true, ignore the low part.
4857 Tmp1 = Tmp2;
Dan Gohman475871a2008-07-27 21:46:04 +00004858 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00004859 } else {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004860 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004861 ISD::SETEQ, false, DagCombineInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00004862 if (!Result.getNode())
Scott Michel5b8f82e2008-03-10 15:42:14 +00004863 Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004864 ISD::SETEQ);
Evan Cheng2e677812007-02-08 22:16:19 +00004865 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4866 Result, Tmp1, Tmp2));
4867 Tmp1 = Result;
Dan Gohman475871a2008-07-27 21:46:04 +00004868 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00004869 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004870 }
4871 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004872 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004873 LHS = Tmp1;
4874 RHS = Tmp2;
4875}
4876
Chris Lattner1401d152008-01-16 07:45:30 +00004877/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4878/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4879/// a load from the stack slot to DestVT, extending it if needed.
4880/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00004881SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
4882 MVT SlotVT,
4883 MVT DestVT) {
Chris Lattner35481892005-12-23 00:16:34 +00004884 // Create the stack frame object.
Mon P Wang364d73d2008-07-05 20:40:31 +00004885 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
4886 SrcOp.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00004887 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Mon P Wang364d73d2008-07-05 20:40:31 +00004888
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004889 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004890 int SPFI = StackPtrFI->getIndex();
Mon P Wang364d73d2008-07-05 20:40:31 +00004891
Duncan Sands83ec4b62008-06-06 12:08:01 +00004892 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
4893 unsigned SlotSize = SlotVT.getSizeInBits();
4894 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang364d73d2008-07-05 20:40:31 +00004895 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
4896 DestVT.getTypeForMVT());
Chris Lattner35481892005-12-23 00:16:34 +00004897
Chris Lattner1401d152008-01-16 07:45:30 +00004898 // Emit a store to the stack slot. Use a truncstore if the input value is
4899 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00004900 SDValue Store;
Mon P Wang364d73d2008-07-05 20:40:31 +00004901
Chris Lattner1401d152008-01-16 07:45:30 +00004902 if (SrcSize > SlotSize)
Dan Gohman69de1932008-02-06 22:27:42 +00004903 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004904 PseudoSourceValue::getFixedStack(SPFI), 0,
4905 SlotVT, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004906 else {
4907 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman69de1932008-02-06 22:27:42 +00004908 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004909 PseudoSourceValue::getFixedStack(SPFI), 0,
Mon P Wang364d73d2008-07-05 20:40:31 +00004910 false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004911 }
4912
Chris Lattner35481892005-12-23 00:16:34 +00004913 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00004914 if (SlotSize == DestSize)
Mon P Wang364d73d2008-07-05 20:40:31 +00004915 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0, false, DestAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004916
4917 assert(SlotSize < DestSize && "Unknown extension!");
Mon P Wang364d73d2008-07-05 20:40:31 +00004918 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT,
4919 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00004920}
4921
Dan Gohman475871a2008-07-27 21:46:04 +00004922SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Chris Lattner4352cc92006-04-04 17:23:26 +00004923 // Create a vector sized/aligned stack slot, store the value to element #0,
4924 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00004925 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00004926
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004927 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004928 int SPFI = StackPtrFI->getIndex();
4929
Dan Gohman475871a2008-07-27 21:46:04 +00004930 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004931 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohman69de1932008-02-06 22:27:42 +00004932 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004933 PseudoSourceValue::getFixedStack(SPFI), 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00004934}
4935
4936
Chris Lattnerce872152006-03-19 06:31:19 +00004937/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004938/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00004939SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Chris Lattnerce872152006-03-19 06:31:19 +00004940
4941 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004942 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004943 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004944 bool isOnlyLowElement = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004945 SDValue SplatValue = Node->getOperand(0);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004946
Dan Gohman475871a2008-07-27 21:46:04 +00004947 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004948 // and use a bitmask instead of a list of elements.
Dan Gohman475871a2008-07-27 21:46:04 +00004949 std::map<SDValue, std::vector<unsigned> > Values;
Evan Cheng033e6812006-03-24 01:17:21 +00004950 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004951 bool isConstant = true;
4952 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4953 SplatValue.getOpcode() != ISD::UNDEF)
4954 isConstant = false;
4955
Evan Cheng033e6812006-03-24 01:17:21 +00004956 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004957 SDValue V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004958 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004959 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004960 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004961 if (SplatValue != V)
Dan Gohman475871a2008-07-27 21:46:04 +00004962 SplatValue = SDValue(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004963
4964 // If this isn't a constant element or an undef, we can't use a constant
4965 // pool load.
4966 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4967 V.getOpcode() != ISD::UNDEF)
4968 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004969 }
4970
4971 if (isOnlyLowElement) {
4972 // If the low element is an undef too, then this whole things is an undef.
4973 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4974 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4975 // Otherwise, turn this into a scalar_to_vector node.
4976 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4977 Node->getOperand(0));
4978 }
4979
Chris Lattner2eb86532006-03-24 07:29:17 +00004980 // If all elements are constants, create a load from the constant pool.
4981 if (isConstant) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004982 MVT VT = Node->getValueType(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004983 std::vector<Constant*> CV;
4984 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4985 if (ConstantFPSDNode *V =
4986 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00004987 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004988 } else if (ConstantSDNode *V =
Chris Lattner02a260a2008-04-20 00:41:09 +00004989 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00004990 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004991 } else {
4992 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner02a260a2008-04-20 00:41:09 +00004993 const Type *OpNTy =
Duncan Sands83ec4b62008-06-06 12:08:01 +00004994 Node->getOperand(0).getValueType().getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00004995 CV.push_back(UndefValue::get(OpNTy));
4996 }
4997 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00004998 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00004999 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman69de1932008-02-06 22:27:42 +00005000 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005001 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005002 }
5003
Gabor Greifba36cb52008-08-28 21:40:38 +00005004 if (SplatValue.getNode()) { // Splat of one value?
Chris Lattner87100e02006-03-20 01:52:29 +00005005 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005006 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman475871a2008-07-27 21:46:04 +00005007 SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
5008 std::vector<SDValue> ZeroVec(NumElems, Zero);
5009 SDValue SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005010 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00005011
5012 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005013 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00005014 // Get the splatted value into the low element of a vector register.
Dan Gohman475871a2008-07-27 21:46:04 +00005015 SDValue LowValVec =
Chris Lattner87100e02006-03-20 01:52:29 +00005016 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
5017
5018 // Return shuffle(LowValVec, undef, <0,0,0,0>)
5019 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
5020 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
5021 SplatMask);
5022 }
5023 }
5024
Evan Cheng033e6812006-03-24 01:17:21 +00005025 // If there are only two unique elements, we may be able to turn this into a
5026 // vector shuffle.
5027 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005028 // Get the two values in deterministic order.
Dan Gohman475871a2008-07-27 21:46:04 +00005029 SDValue Val1 = Node->getOperand(1);
5030 SDValue Val2;
5031 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005032 if (MI->first != Val1)
5033 Val2 = MI->first;
5034 else
5035 Val2 = (++MI)->first;
5036
5037 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
5038 // vector shuffle has the undef vector on the RHS.
5039 if (Val1.getOpcode() == ISD::UNDEF)
5040 std::swap(Val1, Val2);
5041
Evan Cheng033e6812006-03-24 01:17:21 +00005042 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005043 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5044 MVT MaskEltVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00005045 std::vector<SDValue> MaskVec(NumElems);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005046
5047 // Set elements of the shuffle mask for Val1.
5048 std::vector<unsigned> &Val1Elts = Values[Val1];
5049 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5050 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5051
5052 // Set elements of the shuffle mask for Val2.
5053 std::vector<unsigned> &Val2Elts = Values[Val2];
5054 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5055 if (Val2.getOpcode() != ISD::UNDEF)
5056 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5057 else
5058 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
5059
Dan Gohman475871a2008-07-27 21:46:04 +00005060 SDValue ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005061 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00005062
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005063 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005064 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
5065 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005066 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
5067 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
Dan Gohman475871a2008-07-27 21:46:04 +00005068 SDValue Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng033e6812006-03-24 01:17:21 +00005069
5070 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005071 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Evan Cheng033e6812006-03-24 01:17:21 +00005072 }
5073 }
Chris Lattnerce872152006-03-19 06:31:19 +00005074
5075 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5076 // aligned object on the stack, store each element into it, then load
5077 // the result as a vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005078 MVT VT = Node->getValueType(0);
Chris Lattnerce872152006-03-19 06:31:19 +00005079 // Create the stack frame object.
Dan Gohman475871a2008-07-27 21:46:04 +00005080 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005081
5082 // Emit a store of each element to the stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00005083 SmallVector<SDValue, 8> Stores;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005084 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Chris Lattnerce872152006-03-19 06:31:19 +00005085 // Store (in the right endianness) the elements to memory.
5086 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5087 // Ignore undef elements.
5088 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5089
Chris Lattner841c8822006-03-22 01:46:54 +00005090 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00005091
Dan Gohman475871a2008-07-27 21:46:04 +00005092 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Chris Lattnerce872152006-03-19 06:31:19 +00005093 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5094
Evan Cheng786225a2006-10-05 23:01:46 +00005095 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00005096 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00005097 }
5098
Dan Gohman475871a2008-07-27 21:46:04 +00005099 SDValue StoreChain;
Chris Lattnerce872152006-03-19 06:31:19 +00005100 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005101 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5102 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005103 else
5104 StoreChain = DAG.getEntryNode();
5105
5106 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00005107 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005108}
5109
Chris Lattner5b359c62005-04-02 04:00:59 +00005110void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman475871a2008-07-27 21:46:04 +00005111 SDValue Op, SDValue Amt,
5112 SDValue &Lo, SDValue &Hi) {
Chris Lattner5b359c62005-04-02 04:00:59 +00005113 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00005114 SDValue LHSL, LHSH;
Chris Lattner5b359c62005-04-02 04:00:59 +00005115 ExpandOp(Op, LHSL, LHSH);
5116
Dan Gohman475871a2008-07-27 21:46:04 +00005117 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005118 MVT VT = LHSL.getValueType();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00005119 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005120 Hi = Lo.getValue(1);
5121}
5122
5123
Chris Lattnere34b3962005-01-19 04:19:40 +00005124/// ExpandShift - Try to find a clever way to expand this shift operation out to
5125/// smaller elements. If we can't find a way that is more efficient than a
5126/// libcall on this target, return false. Otherwise, return true with the
5127/// low-parts expanded into Lo and Hi.
Dan Gohman475871a2008-07-27 21:46:04 +00005128bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op,SDValue Amt,
5129 SDValue &Lo, SDValue &Hi) {
Chris Lattnere34b3962005-01-19 04:19:40 +00005130 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5131 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005132
Duncan Sands83ec4b62008-06-06 12:08:01 +00005133 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman475871a2008-07-27 21:46:04 +00005134 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005135 MVT ShTy = ShAmt.getValueType();
5136 unsigned ShBits = ShTy.getSizeInBits();
5137 unsigned VTBits = Op.getValueType().getSizeInBits();
5138 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005139
Chris Lattner7a3c8552007-10-14 20:35:12 +00005140 // Handle the case when Amt is an immediate.
Gabor Greifba36cb52008-08-28 21:40:38 +00005141 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005142 unsigned Cst = CN->getZExtValue();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005143 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005144 SDValue InL, InH;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005145 ExpandOp(Op, InL, InH);
5146 switch(Opc) {
5147 case ISD::SHL:
5148 if (Cst > VTBits) {
5149 Lo = DAG.getConstant(0, NVT);
5150 Hi = DAG.getConstant(0, NVT);
5151 } else if (Cst > NVTBits) {
5152 Lo = DAG.getConstant(0, NVT);
5153 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005154 } else if (Cst == NVTBits) {
5155 Lo = DAG.getConstant(0, NVT);
5156 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005157 } else {
5158 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5159 Hi = DAG.getNode(ISD::OR, NVT,
5160 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5161 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5162 }
5163 return true;
5164 case ISD::SRL:
5165 if (Cst > VTBits) {
5166 Lo = DAG.getConstant(0, NVT);
5167 Hi = DAG.getConstant(0, NVT);
5168 } else if (Cst > NVTBits) {
5169 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5170 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005171 } else if (Cst == NVTBits) {
5172 Lo = InH;
5173 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005174 } else {
5175 Lo = DAG.getNode(ISD::OR, NVT,
5176 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5177 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5178 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5179 }
5180 return true;
5181 case ISD::SRA:
5182 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005183 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005184 DAG.getConstant(NVTBits-1, ShTy));
5185 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005186 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005187 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005188 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005189 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005190 } else if (Cst == NVTBits) {
5191 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00005192 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005193 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005194 } else {
5195 Lo = DAG.getNode(ISD::OR, NVT,
5196 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5197 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5198 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5199 }
5200 return true;
5201 }
5202 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005203
5204 // Okay, the shift amount isn't constant. However, if we can tell that it is
5205 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005206 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5207 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005208 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005209
Dan Gohman9e255b72008-02-22 01:12:31 +00005210 // If we know that if any of the high bits of the shift amount are one, then
5211 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005212 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005213 // Mask out the high bit, which we know is set.
5214 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005215 DAG.getConstant(~Mask, Amt.getValueType()));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005216
5217 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005218 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005219 ExpandOp(Op, InL, InH);
5220 switch(Opc) {
5221 case ISD::SHL:
5222 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5223 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5224 return true;
5225 case ISD::SRL:
5226 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5227 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5228 return true;
5229 case ISD::SRA:
5230 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5231 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5232 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5233 return true;
5234 }
5235 }
5236
Dan Gohman9e255b72008-02-22 01:12:31 +00005237 // If we know that the high bits of the shift amount are all zero, then we can
5238 // do this as a couple of simple shifts.
5239 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005240 // Compute 32-amt.
Dan Gohman475871a2008-07-27 21:46:04 +00005241 SDValue Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005242 DAG.getConstant(NVTBits, Amt.getValueType()),
5243 Amt);
5244
5245 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005246 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005247 ExpandOp(Op, InL, InH);
5248 switch(Opc) {
5249 case ISD::SHL:
5250 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5251 Hi = DAG.getNode(ISD::OR, NVT,
5252 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5253 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5254 return true;
5255 case ISD::SRL:
5256 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5257 Lo = DAG.getNode(ISD::OR, NVT,
5258 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5259 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5260 return true;
5261 case ISD::SRA:
5262 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5263 Lo = DAG.getNode(ISD::OR, NVT,
5264 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5265 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5266 return true;
5267 }
5268 }
5269
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005270 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005271}
Chris Lattner77e77a62005-01-21 06:05:23 +00005272
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005273
Chris Lattner77e77a62005-01-21 06:05:23 +00005274// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5275// does not fit into a register, return the lo part and set the hi part to the
5276// by-reg argument. If it does fit into a single register, return the result
5277// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00005278SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5279 bool isSigned, SDValue &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005280 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5281 // The input chain to this libcall is the entry node of the function.
5282 // Legalizing the call will automatically add the previous call to the
5283 // dependence.
Dan Gohman475871a2008-07-27 21:46:04 +00005284 SDValue InChain = DAG.getEntryNode();
Chris Lattner6831a812006-02-13 09:18:02 +00005285
Chris Lattner77e77a62005-01-21 06:05:23 +00005286 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005287 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005288 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005289 MVT ArgVT = Node->getOperand(i).getValueType();
5290 const Type *ArgTy = ArgVT.getTypeForMVT();
Reid Spencer47857812006-12-31 05:55:36 +00005291 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005292 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005293 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005294 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005295 }
Bill Wendling056292f2008-09-16 21:48:12 +00005296 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
5297 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005298
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005299 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005300 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Dan Gohman475871a2008-07-27 21:46:04 +00005301 std::pair<SDValue,SDValue> CallInfo =
Duncan Sands00fee652008-02-14 17:28:50 +00005302 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, CallingConv::C,
5303 false, Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005304
Chris Lattner6831a812006-02-13 09:18:02 +00005305 // Legalize the call sequence, starting with the chain. This will advance
5306 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5307 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5308 LegalizeOp(CallInfo.second);
Dan Gohman475871a2008-07-27 21:46:04 +00005309 SDValue Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005310 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005311 default: assert(0 && "Unknown thing");
5312 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005313 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005314 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005315 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005316 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005317 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005318 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005319 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005320}
5321
Dan Gohman7f8613e2008-08-14 20:04:46 +00005322/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5323///
5324SDValue SelectionDAGLegalize::
5325LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op) {
5326 bool isCustom = false;
5327 SDValue Tmp1;
5328 switch (getTypeAction(Op.getValueType())) {
5329 case Legal:
5330 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5331 Op.getValueType())) {
5332 default: assert(0 && "Unknown operation action!");
5333 case TargetLowering::Custom:
5334 isCustom = true;
5335 // FALLTHROUGH
5336 case TargetLowering::Legal:
5337 Tmp1 = LegalizeOp(Op);
Gabor Greifba36cb52008-08-28 21:40:38 +00005338 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005339 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5340 else
5341 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5342 DestTy, Tmp1);
5343 if (isCustom) {
5344 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005345 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005346 }
5347 break;
5348 case TargetLowering::Expand:
5349 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy);
5350 break;
5351 case TargetLowering::Promote:
5352 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned);
5353 break;
5354 }
5355 break;
5356 case Expand:
5357 Result = ExpandIntToFP(isSigned, DestTy, Op);
5358 break;
5359 case Promote:
5360 Tmp1 = PromoteOp(Op);
5361 if (isSigned) {
5362 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
5363 Tmp1, DAG.getValueType(Op.getValueType()));
5364 } else {
5365 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
5366 Op.getValueType());
5367 }
Gabor Greifba36cb52008-08-28 21:40:38 +00005368 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005369 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5370 else
5371 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5372 DestTy, Tmp1);
5373 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5374 break;
5375 }
5376 return Result;
5377}
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005378
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005379/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5380///
Dan Gohman475871a2008-07-27 21:46:04 +00005381SDValue SelectionDAGLegalize::
5382ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005383 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005384 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005385
Dan Gohman7f8613e2008-08-14 20:04:46 +00005386 // Expand unsupported int-to-fp vector casts by unrolling them.
5387 if (DestTy.isVector()) {
5388 if (!ExpandSource)
5389 return LegalizeOp(UnrollVectorOp(Source));
5390 MVT DestEltTy = DestTy.getVectorElementType();
5391 if (DestTy.getVectorNumElements() == 1) {
5392 SDValue Scalar = ScalarizeVectorOp(Source);
5393 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
5394 DestEltTy, Scalar);
5395 return DAG.getNode(ISD::BUILD_VECTOR, DestTy, Result);
5396 }
5397 SDValue Lo, Hi;
5398 SplitVectorOp(Source, Lo, Hi);
5399 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5400 DestTy.getVectorNumElements() / 2);
5401 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Lo);
5402 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Hi);
5403 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, DestTy, LoResult, HiResult));
5404 }
5405
Evan Cheng9845eb52008-04-01 02:18:22 +00005406 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5407 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005408 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005409 // incoming integer is set. To handle this, we dynamically test to see if
5410 // it is set, and, if so, add a fudge factor.
Dan Gohman475871a2008-07-27 21:46:04 +00005411 SDValue Hi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005412 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005413 SDValue Lo;
Dan Gohman034f60e2008-03-11 01:59:03 +00005414 ExpandOp(Source, Lo, Hi);
5415 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5416 } else {
5417 // The comparison for the sign bit will use the entire operand.
5418 Hi = Source;
5419 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005420
Chris Lattner66de05b2005-05-13 04:45:13 +00005421 // If this is unsigned, and not supported, first perform the conversion to
5422 // signed, then adjust the result if the sign bit is set.
Dan Gohman475871a2008-07-27 21:46:04 +00005423 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source);
Chris Lattner66de05b2005-05-13 04:45:13 +00005424
Dan Gohman475871a2008-07-27 21:46:04 +00005425 SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005426 DAG.getConstant(0, Hi.getValueType()),
5427 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00005428 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5429 SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
Chris Lattnere9c35e72005-04-13 05:09:42 +00005430 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005431 uint64_t FF = 0x5f800000ULL;
5432 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohman34bc1782008-03-05 02:07:31 +00005433 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005434
Dan Gohman475871a2008-07-27 21:46:04 +00005435 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattnere9c35e72005-04-13 05:09:42 +00005436 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman475871a2008-07-27 21:46:04 +00005437 SDValue FudgeInReg;
Chris Lattnere9c35e72005-04-13 05:09:42 +00005438 if (DestTy == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005439 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005440 PseudoSourceValue::getConstantPool(), 0);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005441 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005442 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005443 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005444 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005445 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005446 MVT::f32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005447 else
5448 assert(0 && "Unexpected conversion");
5449
Duncan Sands83ec4b62008-06-06 12:08:01 +00005450 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005451 if (SCVT != DestTy) {
5452 // Destination type needs to be expanded as well. The FADD now we are
5453 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005454 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5455 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dan Gohmand91446d2008-03-05 01:08:17 +00005456 SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005457 SignedConv, SignedConv.getValue(1));
5458 }
5459 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5460 }
Chris Lattner473a9902005-09-29 06:44:39 +00005461 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005462 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005463
Chris Lattnera88a2602005-05-14 05:33:54 +00005464 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00005465 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00005466 default: assert(0 && "This action not implemented for this operation!");
5467 case TargetLowering::Legal:
5468 case TargetLowering::Expand:
5469 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005470 case TargetLowering::Custom: {
Dan Gohman475871a2008-07-27 21:46:04 +00005471 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
Chris Lattner07dffd62005-08-26 00:14:16 +00005472 Source), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005473 if (NV.getNode())
Chris Lattner07dffd62005-08-26 00:14:16 +00005474 return LegalizeOp(NV);
5475 break; // The target decided this was legal after all
5476 }
Chris Lattnera88a2602005-05-14 05:33:54 +00005477 }
5478
Chris Lattner13689e22005-05-12 07:00:44 +00005479 // Expand the source, then glue it back together for the call. We must expand
5480 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00005481 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005482 SDValue SrcLo, SrcHi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005483 ExpandOp(Source, SrcLo, SrcHi);
5484 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5485 }
Chris Lattner13689e22005-05-12 07:00:44 +00005486
Duncan Sandsb2ff8852008-07-17 02:36:29 +00005487 RTLIB::Libcall LC = isSigned ?
5488 RTLIB::getSINTTOFP(SourceVT, DestTy) :
5489 RTLIB::getUINTTOFP(SourceVT, DestTy);
5490 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
5491
Chris Lattner6831a812006-02-13 09:18:02 +00005492 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
Dan Gohman475871a2008-07-27 21:46:04 +00005493 SDValue HiPart;
Gabor Greifba36cb52008-08-28 21:40:38 +00005494 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
5495 if (Result.getValueType() != DestTy && HiPart.getNode())
Dan Gohmana2e94852008-03-10 23:03:31 +00005496 Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5497 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005498}
Misha Brukmanedf128a2005-04-21 22:36:52 +00005499
Chris Lattner22cde6a2006-01-28 08:25:58 +00005500/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5501/// INT_TO_FP operation of the specified operand when the target requests that
5502/// we expand it. At this point, we know that the result and operand types are
5503/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00005504SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5505 SDValue Op0,
5506 MVT DestVT) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005507 if (Op0.getValueType() == MVT::i32) {
5508 // simple 32-bit [signed|unsigned] integer to float/double expansion
5509
Chris Lattner23594d42008-01-16 07:03:22 +00005510 // Get the stack frame index of a 8 byte buffer.
Dan Gohman475871a2008-07-27 21:46:04 +00005511 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Chris Lattner23594d42008-01-16 07:03:22 +00005512
Chris Lattner22cde6a2006-01-28 08:25:58 +00005513 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00005514 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00005515 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00005516 SDValue Hi = StackSlot;
5517 SDValue Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00005518 if (TLI.isLittleEndian())
5519 std::swap(Hi, Lo);
5520
Chris Lattner22cde6a2006-01-28 08:25:58 +00005521 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00005522 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005523 if (isSigned) {
5524 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman475871a2008-07-27 21:46:04 +00005525 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005526 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5527 } else {
5528 Op0Mapped = Op0;
5529 }
5530 // store the lo of the constructed double - based on integer input
Dan Gohman475871a2008-07-27 21:46:04 +00005531 SDValue Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005532 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005533 // initial hi portion of constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00005534 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005535 // store the hi of the constructed double - biased exponent
Dan Gohman475871a2008-07-27 21:46:04 +00005536 SDValue Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005537 // load the constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00005538 SDValue Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005539 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00005540 SDValue Bias = DAG.getConstantFP(isSigned ?
Chris Lattner22cde6a2006-01-28 08:25:58 +00005541 BitsToDouble(0x4330000080000000ULL)
5542 : BitsToDouble(0x4330000000000000ULL),
5543 MVT::f64);
5544 // subtract the bias
Dan Gohman475871a2008-07-27 21:46:04 +00005545 SDValue Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005546 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00005547 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005548 // handle final rounding
5549 if (DestVT == MVT::f64) {
5550 // do nothing
5551 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00005552 } else if (DestVT.bitsLT(MVT::f64)) {
Chris Lattner0bd48932008-01-17 07:00:52 +00005553 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5554 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005555 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005556 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005557 }
5558 return Result;
5559 }
5560 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dan Gohman475871a2008-07-27 21:46:04 +00005561 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005562
Dan Gohman475871a2008-07-27 21:46:04 +00005563 SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005564 DAG.getConstant(0, Op0.getValueType()),
5565 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00005566 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5567 SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005568 SignSet, Four, Zero);
5569
5570 // If the sign bit of the integer is set, the large number will be treated
5571 // as a negative number. To counteract this, the dynamic code adds an
5572 // offset depending on the data type.
5573 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005574 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005575 default: assert(0 && "Unsupported integer type!");
5576 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5577 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5578 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5579 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5580 }
5581 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005582 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005583
Dan Gohman475871a2008-07-27 21:46:04 +00005584 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00005585 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman475871a2008-07-27 21:46:04 +00005586 SDValue FudgeInReg;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005587 if (DestVT == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005588 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005589 PseudoSourceValue::getConstantPool(), 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005590 else {
Dan Gohman69de1932008-02-06 22:27:42 +00005591 FudgeInReg =
5592 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5593 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005594 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman69de1932008-02-06 22:27:42 +00005595 MVT::f32));
Chris Lattner22cde6a2006-01-28 08:25:58 +00005596 }
5597
5598 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5599}
5600
5601/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5602/// *INT_TO_FP operation of the specified operand when the target requests that
5603/// we promote it. At this point, we know that the result and operand types are
5604/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5605/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00005606SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
5607 MVT DestVT,
5608 bool isSigned) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005609 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005610 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005611
5612 unsigned OpToUse = 0;
5613
5614 // Scan for the appropriate larger type to use.
5615 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005616 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
5617 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005618
5619 // If the target supports SINT_TO_FP of this type, use it.
5620 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5621 default: break;
5622 case TargetLowering::Legal:
5623 if (!TLI.isTypeLegal(NewInTy))
5624 break; // Can't use this datatype.
5625 // FALL THROUGH.
5626 case TargetLowering::Custom:
5627 OpToUse = ISD::SINT_TO_FP;
5628 break;
5629 }
5630 if (OpToUse) break;
5631 if (isSigned) continue;
5632
5633 // If the target supports UINT_TO_FP of this type, use it.
5634 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5635 default: break;
5636 case TargetLowering::Legal:
5637 if (!TLI.isTypeLegal(NewInTy))
5638 break; // Can't use this datatype.
5639 // FALL THROUGH.
5640 case TargetLowering::Custom:
5641 OpToUse = ISD::UINT_TO_FP;
5642 break;
5643 }
5644 if (OpToUse) break;
5645
5646 // Otherwise, try a larger type.
5647 }
5648
5649 // Okay, we found the operation and type to use. Zero extend our input to the
5650 // desired type then run the operation on it.
5651 return DAG.getNode(OpToUse, DestVT,
5652 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5653 NewInTy, LegalOp));
5654}
5655
5656/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5657/// FP_TO_*INT operation of the specified operand when the target requests that
5658/// we promote it. At this point, we know that the result and operand types are
5659/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5660/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00005661SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
5662 MVT DestVT,
5663 bool isSigned) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005664 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005665 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005666
5667 unsigned OpToUse = 0;
5668
5669 // Scan for the appropriate larger type to use.
5670 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005671 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
5672 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005673
5674 // If the target supports FP_TO_SINT returning this type, use it.
5675 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5676 default: break;
5677 case TargetLowering::Legal:
5678 if (!TLI.isTypeLegal(NewOutTy))
5679 break; // Can't use this datatype.
5680 // FALL THROUGH.
5681 case TargetLowering::Custom:
5682 OpToUse = ISD::FP_TO_SINT;
5683 break;
5684 }
5685 if (OpToUse) break;
5686
5687 // If the target supports FP_TO_UINT of this type, use it.
5688 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5689 default: break;
5690 case TargetLowering::Legal:
5691 if (!TLI.isTypeLegal(NewOutTy))
5692 break; // Can't use this datatype.
5693 // FALL THROUGH.
5694 case TargetLowering::Custom:
5695 OpToUse = ISD::FP_TO_UINT;
5696 break;
5697 }
5698 if (OpToUse) break;
5699
5700 // Otherwise, try a larger type.
5701 }
5702
Chris Lattner27a6c732007-11-24 07:07:01 +00005703
5704 // Okay, we found the operation and type to use.
Dan Gohman475871a2008-07-27 21:46:04 +00005705 SDValue Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00005706
Chris Lattner27a6c732007-11-24 07:07:01 +00005707 // If the operation produces an invalid type, it must be custom lowered. Use
5708 // the target lowering hooks to expand it. Just keep the low part of the
5709 // expanded operation, we know that we're truncating anyway.
5710 if (getTypeAction(NewOutTy) == Expand) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005711 Operation = SDValue(TLI.ReplaceNodeResults(Operation.getNode(), DAG), 0);
5712 assert(Operation.getNode() && "Didn't return anything");
Chris Lattner27a6c732007-11-24 07:07:01 +00005713 }
Duncan Sands126d9072008-07-04 11:47:58 +00005714
Chris Lattner27a6c732007-11-24 07:07:01 +00005715 // Truncate the result of the extended FP_TO_*INT operation to the desired
5716 // size.
5717 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005718}
5719
5720/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5721///
Dan Gohman475871a2008-07-27 21:46:04 +00005722SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005723 MVT VT = Op.getValueType();
5724 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman475871a2008-07-27 21:46:04 +00005725 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005726 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005727 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5728 case MVT::i16:
5729 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5730 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5731 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5732 case MVT::i32:
5733 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5734 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5735 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5736 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5737 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5738 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5739 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5740 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5741 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5742 case MVT::i64:
5743 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5744 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5745 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5746 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5747 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5748 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5749 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5750 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5751 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5752 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5753 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5754 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5755 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5756 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5757 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5758 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5759 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5760 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5761 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5762 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5763 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5764 }
5765}
5766
5767/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5768///
Dan Gohman475871a2008-07-27 21:46:04 +00005769SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005770 switch (Opc) {
5771 default: assert(0 && "Cannot expand this yet!");
5772 case ISD::CTPOP: {
5773 static const uint64_t mask[6] = {
5774 0x5555555555555555ULL, 0x3333333333333333ULL,
5775 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5776 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5777 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005778 MVT VT = Op.getValueType();
5779 MVT ShVT = TLI.getShiftAmountTy();
5780 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005781 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5782 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Dan Gohman475871a2008-07-27 21:46:04 +00005783 SDValue Tmp2 = DAG.getConstant(mask[i], VT);
5784 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005785 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5786 DAG.getNode(ISD::AND, VT,
5787 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5788 }
5789 return Op;
5790 }
5791 case ISD::CTLZ: {
5792 // for now, we do this:
5793 // x = x | (x >> 1);
5794 // x = x | (x >> 2);
5795 // ...
5796 // x = x | (x >>16);
5797 // x = x | (x >>32); // for 64-bit input
5798 // return popcount(~x);
5799 //
5800 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005801 MVT VT = Op.getValueType();
5802 MVT ShVT = TLI.getShiftAmountTy();
5803 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005804 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005805 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005806 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5807 }
5808 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5809 return DAG.getNode(ISD::CTPOP, VT, Op);
5810 }
5811 case ISD::CTTZ: {
5812 // for now, we use: { return popcount(~x & (x - 1)); }
5813 // unless the target has ctlz but not ctpop, in which case we use:
5814 // { return 32 - nlz(~x & (x-1)); }
5815 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005816 MVT VT = Op.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00005817 SDValue Tmp2 = DAG.getConstant(~0ULL, VT);
5818 SDValue Tmp3 = DAG.getNode(ISD::AND, VT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005819 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5820 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5821 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5822 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5823 TLI.isOperationLegal(ISD::CTLZ, VT))
5824 return DAG.getNode(ISD::SUB, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005825 DAG.getConstant(VT.getSizeInBits(), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005826 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5827 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5828 }
5829 }
5830}
Chris Lattnere34b3962005-01-19 04:19:40 +00005831
Dan Gohman475871a2008-07-27 21:46:04 +00005832/// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattner3e928bb2005-01-07 07:47:09 +00005833/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5834/// LegalizeNodes map is filled in for any results that are not expanded, the
5835/// ExpandedNodes map is filled in for any results that are expanded, and the
5836/// Lo/Hi values are returned.
Dan Gohman475871a2008-07-27 21:46:04 +00005837void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00005838 MVT VT = Op.getValueType();
5839 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greifba36cb52008-08-28 21:40:38 +00005840 SDNode *Node = Op.getNode();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005841 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00005842 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00005843 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00005844
Chris Lattner6fdcb252005-09-02 20:32:45 +00005845 // See if we already expanded it.
Dan Gohman475871a2008-07-27 21:46:04 +00005846 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00005847 = ExpandedNodes.find(Op);
5848 if (I != ExpandedNodes.end()) {
5849 Lo = I->second.first;
5850 Hi = I->second.second;
5851 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005852 }
5853
Chris Lattner3e928bb2005-01-07 07:47:09 +00005854 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005855 case ISD::CopyFromReg:
5856 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005857 case ISD::FP_ROUND_INREG:
5858 if (VT == MVT::ppcf128 &&
5859 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5860 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00005861 SDValue SrcLo, SrcHi, Src;
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005862 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5863 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
Dan Gohman475871a2008-07-27 21:46:04 +00005864 SDValue Result = TLI.LowerOperation(
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005865 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005866 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
5867 Lo = Result.getNode()->getOperand(0);
5868 Hi = Result.getNode()->getOperand(1);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005869 break;
5870 }
5871 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00005872 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005873#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005874 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005875#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00005876 assert(0 && "Do not know how to expand this operator!");
5877 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00005878 case ISD::EXTRACT_ELEMENT:
5879 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005880 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman1953ecb2008-02-27 01:52:30 +00005881 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00005882 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00005883 case ISD::EXTRACT_VECTOR_ELT:
5884 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5885 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5886 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5887 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005888 case ISD::UNDEF:
5889 Lo = DAG.getNode(ISD::UNDEF, NVT);
5890 Hi = DAG.getNode(ISD::UNDEF, NVT);
5891 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005892 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005893 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00005894 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5895 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5896 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005897 break;
5898 }
Evan Cheng00495212006-12-12 21:32:44 +00005899 case ISD::ConstantFP: {
5900 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00005901 if (CFP->getValueType(0) == MVT::ppcf128) {
5902 APInt api = CFP->getValueAPF().convertToAPInt();
5903 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5904 MVT::f64);
5905 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5906 MVT::f64);
5907 break;
5908 }
Evan Cheng279101e2006-12-12 22:19:28 +00005909 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005910 if (getTypeAction(Lo.getValueType()) == Expand)
5911 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005912 break;
5913 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005914 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005915 // Return the operands.
5916 Lo = Node->getOperand(0);
5917 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005918 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005919
5920 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00005921 if (Node->getNumValues() == 1) {
5922 ExpandOp(Op.getOperand(0), Lo, Hi);
5923 break;
5924 }
Chris Lattner27a6c732007-11-24 07:07:01 +00005925 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif99a6cb92008-08-26 22:36:50 +00005926 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattner27a6c732007-11-24 07:07:01 +00005927 Op.getValue(1).getValueType() == MVT::Other &&
5928 "unhandled MERGE_VALUES");
5929 ExpandOp(Op.getOperand(0), Lo, Hi);
5930 // Remember that we legalized the chain.
5931 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5932 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005933
5934 case ISD::SIGN_EXTEND_INREG:
5935 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005936 // sext_inreg the low part if needed.
5937 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5938
5939 // The high part gets the sign extension from the lo-part. This handles
5940 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005941 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005942 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00005943 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005944 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005945
Nate Begemand88fc032006-01-14 03:14:10 +00005946 case ISD::BSWAP: {
5947 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00005948 SDValue TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
Nate Begemand88fc032006-01-14 03:14:10 +00005949 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5950 Lo = TempLo;
5951 break;
5952 }
5953
Chris Lattneredb1add2005-05-11 04:51:16 +00005954 case ISD::CTPOP:
5955 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005956 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5957 DAG.getNode(ISD::CTPOP, NVT, Lo),
5958 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005959 Hi = DAG.getConstant(0, NVT);
5960 break;
5961
Chris Lattner39a8f332005-05-12 19:05:01 +00005962 case ISD::CTLZ: {
5963 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005964 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00005965 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
5966 SDValue HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
5967 SDValue TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005968 ISD::SETNE);
Dan Gohman475871a2008-07-27 21:46:04 +00005969 SDValue LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
Chris Lattner39a8f332005-05-12 19:05:01 +00005970 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5971
5972 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5973 Hi = DAG.getConstant(0, NVT);
5974 break;
5975 }
5976
5977 case ISD::CTTZ: {
5978 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005979 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00005980 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
5981 SDValue LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
5982 SDValue BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005983 ISD::SETNE);
Dan Gohman475871a2008-07-27 21:46:04 +00005984 SDValue HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005985 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5986
5987 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5988 Hi = DAG.getConstant(0, NVT);
5989 break;
5990 }
Chris Lattneredb1add2005-05-11 04:51:16 +00005991
Nate Begemanacc398c2006-01-25 18:21:52 +00005992 case ISD::VAARG: {
Dan Gohman475871a2008-07-27 21:46:04 +00005993 SDValue Ch = Node->getOperand(0); // Legalize the chain.
5994 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00005995 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
5996 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
5997
5998 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00005999 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00006000 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00006001 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00006002 std::swap(Lo, Hi);
6003 break;
6004 }
6005
Chris Lattner3e928bb2005-01-07 07:47:09 +00006006 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00006007 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00006008 SDValue Ch = LD->getChain(); // Legalize the chain.
6009 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Evan Cheng466685d2006-10-09 20:57:25 +00006010 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f8613e2008-08-14 20:04:46 +00006011 const Value *SV = LD->getSrcValue();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006012 int SVOffset = LD->getSrcValueOffset();
6013 unsigned Alignment = LD->getAlignment();
6014 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006015
Evan Cheng466685d2006-10-09 20:57:25 +00006016 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00006017 Lo = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006018 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00006019 if (VT == MVT::f32 || VT == MVT::f64) {
6020 // f32->i32 or f64->i64 one to one expansion.
6021 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006022 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00006023 // Recursively expand the new load.
6024 if (getTypeAction(NVT) == Expand)
6025 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006026 break;
6027 }
Chris Lattnerec39a452005-01-19 18:02:17 +00006028
Evan Cheng466685d2006-10-09 20:57:25 +00006029 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006030 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Evan Cheng466685d2006-10-09 20:57:25 +00006031 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006032 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006033 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006034 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman7f8613e2008-08-14 20:04:46 +00006035 Hi = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006036 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00006037
Evan Cheng466685d2006-10-09 20:57:25 +00006038 // Build a factor node to remember that this load is independent of the
6039 // other one.
Dan Gohman475871a2008-07-27 21:46:04 +00006040 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Evan Cheng466685d2006-10-09 20:57:25 +00006041 Hi.getValue(1));
6042
6043 // Remember that we legalized the chain.
6044 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00006045 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00006046 std::swap(Lo, Hi);
6047 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006048 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00006049
Dale Johannesenb6210fc2007-10-19 20:29:00 +00006050 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6051 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00006052 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dan Gohman7f8613e2008-08-14 20:04:46 +00006053 SDValue Load = DAG.getLoad(EVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006054 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00006055 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006056 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Evan Cheng548f6112006-12-13 03:19:57 +00006057 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
6058 break;
6059 }
Evan Cheng466685d2006-10-09 20:57:25 +00006060
6061 if (EVT == NVT)
Dan Gohman7f8613e2008-08-14 20:04:46 +00006062 Lo = DAG.getLoad(NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006063 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006064 else
Dan Gohman7f8613e2008-08-14 20:04:46 +00006065 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006066 SVOffset, EVT, isVolatile,
6067 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006068
6069 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006070 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng466685d2006-10-09 20:57:25 +00006071
6072 if (ExtType == ISD::SEXTLOAD) {
6073 // The high part is obtained by SRA'ing all but one of the bits of the
6074 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006075 unsigned LoSize = Lo.getValueType().getSizeInBits();
Evan Cheng466685d2006-10-09 20:57:25 +00006076 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6077 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6078 } else if (ExtType == ISD::ZEXTLOAD) {
6079 // The high part is just a zero.
6080 Hi = DAG.getConstant(0, NVT);
6081 } else /* if (ExtType == ISD::EXTLOAD) */ {
6082 // The high part is undefined.
6083 Hi = DAG.getNode(ISD::UNDEF, NVT);
6084 }
6085 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006086 break;
6087 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006088 case ISD::AND:
6089 case ISD::OR:
6090 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman475871a2008-07-27 21:46:04 +00006091 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006092 ExpandOp(Node->getOperand(0), LL, LH);
6093 ExpandOp(Node->getOperand(1), RL, RH);
6094 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
6095 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
6096 break;
6097 }
6098 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006099 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006100 ExpandOp(Node->getOperand(1), LL, LH);
6101 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006102 if (getTypeAction(NVT) == Expand)
6103 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00006104 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006105 if (VT != MVT::f32)
6106 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006107 break;
6108 }
Nate Begeman9373a812005-08-10 20:51:12 +00006109 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006110 SDValue TL, TH, FL, FH;
Nate Begeman9373a812005-08-10 20:51:12 +00006111 ExpandOp(Node->getOperand(2), TL, TH);
6112 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006113 if (getTypeAction(NVT) == Expand)
6114 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00006115 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6116 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006117 if (VT != MVT::f32)
6118 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6119 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006120 break;
6121 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006122 case ISD::ANY_EXTEND:
6123 // The low part is any extension of the input (which degenerates to a copy).
6124 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
6125 // The high part is undefined.
6126 Hi = DAG.getNode(ISD::UNDEF, NVT);
6127 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006128 case ISD::SIGN_EXTEND: {
6129 // The low part is just a sign extension of the input (which degenerates to
6130 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006131 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006132
Chris Lattner3e928bb2005-01-07 07:47:09 +00006133 // The high part is obtained by SRA'ing all but one of the bits of the lo
6134 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006135 unsigned LoSize = Lo.getValueType().getSizeInBits();
Chris Lattner8137c9e2006-01-28 05:07:51 +00006136 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6137 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006138 break;
6139 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006140 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006141 // The low part is just a zero extension of the input (which degenerates to
6142 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006143 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006144
Chris Lattner3e928bb2005-01-07 07:47:09 +00006145 // The high part is just a zero.
6146 Hi = DAG.getConstant(0, NVT);
6147 break;
Chris Lattner35481892005-12-23 00:16:34 +00006148
Chris Lattner4c948eb2007-02-13 23:55:16 +00006149 case ISD::TRUNCATE: {
6150 // The input value must be larger than this value. Expand *it*.
Dan Gohman475871a2008-07-27 21:46:04 +00006151 SDValue NewLo;
Chris Lattner4c948eb2007-02-13 23:55:16 +00006152 ExpandOp(Node->getOperand(0), NewLo, Hi);
6153
6154 // The low part is now either the right size, or it is closer. If not the
6155 // right size, make an illegal truncate so we recursively expand it.
6156 if (NewLo.getValueType() != Node->getValueType(0))
6157 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6158 ExpandOp(NewLo, Lo, Hi);
6159 break;
6160 }
6161
Chris Lattner35481892005-12-23 00:16:34 +00006162 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006163 SDValue Tmp;
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006164 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6165 // If the target wants to, allow it to lower this itself.
6166 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6167 case Expand: assert(0 && "cannot expand FP!");
6168 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6169 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6170 }
6171 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6172 }
6173
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006174 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006175 if (VT == MVT::f32 || VT == MVT::f64) {
6176 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006177 if (getTypeAction(NVT) == Expand)
6178 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006179 break;
6180 }
6181
6182 // If source operand will be expanded to the same type as VT, i.e.
6183 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006184 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006185 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6186 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006187 break;
6188 }
6189
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006190 // Turn this into a load/store pair by default.
Gabor Greifba36cb52008-08-28 21:40:38 +00006191 if (Tmp.getNode() == 0)
Chris Lattner1401d152008-01-16 07:45:30 +00006192 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006193
Chris Lattner35481892005-12-23 00:16:34 +00006194 ExpandOp(Tmp, Lo, Hi);
6195 break;
6196 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006197
Chris Lattner27a6c732007-11-24 07:07:01 +00006198 case ISD::READCYCLECOUNTER: {
Chris Lattner308575b2005-11-20 22:56:56 +00006199 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6200 TargetLowering::Custom &&
6201 "Must custom expand ReadCycleCounter");
Dan Gohman475871a2008-07-27 21:46:04 +00006202 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006203 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattner27a6c732007-11-24 07:07:01 +00006204 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006205 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006206 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006207 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006208 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006209
Dale Johannesene00a8a22008-08-28 02:44:49 +00006210 // FIXME: should the LOAD_BIN and SWAP atomics get here too? Probably.
6211 case ISD::ATOMIC_CMP_SWAP_8:
6212 case ISD::ATOMIC_CMP_SWAP_16:
6213 case ISD::ATOMIC_CMP_SWAP_32:
6214 case ISD::ATOMIC_CMP_SWAP_64: {
Dan Gohman475871a2008-07-27 21:46:04 +00006215 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006216 assert(Tmp.getNode() && "Node must be custom expanded!");
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006217 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006218 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006219 LegalizeOp(Tmp.getValue(1)));
6220 break;
6221 }
6222
6223
6224
Chris Lattner4e6c7462005-01-08 19:27:05 +00006225 // These operators cannot be expanded directly, emit them as calls to
6226 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006227 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006228 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006229 SDValue Op;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006230 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6231 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006232 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6233 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006234 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006235
Chris Lattnerf20d1832005-07-30 01:40:57 +00006236 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6237
Chris Lattner80a3e942005-07-29 00:33:32 +00006238 // Now that the custom expander is done, expand the result, which is still
6239 // VT.
Gabor Greifba36cb52008-08-28 21:40:38 +00006240 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006241 ExpandOp(Op, Lo, Hi);
6242 break;
6243 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006244 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006245
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006246 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6247 VT);
6248 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6249 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006250 break;
Evan Cheng56966222007-01-12 02:11:51 +00006251 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006252
Evan Cheng56966222007-01-12 02:11:51 +00006253 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006254 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006255 SDValue Op;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006256 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6257 case Expand: assert(0 && "cannot expand FP!");
6258 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6259 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6260 }
6261
6262 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6263
6264 // Now that the custom expander is done, expand the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00006265 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006266 ExpandOp(Op, Lo, Hi);
6267 break;
6268 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006269 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006270
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006271 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6272 VT);
6273 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6274 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006275 break;
Evan Cheng56966222007-01-12 02:11:51 +00006276 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006277
Evan Cheng05a2d562006-01-09 18:31:59 +00006278 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006279 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006280 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006281 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006282 SDValue Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006283 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006284 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006285 // Now that the custom expander is done, expand the result, which is
6286 // still VT.
6287 ExpandOp(Op, Lo, Hi);
6288 break;
6289 }
6290 }
6291
Chris Lattner79980b02006-09-13 03:50:39 +00006292 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6293 // this X << 1 as X+X.
6294 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman002e5d02008-03-13 22:13:53 +00006295 if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
Chris Lattner79980b02006-09-13 03:50:39 +00006296 TLI.isOperationLegal(ISD::ADDE, NVT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006297 SDValue LoOps[2], HiOps[3];
Chris Lattner79980b02006-09-13 03:50:39 +00006298 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6299 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6300 LoOps[1] = LoOps[0];
6301 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6302
6303 HiOps[1] = HiOps[0];
6304 HiOps[2] = Lo.getValue(1);
6305 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6306 break;
6307 }
6308 }
6309
Chris Lattnere34b3962005-01-19 04:19:40 +00006310 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006311 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006312 break;
Chris Lattner47599822005-04-02 03:38:53 +00006313
6314 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006315 TargetLowering::LegalizeAction Action =
6316 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6317 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6318 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006319 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006320 break;
6321 }
6322
Chris Lattnere34b3962005-01-19 04:19:40 +00006323 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006324 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006325 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006326 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006327
Evan Cheng05a2d562006-01-09 18:31:59 +00006328 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006329 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006330 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006331 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006332 SDValue Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006333 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006334 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006335 // Now that the custom expander is done, expand the result, which is
6336 // still VT.
6337 ExpandOp(Op, Lo, Hi);
6338 break;
6339 }
6340 }
6341
Chris Lattnere34b3962005-01-19 04:19:40 +00006342 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006343 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006344 break;
Chris Lattner47599822005-04-02 03:38:53 +00006345
6346 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006347 TargetLowering::LegalizeAction Action =
6348 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6349 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6350 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006351 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006352 break;
6353 }
6354
Chris Lattnere34b3962005-01-19 04:19:40 +00006355 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006356 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006357 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006358 }
6359
6360 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006361 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006362 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006363 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006364 SDValue Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006365 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006366 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006367 // Now that the custom expander is done, expand the result, which is
6368 // still VT.
6369 ExpandOp(Op, Lo, Hi);
6370 break;
6371 }
6372 }
6373
Chris Lattnere34b3962005-01-19 04:19:40 +00006374 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006375 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006376 break;
Chris Lattner47599822005-04-02 03:38:53 +00006377
6378 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006379 TargetLowering::LegalizeAction Action =
6380 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6381 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6382 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006383 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006384 break;
6385 }
6386
Chris Lattnere34b3962005-01-19 04:19:40 +00006387 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006388 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006389 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006390 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006391
Misha Brukmanedf128a2005-04-21 22:36:52 +00006392 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006393 case ISD::SUB: {
6394 // If the target wants to custom expand this, let them.
6395 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6396 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006397 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006398 if (Result.getNode()) {
Duncan Sands69bfb152008-06-22 09:42:16 +00006399 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006400 break;
6401 }
6402 }
6403
6404 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006405 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006406 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6407 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00006408 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006409 SDValue LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006410 LoOps[0] = LHSL;
6411 LoOps[1] = RHSL;
6412 HiOps[0] = LHSH;
6413 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006414 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00006415 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006416 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006417 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006418 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00006419 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006420 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006421 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006422 }
Chris Lattner84f67882005-01-20 18:52:28 +00006423 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006424 }
Chris Lattnerb429f732007-05-17 18:15:41 +00006425
6426 case ISD::ADDC:
6427 case ISD::SUBC: {
6428 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006429 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00006430 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6431 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6432 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006433 SDValue LoOps[2] = { LHSL, RHSL };
6434 SDValue HiOps[3] = { LHSH, RHSH };
Chris Lattnerb429f732007-05-17 18:15:41 +00006435
6436 if (Node->getOpcode() == ISD::ADDC) {
6437 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6438 HiOps[2] = Lo.getValue(1);
6439 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6440 } else {
6441 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6442 HiOps[2] = Lo.getValue(1);
6443 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6444 }
6445 // Remember that we legalized the flag.
6446 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6447 break;
6448 }
6449 case ISD::ADDE:
6450 case ISD::SUBE: {
6451 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006452 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00006453 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6454 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6455 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006456 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6457 SDValue HiOps[3] = { LHSH, RHSH };
Chris Lattnerb429f732007-05-17 18:15:41 +00006458
6459 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6460 HiOps[2] = Lo.getValue(1);
6461 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6462
6463 // Remember that we legalized the flag.
6464 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6465 break;
6466 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006467 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006468 // If the target wants to custom expand this, let them.
6469 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006470 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006471 if (New.getNode()) {
Chris Lattner8829dc82006-09-16 05:08:34 +00006472 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006473 break;
6474 }
6475 }
6476
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006477 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6478 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00006479 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6480 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6481 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman475871a2008-07-27 21:46:04 +00006482 SDValue LL, LH, RL, RH;
Nate Begemanc7c16572005-04-11 03:01:51 +00006483 ExpandOp(Node->getOperand(0), LL, LH);
6484 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006485 unsigned OuterBitSize = Op.getValueSizeInBits();
6486 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00006487 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6488 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00006489 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6490 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6491 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00006492 // The inputs are both zero-extended.
6493 if (HasUMUL_LOHI) {
6494 // We can emit a umul_lohi.
6495 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00006496 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00006497 break;
6498 }
6499 if (HasMULHU) {
6500 // We can emit a mulhu+mul.
6501 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6502 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6503 break;
6504 }
Dan Gohman525178c2007-10-08 18:33:35 +00006505 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006506 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00006507 // The input values are both sign-extended.
6508 if (HasSMUL_LOHI) {
6509 // We can emit a smul_lohi.
6510 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00006511 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00006512 break;
6513 }
6514 if (HasMULHS) {
6515 // We can emit a mulhs+mul.
6516 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6517 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6518 break;
6519 }
6520 }
6521 if (HasUMUL_LOHI) {
6522 // Lo,Hi = umul LHS, RHS.
Dan Gohman475871a2008-07-27 21:46:04 +00006523 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
Dan Gohman525178c2007-10-08 18:33:35 +00006524 DAG.getVTList(NVT, NVT), LL, RL);
6525 Lo = UMulLOHI;
6526 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00006527 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6528 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6529 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6530 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00006531 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00006532 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00006533 if (HasMULHU) {
6534 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6535 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6536 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6537 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6538 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6539 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6540 break;
6541 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006542 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006543
Dan Gohman525178c2007-10-08 18:33:35 +00006544 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006545 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00006546 break;
6547 }
Evan Cheng56966222007-01-12 02:11:51 +00006548 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006549 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006550 break;
6551 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006552 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006553 break;
6554 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006555 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006556 break;
6557 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006558 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006559 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00006560
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006561 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00006562 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6563 RTLIB::ADD_F64,
6564 RTLIB::ADD_F80,
6565 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006566 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006567 break;
6568 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00006569 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6570 RTLIB::SUB_F64,
6571 RTLIB::SUB_F80,
6572 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006573 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006574 break;
6575 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00006576 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6577 RTLIB::MUL_F64,
6578 RTLIB::MUL_F80,
6579 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006580 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006581 break;
6582 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006583 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6584 RTLIB::DIV_F64,
6585 RTLIB::DIV_F80,
6586 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006587 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006588 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006589 case ISD::FP_EXTEND: {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006590 if (VT == MVT::ppcf128) {
6591 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6592 Node->getOperand(0).getValueType()==MVT::f64);
6593 const uint64_t zero = 0;
6594 if (Node->getOperand(0).getValueType()==MVT::f32)
6595 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6596 else
6597 Hi = Node->getOperand(0);
6598 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6599 break;
6600 }
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006601 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
6602 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
6603 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006604 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006605 }
6606 case ISD::FP_ROUND: {
6607 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
6608 VT);
6609 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
6610 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006611 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006612 }
Evan Cheng4b887022008-09-09 23:02:14 +00006613 case ISD::FSQRT:
6614 case ISD::FSIN:
6615 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00006616 case ISD::FLOG:
6617 case ISD::FLOG2:
6618 case ISD::FLOG10:
6619 case ISD::FEXP:
6620 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00006621 case ISD::FTRUNC:
6622 case ISD::FFLOOR:
6623 case ISD::FCEIL:
6624 case ISD::FRINT:
6625 case ISD::FNEARBYINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00006626 case ISD::FPOW:
6627 case ISD::FPOWI: {
Evan Cheng56966222007-01-12 02:11:51 +00006628 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006629 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00006630 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00006631 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6632 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006633 break;
6634 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00006635 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6636 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006637 break;
6638 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00006639 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6640 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006641 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00006642 case ISD::FLOG:
6643 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
6644 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
6645 break;
6646 case ISD::FLOG2:
6647 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
6648 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
6649 break;
6650 case ISD::FLOG10:
6651 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
6652 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
6653 break;
6654 case ISD::FEXP:
6655 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
6656 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
6657 break;
6658 case ISD::FEXP2:
6659 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
6660 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
6661 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00006662 case ISD::FTRUNC:
6663 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
6664 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
6665 break;
6666 case ISD::FFLOOR:
6667 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
6668 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
6669 break;
6670 case ISD::FCEIL:
6671 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
6672 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
6673 break;
6674 case ISD::FRINT:
6675 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
6676 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
6677 break;
6678 case ISD::FNEARBYINT:
6679 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
6680 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
6681 break;
Evan Cheng4b887022008-09-09 23:02:14 +00006682 case ISD::FPOW:
6683 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
6684 RTLIB::POW_PPCF128);
6685 break;
6686 case ISD::FPOWI:
6687 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
6688 RTLIB::POWI_PPCF128);
6689 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006690 default: assert(0 && "Unreachable!");
6691 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006692 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00006693 break;
6694 }
Evan Cheng966bf242006-12-16 00:52:40 +00006695 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006696 if (VT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00006697 SDValue Tmp;
Dale Johannesenf6467742007-10-12 19:02:17 +00006698 ExpandOp(Node->getOperand(0), Lo, Tmp);
6699 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6700 // lo = hi==fabs(hi) ? lo : -lo;
6701 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6702 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6703 DAG.getCondCode(ISD::SETEQ));
6704 break;
6705 }
Dan Gohman475871a2008-07-27 21:46:04 +00006706 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00006707 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6708 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6709 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6710 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6711 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6712 if (getTypeAction(NVT) == Expand)
6713 ExpandOp(Lo, Lo, Hi);
6714 break;
6715 }
6716 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006717 if (VT == MVT::ppcf128) {
6718 ExpandOp(Node->getOperand(0), Lo, Hi);
6719 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6720 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6721 break;
6722 }
Dan Gohman475871a2008-07-27 21:46:04 +00006723 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00006724 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6725 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6726 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6727 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6728 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6729 if (getTypeAction(NVT) == Expand)
6730 ExpandOp(Lo, Lo, Hi);
6731 break;
6732 }
Evan Cheng912095b2007-01-04 21:56:39 +00006733 case ISD::FCOPYSIGN: {
6734 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6735 if (getTypeAction(NVT) == Expand)
6736 ExpandOp(Lo, Lo, Hi);
6737 break;
6738 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006739 case ISD::SINT_TO_FP:
6740 case ISD::UINT_TO_FP: {
6741 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006742 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00006743
6744 // Promote the operand if needed. Do this before checking for
6745 // ppcf128 so conversions of i16 and i8 work.
6746 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman475871a2008-07-27 21:46:04 +00006747 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesencf498192008-03-18 17:28:38 +00006748 Tmp = isSigned
6749 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6750 DAG.getValueType(SrcVT))
6751 : DAG.getZeroExtendInReg(Tmp, SrcVT);
Gabor Greifba36cb52008-08-28 21:40:38 +00006752 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesencf498192008-03-18 17:28:38 +00006753 SrcVT = Node->getOperand(0).getValueType();
6754 }
6755
Dan Gohmana2e94852008-03-10 23:03:31 +00006756 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006757 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006758 if (isSigned) {
6759 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6760 Node->getOperand(0)));
6761 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6762 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006763 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006764 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6765 Node->getOperand(0)));
6766 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6767 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00006768 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006769 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6770 DAG.getConstant(0, MVT::i32),
6771 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6772 DAG.getConstantFP(
6773 APFloat(APInt(128, 2, TwoE32)),
6774 MVT::ppcf128)),
6775 Hi,
6776 DAG.getCondCode(ISD::SETLT)),
6777 Lo, Hi);
6778 }
6779 break;
6780 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00006781 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6782 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006783 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen6e63e092007-10-12 17:52:03 +00006784 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6785 Lo, Hi);
6786 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6787 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6788 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6789 DAG.getConstant(0, MVT::i64),
6790 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6791 DAG.getConstantFP(
6792 APFloat(APInt(128, 2, TwoE64)),
6793 MVT::ppcf128)),
6794 Hi,
6795 DAG.getCondCode(ISD::SETLT)),
6796 Lo, Hi);
6797 break;
6798 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006799
Dan Gohmana2e94852008-03-10 23:03:31 +00006800 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6801 Node->getOperand(0));
Evan Cheng110cf482008-04-01 01:50:16 +00006802 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00006803 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00006804 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00006805 break;
6806 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00006807 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006808
Chris Lattner83397362005-12-21 18:02:52 +00006809 // Make sure the resultant values have been legalized themselves, unless this
6810 // is a type that requires multi-step expansion.
6811 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6812 Lo = LegalizeOp(Lo);
Gabor Greifba36cb52008-08-28 21:40:38 +00006813 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00006814 // Don't legalize the high part if it is expanded to a single node.
6815 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00006816 }
Evan Cheng05a2d562006-01-09 18:31:59 +00006817
6818 // Remember in a map if the values will be reused later.
Dan Gohman6b345ee2008-07-07 17:46:23 +00006819 bool isNew =
6820 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng05a2d562006-01-09 18:31:59 +00006821 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006822}
6823
Dan Gohman7f321562007-06-25 16:23:39 +00006824/// SplitVectorOp - Given an operand of vector type, break it down into
6825/// two smaller values, still of vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00006826void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
6827 SDValue &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006828 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greifba36cb52008-08-28 21:40:38 +00006829 SDNode *Node = Op.getNode();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006830 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00006831 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00006832
Duncan Sands83ec4b62008-06-06 12:08:01 +00006833 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00006834
6835 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6836 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6837
Duncan Sands83ec4b62008-06-06 12:08:01 +00006838 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
6839 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006840
Chris Lattnerc7029802006-03-18 01:44:44 +00006841 // See if we already split it.
Dan Gohman475871a2008-07-27 21:46:04 +00006842 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattnerc7029802006-03-18 01:44:44 +00006843 = SplitNodes.find(Op);
6844 if (I != SplitNodes.end()) {
6845 Lo = I->second.first;
6846 Hi = I->second.second;
6847 return;
6848 }
6849
6850 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006851 default:
6852#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006853 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006854#endif
6855 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00006856 case ISD::UNDEF:
6857 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6858 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6859 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006860 case ISD::BUILD_PAIR:
6861 Lo = Node->getOperand(0);
6862 Hi = Node->getOperand(1);
6863 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00006864 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00006865 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
6866 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006867 unsigned Index = Idx->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00006868 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman68679912008-04-25 18:07:40 +00006869 if (Index < NewNumElts_Lo)
6870 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
6871 DAG.getIntPtrConstant(Index));
6872 else
6873 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6874 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
6875 break;
6876 }
Dan Gohman475871a2008-07-27 21:46:04 +00006877 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Nate Begeman68679912008-04-25 18:07:40 +00006878 Node->getOperand(1),
6879 Node->getOperand(2));
6880 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00006881 break;
6882 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00006883 case ISD::VECTOR_SHUFFLE: {
6884 // Build the low part.
Dan Gohman475871a2008-07-27 21:46:04 +00006885 SDValue Mask = Node->getOperand(2);
6886 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006887 MVT PtrVT = TLI.getPointerTy();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006888
6889 // Insert all of the elements from the input that are needed. We use
6890 // buildvector of extractelement here because the input vectors will have
6891 // to be legalized, so this makes the code simpler.
6892 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00006893 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00006894 if (IdxNode.getOpcode() == ISD::UNDEF) {
6895 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6896 continue;
6897 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006898 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00006899 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00006900 if (Idx >= NumElements) {
6901 InVec = Node->getOperand(1);
6902 Idx -= NumElements;
6903 }
6904 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6905 DAG.getConstant(Idx, PtrVT)));
6906 }
6907 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6908 Ops.clear();
6909
6910 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00006911 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00006912 if (IdxNode.getOpcode() == ISD::UNDEF) {
6913 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6914 continue;
6915 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006916 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00006917 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00006918 if (Idx >= NumElements) {
6919 InVec = Node->getOperand(1);
6920 Idx -= NumElements;
6921 }
6922 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6923 DAG.getConstant(Idx, PtrVT)));
6924 }
Mon P Wang92879f32008-07-25 01:30:26 +00006925 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00006926 break;
6927 }
Dan Gohman7f321562007-06-25 16:23:39 +00006928 case ISD::BUILD_VECTOR: {
Dan Gohman475871a2008-07-27 21:46:04 +00006929 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00006930 Node->op_begin()+NewNumElts_Lo);
6931 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006932
Dan Gohman475871a2008-07-27 21:46:04 +00006933 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00006934 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006935 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006936 break;
6937 }
Dan Gohman7f321562007-06-25 16:23:39 +00006938 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00006939 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00006940 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6941 if (NewNumSubvectors == 1) {
6942 Lo = Node->getOperand(0);
6943 Hi = Node->getOperand(1);
6944 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00006945 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Dan Gohman7f321562007-06-25 16:23:39 +00006946 Node->op_begin()+NewNumSubvectors);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006947 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00006948
Dan Gohman475871a2008-07-27 21:46:04 +00006949 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Dan Gohman7f321562007-06-25 16:23:39 +00006950 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006951 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00006952 }
Dan Gohman65956352007-06-13 15:12:02 +00006953 break;
6954 }
Dan Gohmanc6230962007-10-17 14:48:28 +00006955 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006956 SDValue Cond = Node->getOperand(0);
Dan Gohmanc6230962007-10-17 14:48:28 +00006957
Dan Gohman475871a2008-07-27 21:46:04 +00006958 SDValue LL, LH, RL, RH;
Dan Gohmanc6230962007-10-17 14:48:28 +00006959 SplitVectorOp(Node->getOperand(1), LL, LH);
6960 SplitVectorOp(Node->getOperand(2), RL, RH);
6961
Duncan Sands83ec4b62008-06-06 12:08:01 +00006962 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00006963 // Handle a vector merge.
Dan Gohman475871a2008-07-27 21:46:04 +00006964 SDValue CL, CH;
Dan Gohmanc6230962007-10-17 14:48:28 +00006965 SplitVectorOp(Cond, CL, CH);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006966 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6967 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006968 } else {
6969 // Handle a simple select with vector operands.
Nate Begeman5db1afb2007-11-15 21:15:26 +00006970 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6971 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006972 }
6973 break;
6974 }
Chris Lattner80c1a562008-06-30 02:43:01 +00006975 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006976 SDValue CondLHS = Node->getOperand(0);
6977 SDValue CondRHS = Node->getOperand(1);
6978 SDValue CondCode = Node->getOperand(4);
Chris Lattner80c1a562008-06-30 02:43:01 +00006979
Dan Gohman475871a2008-07-27 21:46:04 +00006980 SDValue LL, LH, RL, RH;
Chris Lattner80c1a562008-06-30 02:43:01 +00006981 SplitVectorOp(Node->getOperand(2), LL, LH);
6982 SplitVectorOp(Node->getOperand(3), RL, RH);
6983
6984 // Handle a simple select with vector operands.
6985 Lo = DAG.getNode(ISD::SELECT_CC, NewVT_Lo, CondLHS, CondRHS,
6986 LL, RL, CondCode);
6987 Hi = DAG.getNode(ISD::SELECT_CC, NewVT_Hi, CondLHS, CondRHS,
6988 LH, RH, CondCode);
6989 break;
6990 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00006991 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006992 SDValue LL, LH, RL, RH;
Nate Begemanb43e9c12008-05-12 19:40:03 +00006993 SplitVectorOp(Node->getOperand(0), LL, LH);
6994 SplitVectorOp(Node->getOperand(1), RL, RH);
6995 Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2));
6996 Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2));
6997 break;
6998 }
Dan Gohman7f321562007-06-25 16:23:39 +00006999 case ISD::ADD:
7000 case ISD::SUB:
7001 case ISD::MUL:
7002 case ISD::FADD:
7003 case ISD::FSUB:
7004 case ISD::FMUL:
7005 case ISD::SDIV:
7006 case ISD::UDIV:
7007 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00007008 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007009 case ISD::AND:
7010 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00007011 case ISD::XOR:
7012 case ISD::UREM:
7013 case ISD::SREM:
7014 case ISD::FREM: {
Dan Gohman475871a2008-07-27 21:46:04 +00007015 SDValue LL, LH, RL, RH;
Chris Lattnerc7029802006-03-18 01:44:44 +00007016 SplitVectorOp(Node->getOperand(0), LL, LH);
7017 SplitVectorOp(Node->getOperand(1), RL, RH);
7018
Nate Begeman5db1afb2007-11-15 21:15:26 +00007019 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
7020 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00007021 break;
7022 }
Dan Gohman7f8613e2008-08-14 20:04:46 +00007023 case ISD::FP_ROUND:
Dan Gohman82669522007-10-11 23:57:53 +00007024 case ISD::FPOWI: {
Dan Gohman475871a2008-07-27 21:46:04 +00007025 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007026 SplitVectorOp(Node->getOperand(0), L, H);
7027
Nate Begeman5db1afb2007-11-15 21:15:26 +00007028 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
7029 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00007030 break;
7031 }
7032 case ISD::CTTZ:
7033 case ISD::CTLZ:
7034 case ISD::CTPOP:
7035 case ISD::FNEG:
7036 case ISD::FABS:
7037 case ISD::FSQRT:
7038 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00007039 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007040 case ISD::FLOG:
7041 case ISD::FLOG2:
7042 case ISD::FLOG10:
7043 case ISD::FEXP:
7044 case ISD::FEXP2:
Nate Begemanb348d182007-11-17 03:58:34 +00007045 case ISD::FP_TO_SINT:
7046 case ISD::FP_TO_UINT:
7047 case ISD::SINT_TO_FP:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007048 case ISD::UINT_TO_FP:
7049 case ISD::TRUNCATE:
7050 case ISD::ANY_EXTEND:
7051 case ISD::SIGN_EXTEND:
7052 case ISD::ZERO_EXTEND:
7053 case ISD::FP_EXTEND: {
Dan Gohman475871a2008-07-27 21:46:04 +00007054 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007055 SplitVectorOp(Node->getOperand(0), L, H);
7056
Nate Begeman5db1afb2007-11-15 21:15:26 +00007057 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
7058 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00007059 break;
7060 }
Dan Gohman7f321562007-06-25 16:23:39 +00007061 case ISD::LOAD: {
7062 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007063 SDValue Ch = LD->getChain();
7064 SDValue Ptr = LD->getBasePtr();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007065 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007066 const Value *SV = LD->getSrcValue();
7067 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007068 MVT MemoryVT = LD->getMemoryVT();
Dan Gohman7f321562007-06-25 16:23:39 +00007069 unsigned Alignment = LD->getAlignment();
7070 bool isVolatile = LD->isVolatile();
7071
Dan Gohman7f8613e2008-08-14 20:04:46 +00007072 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
7073 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
7074
7075 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7076 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7077 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7078
7079 Lo = DAG.getLoad(ISD::UNINDEXED, ExtType,
7080 NewVT_Lo, Ch, Ptr, Offset,
7081 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7082 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00007083 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00007084 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00007085 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00007086 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman7f8613e2008-08-14 20:04:46 +00007087 Hi = DAG.getLoad(ISD::UNINDEXED, ExtType,
7088 NewVT_Hi, Ch, Ptr, Offset,
7089 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00007090
7091 // Build a factor node to remember that this load is independent of the
7092 // other one.
Dan Gohman475871a2008-07-27 21:46:04 +00007093 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Chris Lattnerc7029802006-03-18 01:44:44 +00007094 Hi.getValue(1));
7095
7096 // Remember that we legalized the chain.
7097 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00007098 break;
7099 }
Dan Gohman7f321562007-06-25 16:23:39 +00007100 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00007101 // We know the result is a vector. The input may be either a vector or a
7102 // scalar value.
Dan Gohman475871a2008-07-27 21:46:04 +00007103 SDValue InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007104 if (!InOp.getValueType().isVector() ||
7105 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00007106 // The input is a scalar or single-element vector.
7107 // Lower to a store/load so that it can be split.
7108 // FIXME: this could be improved probably.
Mon P Wang2920d2b2008-07-15 05:28:34 +00007109 unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment(
7110 Op.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00007111 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greifba36cb52008-08-28 21:40:38 +00007112 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Chris Lattner7692eb42006-03-23 21:16:34 +00007113
Dan Gohman475871a2008-07-27 21:46:04 +00007114 SDValue St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00007115 InOp, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007116 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohman69de1932008-02-06 22:27:42 +00007117 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007118 PseudoSourceValue::getFixedStack(FI), 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00007119 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007120 // Split the vector and convert each of the pieces now.
7121 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007122 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
7123 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007124 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007125 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007126 }
7127
7128 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00007129 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007130 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007131 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007132}
7133
7134
Dan Gohman89b20c02007-06-27 14:06:22 +00007135/// ScalarizeVectorOp - Given an operand of single-element vector type
7136/// (e.g. v1f32), convert it into the equivalent operation that returns a
7137/// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +00007138SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007139 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007140 SDNode *Node = Op.getNode();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007141 MVT NewVT = Op.getValueType().getVectorElementType();
7142 assert(Op.getValueType().getVectorNumElements() == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00007143
Dan Gohman7f321562007-06-25 16:23:39 +00007144 // See if we already scalarized it.
Dan Gohman475871a2008-07-27 21:46:04 +00007145 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohman7f321562007-06-25 16:23:39 +00007146 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00007147
Dan Gohman475871a2008-07-27 21:46:04 +00007148 SDValue Result;
Chris Lattnerc7029802006-03-18 01:44:44 +00007149 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00007150 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007151#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007152 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007153#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007154 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7155 case ISD::ADD:
7156 case ISD::FADD:
7157 case ISD::SUB:
7158 case ISD::FSUB:
7159 case ISD::MUL:
7160 case ISD::FMUL:
7161 case ISD::SDIV:
7162 case ISD::UDIV:
7163 case ISD::FDIV:
7164 case ISD::SREM:
7165 case ISD::UREM:
7166 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007167 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007168 case ISD::AND:
7169 case ISD::OR:
7170 case ISD::XOR:
7171 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00007172 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007173 ScalarizeVectorOp(Node->getOperand(0)),
7174 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007175 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007176 case ISD::FNEG:
7177 case ISD::FABS:
7178 case ISD::FSQRT:
7179 case ISD::FSIN:
7180 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007181 case ISD::FLOG:
7182 case ISD::FLOG2:
7183 case ISD::FLOG10:
7184 case ISD::FEXP:
7185 case ISD::FEXP2:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007186 case ISD::FP_TO_SINT:
7187 case ISD::FP_TO_UINT:
7188 case ISD::SINT_TO_FP:
7189 case ISD::UINT_TO_FP:
7190 case ISD::SIGN_EXTEND:
7191 case ISD::ZERO_EXTEND:
7192 case ISD::ANY_EXTEND:
7193 case ISD::TRUNCATE:
7194 case ISD::FP_EXTEND:
Dan Gohman7f321562007-06-25 16:23:39 +00007195 Result = DAG.getNode(Node->getOpcode(),
7196 NewVT,
7197 ScalarizeVectorOp(Node->getOperand(0)));
7198 break;
Dan Gohman9e04c822007-10-12 14:13:46 +00007199 case ISD::FPOWI:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007200 case ISD::FP_ROUND:
Dan Gohman9e04c822007-10-12 14:13:46 +00007201 Result = DAG.getNode(Node->getOpcode(),
7202 NewVT,
7203 ScalarizeVectorOp(Node->getOperand(0)),
7204 Node->getOperand(1));
7205 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007206 case ISD::LOAD: {
7207 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007208 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7209 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman7f8613e2008-08-14 20:04:46 +00007210 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007211 const Value *SV = LD->getSrcValue();
7212 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007213 MVT MemoryVT = LD->getMemoryVT();
7214 unsigned Alignment = LD->getAlignment();
7215 bool isVolatile = LD->isVolatile();
7216
7217 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
7218 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
7219
7220 Result = DAG.getLoad(ISD::UNINDEXED, ExtType,
7221 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7222 MemoryVT.getVectorElementType(),
7223 isVolatile, Alignment);
Dan Gohman7f321562007-06-25 16:23:39 +00007224
Chris Lattnerc7029802006-03-18 01:44:44 +00007225 // Remember that we legalized the chain.
7226 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7227 break;
7228 }
Dan Gohman7f321562007-06-25 16:23:39 +00007229 case ISD::BUILD_VECTOR:
7230 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007231 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007232 case ISD::INSERT_VECTOR_ELT:
7233 // Returning the inserted scalar element.
7234 Result = Node->getOperand(1);
7235 break;
7236 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007237 assert(Node->getOperand(0).getValueType() == NewVT &&
7238 "Concat of non-legal vectors not yet supported!");
7239 Result = Node->getOperand(0);
7240 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007241 case ISD::VECTOR_SHUFFLE: {
7242 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman475871a2008-07-27 21:46:04 +00007243 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007244 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohman7f321562007-06-25 16:23:39 +00007245 Result = ScalarizeVectorOp(Node->getOperand(1));
7246 else
7247 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007248 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007249 }
7250 case ISD::EXTRACT_SUBVECTOR:
7251 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00007252 assert(Result.getValueType() == NewVT);
7253 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007254 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007255 SDValue Op0 = Op.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007256 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007257 Op0 = ScalarizeVectorOp(Op0);
7258 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007259 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007260 }
Dan Gohman7f321562007-06-25 16:23:39 +00007261 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007262 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007263 ScalarizeVectorOp(Op.getOperand(1)),
7264 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007265 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007266 case ISD::SELECT_CC:
7267 Result = DAG.getNode(ISD::SELECT_CC, NewVT, Node->getOperand(0),
7268 Node->getOperand(1),
7269 ScalarizeVectorOp(Op.getOperand(2)),
7270 ScalarizeVectorOp(Op.getOperand(3)),
7271 Node->getOperand(4));
7272 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007273 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007274 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7275 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Nate Begeman0d1704b2008-05-12 23:09:43 +00007276 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0), Op0, Op1,
7277 Op.getOperand(2));
7278 Result = DAG.getNode(ISD::SELECT, NewVT, Result,
7279 DAG.getConstant(-1ULL, NewVT),
7280 DAG.getConstant(0ULL, NewVT));
7281 break;
7282 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007283 }
7284
7285 if (TLI.isTypeLegal(NewVT))
7286 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007287 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7288 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007289 return Result;
7290}
7291
Chris Lattner3e928bb2005-01-07 07:47:09 +00007292
7293// SelectionDAG::Legalize - This is the entry point for the file.
7294//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00007295void SelectionDAG::Legalize() {
Chris Lattner3e928bb2005-01-07 07:47:09 +00007296 /// run - This is the main entry point to this class.
7297 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00007298 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00007299}
7300