blob: e8f32dbf9c30d38d9ad85633870c1f1ce2025fb7 [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());
Dan Gohman50284d82008-09-16 22:05:41 +0000470 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Evan Chengef120572008-03-04 08:05:30 +0000471 if (Extend)
472 return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000473 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman50284d82008-09-16 22:05:41 +0000474 0, VT, false, Alignment);
Evan Chengef120572008-03-04 08:05:30 +0000475 return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +0000476 PseudoSourceValue::getConstantPool(), 0, false, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +0000477}
478
Chris Lattner6831a812006-02-13 09:18:02 +0000479
Evan Cheng912095b2007-01-04 21:56:39 +0000480/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
481/// operations.
482static
Dan Gohman475871a2008-07-27 21:46:04 +0000483SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
484 SelectionDAG &DAG, TargetLowering &TLI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000485 MVT VT = Node->getValueType(0);
486 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000487 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
488 "fcopysign expansion only supported for f32 and f64");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000489 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000490
Evan Cheng912095b2007-01-04 21:56:39 +0000491 // First get the sign bit of second operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000492 SDValue Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000493 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
494 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000495 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Dan Gohman475871a2008-07-27 21:46:04 +0000496 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000497 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000498 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000499 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Evan Cheng912095b2007-01-04 21:56:39 +0000500 if (SizeDiff > 0) {
501 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
502 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
503 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000504 } else if (SizeDiff < 0) {
505 SignBit = DAG.getNode(ISD::ZERO_EXTEND, NVT, SignBit);
506 SignBit = DAG.getNode(ISD::SHL, NVT, SignBit,
507 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
508 }
Evan Cheng068c5f42007-01-05 21:31:51 +0000509
510 // Clear the sign bit of first operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000511 SDValue Mask2 = (VT == MVT::f64)
Evan Cheng068c5f42007-01-05 21:31:51 +0000512 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
513 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
514 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Dan Gohman475871a2008-07-27 21:46:04 +0000515 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000516 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
517
518 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000519 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
520 return Result;
521}
522
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000523/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
524static
Dan Gohman475871a2008-07-27 21:46:04 +0000525SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
526 TargetLowering &TLI) {
527 SDValue Chain = ST->getChain();
528 SDValue Ptr = ST->getBasePtr();
529 SDValue Val = ST->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000530 MVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000531 int Alignment = ST->getAlignment();
532 int SVOffset = ST->getSrcValueOffset();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000533 if (ST->getMemoryVT().isFloatingPoint() ||
534 ST->getMemoryVT().isVector()) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000535 // Expand to a bitconvert of the value to the integer type of the
536 // same size, then a (misaligned) int store.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000537 MVT intVT;
538 if (VT.is128BitVector() || VT == MVT::ppcf128 || VT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000539 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000540 else if (VT.is64BitVector() || VT==MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000541 intVT = MVT::i64;
542 else if (VT==MVT::f32)
543 intVT = MVT::i32;
544 else
Dale Johannesencd9f1742008-02-28 18:36:51 +0000545 assert(0 && "Unaligned store of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000546
Dan Gohman475871a2008-07-27 21:46:04 +0000547 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000548 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
549 SVOffset, ST->isVolatile(), Alignment);
550 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000551 assert(ST->getMemoryVT().isInteger() &&
552 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000553 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000554 // Get the half-size VT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000555 MVT NewStoredVT =
556 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
557 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000558 int IncrementSize = NumBits / 8;
559
560 // Divide the stored value in two parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000561 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
562 SDValue Lo = Val;
563 SDValue Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000564
565 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000566 SDValue Store1, Store2;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000567 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
568 ST->getSrcValue(), SVOffset, NewStoredVT,
569 ST->isVolatile(), Alignment);
570 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
571 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000572 Alignment = MinAlign(Alignment, IncrementSize);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000573 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
574 ST->getSrcValue(), SVOffset + IncrementSize,
575 NewStoredVT, ST->isVolatile(), Alignment);
576
577 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
578}
579
580/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
581static
Dan Gohman475871a2008-07-27 21:46:04 +0000582SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
583 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000584 int SVOffset = LD->getSrcValueOffset();
Dan Gohman475871a2008-07-27 21:46:04 +0000585 SDValue Chain = LD->getChain();
586 SDValue Ptr = LD->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000587 MVT VT = LD->getValueType(0);
588 MVT LoadedVT = LD->getMemoryVT();
589 if (VT.isFloatingPoint() || VT.isVector()) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000590 // Expand to a (misaligned) integer load of the same size,
Dale Johannesen8155d642008-02-27 22:36:00 +0000591 // then bitconvert to floating point or vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000592 MVT intVT;
593 if (LoadedVT.is128BitVector() ||
Dale Johannesen3c8b59c2008-03-01 03:40:57 +0000594 LoadedVT == MVT::ppcf128 || LoadedVT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000595 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000596 else if (LoadedVT.is64BitVector() || LoadedVT == MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000597 intVT = MVT::i64;
Chris Lattnere400af82007-11-19 21:38:03 +0000598 else if (LoadedVT == MVT::f32)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000599 intVT = MVT::i32;
600 else
Dale Johannesen8155d642008-02-27 22:36:00 +0000601 assert(0 && "Unaligned load of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000602
Dan Gohman475871a2008-07-27 21:46:04 +0000603 SDValue newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
Dale Johannesen907f28c2007-09-08 19:29:23 +0000604 SVOffset, LD->isVolatile(),
605 LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +0000606 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000607 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000608 Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
609
Dan Gohman475871a2008-07-27 21:46:04 +0000610 SDValue Ops[] = { Result, Chain };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000611 return DAG.getMergeValues(Ops, 2);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000612 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000613 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000614 "Unaligned load of unsupported type.");
615
Dale Johannesen8155d642008-02-27 22:36:00 +0000616 // Compute the new VT that is half the size of the old one. This is an
617 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000618 unsigned NumBits = LoadedVT.getSizeInBits();
619 MVT NewLoadedVT;
620 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000621 NumBits >>= 1;
622
623 unsigned Alignment = LD->getAlignment();
624 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000625 ISD::LoadExtType HiExtType = LD->getExtensionType();
626
627 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
628 if (HiExtType == ISD::NON_EXTLOAD)
629 HiExtType = ISD::ZEXTLOAD;
630
631 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000632 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000633 if (TLI.isLittleEndian()) {
634 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
635 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
636 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
637 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
638 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
639 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000640 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000641 } else {
642 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
643 NewLoadedVT,LD->isVolatile(), Alignment);
644 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
645 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
646 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
647 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000648 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000649 }
650
651 // aggregate the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000652 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
653 SDValue Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000654 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
655
Dan Gohman475871a2008-07-27 21:46:04 +0000656 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000657 Hi.getValue(1));
658
Dan Gohman475871a2008-07-27 21:46:04 +0000659 SDValue Ops[] = { Result, TF };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000660 return DAG.getMergeValues(Ops, 2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000661}
Evan Cheng912095b2007-01-04 21:56:39 +0000662
Dan Gohman82669522007-10-11 23:57:53 +0000663/// UnrollVectorOp - We know that the given vector has a legal type, however
664/// the operation it performs is not legal and is an operation that we have
665/// no way of lowering. "Unroll" the vector, splitting out the scalars and
666/// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000667SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000668 MVT VT = Op.getValueType();
Dan Gohman82669522007-10-11 23:57:53 +0000669 assert(isTypeLegal(VT) &&
670 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000671 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman82669522007-10-11 23:57:53 +0000672 "Can't unroll a vector with multiple results!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000673 unsigned NE = VT.getVectorNumElements();
674 MVT EltVT = VT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000675
Dan Gohman475871a2008-07-27 21:46:04 +0000676 SmallVector<SDValue, 8> Scalars;
677 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman82669522007-10-11 23:57:53 +0000678 for (unsigned i = 0; i != NE; ++i) {
679 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +0000680 SDValue Operand = Op.getOperand(j);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000681 MVT OperandVT = Operand.getValueType();
682 if (OperandVT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +0000683 // A vector operand; extract a single element.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000684 MVT OperandEltVT = OperandVT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000685 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
686 OperandEltVT,
687 Operand,
688 DAG.getConstant(i, MVT::i32));
689 } else {
690 // A scalar operand; just use it as is.
691 Operands[j] = Operand;
692 }
693 }
694 Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
695 &Operands[0], Operands.size()));
696 }
697
698 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
699}
700
Duncan Sands007f9842008-01-10 10:28:30 +0000701/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000702static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands007f9842008-01-10 10:28:30 +0000703 RTLIB::Libcall Call_F32,
704 RTLIB::Libcall Call_F64,
705 RTLIB::Libcall Call_F80,
706 RTLIB::Libcall Call_PPCF128) {
707 return
708 VT == MVT::f32 ? Call_F32 :
709 VT == MVT::f64 ? Call_F64 :
710 VT == MVT::f80 ? Call_F80 :
711 VT == MVT::ppcf128 ? Call_PPCF128 :
712 RTLIB::UNKNOWN_LIBCALL;
713}
714
Nate Begeman68679912008-04-25 18:07:40 +0000715/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
716/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
717/// is necessary to spill the vector being inserted into to memory, perform
718/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000719SDValue SelectionDAGLegalize::
720PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx) {
721 SDValue Tmp1 = Vec;
722 SDValue Tmp2 = Val;
723 SDValue Tmp3 = Idx;
Nate Begeman68679912008-04-25 18:07:40 +0000724
725 // If the target doesn't support this, we have to spill the input vector
726 // to a temporary stack slot, update the element, then reload it. This is
727 // badness. We could also load the value into a vector register (either
728 // with a "move to register" or "extload into register" instruction, then
729 // permute it into place, if the idx is a constant and if the idx is
730 // supported by the target.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000731 MVT VT = Tmp1.getValueType();
732 MVT EltVT = VT.getVectorElementType();
733 MVT IdxVT = Tmp3.getValueType();
734 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000735 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000736
Gabor Greifba36cb52008-08-28 21:40:38 +0000737 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman68679912008-04-25 18:07:40 +0000738
739 // Store the vector.
Dan Gohman475871a2008-07-27 21:46:04 +0000740 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +0000741 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000742
743 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000744 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Nate Begeman68679912008-04-25 18:07:40 +0000745 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
746 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000747 unsigned EltSize = EltVT.getSizeInBits()/8;
Nate Begeman68679912008-04-25 18:07:40 +0000748 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
Dan Gohman475871a2008-07-27 21:46:04 +0000749 SDValue StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000750 // Store the scalar value.
751 Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2,
Dan Gohmana54cf172008-07-11 22:44:52 +0000752 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman68679912008-04-25 18:07:40 +0000753 // Load the updated vector.
Dan Gohmana54cf172008-07-11 22:44:52 +0000754 return DAG.getLoad(VT, Ch, StackPtr,
755 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000756}
757
Dan Gohmana3466152007-07-13 20:14:11 +0000758/// LegalizeOp - We know that the specified value has a legal type, and
759/// that its operands are legal. Now ensure that the operation itself
760/// is legal, recursively ensuring that the operands' operations remain
761/// legal.
Dan Gohman475871a2008-07-27 21:46:04 +0000762SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000763 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
764 return Op;
765
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000766 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000767 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000768 SDNode *Node = Op.getNode();
Chris Lattnere3304a32005-01-08 20:35:13 +0000769
Chris Lattner3e928bb2005-01-07 07:47:09 +0000770 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000771 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000772 if (Node->getNumValues() > 1) {
773 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000774 if (getTypeAction(Node->getValueType(i)) != Legal) {
775 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000776 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000777 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000778 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000779 }
780 }
781
Chris Lattner45982da2005-05-12 16:53:42 +0000782 // Note that LegalizeOp may be reentered even from single-use nodes, which
783 // means that we always must cache transformed nodes.
Dan Gohman475871a2008-07-27 21:46:04 +0000784 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000785 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000786
Dan Gohman475871a2008-07-27 21:46:04 +0000787 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
788 SDValue Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000789 bool isCustom = false;
790
Chris Lattner3e928bb2005-01-07 07:47:09 +0000791 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000792 case ISD::FrameIndex:
793 case ISD::EntryToken:
794 case ISD::Register:
795 case ISD::BasicBlock:
796 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000797 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000798 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000799 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000800 case ISD::TargetConstantPool:
801 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000802 case ISD::TargetGlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +0000803 case ISD::TargetExternalSymbol:
Chris Lattner948c1b12006-01-28 08:31:04 +0000804 case ISD::VALUETYPE:
805 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +0000806 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +0000807 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +0000808 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +0000809 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +0000810 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +0000811 "This must be legal!");
812 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000813 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000814 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
815 // If this is a target node, legalize it by legalizing the operands then
816 // passing it through.
Dan Gohman475871a2008-07-27 21:46:04 +0000817 SmallVector<SDValue, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000818 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000819 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000820
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000821 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000822
823 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
824 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +0000825 return Result.getValue(Op.getResNo());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000826 }
827 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000828#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +0000829 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000830#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000831 assert(0 && "Do not know how to legalize this operator!");
832 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +0000833 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000834 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000835 case ISD::GlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +0000836 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000837 case ISD::ConstantPool:
838 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000839 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
840 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000841 case TargetLowering::Custom:
842 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000843 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner948c1b12006-01-28 08:31:04 +0000844 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000845 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000846 break;
847 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000848 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000849 case ISD::FRAMEADDR:
850 case ISD::RETURNADDR:
851 // The only option for these nodes is to custom lower them. If the target
852 // does not custom lower them, then return zero.
853 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000854 if (Tmp1.getNode())
Nate Begemanbcc5f362007-01-29 22:58:52 +0000855 Result = Tmp1;
856 else
857 Result = DAG.getConstant(0, TLI.getPointerTy());
858 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000859 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000860 MVT VT = Node->getValueType(0);
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000861 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
862 default: assert(0 && "This action is not supported yet!");
863 case TargetLowering::Custom:
864 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000865 if (Result.getNode()) break;
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000866 // Fall Thru
867 case TargetLowering::Legal:
868 Result = DAG.getConstant(0, VT);
869 break;
870 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000871 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000872 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000873 case ISD::EXCEPTIONADDR: {
874 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000875 MVT VT = Node->getValueType(0);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000876 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
877 default: assert(0 && "This action is not supported yet!");
878 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000879 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000880 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000881 }
882 break;
883 case TargetLowering::Custom:
884 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000885 if (Result.getNode()) break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000886 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000887 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +0000888 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000889 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000890 break;
891 }
892 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000893 }
Gabor Greifba36cb52008-08-28 21:40:38 +0000894 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +0000895
Gabor Greifba36cb52008-08-28 21:40:38 +0000896 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +0000897 "Cannot return more than two values!");
898
899 // Since we produced two values, make sure to remember that we
900 // legalized both of them.
901 Tmp1 = LegalizeOp(Result);
902 Tmp2 = LegalizeOp(Result.getValue(1));
903 AddLegalizedOperand(Op.getValue(0), Tmp1);
904 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +0000905 return Op.getResNo() ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +0000906 case ISD::EHSELECTION: {
907 Tmp1 = LegalizeOp(Node->getOperand(0));
908 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000909 MVT VT = Node->getValueType(0);
Jim Laskey8782d482007-02-28 20:43:58 +0000910 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
911 default: assert(0 && "This action is not supported yet!");
912 case TargetLowering::Expand: {
913 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000914 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +0000915 }
916 break;
917 case TargetLowering::Custom:
918 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000919 if (Result.getNode()) break;
Jim Laskey8782d482007-02-28 20:43:58 +0000920 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000921 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +0000922 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000923 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey8782d482007-02-28 20:43:58 +0000924 break;
925 }
926 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000927 }
Gabor Greifba36cb52008-08-28 21:40:38 +0000928 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +0000929
Gabor Greifba36cb52008-08-28 21:40:38 +0000930 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +0000931 "Cannot return more than two values!");
932
933 // Since we produced two values, make sure to remember that we
934 // legalized both of them.
935 Tmp1 = LegalizeOp(Result);
936 Tmp2 = LegalizeOp(Result.getValue(1));
937 AddLegalizedOperand(Op.getValue(0), Tmp1);
938 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +0000939 return Op.getResNo() ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000940 case ISD::EH_RETURN: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000941 MVT VT = Node->getValueType(0);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000942 // The only "good" option for this node is to custom lower it.
943 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
944 default: assert(0 && "This action is not supported at all!");
945 case TargetLowering::Custom:
946 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000947 if (Result.getNode()) break;
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000948 // Fall Thru
949 case TargetLowering::Legal:
950 // Target does not know, how to lower this, lower to noop
951 Result = LegalizeOp(Node->getOperand(0));
952 break;
953 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000954 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000955 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000956 case ISD::AssertSext:
957 case ISD::AssertZext:
958 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000959 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000960 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000961 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000962 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif99a6cb92008-08-26 22:36:50 +0000963 Result = Node->getOperand(Op.getResNo());
Chris Lattner456a93a2006-01-28 07:39:30 +0000964 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000965 case ISD::CopyFromReg:
966 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000967 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000968 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000969 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000970 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000971 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000972 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000973 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000974 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
975 } else {
976 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
977 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000978 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
979 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000980 // Since CopyFromReg produces two values, make sure to remember that we
981 // legalized both of them.
982 AddLegalizedOperand(Op.getValue(0), Result);
983 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +0000984 return Result.getValue(Op.getResNo());
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000985 case ISD::UNDEF: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000986 MVT VT = Op.getValueType();
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000987 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000988 default: assert(0 && "This action is not supported yet!");
989 case TargetLowering::Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000990 if (VT.isInteger())
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000991 Result = DAG.getConstant(0, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000992 else if (VT.isFloatingPoint())
993 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf41db212007-09-26 17:26:49 +0000994 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000995 else
996 assert(0 && "Unknown value type!");
997 break;
Nate Begemanea19cd52005-04-02 00:41:14 +0000998 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000999 break;
1000 }
1001 break;
1002 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001003
Chris Lattner48b61a72006-03-28 00:40:33 +00001004 case ISD::INTRINSIC_W_CHAIN:
1005 case ISD::INTRINSIC_WO_CHAIN:
1006 case ISD::INTRINSIC_VOID: {
Dan Gohman475871a2008-07-27 21:46:04 +00001007 SmallVector<SDValue, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001008 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1009 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001010 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +00001011
1012 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +00001013 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001014 TargetLowering::Custom) {
1015 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001016 if (Tmp3.getNode()) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001017 }
1018
Gabor Greifba36cb52008-08-28 21:40:38 +00001019 if (Result.getNode()->getNumValues() == 1) break;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001020
1021 // Must have return value and chain result.
Gabor Greifba36cb52008-08-28 21:40:38 +00001022 assert(Result.getNode()->getNumValues() == 2 &&
Chris Lattner13fc2f12006-03-27 20:28:29 +00001023 "Cannot return more than two values!");
1024
1025 // Since loads produce two values, make sure to remember that we
1026 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001027 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1028 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001029 return Result.getValue(Op.getResNo());
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001030 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001031
Dan Gohman7f460202008-06-30 20:59:49 +00001032 case ISD::DBG_STOPPOINT:
1033 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Chris Lattner36ce6912005-11-29 06:21:05 +00001034 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1035
Dan Gohman7f460202008-06-30 20:59:49 +00001036 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Chris Lattner36ce6912005-11-29 06:21:05 +00001037 case TargetLowering::Promote:
1038 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001039 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001040 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001041 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Dan Gohman44066042008-07-01 00:05:16 +00001042 bool useLABEL = TLI.isOperationLegal(ISD::DBG_LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001043
Dan Gohman7f460202008-06-30 20:59:49 +00001044 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001045 if (MMI && (useDEBUG_LOC || useLABEL)) {
Dan Gohman7f460202008-06-30 20:59:49 +00001046 const CompileUnitDesc *CompileUnit = DSP->getCompileUnit();
1047 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001048
Dan Gohman7f460202008-06-30 20:59:49 +00001049 unsigned Line = DSP->getLine();
1050 unsigned Col = DSP->getColumn();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001051
1052 if (useDEBUG_LOC) {
Dan Gohman475871a2008-07-27 21:46:04 +00001053 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Evan Cheng71e86852008-07-08 20:06:39 +00001054 DAG.getConstant(Col, MVT::i32),
1055 DAG.getConstant(SrcFile, MVT::i32) };
1056 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Ops, 4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001057 } else {
Evan Chenga647c922008-02-01 02:05:57 +00001058 unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
Dan Gohman44066042008-07-01 00:05:16 +00001059 Result = DAG.getLabel(ISD::DBG_LABEL, Tmp1, ID);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001060 }
Jim Laskeye81aecb2005-12-21 20:51:37 +00001061 } else {
1062 Result = Tmp1; // chain
1063 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001064 break;
Chris Lattnere7736732005-12-18 23:54:29 +00001065 }
Evan Cheng71e86852008-07-08 20:06:39 +00001066 case TargetLowering::Legal: {
1067 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1068 if (Action == Legal && Tmp1 == Node->getOperand(0))
1069 break;
1070
Dan Gohman475871a2008-07-27 21:46:04 +00001071 SmallVector<SDValue, 8> Ops;
Evan Cheng71e86852008-07-08 20:06:39 +00001072 Ops.push_back(Tmp1);
1073 if (Action == Legal) {
1074 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1075 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1076 } else {
1077 // Otherwise promote them.
1078 Ops.push_back(PromoteOp(Node->getOperand(1)));
1079 Ops.push_back(PromoteOp(Node->getOperand(2)));
Chris Lattner36ce6912005-11-29 06:21:05 +00001080 }
Evan Cheng71e86852008-07-08 20:06:39 +00001081 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1082 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1083 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001084 break;
1085 }
Evan Cheng71e86852008-07-08 20:06:39 +00001086 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001087 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001088
1089 case ISD::DECLARE:
1090 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1091 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1092 default: assert(0 && "This action is not supported yet!");
1093 case TargetLowering::Legal:
1094 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1095 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1096 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1097 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1098 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001099 case TargetLowering::Expand:
1100 Result = LegalizeOp(Node->getOperand(0));
1101 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001102 }
1103 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001104
1105 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001106 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001107 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001108 default: assert(0 && "This action is not supported yet!");
Evan Cheng71e86852008-07-08 20:06:39 +00001109 case TargetLowering::Legal: {
1110 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001111 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Cheng71e86852008-07-08 20:06:39 +00001112 if (Action == Legal && Tmp1 == Node->getOperand(0))
1113 break;
1114 if (Action == Legal) {
1115 Tmp2 = Node->getOperand(1);
1116 Tmp3 = Node->getOperand(2);
1117 Tmp4 = Node->getOperand(3);
1118 } else {
1119 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1120 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1121 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1122 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001123 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001124 break;
1125 }
Evan Cheng71e86852008-07-08 20:06:39 +00001126 }
Jim Laskeyabf6d172006-01-05 01:25:28 +00001127 break;
1128
Dan Gohman44066042008-07-01 00:05:16 +00001129 case ISD::DBG_LABEL:
1130 case ISD::EH_LABEL:
1131 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1132 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001133 default: assert(0 && "This action is not supported yet!");
1134 case TargetLowering::Legal:
1135 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001136 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001137 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001138 case TargetLowering::Expand:
1139 Result = LegalizeOp(Node->getOperand(0));
1140 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001141 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001142 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001143
Evan Cheng27b7db52008-03-08 00:58:38 +00001144 case ISD::PREFETCH:
1145 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1146 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1147 default: assert(0 && "This action is not supported yet!");
1148 case TargetLowering::Legal:
1149 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1150 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1151 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1152 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1153 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1154 break;
1155 case TargetLowering::Expand:
1156 // It's a noop.
1157 Result = LegalizeOp(Node->getOperand(0));
1158 break;
1159 }
1160 break;
1161
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001162 case ISD::MEMBARRIER: {
1163 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001164 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1165 default: assert(0 && "This action is not supported yet!");
1166 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001167 SDValue Ops[6];
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001168 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001169 for (int x = 1; x < 6; ++x) {
1170 Ops[x] = Node->getOperand(x);
1171 if (!isTypeLegal(Ops[x].getValueType()))
1172 Ops[x] = PromoteOp(Ops[x]);
1173 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001174 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1175 break;
1176 }
1177 case TargetLowering::Expand:
1178 //There is no libgcc call for this op
1179 Result = Node->getOperand(0); // Noop
1180 break;
1181 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001182 break;
1183 }
1184
Dale Johannesene00a8a22008-08-28 02:44:49 +00001185 case ISD::ATOMIC_CMP_SWAP_8:
1186 case ISD::ATOMIC_CMP_SWAP_16:
1187 case ISD::ATOMIC_CMP_SWAP_32:
1188 case ISD::ATOMIC_CMP_SWAP_64: {
Mon P Wang63307c32008-05-05 19:05:59 +00001189 unsigned int num_operands = 4;
1190 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001191 SDValue Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001192 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001193 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001194 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1195
1196 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1197 default: assert(0 && "This action is not supported yet!");
1198 case TargetLowering::Custom:
1199 Result = TLI.LowerOperation(Result, DAG);
1200 break;
1201 case TargetLowering::Legal:
1202 break;
1203 }
Dan Gohman475871a2008-07-27 21:46:04 +00001204 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1205 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001206 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001207 }
Dale Johannesene00a8a22008-08-28 02:44:49 +00001208 case ISD::ATOMIC_LOAD_ADD_8:
1209 case ISD::ATOMIC_LOAD_SUB_8:
1210 case ISD::ATOMIC_LOAD_AND_8:
1211 case ISD::ATOMIC_LOAD_OR_8:
1212 case ISD::ATOMIC_LOAD_XOR_8:
1213 case ISD::ATOMIC_LOAD_NAND_8:
1214 case ISD::ATOMIC_LOAD_MIN_8:
1215 case ISD::ATOMIC_LOAD_MAX_8:
1216 case ISD::ATOMIC_LOAD_UMIN_8:
1217 case ISD::ATOMIC_LOAD_UMAX_8:
1218 case ISD::ATOMIC_SWAP_8:
1219 case ISD::ATOMIC_LOAD_ADD_16:
1220 case ISD::ATOMIC_LOAD_SUB_16:
1221 case ISD::ATOMIC_LOAD_AND_16:
1222 case ISD::ATOMIC_LOAD_OR_16:
1223 case ISD::ATOMIC_LOAD_XOR_16:
1224 case ISD::ATOMIC_LOAD_NAND_16:
1225 case ISD::ATOMIC_LOAD_MIN_16:
1226 case ISD::ATOMIC_LOAD_MAX_16:
1227 case ISD::ATOMIC_LOAD_UMIN_16:
1228 case ISD::ATOMIC_LOAD_UMAX_16:
1229 case ISD::ATOMIC_SWAP_16:
1230 case ISD::ATOMIC_LOAD_ADD_32:
1231 case ISD::ATOMIC_LOAD_SUB_32:
1232 case ISD::ATOMIC_LOAD_AND_32:
1233 case ISD::ATOMIC_LOAD_OR_32:
1234 case ISD::ATOMIC_LOAD_XOR_32:
1235 case ISD::ATOMIC_LOAD_NAND_32:
1236 case ISD::ATOMIC_LOAD_MIN_32:
1237 case ISD::ATOMIC_LOAD_MAX_32:
1238 case ISD::ATOMIC_LOAD_UMIN_32:
1239 case ISD::ATOMIC_LOAD_UMAX_32:
1240 case ISD::ATOMIC_SWAP_32:
1241 case ISD::ATOMIC_LOAD_ADD_64:
1242 case ISD::ATOMIC_LOAD_SUB_64:
1243 case ISD::ATOMIC_LOAD_AND_64:
1244 case ISD::ATOMIC_LOAD_OR_64:
1245 case ISD::ATOMIC_LOAD_XOR_64:
1246 case ISD::ATOMIC_LOAD_NAND_64:
1247 case ISD::ATOMIC_LOAD_MIN_64:
1248 case ISD::ATOMIC_LOAD_MAX_64:
1249 case ISD::ATOMIC_LOAD_UMIN_64:
1250 case ISD::ATOMIC_LOAD_UMAX_64:
1251 case ISD::ATOMIC_SWAP_64: {
Mon P Wang63307c32008-05-05 19:05:59 +00001252 unsigned int num_operands = 3;
1253 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001254 SDValue Ops[3];
Mon P Wang63307c32008-05-05 19:05:59 +00001255 for (unsigned int x = 0; x < num_operands; ++x)
1256 Ops[x] = LegalizeOp(Node->getOperand(x));
1257 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001258
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001259 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001260 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001261 case TargetLowering::Custom:
1262 Result = TLI.LowerOperation(Result, DAG);
1263 break;
Mon P Wang63307c32008-05-05 19:05:59 +00001264 case TargetLowering::Expand:
Gabor Greifba36cb52008-08-28 21:40:38 +00001265 Result = SDValue(TLI.ReplaceNodeResults(Op.getNode(), DAG),0);
Mon P Wang63307c32008-05-05 19:05:59 +00001266 break;
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001267 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001268 break;
1269 }
Dan Gohman475871a2008-07-27 21:46:04 +00001270 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1271 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001272 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001273 }
Scott Michelc1513d22007-08-08 23:23:31 +00001274 case ISD::Constant: {
1275 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1276 unsigned opAction =
1277 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1278
Chris Lattner3e928bb2005-01-07 07:47:09 +00001279 // We know we don't need to expand constants here, constants only have one
1280 // value and we check that it is fine above.
1281
Scott Michelc1513d22007-08-08 23:23:31 +00001282 if (opAction == TargetLowering::Custom) {
1283 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001284 if (Tmp1.getNode())
Scott Michelc1513d22007-08-08 23:23:31 +00001285 Result = Tmp1;
1286 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001287 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001288 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001289 case ISD::ConstantFP: {
1290 // Spill FP immediates to the constant pool if the target cannot directly
1291 // codegen them. Targets often have some immediate values that can be
1292 // efficiently generated into an FP register without a load. We explicitly
1293 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001294 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1295
Chris Lattner3181a772006-01-29 06:26:56 +00001296 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1297 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001298 case TargetLowering::Legal:
1299 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001300 case TargetLowering::Custom:
1301 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001302 if (Tmp3.getNode()) {
Chris Lattner3181a772006-01-29 06:26:56 +00001303 Result = Tmp3;
1304 break;
1305 }
1306 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001307 case TargetLowering::Expand: {
1308 // Check to see if this FP immediate is already legal.
1309 bool isLegal = false;
1310 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1311 E = TLI.legal_fpimm_end(); I != E; ++I) {
1312 if (CFP->isExactlyValue(*I)) {
1313 isLegal = true;
1314 break;
1315 }
1316 }
1317 // If this is a legal constant, turn it into a TargetConstantFP node.
1318 if (isLegal)
1319 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001320 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001321 }
Nate Begemane1795842008-02-14 08:57:00 +00001322 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001323 break;
1324 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001325 case ISD::TokenFactor:
1326 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001327 Tmp1 = LegalizeOp(Node->getOperand(0));
1328 Tmp2 = LegalizeOp(Node->getOperand(1));
1329 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1330 } else if (Node->getNumOperands() == 3) {
1331 Tmp1 = LegalizeOp(Node->getOperand(0));
1332 Tmp2 = LegalizeOp(Node->getOperand(1));
1333 Tmp3 = LegalizeOp(Node->getOperand(2));
1334 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001335 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00001336 SmallVector<SDValue, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001337 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001338 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1339 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001340 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001341 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001342 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001343
1344 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001345 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001346 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001347 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001348 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001349 // A call within a calling sequence must be legalized to something
1350 // other than the normal CALLSEQ_END. Violating this gets Legalize
1351 // into an infinite loop.
1352 assert ((!IsLegalizingCall ||
1353 Node->getOpcode() != ISD::CALL ||
Gabor Greifba36cb52008-08-28 21:40:38 +00001354 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesen0ea03562008-03-05 19:14:03 +00001355 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001356
1357 // The number of incoming and outgoing values should match; unless the final
1358 // outgoing value is a flag.
Gabor Greifba36cb52008-08-28 21:40:38 +00001359 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1360 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1361 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001362 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001363 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001364
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001365 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001366 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greifba36cb52008-08-28 21:40:38 +00001367 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1368 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001369 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001370 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001371 if (Op.getResNo() == i)
Chris Lattnere2e41732006-05-16 05:49:56 +00001372 Tmp2 = Tmp1;
Dan Gohman475871a2008-07-27 21:46:04 +00001373 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Chris Lattnere2e41732006-05-16 05:49:56 +00001374 }
1375 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001376 case ISD::EXTRACT_SUBREG: {
1377 Tmp1 = LegalizeOp(Node->getOperand(0));
1378 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1379 assert(idx && "Operand must be a constant");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001380 Tmp2 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lamb557c3632007-07-26 07:34:40 +00001381 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1382 }
1383 break;
1384 case ISD::INSERT_SUBREG: {
1385 Tmp1 = LegalizeOp(Node->getOperand(0));
1386 Tmp2 = LegalizeOp(Node->getOperand(1));
1387 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1388 assert(idx && "Operand must be a constant");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001389 Tmp3 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lamb557c3632007-07-26 07:34:40 +00001390 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1391 }
1392 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001393 case ISD::BUILD_VECTOR:
1394 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001395 default: assert(0 && "This action is not supported yet!");
1396 case TargetLowering::Custom:
1397 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001398 if (Tmp3.getNode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001399 Result = Tmp3;
1400 break;
1401 }
1402 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001403 case TargetLowering::Expand:
Gabor Greifba36cb52008-08-28 21:40:38 +00001404 Result = ExpandBUILD_VECTOR(Result.getNode());
Chris Lattnerb2827b02006-03-19 00:52:58 +00001405 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001406 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001407 break;
1408 case ISD::INSERT_VECTOR_ELT:
1409 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001410 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001411
1412 // The type of the value to insert may not be legal, even though the vector
1413 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1414 // here.
1415 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1416 default: assert(0 && "Cannot expand insert element operand");
1417 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1418 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1419 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001420 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1421
1422 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1423 Node->getValueType(0))) {
1424 default: assert(0 && "This action is not supported yet!");
1425 case TargetLowering::Legal:
1426 break;
1427 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001428 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001429 if (Tmp4.getNode()) {
Nate Begeman2281a992008-01-05 20:47:37 +00001430 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001431 break;
1432 }
1433 // FALLTHROUGH
1434 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001435 // If the insert index is a constant, codegen this as a scalar_to_vector,
1436 // then a shuffle that inserts it into the right position in the vector.
1437 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001438 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1439 // match the element type of the vector being created.
1440 if (Tmp2.getValueType() ==
Duncan Sands83ec4b62008-06-06 12:08:01 +00001441 Op.getValueType().getVectorElementType()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001442 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
Nate Begeman0325d902008-02-13 06:43:04 +00001443 Tmp1.getValueType(), Tmp2);
1444
Duncan Sands83ec4b62008-06-06 12:08:01 +00001445 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1446 MVT ShufMaskVT =
1447 MVT::getIntVectorWithNumElements(NumElts);
1448 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Nate Begeman0325d902008-02-13 06:43:04 +00001449
1450 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1451 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1452 // elt 0 of the RHS.
Dan Gohman475871a2008-07-27 21:46:04 +00001453 SmallVector<SDValue, 8> ShufOps;
Nate Begeman0325d902008-02-13 06:43:04 +00001454 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001455 if (i != InsertPos->getZExtValue())
Nate Begeman0325d902008-02-13 06:43:04 +00001456 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1457 else
1458 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1459 }
Dan Gohman475871a2008-07-27 21:46:04 +00001460 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
Nate Begeman0325d902008-02-13 06:43:04 +00001461 &ShufOps[0], ShufOps.size());
1462
1463 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1464 Tmp1, ScVec, ShufMask);
1465 Result = LegalizeOp(Result);
1466 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001467 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001468 }
Nate Begeman68679912008-04-25 18:07:40 +00001469 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001470 break;
1471 }
1472 }
1473 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001474 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001475 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1476 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1477 break;
1478 }
1479
Chris Lattnerce872152006-03-19 06:31:19 +00001480 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1481 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1482 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1483 Node->getValueType(0))) {
1484 default: assert(0 && "This action is not supported yet!");
1485 case TargetLowering::Legal:
1486 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001487 case TargetLowering::Custom:
1488 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001489 if (Tmp3.getNode()) {
Chris Lattner4d3abee2006-03-19 06:47:21 +00001490 Result = Tmp3;
1491 break;
1492 }
1493 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001494 case TargetLowering::Expand:
1495 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001496 break;
1497 }
Chris Lattnerce872152006-03-19 06:31:19 +00001498 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001499 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001500 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1501 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1502 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1503
1504 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001505 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1506 default: assert(0 && "Unknown operation action!");
1507 case TargetLowering::Legal:
1508 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1509 "vector shuffle should not be created if not legal!");
1510 break;
1511 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001512 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001513 if (Tmp3.getNode()) {
Evan Cheng18dd6d02006-04-05 06:07:11 +00001514 Result = Tmp3;
1515 break;
1516 }
1517 // FALLTHROUGH
1518 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001519 MVT VT = Node->getValueType(0);
1520 MVT EltVT = VT.getVectorElementType();
1521 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00001522 SDValue Mask = Node->getOperand(2);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001523 unsigned NumElems = Mask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00001524 SmallVector<SDValue,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001525 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001526 SDValue Arg = Mask.getOperand(i);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001527 if (Arg.getOpcode() == ISD::UNDEF) {
1528 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1529 } else {
1530 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001531 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng18dd6d02006-04-05 06:07:11 +00001532 if (Idx < NumElems)
1533 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1534 DAG.getConstant(Idx, PtrVT)));
1535 else
1536 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1537 DAG.getConstant(Idx - NumElems, PtrVT)));
1538 }
1539 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001540 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001541 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001542 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001543 case TargetLowering::Promote: {
1544 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001545 MVT OVT = Node->getValueType(0);
1546 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001547
1548 // Cast the two input vectors.
1549 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1550 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1551
1552 // Convert the shuffle mask to the right # elements.
Dan Gohman475871a2008-07-27 21:46:04 +00001553 Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001554 assert(Tmp3.getNode() && "Shuffle not legal?");
Chris Lattner4352cc92006-04-04 17:23:26 +00001555 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1556 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1557 break;
1558 }
Chris Lattner87100e02006-03-20 01:52:29 +00001559 }
1560 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001561
1562 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001563 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001564 Tmp2 = LegalizeOp(Node->getOperand(1));
1565 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001566 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001567 break;
1568
Dan Gohman7f321562007-06-25 16:23:39 +00001569 case ISD::EXTRACT_SUBVECTOR:
1570 Tmp1 = Node->getOperand(0);
1571 Tmp2 = LegalizeOp(Node->getOperand(1));
1572 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1573 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001574 break;
1575
Chris Lattner6831a812006-02-13 09:18:02 +00001576 case ISD::CALLSEQ_START: {
1577 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1578
1579 // Recursively Legalize all of the inputs of the call end that do not lead
1580 // to this call start. This ensures that any libcalls that need be inserted
1581 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001582 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001583 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00001584 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001585 NodesLeadingTo);
1586 }
Chris Lattner6831a812006-02-13 09:18:02 +00001587
1588 // Now that we legalized all of the inputs (which may have inserted
1589 // libcalls) create the new CALLSEQ_START node.
1590 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1591
1592 // Merge in the last call, to ensure that this call start after the last
1593 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001594 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001595 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1596 Tmp1 = LegalizeOp(Tmp1);
1597 }
Chris Lattner6831a812006-02-13 09:18:02 +00001598
1599 // Do not try to legalize the target-specific arguments (#1+).
1600 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001601 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001602 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001603 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001604 }
1605
1606 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001607 AddLegalizedOperand(Op.getValue(0), Result);
1608 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1609 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1610
Chris Lattner6831a812006-02-13 09:18:02 +00001611 // Now that the callseq_start and all of the non-call nodes above this call
1612 // sequence have been legalized, legalize the call itself. During this
1613 // process, no libcalls can/will be inserted, guaranteeing that no calls
1614 // can overlap.
1615 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001616 // Note that we are selecting this call!
Dan Gohman475871a2008-07-27 21:46:04 +00001617 LastCALLSEQ_END = SDValue(CallEnd, 0);
Chris Lattner6831a812006-02-13 09:18:02 +00001618 IsLegalizingCall = true;
1619
1620 // Legalize the call, starting from the CALLSEQ_END.
1621 LegalizeOp(LastCALLSEQ_END);
1622 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1623 return Result;
1624 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001625 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001626 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1627 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greifba36cb52008-08-28 21:40:38 +00001628 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman475871a2008-07-27 21:46:04 +00001629 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1630 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001631 assert(I != LegalizedNodes.end() &&
1632 "Legalizing the call start should have legalized this node!");
1633 return I->second;
1634 }
1635
1636 // Otherwise, the call start has been legalized and everything is going
1637 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001638 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001639 // Do not try to legalize the target-specific arguments (#1+), except for
1640 // an optional flag input.
1641 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1642 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001643 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001644 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001645 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001646 }
1647 } else {
1648 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1649 if (Tmp1 != Node->getOperand(0) ||
1650 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001651 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001652 Ops[0] = Tmp1;
1653 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001654 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001655 }
Chris Lattner6a542892006-01-24 05:48:21 +00001656 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001657 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001658 // This finishes up call legalization.
1659 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001660
1661 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman475871a2008-07-27 21:46:04 +00001662 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Chris Lattner4b653a02006-02-14 00:55:02 +00001663 if (Node->getNumValues() == 2)
Dan Gohman475871a2008-07-27 21:46:04 +00001664 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001665 return Result.getValue(Op.getResNo());
Evan Chenga7dce3c2006-01-11 22:14:47 +00001666 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001667 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001668 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1669 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1670 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001671 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001672
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001673 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001674 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001675 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001676 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001677 case TargetLowering::Expand: {
1678 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1679 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1680 " not tell us which reg is the stack pointer!");
Dan Gohman475871a2008-07-27 21:46:04 +00001681 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001682
1683 // Chain the dynamic stack allocation so that it doesn't modify the stack
1684 // pointer when other instructions are using the stack.
1685 Chain = DAG.getCALLSEQ_START(Chain,
1686 DAG.getConstant(0, TLI.getPointerTy()));
1687
Dan Gohman475871a2008-07-27 21:46:04 +00001688 SDValue Size = Tmp2.getOperand(1);
1689 SDValue SP = DAG.getCopyFromReg(Chain, SPReg, VT);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001690 Chain = SP.getValue(1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001691 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Cheng61bbbab2007-08-16 23:50:06 +00001692 unsigned StackAlign =
1693 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1694 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001695 SP = DAG.getNode(ISD::AND, VT, SP,
1696 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001697 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001698 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1699
1700 Tmp2 =
1701 DAG.getCALLSEQ_END(Chain,
1702 DAG.getConstant(0, TLI.getPointerTy()),
1703 DAG.getConstant(0, TLI.getPointerTy()),
Dan Gohman475871a2008-07-27 21:46:04 +00001704 SDValue());
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001705
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001706 Tmp1 = LegalizeOp(Tmp1);
1707 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001708 break;
1709 }
1710 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001711 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001712 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001713 Tmp1 = LegalizeOp(Tmp3);
1714 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001715 }
Chris Lattner903d2782006-01-15 08:54:32 +00001716 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001717 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001718 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001719 }
Chris Lattner903d2782006-01-15 08:54:32 +00001720 // Since this op produce two values, make sure to remember that we
1721 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001722 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1723 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001724 return Op.getResNo() ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001725 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001726 case ISD::INLINEASM: {
Dan Gohman475871a2008-07-27 21:46:04 +00001727 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001728 bool Changed = false;
1729 // Legalize all of the operands of the inline asm, in case they are nodes
1730 // that need to be expanded or something. Note we skip the asm string and
1731 // all of the TargetConstant flags.
Dan Gohman475871a2008-07-27 21:46:04 +00001732 SDValue Op = LegalizeOp(Ops[0]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001733 Changed = Op != Ops[0];
1734 Ops[0] = Op;
1735
1736 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1737 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001738 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getZExtValue() >> 3;
Chris Lattner25a022c2006-07-11 01:40:09 +00001739 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman475871a2008-07-27 21:46:04 +00001740 SDValue Op = LegalizeOp(Ops[i]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001741 if (Op != Ops[i]) {
1742 Changed = true;
1743 Ops[i] = Op;
1744 }
1745 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001746 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001747
1748 if (HasInFlag) {
1749 Op = LegalizeOp(Ops.back());
1750 Changed |= Op != Ops.back();
1751 Ops.back() = Op;
1752 }
1753
1754 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001755 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001756
1757 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman475871a2008-07-27 21:46:04 +00001758 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1759 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001760 return Result.getValue(Op.getResNo());
Chris Lattner25a022c2006-07-11 01:40:09 +00001761 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001762 case ISD::BR:
1763 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001764 // Ensure that libcalls are emitted before a branch.
1765 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1766 Tmp1 = LegalizeOp(Tmp1);
1767 LastCALLSEQ_END = DAG.getEntryNode();
1768
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001769 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001770 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001771 case ISD::BRIND:
1772 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1773 // Ensure that libcalls are emitted before a branch.
1774 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1775 Tmp1 = LegalizeOp(Tmp1);
1776 LastCALLSEQ_END = DAG.getEntryNode();
1777
1778 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1779 default: assert(0 && "Indirect target must be legal type (pointer)!");
1780 case Legal:
1781 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1782 break;
1783 }
1784 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1785 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001786 case ISD::BR_JT:
1787 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1788 // Ensure that libcalls are emitted before a branch.
1789 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1790 Tmp1 = LegalizeOp(Tmp1);
1791 LastCALLSEQ_END = DAG.getEntryNode();
1792
1793 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1794 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1795
1796 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1797 default: assert(0 && "This action is not supported yet!");
1798 case TargetLowering::Legal: break;
1799 case TargetLowering::Custom:
1800 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001801 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001802 break;
1803 case TargetLowering::Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00001804 SDValue Chain = Result.getOperand(0);
1805 SDValue Table = Result.getOperand(1);
1806 SDValue Index = Result.getOperand(2);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001807
Duncan Sands83ec4b62008-06-06 12:08:01 +00001808 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001809 MachineFunction &MF = DAG.getMachineFunction();
1810 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001811 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
Dan Gohman475871a2008-07-27 21:46:04 +00001812 SDValue Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001813
Dan Gohman475871a2008-07-27 21:46:04 +00001814 SDValue LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001815 switch (EntrySize) {
1816 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001817 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001818 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001819 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001820 PseudoSourceValue::getJumpTable(), 0); break;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001821 }
1822
Evan Chengcc415862007-11-09 01:32:10 +00001823 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001824 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001825 // For PIC, the sequence is:
1826 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00001827 // RelocBase can be JumpTable, GOT or some sort of global base.
1828 if (PTy != MVT::i32)
1829 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1830 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1831 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00001832 }
Evan Chengcc415862007-11-09 01:32:10 +00001833 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001834 }
1835 }
1836 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001837 case ISD::BRCOND:
1838 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001839 // Ensure that libcalls are emitted before a return.
1840 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1841 Tmp1 = LegalizeOp(Tmp1);
1842 LastCALLSEQ_END = DAG.getEntryNode();
1843
Chris Lattner47e92232005-01-18 19:27:06 +00001844 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1845 case Expand: assert(0 && "It's impossible to expand bools");
1846 case Legal:
1847 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1848 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001849 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00001850 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001851
1852 // The top bits of the promoted condition are not necessarily zero, ensure
1853 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001854 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001855 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001856 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerf9908172006-11-27 04:39:56 +00001857 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001858 break;
1859 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001860 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001861
1862 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001863 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001864
1865 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1866 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001867 case TargetLowering::Legal: break;
1868 case TargetLowering::Custom:
1869 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001870 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00001871 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001872 case TargetLowering::Expand:
1873 // Expand brcond's setcc into its constituent parts and create a BR_CC
1874 // Node.
1875 if (Tmp2.getOpcode() == ISD::SETCC) {
1876 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1877 Tmp2.getOperand(0), Tmp2.getOperand(1),
1878 Node->getOperand(2));
1879 } else {
1880 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1881 DAG.getCondCode(ISD::SETNE), Tmp2,
1882 DAG.getConstant(0, Tmp2.getValueType()),
1883 Node->getOperand(2));
1884 }
1885 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001886 }
1887 break;
1888 case ISD::BR_CC:
1889 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001890 // Ensure that libcalls are emitted before a branch.
1891 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1892 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001893 Tmp2 = Node->getOperand(2); // LHS
1894 Tmp3 = Node->getOperand(3); // RHS
1895 Tmp4 = Node->getOperand(1); // CC
1896
1897 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001898 LastCALLSEQ_END = DAG.getEntryNode();
1899
Nate Begeman750ac1b2006-02-01 07:19:44 +00001900 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1901 // the LHS is a legal SETCC itself. In this case, we need to compare
1902 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00001903 if (Tmp3.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00001904 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1905 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001906 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001907
1908 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1909 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001910
Chris Lattner181b7a32005-12-17 23:46:46 +00001911 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1912 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001913 case TargetLowering::Legal: break;
1914 case TargetLowering::Custom:
1915 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001916 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001917 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001918 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001919 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001920 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001921 LoadSDNode *LD = cast<LoadSDNode>(Node);
1922 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1923 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001924
Evan Cheng466685d2006-10-09 20:57:25 +00001925 ISD::LoadExtType ExtType = LD->getExtensionType();
1926 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001927 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00001928 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1929 Tmp3 = Result.getValue(0);
1930 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001931
Evan Cheng466685d2006-10-09 20:57:25 +00001932 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1933 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001934 case TargetLowering::Legal:
1935 // If this is an unaligned load and the target doesn't support it,
1936 // expand it.
1937 if (!TLI.allowsUnalignedMemoryAccesses()) {
1938 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00001939 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001940 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00001941 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001942 TLI);
1943 Tmp3 = Result.getOperand(0);
1944 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001945 Tmp3 = LegalizeOp(Tmp3);
1946 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001947 }
1948 }
1949 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001950 case TargetLowering::Custom:
1951 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001952 if (Tmp1.getNode()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001953 Tmp3 = LegalizeOp(Tmp1);
1954 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001955 }
Evan Cheng466685d2006-10-09 20:57:25 +00001956 break;
1957 case TargetLowering::Promote: {
1958 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001959 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00001960 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001961 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00001962
1963 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001964 LD->getSrcValueOffset(),
1965 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001966 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1967 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001968 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001969 }
Evan Cheng466685d2006-10-09 20:57:25 +00001970 }
1971 // Since loads produce two values, make sure to remember that we
1972 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001973 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
1974 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001975 return Op.getResNo() ? Tmp4 : Tmp3;
Evan Cheng466685d2006-10-09 20:57:25 +00001976 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001977 MVT SrcVT = LD->getMemoryVT();
1978 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001979 int SVOffset = LD->getSrcValueOffset();
1980 unsigned Alignment = LD->getAlignment();
1981 bool isVolatile = LD->isVolatile();
1982
Duncan Sands83ec4b62008-06-06 12:08:01 +00001983 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001984 // Some targets pretend to have an i1 loading operation, and actually
1985 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1986 // bits are guaranteed to be zero; it helps the optimizers understand
1987 // that these bits are zero. It is also useful for EXTLOAD, since it
1988 // tells the optimizers that those bits are undefined. It would be
1989 // nice to have an effective generic way of getting these benefits...
1990 // Until such a way is found, don't insist on promoting i1 here.
1991 (SrcVT != MVT::i1 ||
1992 TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
1993 // Promote to a byte-sized load if not loading an integral number of
1994 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001995 unsigned NewWidth = SrcVT.getStoreSizeInBits();
1996 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00001997 SDValue Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001998
1999 // The extra bits are guaranteed to be zero, since we stored them that
2000 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2001
2002 ISD::LoadExtType NewExtType =
2003 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2004
2005 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
2006 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2007 NVT, isVolatile, Alignment);
2008
2009 Ch = Result.getValue(1); // The chain.
2010
2011 if (ExtType == ISD::SEXTLOAD)
2012 // Having the top bits zero doesn't help when sign extending.
2013 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2014 Result, DAG.getValueType(SrcVT));
2015 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2016 // All the top bits are guaranteed to be zero - inform the optimizers.
2017 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2018 DAG.getValueType(SrcVT));
2019
2020 Tmp1 = LegalizeOp(Result);
2021 Tmp2 = LegalizeOp(Ch);
2022 } else if (SrcWidth & (SrcWidth - 1)) {
2023 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002024 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002025 "Unsupported extload!");
2026 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2027 assert(RoundWidth < SrcWidth);
2028 unsigned ExtraWidth = SrcWidth - RoundWidth;
2029 assert(ExtraWidth < RoundWidth);
2030 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2031 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002032 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2033 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002034 SDValue Lo, Hi, Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002035 unsigned IncrementSize;
2036
2037 if (TLI.isLittleEndian()) {
2038 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2039 // Load the bottom RoundWidth bits.
2040 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2041 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2042 Alignment);
2043
2044 // Load the remaining ExtraWidth bits.
2045 IncrementSize = RoundWidth / 8;
2046 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2047 DAG.getIntPtrConstant(IncrementSize));
2048 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2049 LD->getSrcValue(), SVOffset + IncrementSize,
2050 ExtraVT, isVolatile,
2051 MinAlign(Alignment, IncrementSize));
2052
2053 // Build a factor node to remember that this load is independent of the
2054 // other one.
2055 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2056 Hi.getValue(1));
2057
2058 // Move the top bits to the right place.
2059 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2060 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2061
2062 // Join the hi and lo parts.
2063 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002064 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002065 // Big endian - avoid unaligned loads.
2066 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2067 // Load the top RoundWidth bits.
2068 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2069 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2070 Alignment);
2071
2072 // Load the remaining ExtraWidth bits.
2073 IncrementSize = RoundWidth / 8;
2074 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2075 DAG.getIntPtrConstant(IncrementSize));
2076 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2077 LD->getSrcValue(), SVOffset + IncrementSize,
2078 ExtraVT, isVolatile,
2079 MinAlign(Alignment, IncrementSize));
2080
2081 // Build a factor node to remember that this load is independent of the
2082 // other one.
2083 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2084 Hi.getValue(1));
2085
2086 // Move the top bits to the right place.
2087 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2088 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2089
2090 // Join the hi and lo parts.
2091 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2092 }
2093
2094 Tmp1 = LegalizeOp(Result);
2095 Tmp2 = LegalizeOp(Ch);
2096 } else {
2097 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
2098 default: assert(0 && "This action is not supported yet!");
2099 case TargetLowering::Custom:
2100 isCustom = true;
2101 // FALLTHROUGH
2102 case TargetLowering::Legal:
2103 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2104 Tmp1 = Result.getValue(0);
2105 Tmp2 = Result.getValue(1);
2106
2107 if (isCustom) {
2108 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002109 if (Tmp3.getNode()) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002110 Tmp1 = LegalizeOp(Tmp3);
2111 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2112 }
2113 } else {
2114 // If this is an unaligned load and the target doesn't support it,
2115 // expand it.
2116 if (!TLI.allowsUnalignedMemoryAccesses()) {
2117 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002118 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002119 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002120 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002121 TLI);
2122 Tmp1 = Result.getOperand(0);
2123 Tmp2 = Result.getOperand(1);
2124 Tmp1 = LegalizeOp(Tmp1);
2125 Tmp2 = LegalizeOp(Tmp2);
2126 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002127 }
2128 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002129 break;
2130 case TargetLowering::Expand:
2131 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2132 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dan Gohman475871a2008-07-27 21:46:04 +00002133 SDValue Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002134 LD->getSrcValueOffset(),
2135 LD->isVolatile(), LD->getAlignment());
2136 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2137 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2138 Tmp2 = LegalizeOp(Load.getValue(1));
2139 break;
2140 }
2141 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2142 // Turn the unsupported load into an EXTLOAD followed by an explicit
2143 // zero/sign extend inreg.
2144 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2145 Tmp1, Tmp2, LD->getSrcValue(),
2146 LD->getSrcValueOffset(), SrcVT,
2147 LD->isVolatile(), LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00002148 SDValue ValRes;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002149 if (ExtType == ISD::SEXTLOAD)
2150 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2151 Result, DAG.getValueType(SrcVT));
2152 else
2153 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2154 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2155 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002156 break;
2157 }
Evan Cheng466685d2006-10-09 20:57:25 +00002158 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002159
Evan Cheng466685d2006-10-09 20:57:25 +00002160 // Since loads produce two values, make sure to remember that we legalized
2161 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002162 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2163 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002164 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002165 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002166 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002167 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002168 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002169 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002170 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002171 case Legal:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002172 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Nate Begeman5dc897b2005-10-19 00:06:56 +00002173 // 1 -> Hi
2174 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002175 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002176 TLI.getShiftAmountTy()));
2177 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2178 } else {
2179 // 0 -> Lo
2180 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2181 Node->getOperand(0));
2182 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002183 break;
2184 case Expand:
2185 // Get both the low and high parts.
2186 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002187 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Nate Begeman5dc897b2005-10-19 00:06:56 +00002188 Result = Tmp2; // 1 -> Hi
2189 else
2190 Result = Tmp1; // 0 -> Lo
2191 break;
2192 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002193 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002194 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002195
2196 case ISD::CopyToReg:
2197 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002198
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002199 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002200 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002201 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002202 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002203 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002204 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002205 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002206 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002207 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002208 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002209 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2210 Tmp3);
2211 } else {
2212 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002213 }
2214
2215 // Since this produces two values, make sure to remember that we legalized
2216 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002217 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2218 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002219 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002220 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002221 break;
2222
2223 case ISD::RET:
2224 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002225
2226 // Ensure that libcalls are emitted before a return.
2227 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2228 Tmp1 = LegalizeOp(Tmp1);
2229 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002230
Chris Lattner3e928bb2005-01-07 07:47:09 +00002231 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002232 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002233 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002234 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002235 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002236 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002237 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002238 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002239 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002240 if (!Tmp2.getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002241 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002242 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002243
2244 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002245 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002246 std::swap(Lo, Hi);
2247
Gabor Greifba36cb52008-08-28 21:40:38 +00002248 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00002249 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2250 else
2251 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002252 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002253 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00002254 SDNode *InVal = Tmp2.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002255 int InIx = Tmp2.getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002256 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2257 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002258
Dan Gohman7f321562007-06-25 16:23:39 +00002259 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002260 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002261 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002262 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002263 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002264 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002265 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002266 } else if (NumElems == 1) {
2267 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002268 Tmp2 = ScalarizeVectorOp(Tmp2);
2269 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002270 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002271
2272 // FIXME: Returns of gcc generic vectors smaller than a legal type
2273 // should be returned in integer registers!
2274
Chris Lattnerf87324e2006-04-11 01:31:51 +00002275 // The scalarized value type may not be legal, e.g. it might require
2276 // promotion or expansion. Relegalize the return.
2277 Result = LegalizeOp(Result);
2278 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002279 // FIXME: Returns of gcc generic vectors larger than a legal vector
2280 // type should be returned by reference!
Dan Gohman475871a2008-07-27 21:46:04 +00002281 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002282 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00002283 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002284 Result = LegalizeOp(Result);
2285 }
2286 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002287 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002288 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002289 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002290 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002291 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002292 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002293 }
2294 break;
2295 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002296 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002297 break;
2298 default: { // ret <values>
Dan Gohman475871a2008-07-27 21:46:04 +00002299 SmallVector<SDValue, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002300 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002301 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002302 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2303 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002304 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002305 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002306 break;
2307 case Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002308 SDValue Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002309 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002310 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002311 ExpandOp(Node->getOperand(i), Lo, Hi);
2312 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002313 NewValues.push_back(Node->getOperand(i+1));
Gabor Greifba36cb52008-08-28 21:40:38 +00002314 if (Hi.getNode()) {
Evan Cheng13acce32006-12-11 19:27:14 +00002315 NewValues.push_back(Hi);
2316 NewValues.push_back(Node->getOperand(i+1));
2317 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002318 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002319 }
2320 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002321 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002322 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002323
2324 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002325 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002326 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002327 Result = DAG.getNode(ISD::RET, MVT::Other,
2328 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002329 break;
2330 }
2331 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002332
Chris Lattner6862dbc2006-01-29 21:02:23 +00002333 if (Result.getOpcode() == ISD::RET) {
2334 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2335 default: assert(0 && "This action is not supported yet!");
2336 case TargetLowering::Legal: break;
2337 case TargetLowering::Custom:
2338 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002339 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner6862dbc2006-01-29 21:02:23 +00002340 break;
2341 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002342 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002343 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002344 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002345 StoreSDNode *ST = cast<StoreSDNode>(Node);
2346 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2347 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002348 int SVOffset = ST->getSrcValueOffset();
2349 unsigned Alignment = ST->getAlignment();
2350 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002351
Evan Cheng8b2794a2006-10-13 21:14:26 +00002352 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002353 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2354 // FIXME: We shouldn't do this for TargetConstantFP's.
2355 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2356 // to phase ordering between legalized code and the dag combiner. This
2357 // probably means that we need to integrate dag combiner and legalizer
2358 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002359 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002360 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002361 if (CFP->getValueType(0) == MVT::f32 &&
2362 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002363 Tmp3 = DAG.getConstant(CFP->getValueAPF().
2364 convertToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002365 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002366 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2367 SVOffset, isVolatile, Alignment);
2368 break;
2369 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002370 // If this target supports 64-bit registers, do a single 64-bit store.
2371 if (getTypeAction(MVT::i64) == Legal) {
2372 Tmp3 = DAG.getConstant(CFP->getValueAPF().convertToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002373 zextOrTrunc(64), MVT::i64);
Chris Lattner3cb93512007-10-15 05:46:06 +00002374 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2375 SVOffset, isVolatile, Alignment);
2376 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002377 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002378 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2379 // stores. If the target supports neither 32- nor 64-bits, this
2380 // xform is certainly not worth it.
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002381 const APInt &IntVal =CFP->getValueAPF().convertToAPInt();
Dan Gohman475871a2008-07-27 21:46:04 +00002382 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2383 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002384 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002385
2386 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2387 SVOffset, isVolatile, Alignment);
2388 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002389 DAG.getIntPtrConstant(4));
Chris Lattner3cb93512007-10-15 05:46:06 +00002390 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002391 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002392
2393 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2394 break;
2395 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002396 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002397 }
2398
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002399 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002400 case Legal: {
2401 Tmp3 = LegalizeOp(ST->getValue());
2402 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2403 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002404
Duncan Sands83ec4b62008-06-06 12:08:01 +00002405 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002406 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2407 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002408 case TargetLowering::Legal:
2409 // If this is an unaligned store and the target doesn't support it,
2410 // expand it.
2411 if (!TLI.allowsUnalignedMemoryAccesses()) {
2412 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002413 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002414 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002415 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002416 TLI);
2417 }
2418 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002419 case TargetLowering::Custom:
2420 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002421 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002422 break;
2423 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002424 assert(VT.isVector() && "Unknown legal promote case!");
Evan Cheng8b2794a2006-10-13 21:14:26 +00002425 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2426 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2427 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002428 ST->getSrcValue(), SVOffset, isVolatile,
2429 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002430 break;
2431 }
2432 break;
2433 }
2434 case Promote:
2435 // Truncate the value and store the result.
2436 Tmp3 = PromoteOp(ST->getValue());
2437 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002438 SVOffset, ST->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002439 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002440 break;
2441
2442 case Expand:
2443 unsigned IncrementSize = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002444 SDValue Lo, Hi;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002445
2446 // If this is a vector type, then we have to calculate the increment as
2447 // the product of the element size in bytes, and the number of elements
2448 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002449 if (ST->getValue().getValueType().isVector()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002450 SDNode *InVal = ST->getValue().getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002451 int InIx = ST->getValue().getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002452 MVT InVT = InVal->getValueType(InIx);
2453 unsigned NumElems = InVT.getVectorNumElements();
2454 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002455
Dan Gohman7f321562007-06-25 16:23:39 +00002456 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002457 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002458 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002459 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002460 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002461 Tmp3 = LegalizeOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002462 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002463 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002464 Result = LegalizeOp(Result);
2465 break;
2466 } else if (NumElems == 1) {
2467 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002468 Tmp3 = ScalarizeVectorOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002469 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002470 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002471 // The scalarized value type may not be legal, e.g. it might require
2472 // promotion or expansion. Relegalize the scalar store.
2473 Result = LegalizeOp(Result);
2474 break;
2475 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002476 SplitVectorOp(ST->getValue(), Lo, Hi);
Gabor Greifba36cb52008-08-28 21:40:38 +00002477 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
Duncan Sands83ec4b62008-06-06 12:08:01 +00002478 EVT.getSizeInBits()/8;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002479 }
2480 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002481 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greifba36cb52008-08-28 21:40:38 +00002482 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002483
Richard Pennington4b052dc2008-09-25 16:15:10 +00002484 if (Hi.getNode() && TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002485 std::swap(Lo, Hi);
2486 }
2487
2488 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002489 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002490
Gabor Greifba36cb52008-08-28 21:40:38 +00002491 if (Hi.getNode() == NULL) {
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002492 // Must be int <-> float one-to-one expansion.
2493 Result = Lo;
2494 break;
2495 }
2496
Evan Cheng8b2794a2006-10-13 21:14:26 +00002497 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002498 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002499 assert(isTypeLegal(Tmp2.getValueType()) &&
2500 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002501 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002502 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002503 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002504 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002505 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2506 break;
2507 }
2508 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002509 switch (getTypeAction(ST->getValue().getValueType())) {
2510 case Legal:
2511 Tmp3 = LegalizeOp(ST->getValue());
2512 break;
2513 case Promote:
2514 // We can promote the value, the truncstore will still take care of it.
2515 Tmp3 = PromoteOp(ST->getValue());
2516 break;
2517 case Expand:
2518 // Just store the low part. This may become a non-trunc store, so make
2519 // sure to use getTruncStore, not UpdateNodeOperands below.
2520 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2521 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2522 SVOffset, MVT::i8, isVolatile, Alignment);
2523 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002524
Duncan Sands83ec4b62008-06-06 12:08:01 +00002525 MVT StVT = ST->getMemoryVT();
2526 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002527
Duncan Sands83ec4b62008-06-06 12:08:01 +00002528 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002529 // Promote to a byte-sized store with upper bits zero if not
2530 // storing an integral number of bytes. For example, promote
2531 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002532 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Duncan Sands7e857202008-01-22 07:17:34 +00002533 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2534 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2535 SVOffset, NVT, isVolatile, Alignment);
2536 } else if (StWidth & (StWidth - 1)) {
2537 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002538 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002539 "Unsupported truncstore!");
2540 unsigned RoundWidth = 1 << Log2_32(StWidth);
2541 assert(RoundWidth < StWidth);
2542 unsigned ExtraWidth = StWidth - RoundWidth;
2543 assert(ExtraWidth < RoundWidth);
2544 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2545 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002546 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2547 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002548 SDValue Lo, Hi;
Duncan Sands7e857202008-01-22 07:17:34 +00002549 unsigned IncrementSize;
2550
2551 if (TLI.isLittleEndian()) {
2552 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2553 // Store the bottom RoundWidth bits.
2554 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2555 SVOffset, RoundVT,
2556 isVolatile, Alignment);
2557
2558 // Store the remaining ExtraWidth bits.
2559 IncrementSize = RoundWidth / 8;
2560 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2561 DAG.getIntPtrConstant(IncrementSize));
2562 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2563 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2564 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2565 SVOffset + IncrementSize, ExtraVT, isVolatile,
2566 MinAlign(Alignment, IncrementSize));
2567 } else {
2568 // Big endian - avoid unaligned stores.
2569 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2570 // Store the top RoundWidth bits.
2571 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2572 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2573 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2574 RoundVT, isVolatile, Alignment);
2575
2576 // Store the remaining ExtraWidth bits.
2577 IncrementSize = RoundWidth / 8;
2578 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2579 DAG.getIntPtrConstant(IncrementSize));
2580 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2581 SVOffset + IncrementSize, ExtraVT, isVolatile,
2582 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002583 }
Duncan Sands7e857202008-01-22 07:17:34 +00002584
2585 // The order of the stores doesn't matter.
2586 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2587 } else {
2588 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2589 Tmp2 != ST->getBasePtr())
2590 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2591 ST->getOffset());
2592
2593 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2594 default: assert(0 && "This action is not supported yet!");
2595 case TargetLowering::Legal:
2596 // If this is an unaligned store and the target doesn't support it,
2597 // expand it.
2598 if (!TLI.allowsUnalignedMemoryAccesses()) {
2599 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002600 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002601 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002602 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands7e857202008-01-22 07:17:34 +00002603 TLI);
2604 }
2605 break;
2606 case TargetLowering::Custom:
2607 Result = TLI.LowerOperation(Result, DAG);
2608 break;
2609 case Expand:
2610 // TRUNCSTORE:i16 i32 -> STORE i16
2611 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2612 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2613 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2614 isVolatile, Alignment);
2615 break;
2616 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002617 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002618 }
2619 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002620 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002621 case ISD::PCMARKER:
2622 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002623 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002624 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002625 case ISD::STACKSAVE:
2626 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002627 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2628 Tmp1 = Result.getValue(0);
2629 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002630
Chris Lattner140d53c2006-01-13 02:50:02 +00002631 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2632 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002633 case TargetLowering::Legal: break;
2634 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002635 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002636 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002637 Tmp1 = LegalizeOp(Tmp3);
2638 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002639 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002640 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002641 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002642 // Expand to CopyFromReg if the target set
2643 // StackPointerRegisterToSaveRestore.
2644 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002645 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002646 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002647 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002648 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002649 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2650 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002651 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002652 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002653 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002654
2655 // Since stacksave produce two values, make sure to remember that we
2656 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002657 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2658 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002659 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002660
Chris Lattner140d53c2006-01-13 02:50:02 +00002661 case ISD::STACKRESTORE:
2662 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2663 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002664 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002665
2666 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2667 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002668 case TargetLowering::Legal: break;
2669 case TargetLowering::Custom:
2670 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002671 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002672 break;
2673 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002674 // Expand to CopyToReg if the target set
2675 // StackPointerRegisterToSaveRestore.
2676 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2677 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2678 } else {
2679 Result = Tmp1;
2680 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002681 break;
2682 }
2683 break;
2684
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002685 case ISD::READCYCLECOUNTER:
2686 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002687 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002688 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2689 Node->getValueType(0))) {
2690 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002691 case TargetLowering::Legal:
2692 Tmp1 = Result.getValue(0);
2693 Tmp2 = Result.getValue(1);
2694 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002695 case TargetLowering::Custom:
2696 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002697 Tmp1 = LegalizeOp(Result.getValue(0));
2698 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002699 break;
2700 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002701
2702 // Since rdcc produce two values, make sure to remember that we legalized
2703 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002704 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2705 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002706 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002707
Chris Lattner2ee743f2005-01-14 22:08:15 +00002708 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002709 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2710 case Expand: assert(0 && "It's impossible to expand bools");
2711 case Legal:
2712 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2713 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002714 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002715 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002716 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002717 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002718 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002719 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerb6c80602006-11-28 01:03:30 +00002720 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002721 break;
2722 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002723 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002724 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002725 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002726
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002727 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002728
Nate Begemanb942a3d2005-08-23 04:29:48 +00002729 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002730 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002731 case TargetLowering::Legal: break;
2732 case TargetLowering::Custom: {
2733 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002734 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002735 break;
2736 }
Nate Begeman9373a812005-08-10 20:51:12 +00002737 case TargetLowering::Expand:
2738 if (Tmp1.getOpcode() == ISD::SETCC) {
2739 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2740 Tmp2, Tmp3,
2741 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2742 } else {
2743 Result = DAG.getSelectCC(Tmp1,
2744 DAG.getConstant(0, Tmp1.getValueType()),
2745 Tmp2, Tmp3, ISD::SETNE);
2746 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002747 break;
2748 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002749 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002750 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2751 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002752 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002753 ExtOp = ISD::BIT_CONVERT;
2754 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002755 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002756 ExtOp = ISD::ANY_EXTEND;
2757 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002758 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002759 ExtOp = ISD::FP_EXTEND;
2760 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002761 }
2762 // Promote each of the values to the new type.
2763 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2764 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2765 // Perform the larger operation, then round down.
2766 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002767 if (TruncOp != ISD::FP_ROUND)
2768 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2769 else
2770 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2771 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002772 break;
2773 }
2774 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002775 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002776 case ISD::SELECT_CC: {
2777 Tmp1 = Node->getOperand(0); // LHS
2778 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002779 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2780 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman475871a2008-07-27 21:46:04 +00002781 SDValue CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002782
Nate Begeman750ac1b2006-02-01 07:19:44 +00002783 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2784
2785 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2786 // the LHS is a legal SETCC itself. In this case, we need to compare
2787 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00002788 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002789 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2790 CC = DAG.getCondCode(ISD::SETNE);
2791 }
2792 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2793
2794 // Everything is legal, see if we should expand this op or something.
2795 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2796 default: assert(0 && "This action is not supported yet!");
2797 case TargetLowering::Legal: break;
2798 case TargetLowering::Custom:
2799 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002800 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002801 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002802 }
2803 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002804 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002805 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002806 Tmp1 = Node->getOperand(0);
2807 Tmp2 = Node->getOperand(1);
2808 Tmp3 = Node->getOperand(2);
2809 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2810
2811 // If we had to Expand the SetCC operands into a SELECT node, then it may
2812 // not always be possible to return a true LHS & RHS. In this case, just
2813 // return the value we legalized, returned in the LHS
Gabor Greifba36cb52008-08-28 21:40:38 +00002814 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002815 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002816 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002817 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002818
Chris Lattner73e142f2006-01-30 22:43:50 +00002819 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002820 default: assert(0 && "Cannot handle this action for SETCC yet!");
2821 case TargetLowering::Custom:
2822 isCustom = true;
2823 // FALLTHROUGH.
2824 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002825 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002826 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002827 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002828 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002829 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002830 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002831 case TargetLowering::Promote: {
2832 // First step, figure out the appropriate operation to use.
2833 // Allow SETCC to not be supported for all legal data types
2834 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00002835 MVT NewInTy = Node->getOperand(0).getValueType();
2836 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002837
2838 // Scan for the appropriate larger type to use.
2839 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002840 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00002841
Duncan Sands83ec4b62008-06-06 12:08:01 +00002842 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002843 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002844 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002845 "Fell off of the edge of the floating point world");
2846
2847 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002848 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002849 break;
2850 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002851 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00002852 assert(0 && "Cannot promote Legal Integer SETCC yet");
2853 else {
2854 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2855 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2856 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002857 Tmp1 = LegalizeOp(Tmp1);
2858 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002859 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002860 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002861 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002862 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002863 case TargetLowering::Expand:
2864 // Expand a setcc node into a select_cc of the same condition, lhs, and
2865 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00002866 MVT VT = Node->getValueType(0);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002867 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2868 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002869 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002870 break;
2871 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002872 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00002873 case ISD::VSETCC: {
2874 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2875 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman475871a2008-07-27 21:46:04 +00002876 SDValue CC = Node->getOperand(2);
Nate Begemanb43e9c12008-05-12 19:40:03 +00002877
2878 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
2879
2880 // Everything is legal, see if we should expand this op or something.
2881 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
2882 default: assert(0 && "This action is not supported yet!");
2883 case TargetLowering::Legal: break;
2884 case TargetLowering::Custom:
2885 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002886 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanb43e9c12008-05-12 19:40:03 +00002887 break;
2888 }
2889 break;
2890 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002891
Chris Lattner5b359c62005-04-02 04:00:59 +00002892 case ISD::SHL_PARTS:
2893 case ISD::SRA_PARTS:
2894 case ISD::SRL_PARTS: {
Dan Gohman475871a2008-07-27 21:46:04 +00002895 SmallVector<SDValue, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002896 bool Changed = false;
2897 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2898 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2899 Changed |= Ops.back() != Node->getOperand(i);
2900 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002901 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002902 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002903
Evan Cheng05a2d562006-01-09 18:31:59 +00002904 switch (TLI.getOperationAction(Node->getOpcode(),
2905 Node->getValueType(0))) {
2906 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002907 case TargetLowering::Legal: break;
2908 case TargetLowering::Custom:
2909 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002910 if (Tmp1.getNode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002911 SDValue Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002912 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002913 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman475871a2008-07-27 21:46:04 +00002914 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002915 if (i == Op.getResNo())
Evan Cheng12f22742006-01-19 04:54:52 +00002916 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002917 }
Gabor Greifba36cb52008-08-28 21:40:38 +00002918 assert(RetVal.getNode() && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002919 return RetVal;
2920 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002921 break;
2922 }
2923
Chris Lattner2c8086f2005-04-02 05:00:07 +00002924 // Since these produce multiple values, make sure to remember that we
2925 // legalized all of them.
2926 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00002927 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00002928 return Result.getValue(Op.getResNo());
Chris Lattner84f67882005-01-20 18:52:28 +00002929 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002930
2931 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002932 case ISD::ADD:
2933 case ISD::SUB:
2934 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002935 case ISD::MULHS:
2936 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002937 case ISD::UDIV:
2938 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002939 case ISD::AND:
2940 case ISD::OR:
2941 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002942 case ISD::SHL:
2943 case ISD::SRL:
2944 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002945 case ISD::FADD:
2946 case ISD::FSUB:
2947 case ISD::FMUL:
2948 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00002949 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002950 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002951 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2952 case Expand: assert(0 && "Not possible");
2953 case Legal:
2954 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2955 break;
2956 case Promote:
2957 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2958 break;
2959 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00002960
2961 if ((Node->getOpcode() == ISD::SHL ||
2962 Node->getOpcode() == ISD::SRL ||
2963 Node->getOpcode() == ISD::SRA) &&
2964 !Node->getValueType(0).isVector()) {
2965 if (TLI.getShiftAmountTy().bitsLT(Tmp2.getValueType()))
2966 Tmp2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Tmp2);
2967 else if (TLI.getShiftAmountTy().bitsGT(Tmp2.getValueType()))
2968 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Tmp2);
2969 }
2970
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002971 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002972
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002973 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002974 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002975 case TargetLowering::Legal: break;
2976 case TargetLowering::Custom:
2977 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002978 if (Tmp1.getNode()) {
Nate Begeman5bc1ea02008-07-29 15:49:41 +00002979 Result = Tmp1;
2980 break;
Nate Begeman24dc3462008-07-29 19:07:27 +00002981 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00002982 // Fall through if the custom lower can't deal with the operation
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002983 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002984 MVT VT = Op.getValueType();
Dan Gohman525178c2007-10-08 18:33:35 +00002985
2986 // See if multiply or divide can be lowered using two-result operations.
2987 SDVTList VTs = DAG.getVTList(VT, VT);
2988 if (Node->getOpcode() == ISD::MUL) {
2989 // We just need the low half of the multiply; try both the signed
2990 // and unsigned forms. If the target supports both SMUL_LOHI and
2991 // UMUL_LOHI, form a preference by checking which forms of plain
2992 // MULH it supports.
2993 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2994 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2995 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2996 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2997 unsigned OpToUse = 0;
2998 if (HasSMUL_LOHI && !HasMULHS) {
2999 OpToUse = ISD::SMUL_LOHI;
3000 } else if (HasUMUL_LOHI && !HasMULHU) {
3001 OpToUse = ISD::UMUL_LOHI;
3002 } else if (HasSMUL_LOHI) {
3003 OpToUse = ISD::SMUL_LOHI;
3004 } else if (HasUMUL_LOHI) {
3005 OpToUse = ISD::UMUL_LOHI;
3006 }
3007 if (OpToUse) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003008 Result = SDValue(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).getNode(), 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003009 break;
3010 }
3011 }
3012 if (Node->getOpcode() == ISD::MULHS &&
3013 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003014 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003015 break;
3016 }
3017 if (Node->getOpcode() == ISD::MULHU &&
3018 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003019 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003020 break;
3021 }
3022 if (Node->getOpcode() == ISD::SDIV &&
3023 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003024 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).getNode(), 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003025 break;
3026 }
3027 if (Node->getOpcode() == ISD::UDIV &&
3028 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003029 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).getNode(), 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003030 break;
3031 }
3032
Dan Gohman82669522007-10-11 23:57:53 +00003033 // Check to see if we have a libcall for this operator.
3034 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3035 bool isSigned = false;
3036 switch (Node->getOpcode()) {
3037 case ISD::UDIV:
3038 case ISD::SDIV:
3039 if (VT == MVT::i32) {
3040 LC = Node->getOpcode() == ISD::UDIV
Evan Cheng56966222007-01-12 02:11:51 +00003041 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003042 isSigned = Node->getOpcode() == ISD::SDIV;
3043 }
3044 break;
3045 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003046 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3047 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003048 break;
3049 default: break;
3050 }
3051 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +00003052 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003053 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003054 break;
3055 }
3056
Duncan Sands83ec4b62008-06-06 12:08:01 +00003057 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003058 "Cannot expand this binary operator!");
3059 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003060 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003061 break;
3062 }
Evan Chengcc987612006-04-12 21:20:24 +00003063 case TargetLowering::Promote: {
3064 switch (Node->getOpcode()) {
3065 default: assert(0 && "Do not know how to promote this BinOp!");
3066 case ISD::AND:
3067 case ISD::OR:
3068 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003069 MVT OVT = Node->getValueType(0);
3070 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3071 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003072 // Bit convert each of the values to the new type.
3073 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3074 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3075 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3076 // Bit convert the result back the original type.
3077 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3078 break;
3079 }
3080 }
3081 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003082 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003083 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003084
Dan Gohmane14ea862007-10-05 14:17:22 +00003085 case ISD::SMUL_LOHI:
3086 case ISD::UMUL_LOHI:
3087 case ISD::SDIVREM:
3088 case ISD::UDIVREM:
3089 // These nodes will only be produced by target-specific lowering, so
3090 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003091 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003092 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003093
3094 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3095 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3096 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003097 break;
3098
Chris Lattnera09f8482006-03-05 05:09:38 +00003099 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3100 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3101 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3102 case Expand: assert(0 && "Not possible");
3103 case Legal:
3104 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3105 break;
3106 case Promote:
3107 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3108 break;
3109 }
3110
3111 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3112
3113 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3114 default: assert(0 && "Operation not supported");
3115 case TargetLowering::Custom:
3116 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003117 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003118 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003119 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003120 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003121 // If this target supports fabs/fneg natively and select is cheap,
3122 // do this efficiently.
3123 if (!TLI.isSelectExpensive() &&
3124 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3125 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003126 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003127 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003128 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003129 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003130 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman475871a2008-07-27 21:46:04 +00003131 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003132 SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003133 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3134 // Get the absolute value of the result.
Dan Gohman475871a2008-07-27 21:46:04 +00003135 SDValue AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
Chris Lattner8f4191d2006-03-13 06:08:38 +00003136 // Select between the nabs and abs value based on the sign bit of
3137 // the input.
3138 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3139 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3140 AbsVal),
3141 AbsVal);
3142 Result = LegalizeOp(Result);
3143 break;
3144 }
3145
3146 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003147 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003148 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3149 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3150 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3151 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003152 break;
3153 }
Evan Cheng912095b2007-01-04 21:56:39 +00003154 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003155 break;
3156
Nate Begeman551bf3f2006-02-17 05:43:56 +00003157 case ISD::ADDC:
3158 case ISD::SUBC:
3159 Tmp1 = LegalizeOp(Node->getOperand(0));
3160 Tmp2 = LegalizeOp(Node->getOperand(1));
3161 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3162 // Since this produces two values, make sure to remember that we legalized
3163 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003164 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
3165 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Nate Begeman551bf3f2006-02-17 05:43:56 +00003166 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003167
Nate Begeman551bf3f2006-02-17 05:43:56 +00003168 case ISD::ADDE:
3169 case ISD::SUBE:
3170 Tmp1 = LegalizeOp(Node->getOperand(0));
3171 Tmp2 = LegalizeOp(Node->getOperand(1));
3172 Tmp3 = LegalizeOp(Node->getOperand(2));
3173 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3174 // Since this produces two values, make sure to remember that we legalized
3175 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003176 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
3177 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Nate Begeman551bf3f2006-02-17 05:43:56 +00003178 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00003179
Nate Begeman419f8b62005-10-18 00:27:41 +00003180 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003181 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003182 // TODO: handle the case where the Lo and Hi operands are not of legal type
3183 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3184 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3185 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003186 case TargetLowering::Promote:
3187 case TargetLowering::Custom:
3188 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003189 case TargetLowering::Legal:
3190 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3191 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3192 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003193 case TargetLowering::Expand:
3194 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3195 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3196 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003197 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003198 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00003199 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003200 break;
3201 }
3202 break;
3203 }
3204
Nate Begemanc105e192005-04-06 00:23:54 +00003205 case ISD::UREM:
3206 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003207 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003208 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3209 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003210
Nate Begemanc105e192005-04-06 00:23:54 +00003211 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003212 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3213 case TargetLowering::Custom:
3214 isCustom = true;
3215 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003216 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003217 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003218 if (isCustom) {
3219 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003220 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003221 }
Nate Begemanc105e192005-04-06 00:23:54 +00003222 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003223 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003224 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003225 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003226 MVT VT = Node->getValueType(0);
Dan Gohman525178c2007-10-08 18:33:35 +00003227
3228 // See if remainder can be lowered using two-result operations.
3229 SDVTList VTs = DAG.getVTList(VT, VT);
3230 if (Node->getOpcode() == ISD::SREM &&
3231 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003232 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003233 break;
3234 }
3235 if (Node->getOpcode() == ISD::UREM &&
3236 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003237 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003238 break;
3239 }
3240
Duncan Sands83ec4b62008-06-06 12:08:01 +00003241 if (VT.isInteger()) {
Dan Gohman525178c2007-10-08 18:33:35 +00003242 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003243 TargetLowering::Legal) {
3244 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00003245 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003246 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3247 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003248 } else if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003249 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003250 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003251 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003252 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003253 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3254 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman475871a2008-07-27 21:46:04 +00003255 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003256 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003257 }
Dan Gohman0d974262007-11-06 22:11:54 +00003258 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003259 assert(VT.isFloatingPoint() &&
Dan Gohman0d974262007-11-06 22:11:54 +00003260 "remainder op must have integer or floating-point type");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003261 if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003262 Result = LegalizeOp(UnrollVectorOp(Op));
3263 } else {
3264 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003265 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3266 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003267 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003268 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003269 }
Nate Begemanc105e192005-04-06 00:23:54 +00003270 }
3271 break;
3272 }
Dan Gohman525178c2007-10-08 18:33:35 +00003273 }
Nate Begemanc105e192005-04-06 00:23:54 +00003274 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003275 case ISD::VAARG: {
3276 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3277 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3278
Duncan Sands83ec4b62008-06-06 12:08:01 +00003279 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003280 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3281 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003282 case TargetLowering::Custom:
3283 isCustom = true;
3284 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003285 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003286 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3287 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003288 Tmp1 = Result.getValue(1);
3289
3290 if (isCustom) {
3291 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003292 if (Tmp2.getNode()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003293 Result = LegalizeOp(Tmp2);
3294 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3295 }
3296 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003297 break;
3298 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003299 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman475871a2008-07-27 21:46:04 +00003300 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003301 // Increment the pointer, VAList, to the next vaarg
3302 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003303 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begemanacc398c2006-01-25 18:21:52 +00003304 TLI.getPointerTy()));
3305 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00003306 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003307 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003308 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003309 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003310 Result = LegalizeOp(Result);
3311 break;
3312 }
3313 }
3314 // Since VAARG produces two values, make sure to remember that we
3315 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003316 AddLegalizedOperand(SDValue(Node, 0), Result);
3317 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003318 return Op.getResNo() ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003319 }
3320
3321 case ISD::VACOPY:
3322 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3323 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3324 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3325
3326 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3327 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003328 case TargetLowering::Custom:
3329 isCustom = true;
3330 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003331 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003332 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3333 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003334 if (isCustom) {
3335 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003336 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003337 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003338 break;
3339 case TargetLowering::Expand:
3340 // This defaults to loading a pointer from the input and storing it to the
3341 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003342 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3343 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dan Gohman499c1bd2008-04-17 02:09:26 +00003344 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3345 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003346 break;
3347 }
3348 break;
3349
3350 case ISD::VAEND:
3351 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3352 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3353
3354 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3355 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003356 case TargetLowering::Custom:
3357 isCustom = true;
3358 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003359 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003360 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003361 if (isCustom) {
3362 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003363 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003364 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003365 break;
3366 case TargetLowering::Expand:
3367 Result = Tmp1; // Default to a no-op, return the chain
3368 break;
3369 }
3370 break;
3371
3372 case ISD::VASTART:
3373 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3374 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3375
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003376 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3377
Nate Begemanacc398c2006-01-25 18:21:52 +00003378 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3379 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003380 case TargetLowering::Legal: break;
3381 case TargetLowering::Custom:
3382 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003383 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003384 break;
3385 }
3386 break;
3387
Nate Begeman35ef9132006-01-11 21:21:00 +00003388 case ISD::ROTL:
3389 case ISD::ROTR:
3390 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3391 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003392 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003393 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3394 default:
3395 assert(0 && "ROTL/ROTR legalize operation not supported");
3396 break;
3397 case TargetLowering::Legal:
3398 break;
3399 case TargetLowering::Custom:
3400 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003401 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelc9dc1142007-04-02 21:36:32 +00003402 break;
3403 case TargetLowering::Promote:
3404 assert(0 && "Do not know how to promote ROTL/ROTR");
3405 break;
3406 case TargetLowering::Expand:
3407 assert(0 && "Do not know how to expand ROTL/ROTR");
3408 break;
3409 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003410 break;
3411
Nate Begemand88fc032006-01-14 03:14:10 +00003412 case ISD::BSWAP:
3413 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3414 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003415 case TargetLowering::Custom:
3416 assert(0 && "Cannot custom legalize this yet!");
3417 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003418 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003419 break;
3420 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003421 MVT OVT = Tmp1.getValueType();
3422 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3423 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003424
Chris Lattner456a93a2006-01-28 07:39:30 +00003425 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3426 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3427 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3428 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3429 break;
3430 }
3431 case TargetLowering::Expand:
3432 Result = ExpandBSWAP(Tmp1);
3433 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003434 }
3435 break;
3436
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003437 case ISD::CTPOP:
3438 case ISD::CTTZ:
3439 case ISD::CTLZ:
3440 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3441 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003442 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003443 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003444 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003445 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003446 TargetLowering::Custom) {
3447 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003448 if (Tmp1.getNode()) {
Scott Michel335f4f72007-08-02 02:22:46 +00003449 Result = Tmp1;
3450 }
Scott Michel910b66d2007-07-30 21:00:31 +00003451 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003452 break;
3453 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003454 MVT OVT = Tmp1.getValueType();
3455 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003456
3457 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003458 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3459 // Perform the larger operation, then subtract if needed.
3460 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003461 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003462 case ISD::CTPOP:
3463 Result = Tmp1;
3464 break;
3465 case ISD::CTTZ:
3466 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00003467 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003468 DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003469 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003470 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003471 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003472 break;
3473 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003474 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003475 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003476 DAG.getConstant(NVT.getSizeInBits() -
3477 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003478 break;
3479 }
3480 break;
3481 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003482 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003483 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003484 break;
3485 }
3486 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003487
Chris Lattner2c8086f2005-04-02 05:00:07 +00003488 // Unary operators
3489 case ISD::FABS:
3490 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003491 case ISD::FSQRT:
3492 case ISD::FSIN:
3493 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003494 case ISD::FLOG:
3495 case ISD::FLOG2:
3496 case ISD::FLOG10:
3497 case ISD::FEXP:
3498 case ISD::FEXP2:
Dan Gohman509e84f2008-08-21 17:55:02 +00003499 case ISD::FTRUNC:
3500 case ISD::FFLOOR:
3501 case ISD::FCEIL:
3502 case ISD::FRINT:
3503 case ISD::FNEARBYINT:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003504 Tmp1 = LegalizeOp(Node->getOperand(0));
3505 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003506 case TargetLowering::Promote:
3507 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003508 isCustom = true;
3509 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003510 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003511 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003512 if (isCustom) {
3513 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003514 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng59ad7812006-01-31 18:14:25 +00003515 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003516 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003517 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003518 switch (Node->getOpcode()) {
3519 default: assert(0 && "Unreachable!");
3520 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003521 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3522 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003523 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003524 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003525 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003526 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003527 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003528 Tmp2 = DAG.getConstantFP(0.0, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003529 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00003530 ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003531 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3532 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003533 break;
3534 }
Evan Cheng9d24ac52008-09-09 23:35:53 +00003535 case ISD::FSQRT:
3536 case ISD::FSIN:
3537 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003538 case ISD::FLOG:
3539 case ISD::FLOG2:
3540 case ISD::FLOG10:
3541 case ISD::FEXP:
3542 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003543 case ISD::FTRUNC:
3544 case ISD::FFLOOR:
3545 case ISD::FCEIL:
3546 case ISD::FRINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00003547 case ISD::FNEARBYINT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003548 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003549
3550 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003551 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003552 Result = LegalizeOp(UnrollVectorOp(Op));
3553 break;
3554 }
3555
Evan Cheng56966222007-01-12 02:11:51 +00003556 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003557 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003558 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003559 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3560 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003561 break;
3562 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003563 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3564 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003565 break;
3566 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003567 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3568 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003569 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003570 case ISD::FLOG:
3571 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3572 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3573 break;
3574 case ISD::FLOG2:
3575 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3576 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3577 break;
3578 case ISD::FLOG10:
3579 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3580 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3581 break;
3582 case ISD::FEXP:
3583 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3584 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3585 break;
3586 case ISD::FEXP2:
3587 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3588 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3589 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003590 case ISD::FTRUNC:
3591 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3592 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3593 break;
3594 case ISD::FFLOOR:
3595 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3596 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3597 break;
3598 case ISD::FCEIL:
3599 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3600 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3601 break;
3602 case ISD::FRINT:
3603 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3604 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3605 break;
3606 case ISD::FNEARBYINT:
3607 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3608 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3609 break;
Evan Cheng9d24ac52008-09-09 23:35:53 +00003610 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003611 default: assert(0 && "Unreachable!");
3612 }
Dan Gohman475871a2008-07-27 21:46:04 +00003613 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003614 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003615 break;
3616 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003617 }
3618 break;
3619 }
3620 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003621 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003622 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003623
3624 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003625 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003626 Result = LegalizeOp(UnrollVectorOp(Op));
3627 break;
3628 }
3629
3630 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003631 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3632 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003633 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003634 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003635 break;
3636 }
Chris Lattner35481892005-12-23 00:16:34 +00003637 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003638 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003639 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3640 Node->getValueType(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003641 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003642 // The input has to be a vector type, we have to either scalarize it, pack
3643 // it, or convert it based on whether the input vector type is legal.
Gabor Greifba36cb52008-08-28 21:40:38 +00003644 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00003645 int InIx = Node->getOperand(0).getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003646 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3647 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohman7f321562007-06-25 16:23:39 +00003648
3649 // Figure out if there is a simple type corresponding to this Vector
3650 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003651 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00003652 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003653 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003654 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3655 LegalizeOp(Node->getOperand(0)));
3656 break;
3657 } else if (NumElems == 1) {
3658 // Turn this into a bit convert of the scalar input.
3659 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3660 ScalarizeVectorOp(Node->getOperand(0)));
3661 break;
3662 } else {
3663 // FIXME: UNIMP! Store then reload
3664 assert(0 && "Cast from unsupported vector type not implemented yet!");
3665 }
Chris Lattner67993f72006-01-23 07:30:46 +00003666 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003667 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3668 Node->getOperand(0).getValueType())) {
3669 default: assert(0 && "Unknown operation action!");
3670 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003671 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3672 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003673 break;
3674 case TargetLowering::Legal:
3675 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003676 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003677 break;
3678 }
3679 }
3680 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003681
Chris Lattner2c8086f2005-04-02 05:00:07 +00003682 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003683 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003684 case ISD::UINT_TO_FP: {
3685 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman7f8613e2008-08-14 20:04:46 +00003686 Result = LegalizeINT_TO_FP(Result, isSigned,
3687 Node->getValueType(0), Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003688 break;
3689 }
3690 case ISD::TRUNCATE:
3691 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3692 case Legal:
3693 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003694 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003695 break;
3696 case Expand:
3697 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3698
3699 // Since the result is legal, we should just be able to truncate the low
3700 // part of the source.
3701 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3702 break;
3703 case Promote:
3704 Result = PromoteOp(Node->getOperand(0));
3705 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3706 break;
3707 }
3708 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003709
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003710 case ISD::FP_TO_SINT:
3711 case ISD::FP_TO_UINT:
3712 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3713 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003714 Tmp1 = LegalizeOp(Node->getOperand(0));
3715
Chris Lattner1618beb2005-07-29 00:11:56 +00003716 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3717 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003718 case TargetLowering::Custom:
3719 isCustom = true;
3720 // FALLTHROUGH
3721 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003722 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003723 if (isCustom) {
3724 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003725 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003726 }
3727 break;
3728 case TargetLowering::Promote:
3729 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3730 Node->getOpcode() == ISD::FP_TO_SINT);
3731 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003732 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003733 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman475871a2008-07-27 21:46:04 +00003734 SDValue True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003735 MVT VT = Node->getOperand(0).getValueType();
3736 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00003737 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00003738 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
3739 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003740 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00003741 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003742 Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
Nate Begemand2558e32005-08-14 01:20:53 +00003743 Node->getOperand(0), Tmp2, ISD::SETLT);
3744 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3745 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003746 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003747 Tmp2));
3748 False = DAG.getNode(ISD::XOR, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003749 DAG.getConstant(x, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003750 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3751 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003752 } else {
3753 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3754 }
3755 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003756 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003757 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003758 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003759 MVT VT = Op.getValueType();
3760 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003761 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003762 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003763 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3764 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3765 Node->getOperand(0), DAG.getValueType(MVT::f64));
3766 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3767 DAG.getIntPtrConstant(1));
3768 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3769 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003770 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3771 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3772 Tmp2 = DAG.getConstantFP(apf, OVT);
3773 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3774 // FIXME: generated code sucks.
3775 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3776 DAG.getNode(ISD::ADD, MVT::i32,
3777 DAG.getNode(ISD::FP_TO_SINT, VT,
3778 DAG.getNode(ISD::FSUB, OVT,
3779 Node->getOperand(0), Tmp2)),
3780 DAG.getConstant(0x80000000, MVT::i32)),
3781 DAG.getNode(ISD::FP_TO_SINT, VT,
3782 Node->getOperand(0)),
3783 DAG.getCondCode(ISD::SETGE));
3784 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003785 break;
3786 }
Dan Gohmana2e94852008-03-10 23:03:31 +00003787 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsb2ff8852008-07-17 02:36:29 +00003788 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
3789 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
3790 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman475871a2008-07-27 21:46:04 +00003791 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003792 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003793 break;
3794 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003795 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003796 Tmp1 = PromoteOp(Node->getOperand(0));
3797 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3798 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003799 break;
3800 }
3801 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003802
Chris Lattnerf2670a82008-01-16 06:57:07 +00003803 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003804 MVT DstVT = Op.getValueType();
3805 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003806 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3807 // The only other way we can lower this is to turn it into a STORE,
3808 // LOAD pair, targetting a temporary location (a stack slot).
3809 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3810 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00003811 }
3812 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3813 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3814 case Legal:
3815 Tmp1 = LegalizeOp(Node->getOperand(0));
3816 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3817 break;
3818 case Promote:
3819 Tmp1 = PromoteOp(Node->getOperand(0));
3820 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3821 break;
3822 }
3823 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003824 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003825 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003826 MVT DstVT = Op.getValueType();
3827 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003828 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3829 if (SrcVT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00003830 SDValue Lo;
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003831 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003832 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003833 if (DstVT!=MVT::f64)
3834 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00003835 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00003836 }
Chris Lattner0bd48932008-01-17 07:00:52 +00003837 // The only other way we can lower this is to turn it into a STORE,
3838 // LOAD pair, targetting a temporary location (a stack slot).
3839 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3840 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00003841 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00003842 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3843 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3844 case Legal:
3845 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003846 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003847 break;
3848 case Promote:
3849 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003850 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3851 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003852 break;
3853 }
3854 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003855 }
Chris Lattner13c78e22005-09-02 00:18:10 +00003856 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003857 case ISD::ZERO_EXTEND:
3858 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003859 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003860 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003861 case Legal:
3862 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00003863 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00003864 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3865 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00003866 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003867 if (Tmp1.getNode()) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00003868 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003869 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003870 case Promote:
3871 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003872 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003873 Tmp1 = PromoteOp(Node->getOperand(0));
3874 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003875 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003876 case ISD::ZERO_EXTEND:
3877 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003878 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003879 Result = DAG.getZeroExtendInReg(Result,
3880 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003881 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003882 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003883 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003884 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003885 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003886 Result,
3887 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003888 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003889 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003890 }
3891 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003892 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003893 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003894 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003895 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003896
3897 // If this operation is not supported, convert it to a shl/shr or load/store
3898 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003899 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3900 default: assert(0 && "This action not supported for this op yet!");
3901 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003902 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003903 break;
3904 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003905 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003906 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003907 // NOTE: we could fall back on load/store here too for targets without
3908 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003909 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
3910 ExtraVT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003911 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003912 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3913 Node->getOperand(0), ShiftCst);
3914 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3915 Result, ShiftCst);
3916 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003917 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003918 // EXTLOAD pair, targetting a temporary location (a stack slot).
3919
3920 // NOTE: there is a choice here between constantly creating new stack
3921 // slots and always reusing the same one. We currently always create
3922 // new ones, as reuse may inhibit scheduling.
Chris Lattnera66bb392008-01-16 07:51:34 +00003923 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3924 Node->getValueType(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00003925 } else {
3926 assert(0 && "Unknown op");
3927 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003928 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003929 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003930 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003931 }
Duncan Sands36397f52007-07-27 12:58:54 +00003932 case ISD::TRAMPOLINE: {
Dan Gohman475871a2008-07-27 21:46:04 +00003933 SDValue Ops[6];
Duncan Sands36397f52007-07-27 12:58:54 +00003934 for (unsigned i = 0; i != 6; ++i)
3935 Ops[i] = LegalizeOp(Node->getOperand(i));
3936 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3937 // The only option for this node is to custom lower it.
3938 Result = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003939 assert(Result.getNode() && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00003940
3941 // Since trampoline produces two values, make sure to remember that we
3942 // legalized both of them.
3943 Tmp1 = LegalizeOp(Result.getValue(1));
3944 Result = LegalizeOp(Result);
Dan Gohman475871a2008-07-27 21:46:04 +00003945 AddLegalizedOperand(SDValue(Node, 0), Result);
3946 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003947 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00003948 }
Dan Gohman9c78a392008-05-14 00:43:10 +00003949 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003950 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003951 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3952 default: assert(0 && "This action not supported for this op yet!");
3953 case TargetLowering::Custom:
3954 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003955 if (Result.getNode()) break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003956 // Fall Thru
3957 case TargetLowering::Legal:
3958 // If this operation is not supported, lower it to constant 1
3959 Result = DAG.getConstant(1, VT);
3960 break;
3961 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00003962 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003963 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003964 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003965 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003966 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3967 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00003968 case TargetLowering::Legal:
3969 Tmp1 = LegalizeOp(Node->getOperand(0));
3970 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3971 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003972 case TargetLowering::Custom:
3973 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003974 if (Result.getNode()) break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003975 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00003976 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003977 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00003978 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003979 TargetLowering::ArgListTy Args;
Dan Gohman475871a2008-07-27 21:46:04 +00003980 std::pair<SDValue,SDValue> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00003981 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003982 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003983 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Chris Lattner034f12e2008-01-15 22:09:33 +00003984 Args, DAG);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003985 Result = CallResult.second;
3986 break;
3987 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003988 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003989 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00003990 }
Chris Lattner456a93a2006-01-28 07:39:30 +00003991
Chris Lattner4ddd2832006-04-08 04:13:17 +00003992 assert(Result.getValueType() == Op.getValueType() &&
3993 "Bad legalization!");
3994
Chris Lattner456a93a2006-01-28 07:39:30 +00003995 // Make sure that the generated code is itself legal.
3996 if (Result != Op)
3997 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00003998
Chris Lattner45982da2005-05-12 16:53:42 +00003999 // Note that LegalizeOp may be reentered even from single-use nodes, which
4000 // means that we always must cache transformed nodes.
4001 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004002 return Result;
4003}
4004
Chris Lattner8b6fa222005-01-15 22:16:26 +00004005/// PromoteOp - Given an operation that produces a value in an invalid type,
4006/// promote it to compute the value into a larger type. The produced value will
4007/// have the correct bits for the low portion of the register, but no guarantee
4008/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman475871a2008-07-27 21:46:04 +00004009SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004010 MVT VT = Op.getValueType();
4011 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004012 assert(getTypeAction(VT) == Promote &&
4013 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004014 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00004015 "Cannot promote to smaller type!");
4016
Dan Gohman475871a2008-07-27 21:46:04 +00004017 SDValue Tmp1, Tmp2, Tmp3;
4018 SDValue Result;
Gabor Greifba36cb52008-08-28 21:40:38 +00004019 SDNode *Node = Op.getNode();
Chris Lattner03c85462005-01-15 05:21:40 +00004020
Dan Gohman475871a2008-07-27 21:46:04 +00004021 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004022 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004023
Chris Lattner03c85462005-01-15 05:21:40 +00004024 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004025 case ISD::CopyFromReg:
4026 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004027 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004028#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004029 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004030#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004031 assert(0 && "Do not know how to promote this operator!");
4032 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004033 case ISD::UNDEF:
4034 Result = DAG.getNode(ISD::UNDEF, NVT);
4035 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004036 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004037 if (VT != MVT::i1)
4038 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4039 else
4040 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004041 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4042 break;
4043 case ISD::ConstantFP:
4044 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4045 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4046 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004047
Chris Lattner82fbfb62005-01-18 02:59:52 +00004048 case ISD::SETCC:
Scott Michel5b8f82e2008-03-10 15:42:14 +00004049 assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
Nate Begeman5922f562008-03-14 00:53:31 +00004050 && "SetCC type is not legal??");
Scott Michel5b8f82e2008-03-10 15:42:14 +00004051 Result = DAG.getNode(ISD::SETCC,
Nate Begeman5922f562008-03-14 00:53:31 +00004052 TLI.getSetCCResultType(Node->getOperand(0)),
4053 Node->getOperand(0), Node->getOperand(1),
4054 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004055 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00004056
Chris Lattner03c85462005-01-15 05:21:40 +00004057 case ISD::TRUNCATE:
4058 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4059 case Legal:
4060 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004061 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004062 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004063 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Chris Lattner03c85462005-01-15 05:21:40 +00004064 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4065 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004066 case Promote:
4067 // The truncation is not required, because we don't guarantee anything
4068 // about high bits anyway.
4069 Result = PromoteOp(Node->getOperand(0));
4070 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004071 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004072 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4073 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00004074 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004075 }
4076 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004077 case ISD::SIGN_EXTEND:
4078 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004079 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004080 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4081 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4082 case Legal:
4083 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00004084 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004085 break;
4086 case Promote:
4087 // Promote the reg if it's smaller.
4088 Result = PromoteOp(Node->getOperand(0));
4089 // The high bits are not guaranteed to be anything. Insert an extend.
4090 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00004091 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004092 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004093 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00004094 Result = DAG.getZeroExtendInReg(Result,
4095 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004096 break;
4097 }
4098 break;
Chris Lattner35481892005-12-23 00:16:34 +00004099 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004100 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4101 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00004102 Result = PromoteOp(Result);
4103 break;
4104
Chris Lattner8b6fa222005-01-15 22:16:26 +00004105 case ISD::FP_EXTEND:
4106 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4107 case ISD::FP_ROUND:
4108 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4109 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4110 case Promote: assert(0 && "Unreachable with 2 FP types!");
4111 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004112 if (Node->getConstantOperandVal(1) == 0) {
4113 // Input is legal? Do an FP_ROUND_INREG.
4114 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4115 DAG.getValueType(VT));
4116 } else {
4117 // Just remove the truncate, it isn't affecting the value.
4118 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4119 Node->getOperand(1));
4120 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004121 break;
4122 }
4123 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004124 case ISD::SINT_TO_FP:
4125 case ISD::UINT_TO_FP:
4126 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4127 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004128 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00004129 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004130 break;
4131
4132 case Promote:
4133 Result = PromoteOp(Node->getOperand(0));
4134 if (Node->getOpcode() == ISD::SINT_TO_FP)
4135 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004136 Result,
4137 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004138 else
Chris Lattner23993562005-04-13 02:38:47 +00004139 Result = DAG.getZeroExtendInReg(Result,
4140 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004141 // No extra round required here.
4142 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004143 break;
4144 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004145 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4146 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00004147 // Round if we cannot tolerate excess precision.
4148 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004149 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4150 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004151 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004152 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004153 break;
4154
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004155 case ISD::SIGN_EXTEND_INREG:
4156 Result = PromoteOp(Node->getOperand(0));
4157 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4158 Node->getOperand(1));
4159 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004160 case ISD::FP_TO_SINT:
4161 case ISD::FP_TO_UINT:
4162 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4163 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004164 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004165 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004166 break;
4167 case Promote:
4168 // The input result is prerounded, so we don't have to do anything
4169 // special.
4170 Tmp1 = PromoteOp(Node->getOperand(0));
4171 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004172 }
Nate Begemand2558e32005-08-14 01:20:53 +00004173 // If we're promoting a UINT to a larger size, check to see if the new node
4174 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4175 // we can use that instead. This allows us to generate better code for
4176 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4177 // legal, such as PowerPC.
4178 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004179 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004180 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4181 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00004182 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4183 } else {
4184 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4185 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004186 break;
4187
Chris Lattner2c8086f2005-04-02 05:00:07 +00004188 case ISD::FABS:
4189 case ISD::FNEG:
4190 Tmp1 = PromoteOp(Node->getOperand(0));
4191 assert(Tmp1.getValueType() == NVT);
4192 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4193 // NOTE: we do not have to do any extra rounding here for
4194 // NoExcessFPPrecision, because we know the input will have the appropriate
4195 // precision, and these operations don't modify precision at all.
4196 break;
4197
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004198 case ISD::FLOG:
4199 case ISD::FLOG2:
4200 case ISD::FLOG10:
4201 case ISD::FEXP:
4202 case ISD::FEXP2:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004203 case ISD::FSQRT:
4204 case ISD::FSIN:
4205 case ISD::FCOS:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00004206 case ISD::FTRUNC:
4207 case ISD::FFLOOR:
4208 case ISD::FCEIL:
4209 case ISD::FRINT:
4210 case ISD::FNEARBYINT:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004211 Tmp1 = PromoteOp(Node->getOperand(0));
4212 assert(Tmp1.getValueType() == NVT);
4213 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004214 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004215 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4216 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004217 break;
4218
Evan Cheng9d24ac52008-09-09 23:35:53 +00004219 case ISD::FPOW:
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004220 case ISD::FPOWI: {
Evan Cheng9d24ac52008-09-09 23:35:53 +00004221 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004222 // directly as well, which may be better.
4223 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng9d24ac52008-09-09 23:35:53 +00004224 Tmp2 = Node->getOperand(1);
4225 if (Node->getOpcode() == ISD::FPOW)
4226 Tmp2 = PromoteOp(Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004227 assert(Tmp1.getValueType() == NVT);
Evan Cheng9d24ac52008-09-09 23:35:53 +00004228 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004229 if (NoExcessFPPrecision)
4230 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4231 DAG.getValueType(VT));
4232 break;
4233 }
4234
Dale Johannesene00a8a22008-08-28 02:44:49 +00004235 case ISD::ATOMIC_CMP_SWAP_8:
4236 case ISD::ATOMIC_CMP_SWAP_16:
4237 case ISD::ATOMIC_CMP_SWAP_32:
4238 case ISD::ATOMIC_CMP_SWAP_64: {
Mon P Wang28873102008-06-25 08:15:39 +00004239 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004240 Tmp2 = PromoteOp(Node->getOperand(2));
4241 Tmp3 = PromoteOp(Node->getOperand(3));
Mon P Wang28873102008-06-25 08:15:39 +00004242 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4243 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004244 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004245 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004246 // Remember that we legalized the chain.
4247 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4248 break;
4249 }
Dale Johannesene00a8a22008-08-28 02:44:49 +00004250 case ISD::ATOMIC_LOAD_ADD_8:
4251 case ISD::ATOMIC_LOAD_SUB_8:
4252 case ISD::ATOMIC_LOAD_AND_8:
4253 case ISD::ATOMIC_LOAD_OR_8:
4254 case ISD::ATOMIC_LOAD_XOR_8:
4255 case ISD::ATOMIC_LOAD_NAND_8:
4256 case ISD::ATOMIC_LOAD_MIN_8:
4257 case ISD::ATOMIC_LOAD_MAX_8:
4258 case ISD::ATOMIC_LOAD_UMIN_8:
4259 case ISD::ATOMIC_LOAD_UMAX_8:
4260 case ISD::ATOMIC_SWAP_8:
4261 case ISD::ATOMIC_LOAD_ADD_16:
4262 case ISD::ATOMIC_LOAD_SUB_16:
4263 case ISD::ATOMIC_LOAD_AND_16:
4264 case ISD::ATOMIC_LOAD_OR_16:
4265 case ISD::ATOMIC_LOAD_XOR_16:
4266 case ISD::ATOMIC_LOAD_NAND_16:
4267 case ISD::ATOMIC_LOAD_MIN_16:
4268 case ISD::ATOMIC_LOAD_MAX_16:
4269 case ISD::ATOMIC_LOAD_UMIN_16:
4270 case ISD::ATOMIC_LOAD_UMAX_16:
4271 case ISD::ATOMIC_SWAP_16:
4272 case ISD::ATOMIC_LOAD_ADD_32:
4273 case ISD::ATOMIC_LOAD_SUB_32:
4274 case ISD::ATOMIC_LOAD_AND_32:
4275 case ISD::ATOMIC_LOAD_OR_32:
4276 case ISD::ATOMIC_LOAD_XOR_32:
4277 case ISD::ATOMIC_LOAD_NAND_32:
4278 case ISD::ATOMIC_LOAD_MIN_32:
4279 case ISD::ATOMIC_LOAD_MAX_32:
4280 case ISD::ATOMIC_LOAD_UMIN_32:
4281 case ISD::ATOMIC_LOAD_UMAX_32:
4282 case ISD::ATOMIC_SWAP_32:
4283 case ISD::ATOMIC_LOAD_ADD_64:
4284 case ISD::ATOMIC_LOAD_SUB_64:
4285 case ISD::ATOMIC_LOAD_AND_64:
4286 case ISD::ATOMIC_LOAD_OR_64:
4287 case ISD::ATOMIC_LOAD_XOR_64:
4288 case ISD::ATOMIC_LOAD_NAND_64:
4289 case ISD::ATOMIC_LOAD_MIN_64:
4290 case ISD::ATOMIC_LOAD_MAX_64:
4291 case ISD::ATOMIC_LOAD_UMIN_64:
4292 case ISD::ATOMIC_LOAD_UMAX_64:
4293 case ISD::ATOMIC_SWAP_64: {
Mon P Wang28873102008-06-25 08:15:39 +00004294 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004295 Tmp2 = PromoteOp(Node->getOperand(2));
Mon P Wang28873102008-06-25 08:15:39 +00004296 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4297 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004298 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004299 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004300 // Remember that we legalized the chain.
4301 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4302 break;
4303 }
4304
Chris Lattner03c85462005-01-15 05:21:40 +00004305 case ISD::AND:
4306 case ISD::OR:
4307 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004308 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004309 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004310 case ISD::MUL:
4311 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004312 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004313 // that too is okay if they are integer operations.
4314 Tmp1 = PromoteOp(Node->getOperand(0));
4315 Tmp2 = PromoteOp(Node->getOperand(1));
4316 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4317 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004318 break;
4319 case ISD::FADD:
4320 case ISD::FSUB:
4321 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004322 Tmp1 = PromoteOp(Node->getOperand(0));
4323 Tmp2 = PromoteOp(Node->getOperand(1));
4324 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4325 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4326
4327 // Floating point operations will give excess precision that we may not be
4328 // able to tolerate. If we DO allow excess precision, just leave it,
4329 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004330 // FIXME: Why would we need to round FP ops more than integer ones?
4331 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004332 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004333 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4334 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004335 break;
4336
Chris Lattner8b6fa222005-01-15 22:16:26 +00004337 case ISD::SDIV:
4338 case ISD::SREM:
4339 // These operators require that their input be sign extended.
4340 Tmp1 = PromoteOp(Node->getOperand(0));
4341 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004342 if (NVT.isInteger()) {
Chris Lattner15e4b012005-07-10 00:07:11 +00004343 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4344 DAG.getValueType(VT));
4345 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4346 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004347 }
4348 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4349
4350 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004351 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004352 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4353 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004354 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004355 case ISD::FDIV:
4356 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004357 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004358 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004359 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004360 case Expand: assert(0 && "not implemented");
4361 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4362 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004363 }
4364 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004365 case Expand: assert(0 && "not implemented");
4366 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4367 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004368 }
Chris Lattner01b3d732005-09-28 22:28:18 +00004369 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4370
4371 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004372 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00004373 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4374 DAG.getValueType(VT));
4375 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004376
4377 case ISD::UDIV:
4378 case ISD::UREM:
4379 // These operators require that their input be zero extended.
4380 Tmp1 = PromoteOp(Node->getOperand(0));
4381 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004382 assert(NVT.isInteger() && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00004383 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4384 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004385 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4386 break;
4387
4388 case ISD::SHL:
4389 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00004390 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004391 break;
4392 case ISD::SRA:
4393 // The input value must be properly sign extended.
4394 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00004395 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4396 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00004397 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004398 break;
4399 case ISD::SRL:
4400 // The input value must be properly zero extended.
4401 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00004402 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004403 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004404 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004405
4406 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004407 Tmp1 = Node->getOperand(0); // Get the chain.
4408 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004409 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4410 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004411 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004412 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004413 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman475871a2008-07-27 21:46:04 +00004414 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004415 // Increment the pointer, VAList, to the next vaarg
4416 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004417 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004418 TLI.getPointerTy()));
4419 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00004420 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004421 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004422 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004423 }
4424 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004425 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004426 break;
4427
Evan Cheng466685d2006-10-09 20:57:25 +00004428 case ISD::LOAD: {
4429 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004430 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4431 ? ISD::EXTLOAD : LD->getExtensionType();
4432 Result = DAG.getExtLoad(ExtType, NVT,
4433 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004434 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004435 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004436 LD->isVolatile(),
4437 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004438 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004439 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004440 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004441 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004442 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004443 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4444 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004445
Duncan Sands83ec4b62008-06-06 12:08:01 +00004446 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004447 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004448 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4449 // Ensure that the resulting node is at least the same size as the operands'
4450 // value types, because we cannot assume that TLI.getSetCCValueType() is
4451 // constant.
4452 Result = DAG.getNode(ISD::SELECT, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004453 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004454 }
Nate Begeman9373a812005-08-10 20:51:12 +00004455 case ISD::SELECT_CC:
4456 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4457 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4458 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004459 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004460 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004461 case ISD::BSWAP:
4462 Tmp1 = Node->getOperand(0);
4463 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4464 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4465 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004466 DAG.getConstant(NVT.getSizeInBits() -
4467 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004468 TLI.getShiftAmountTy()));
4469 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004470 case ISD::CTPOP:
4471 case ISD::CTTZ:
4472 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004473 // Zero extend the argument
4474 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004475 // Perform the larger operation, then subtract if needed.
4476 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004477 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004478 case ISD::CTPOP:
4479 Result = Tmp1;
4480 break;
4481 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004482 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004483 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004484 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004485 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004486 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004487 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004488 break;
4489 case ISD::CTLZ:
4490 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004491 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004492 DAG.getConstant(NVT.getSizeInBits() -
4493 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004494 break;
4495 }
4496 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004497 case ISD::EXTRACT_SUBVECTOR:
4498 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004499 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004500 case ISD::EXTRACT_VECTOR_ELT:
4501 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4502 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004503 }
4504
Gabor Greifba36cb52008-08-28 21:40:38 +00004505 assert(Result.getNode() && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004506
4507 // Make sure the result is itself legal.
4508 Result = LegalizeOp(Result);
4509
4510 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004511 AddPromotedOperand(Op, Result);
4512 return Result;
4513}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004514
Dan Gohman7f321562007-06-25 16:23:39 +00004515/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4516/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4517/// based on the vector type. The return type of this matches the element type
4518/// of the vector, which may not be legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00004519SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004520 // We know that operand #0 is the Vec vector. If the index is a constant
4521 // or if the invec is a supported hardware type, we can use it. Otherwise,
4522 // lower to a store then an indexed load.
Dan Gohman475871a2008-07-27 21:46:04 +00004523 SDValue Vec = Op.getOperand(0);
4524 SDValue Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00004525
Duncan Sands83ec4b62008-06-06 12:08:01 +00004526 MVT TVT = Vec.getValueType();
4527 unsigned NumElems = TVT.getVectorNumElements();
Chris Lattner15972212006-03-31 17:55:51 +00004528
Dan Gohman7f321562007-06-25 16:23:39 +00004529 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4530 default: assert(0 && "This action is not supported yet!");
4531 case TargetLowering::Custom: {
4532 Vec = LegalizeOp(Vec);
4533 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004534 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004535 if (Tmp3.getNode())
Dan Gohman7f321562007-06-25 16:23:39 +00004536 return Tmp3;
4537 break;
4538 }
4539 case TargetLowering::Legal:
4540 if (isTypeLegal(TVT)) {
4541 Vec = LegalizeOp(Vec);
4542 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004543 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004544 }
4545 break;
4546 case TargetLowering::Expand:
4547 break;
4548 }
4549
4550 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004551 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004552 Op = ScalarizeVectorOp(Vec);
4553 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00004554 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00004555 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004556 SDValue Lo, Hi;
Chris Lattner15972212006-03-31 17:55:51 +00004557 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004558 if (CIdx->getZExtValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00004559 Vec = Lo;
4560 } else {
4561 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004562 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00004563 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00004564 }
Dan Gohman7f321562007-06-25 16:23:39 +00004565
Chris Lattner15972212006-03-31 17:55:51 +00004566 // It's now an extract from the appropriate high or low part. Recurse.
4567 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004568 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00004569 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004570 // Store the value to a temporary stack slot, then LOAD the scalar
4571 // element back out.
Dan Gohman475871a2008-07-27 21:46:04 +00004572 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
4573 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
Dan Gohman7f321562007-06-25 16:23:39 +00004574
4575 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004576 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dan Gohman7f321562007-06-25 16:23:39 +00004577 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4578 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004579
Duncan Sands8e4eb092008-06-08 20:54:56 +00004580 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Chris Lattnerf185e672007-10-19 16:47:35 +00004581 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004582 else
Chris Lattnerf185e672007-10-19 16:47:35 +00004583 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004584
Dan Gohman7f321562007-06-25 16:23:39 +00004585 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4586
4587 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00004588 }
Dan Gohman7f321562007-06-25 16:23:39 +00004589 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00004590}
4591
Dan Gohman7f321562007-06-25 16:23:39 +00004592/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00004593/// we assume the operation can be split if it is not already legal.
Dan Gohman475871a2008-07-27 21:46:04 +00004594SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohman65956352007-06-13 15:12:02 +00004595 // We know that operand #0 is the Vec vector. For now we assume the index
4596 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman475871a2008-07-27 21:46:04 +00004597 SDValue Vec = Op.getOperand(0);
4598 SDValue Idx = LegalizeOp(Op.getOperand(1));
Dan Gohman65956352007-06-13 15:12:02 +00004599
Duncan Sands83ec4b62008-06-06 12:08:01 +00004600 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Dan Gohman65956352007-06-13 15:12:02 +00004601
Duncan Sands83ec4b62008-06-06 12:08:01 +00004602 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00004603 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004604 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00004605 }
4606
4607 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004608 SDValue Lo, Hi;
Dan Gohman65956352007-06-13 15:12:02 +00004609 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004610 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohman65956352007-06-13 15:12:02 +00004611 Vec = Lo;
4612 } else {
4613 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004614 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
4615 Idx.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00004616 }
4617
4618 // It's now an extract from the appropriate high or low part. Recurse.
4619 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004620 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00004621}
4622
Nate Begeman750ac1b2006-02-01 07:19:44 +00004623/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4624/// with condition CC on the current target. This usually involves legalizing
4625/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4626/// there may be no choice but to create a new SetCC node to represent the
4627/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman475871a2008-07-27 21:46:04 +00004628/// LHS, and the SDValue returned in RHS has a nil SDNode value.
4629void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
4630 SDValue &RHS,
4631 SDValue &CC) {
4632 SDValue Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004633
4634 switch (getTypeAction(LHS.getValueType())) {
4635 case Legal:
4636 Tmp1 = LegalizeOp(LHS); // LHS
4637 Tmp2 = LegalizeOp(RHS); // RHS
4638 break;
4639 case Promote:
4640 Tmp1 = PromoteOp(LHS); // LHS
4641 Tmp2 = PromoteOp(RHS); // RHS
4642
4643 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004644 if (LHS.getValueType().isInteger()) {
4645 MVT VT = LHS.getValueType();
4646 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00004647
4648 // Otherwise, we have to insert explicit sign or zero extends. Note
4649 // that we could insert sign extends for ALL conditions, but zero extend
4650 // is cheaper on many machines (an AND instead of two shifts), so prefer
4651 // it.
4652 switch (cast<CondCodeSDNode>(CC)->get()) {
4653 default: assert(0 && "Unknown integer comparison!");
4654 case ISD::SETEQ:
4655 case ISD::SETNE:
4656 case ISD::SETUGE:
4657 case ISD::SETUGT:
4658 case ISD::SETULE:
4659 case ISD::SETULT:
4660 // ALL of these operations will work if we either sign or zero extend
4661 // the operands (including the unsigned comparisons!). Zero extend is
4662 // usually a simpler/cheaper operation, so prefer it.
4663 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4664 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4665 break;
4666 case ISD::SETGE:
4667 case ISD::SETGT:
4668 case ISD::SETLT:
4669 case ISD::SETLE:
4670 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4671 DAG.getValueType(VT));
4672 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4673 DAG.getValueType(VT));
4674 break;
4675 }
4676 }
4677 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004678 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004679 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00004680 if (VT == MVT::f32 || VT == MVT::f64) {
4681 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00004682 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00004683 switch (cast<CondCodeSDNode>(CC)->get()) {
4684 case ISD::SETEQ:
4685 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00004686 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004687 break;
4688 case ISD::SETNE:
4689 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00004690 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004691 break;
4692 case ISD::SETGE:
4693 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00004694 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004695 break;
4696 case ISD::SETLT:
4697 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00004698 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004699 break;
4700 case ISD::SETLE:
4701 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00004702 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004703 break;
4704 case ISD::SETGT:
4705 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00004706 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004707 break;
4708 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00004709 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4710 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004711 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00004712 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004713 break;
4714 default:
Evan Cheng56966222007-01-12 02:11:51 +00004715 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004716 switch (cast<CondCodeSDNode>(CC)->get()) {
4717 case ISD::SETONE:
4718 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004719 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004720 // Fallthrough
4721 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004722 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004723 break;
4724 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004725 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004726 break;
4727 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004728 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004729 break;
4730 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004731 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004732 break;
Evan Cheng56966222007-01-12 02:11:51 +00004733 case ISD::SETUEQ:
4734 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004735 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004736 default: assert(0 && "Unsupported FP setcc!");
4737 }
4738 }
Duncan Sandsf9516202008-06-30 10:19:09 +00004739
Dan Gohman475871a2008-07-27 21:46:04 +00004740 SDValue Dummy;
4741 SDValue Ops[2] = { LHS, RHS };
Gabor Greifba36cb52008-08-28 21:40:38 +00004742 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00004743 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004744 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004745 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004746 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004747 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00004748 CC);
Gabor Greifba36cb52008-08-28 21:40:38 +00004749 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00004750 false /*sign irrelevant*/, Dummy);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004751 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004752 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004753 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman475871a2008-07-27 21:46:04 +00004754 Tmp2 = SDValue();
Evan Cheng2b49c502006-12-15 02:59:56 +00004755 }
Evan Cheng21cacc42008-07-07 07:18:09 +00004756 LHS = LegalizeOp(Tmp1);
Evan Cheng2b49c502006-12-15 02:59:56 +00004757 RHS = Tmp2;
4758 return;
4759 }
4760
Dan Gohman475871a2008-07-27 21:46:04 +00004761 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004762 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004763 ExpandOp(RHS, RHSLo, RHSHi);
4764 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4765
4766 if (VT==MVT::ppcf128) {
4767 // FIXME: This generated code sucks. We want to generate
Dale Johannesene2f20832008-09-12 00:30:56 +00004768 // FCMPU crN, hi1, hi2
Dale Johannesen638ccd52007-10-06 01:24:11 +00004769 // BNE crN, L:
Dale Johannesene2f20832008-09-12 00:30:56 +00004770 // FCMPU crN, lo1, lo2
Dale Johannesen638ccd52007-10-06 01:24:11 +00004771 // The following can be improved, but not that much.
Dale Johannesene2f20832008-09-12 00:30:56 +00004772 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
4773 ISD::SETOEQ);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004774 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004775 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
Dale Johannesene2f20832008-09-12 00:30:56 +00004776 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
4777 ISD::SETUNE);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004778 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004779 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4780 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman475871a2008-07-27 21:46:04 +00004781 Tmp2 = SDValue();
Dale Johannesen638ccd52007-10-06 01:24:11 +00004782 break;
4783 }
4784
4785 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004786 case ISD::SETEQ:
4787 case ISD::SETNE:
4788 if (RHSLo == RHSHi)
4789 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4790 if (RHSCST->isAllOnesValue()) {
4791 // Comparison to -1.
4792 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4793 Tmp2 = RHSLo;
4794 break;
4795 }
4796
4797 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4798 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4799 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4800 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4801 break;
4802 default:
4803 // If this is a comparison of the sign bit, just look at the top part.
4804 // X > -1, x < 0
4805 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4806 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004807 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00004808 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4809 CST->isAllOnesValue())) { // X > -1
4810 Tmp1 = LHSHi;
4811 Tmp2 = RHSHi;
4812 break;
4813 }
4814
4815 // FIXME: This generated code sucks.
4816 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004817 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004818 default: assert(0 && "Unknown integer setcc!");
4819 case ISD::SETLT:
4820 case ISD::SETULT: LowCC = ISD::SETULT; break;
4821 case ISD::SETGT:
4822 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4823 case ISD::SETLE:
4824 case ISD::SETULE: LowCC = ISD::SETULE; break;
4825 case ISD::SETGE:
4826 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4827 }
4828
4829 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4830 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4831 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4832
4833 // NOTE: on targets without efficient SELECT of bools, we can always use
4834 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004835 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004836 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
Nate Begeman5922f562008-03-14 00:53:31 +00004837 LowCC, false, DagCombineInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00004838 if (!Tmp1.getNode())
Scott Michel5b8f82e2008-03-10 15:42:14 +00004839 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4840 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004841 CCCode, false, DagCombineInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00004842 if (!Tmp2.getNode())
Scott Michel5b8f82e2008-03-10 15:42:14 +00004843 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004844 RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00004845
Gabor Greifba36cb52008-08-28 21:40:38 +00004846 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
4847 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman002e5d02008-03-13 22:13:53 +00004848 if ((Tmp1C && Tmp1C->isNullValue()) ||
4849 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00004850 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4851 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00004852 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00004853 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4854 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4855 // low part is known false, returns high part.
4856 // For LE / GE, if high part is known false, ignore the low part.
4857 // For LT / GT, if high part is known true, ignore the low part.
4858 Tmp1 = Tmp2;
Dan Gohman475871a2008-07-27 21:46:04 +00004859 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00004860 } else {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004861 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004862 ISD::SETEQ, false, DagCombineInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00004863 if (!Result.getNode())
Scott Michel5b8f82e2008-03-10 15:42:14 +00004864 Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004865 ISD::SETEQ);
Evan Cheng2e677812007-02-08 22:16:19 +00004866 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4867 Result, Tmp1, Tmp2));
4868 Tmp1 = Result;
Dan Gohman475871a2008-07-27 21:46:04 +00004869 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00004870 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004871 }
4872 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004873 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004874 LHS = Tmp1;
4875 RHS = Tmp2;
4876}
4877
Chris Lattner1401d152008-01-16 07:45:30 +00004878/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4879/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4880/// a load from the stack slot to DestVT, extending it if needed.
4881/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00004882SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
4883 MVT SlotVT,
4884 MVT DestVT) {
Chris Lattner35481892005-12-23 00:16:34 +00004885 // Create the stack frame object.
Mon P Wang364d73d2008-07-05 20:40:31 +00004886 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
4887 SrcOp.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00004888 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Mon P Wang364d73d2008-07-05 20:40:31 +00004889
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004890 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004891 int SPFI = StackPtrFI->getIndex();
Mon P Wang364d73d2008-07-05 20:40:31 +00004892
Duncan Sands83ec4b62008-06-06 12:08:01 +00004893 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
4894 unsigned SlotSize = SlotVT.getSizeInBits();
4895 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang364d73d2008-07-05 20:40:31 +00004896 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
4897 DestVT.getTypeForMVT());
Chris Lattner35481892005-12-23 00:16:34 +00004898
Chris Lattner1401d152008-01-16 07:45:30 +00004899 // Emit a store to the stack slot. Use a truncstore if the input value is
4900 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00004901 SDValue Store;
Mon P Wang364d73d2008-07-05 20:40:31 +00004902
Chris Lattner1401d152008-01-16 07:45:30 +00004903 if (SrcSize > SlotSize)
Dan Gohman69de1932008-02-06 22:27:42 +00004904 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004905 PseudoSourceValue::getFixedStack(SPFI), 0,
4906 SlotVT, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004907 else {
4908 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman69de1932008-02-06 22:27:42 +00004909 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004910 PseudoSourceValue::getFixedStack(SPFI), 0,
Mon P Wang364d73d2008-07-05 20:40:31 +00004911 false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004912 }
4913
Chris Lattner35481892005-12-23 00:16:34 +00004914 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00004915 if (SlotSize == DestSize)
Mon P Wang364d73d2008-07-05 20:40:31 +00004916 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0, false, DestAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004917
4918 assert(SlotSize < DestSize && "Unknown extension!");
Mon P Wang364d73d2008-07-05 20:40:31 +00004919 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT,
4920 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00004921}
4922
Dan Gohman475871a2008-07-27 21:46:04 +00004923SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Chris Lattner4352cc92006-04-04 17:23:26 +00004924 // Create a vector sized/aligned stack slot, store the value to element #0,
4925 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00004926 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00004927
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004928 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004929 int SPFI = StackPtrFI->getIndex();
4930
Dan Gohman475871a2008-07-27 21:46:04 +00004931 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004932 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohman69de1932008-02-06 22:27:42 +00004933 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004934 PseudoSourceValue::getFixedStack(SPFI), 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00004935}
4936
4937
Chris Lattnerce872152006-03-19 06:31:19 +00004938/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004939/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00004940SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Chris Lattnerce872152006-03-19 06:31:19 +00004941
4942 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004943 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004944 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004945 bool isOnlyLowElement = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004946 SDValue SplatValue = Node->getOperand(0);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004947
Dan Gohman475871a2008-07-27 21:46:04 +00004948 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004949 // and use a bitmask instead of a list of elements.
Dan Gohman475871a2008-07-27 21:46:04 +00004950 std::map<SDValue, std::vector<unsigned> > Values;
Evan Cheng033e6812006-03-24 01:17:21 +00004951 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004952 bool isConstant = true;
4953 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4954 SplatValue.getOpcode() != ISD::UNDEF)
4955 isConstant = false;
4956
Evan Cheng033e6812006-03-24 01:17:21 +00004957 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004958 SDValue V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004959 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004960 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004961 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004962 if (SplatValue != V)
Dan Gohman475871a2008-07-27 21:46:04 +00004963 SplatValue = SDValue(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004964
4965 // If this isn't a constant element or an undef, we can't use a constant
4966 // pool load.
4967 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4968 V.getOpcode() != ISD::UNDEF)
4969 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004970 }
4971
4972 if (isOnlyLowElement) {
4973 // If the low element is an undef too, then this whole things is an undef.
4974 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4975 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4976 // Otherwise, turn this into a scalar_to_vector node.
4977 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4978 Node->getOperand(0));
4979 }
4980
Chris Lattner2eb86532006-03-24 07:29:17 +00004981 // If all elements are constants, create a load from the constant pool.
4982 if (isConstant) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004983 MVT VT = Node->getValueType(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004984 std::vector<Constant*> CV;
4985 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4986 if (ConstantFPSDNode *V =
4987 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00004988 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004989 } else if (ConstantSDNode *V =
Chris Lattner02a260a2008-04-20 00:41:09 +00004990 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00004991 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004992 } else {
4993 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner02a260a2008-04-20 00:41:09 +00004994 const Type *OpNTy =
Duncan Sands83ec4b62008-06-06 12:08:01 +00004995 Node->getOperand(0).getValueType().getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00004996 CV.push_back(UndefValue::get(OpNTy));
4997 }
4998 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00004999 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00005000 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00005001 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman69de1932008-02-06 22:27:42 +00005002 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005003 PseudoSourceValue::getConstantPool(), 0,
5004 false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00005005 }
5006
Gabor Greifba36cb52008-08-28 21:40:38 +00005007 if (SplatValue.getNode()) { // Splat of one value?
Chris Lattner87100e02006-03-20 01:52:29 +00005008 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005009 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman475871a2008-07-27 21:46:04 +00005010 SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
5011 std::vector<SDValue> ZeroVec(NumElems, Zero);
5012 SDValue SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005013 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00005014
5015 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005016 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00005017 // Get the splatted value into the low element of a vector register.
Dan Gohman475871a2008-07-27 21:46:04 +00005018 SDValue LowValVec =
Chris Lattner87100e02006-03-20 01:52:29 +00005019 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
5020
5021 // Return shuffle(LowValVec, undef, <0,0,0,0>)
5022 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
5023 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
5024 SplatMask);
5025 }
5026 }
5027
Evan Cheng033e6812006-03-24 01:17:21 +00005028 // If there are only two unique elements, we may be able to turn this into a
5029 // vector shuffle.
5030 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005031 // Get the two values in deterministic order.
Dan Gohman475871a2008-07-27 21:46:04 +00005032 SDValue Val1 = Node->getOperand(1);
5033 SDValue Val2;
5034 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005035 if (MI->first != Val1)
5036 Val2 = MI->first;
5037 else
5038 Val2 = (++MI)->first;
5039
5040 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
5041 // vector shuffle has the undef vector on the RHS.
5042 if (Val1.getOpcode() == ISD::UNDEF)
5043 std::swap(Val1, Val2);
5044
Evan Cheng033e6812006-03-24 01:17:21 +00005045 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005046 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5047 MVT MaskEltVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00005048 std::vector<SDValue> MaskVec(NumElems);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005049
5050 // Set elements of the shuffle mask for Val1.
5051 std::vector<unsigned> &Val1Elts = Values[Val1];
5052 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5053 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5054
5055 // Set elements of the shuffle mask for Val2.
5056 std::vector<unsigned> &Val2Elts = Values[Val2];
5057 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5058 if (Val2.getOpcode() != ISD::UNDEF)
5059 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5060 else
5061 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
5062
Dan Gohman475871a2008-07-27 21:46:04 +00005063 SDValue ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005064 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00005065
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005066 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005067 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
5068 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005069 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
5070 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
Dan Gohman475871a2008-07-27 21:46:04 +00005071 SDValue Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng033e6812006-03-24 01:17:21 +00005072
5073 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005074 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Evan Cheng033e6812006-03-24 01:17:21 +00005075 }
5076 }
Chris Lattnerce872152006-03-19 06:31:19 +00005077
5078 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5079 // aligned object on the stack, store each element into it, then load
5080 // the result as a vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005081 MVT VT = Node->getValueType(0);
Chris Lattnerce872152006-03-19 06:31:19 +00005082 // Create the stack frame object.
Dan Gohman475871a2008-07-27 21:46:04 +00005083 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005084
5085 // Emit a store of each element to the stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00005086 SmallVector<SDValue, 8> Stores;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005087 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Chris Lattnerce872152006-03-19 06:31:19 +00005088 // Store (in the right endianness) the elements to memory.
5089 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5090 // Ignore undef elements.
5091 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5092
Chris Lattner841c8822006-03-22 01:46:54 +00005093 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00005094
Dan Gohman475871a2008-07-27 21:46:04 +00005095 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Chris Lattnerce872152006-03-19 06:31:19 +00005096 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5097
Evan Cheng786225a2006-10-05 23:01:46 +00005098 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00005099 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00005100 }
5101
Dan Gohman475871a2008-07-27 21:46:04 +00005102 SDValue StoreChain;
Chris Lattnerce872152006-03-19 06:31:19 +00005103 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005104 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5105 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005106 else
5107 StoreChain = DAG.getEntryNode();
5108
5109 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00005110 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005111}
5112
Chris Lattner5b359c62005-04-02 04:00:59 +00005113void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman475871a2008-07-27 21:46:04 +00005114 SDValue Op, SDValue Amt,
5115 SDValue &Lo, SDValue &Hi) {
Chris Lattner5b359c62005-04-02 04:00:59 +00005116 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00005117 SDValue LHSL, LHSH;
Chris Lattner5b359c62005-04-02 04:00:59 +00005118 ExpandOp(Op, LHSL, LHSH);
5119
Dan Gohman475871a2008-07-27 21:46:04 +00005120 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005121 MVT VT = LHSL.getValueType();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00005122 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005123 Hi = Lo.getValue(1);
5124}
5125
5126
Chris Lattnere34b3962005-01-19 04:19:40 +00005127/// ExpandShift - Try to find a clever way to expand this shift operation out to
5128/// smaller elements. If we can't find a way that is more efficient than a
5129/// libcall on this target, return false. Otherwise, return true with the
5130/// low-parts expanded into Lo and Hi.
Dan Gohman475871a2008-07-27 21:46:04 +00005131bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op,SDValue Amt,
5132 SDValue &Lo, SDValue &Hi) {
Chris Lattnere34b3962005-01-19 04:19:40 +00005133 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5134 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005135
Duncan Sands83ec4b62008-06-06 12:08:01 +00005136 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman475871a2008-07-27 21:46:04 +00005137 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005138 MVT ShTy = ShAmt.getValueType();
5139 unsigned ShBits = ShTy.getSizeInBits();
5140 unsigned VTBits = Op.getValueType().getSizeInBits();
5141 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005142
Chris Lattner7a3c8552007-10-14 20:35:12 +00005143 // Handle the case when Amt is an immediate.
Gabor Greifba36cb52008-08-28 21:40:38 +00005144 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005145 unsigned Cst = CN->getZExtValue();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005146 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005147 SDValue InL, InH;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005148 ExpandOp(Op, InL, InH);
5149 switch(Opc) {
5150 case ISD::SHL:
5151 if (Cst > VTBits) {
5152 Lo = DAG.getConstant(0, NVT);
5153 Hi = DAG.getConstant(0, NVT);
5154 } else if (Cst > NVTBits) {
5155 Lo = DAG.getConstant(0, NVT);
5156 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005157 } else if (Cst == NVTBits) {
5158 Lo = DAG.getConstant(0, NVT);
5159 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005160 } else {
5161 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5162 Hi = DAG.getNode(ISD::OR, NVT,
5163 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5164 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5165 }
5166 return true;
5167 case ISD::SRL:
5168 if (Cst > VTBits) {
5169 Lo = DAG.getConstant(0, NVT);
5170 Hi = DAG.getConstant(0, NVT);
5171 } else if (Cst > NVTBits) {
5172 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5173 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005174 } else if (Cst == NVTBits) {
5175 Lo = InH;
5176 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005177 } else {
5178 Lo = DAG.getNode(ISD::OR, NVT,
5179 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5180 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5181 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5182 }
5183 return true;
5184 case ISD::SRA:
5185 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005186 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005187 DAG.getConstant(NVTBits-1, ShTy));
5188 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005189 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005190 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005191 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005192 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005193 } else if (Cst == NVTBits) {
5194 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00005195 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005196 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005197 } else {
5198 Lo = DAG.getNode(ISD::OR, NVT,
5199 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5200 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5201 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5202 }
5203 return true;
5204 }
5205 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005206
5207 // Okay, the shift amount isn't constant. However, if we can tell that it is
5208 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005209 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5210 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005211 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005212
Dan Gohman9e255b72008-02-22 01:12:31 +00005213 // If we know that if any of the high bits of the shift amount are one, then
5214 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005215 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005216 // Mask out the high bit, which we know is set.
5217 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005218 DAG.getConstant(~Mask, Amt.getValueType()));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005219
5220 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005221 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005222 ExpandOp(Op, InL, InH);
5223 switch(Opc) {
5224 case ISD::SHL:
5225 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5226 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5227 return true;
5228 case ISD::SRL:
5229 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5230 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5231 return true;
5232 case ISD::SRA:
5233 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5234 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5235 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5236 return true;
5237 }
5238 }
5239
Dan Gohman9e255b72008-02-22 01:12:31 +00005240 // If we know that the high bits of the shift amount are all zero, then we can
5241 // do this as a couple of simple shifts.
5242 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005243 // Compute 32-amt.
Dan Gohman475871a2008-07-27 21:46:04 +00005244 SDValue Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005245 DAG.getConstant(NVTBits, Amt.getValueType()),
5246 Amt);
5247
5248 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005249 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005250 ExpandOp(Op, InL, InH);
5251 switch(Opc) {
5252 case ISD::SHL:
5253 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5254 Hi = DAG.getNode(ISD::OR, NVT,
5255 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5256 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5257 return true;
5258 case ISD::SRL:
5259 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5260 Lo = DAG.getNode(ISD::OR, NVT,
5261 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5262 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5263 return true;
5264 case ISD::SRA:
5265 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5266 Lo = DAG.getNode(ISD::OR, NVT,
5267 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5268 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5269 return true;
5270 }
5271 }
5272
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005273 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005274}
Chris Lattner77e77a62005-01-21 06:05:23 +00005275
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005276
Chris Lattner77e77a62005-01-21 06:05:23 +00005277// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5278// does not fit into a register, return the lo part and set the hi part to the
5279// by-reg argument. If it does fit into a single register, return the result
5280// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00005281SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5282 bool isSigned, SDValue &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005283 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5284 // The input chain to this libcall is the entry node of the function.
5285 // Legalizing the call will automatically add the previous call to the
5286 // dependence.
Dan Gohman475871a2008-07-27 21:46:04 +00005287 SDValue InChain = DAG.getEntryNode();
Chris Lattner6831a812006-02-13 09:18:02 +00005288
Chris Lattner77e77a62005-01-21 06:05:23 +00005289 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005290 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005291 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005292 MVT ArgVT = Node->getOperand(i).getValueType();
5293 const Type *ArgTy = ArgVT.getTypeForMVT();
Reid Spencer47857812006-12-31 05:55:36 +00005294 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005295 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005296 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005297 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005298 }
Bill Wendling056292f2008-09-16 21:48:12 +00005299 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
5300 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005301
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005302 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005303 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Dan Gohman475871a2008-07-27 21:46:04 +00005304 std::pair<SDValue,SDValue> CallInfo =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005305 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
5306 CallingConv::C, false, Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005307
Chris Lattner6831a812006-02-13 09:18:02 +00005308 // Legalize the call sequence, starting with the chain. This will advance
5309 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5310 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5311 LegalizeOp(CallInfo.second);
Dan Gohman475871a2008-07-27 21:46:04 +00005312 SDValue Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005313 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005314 default: assert(0 && "Unknown thing");
5315 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005316 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005317 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005318 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005319 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005320 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005321 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005322 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005323}
5324
Dan Gohman7f8613e2008-08-14 20:04:46 +00005325/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5326///
5327SDValue SelectionDAGLegalize::
5328LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op) {
5329 bool isCustom = false;
5330 SDValue Tmp1;
5331 switch (getTypeAction(Op.getValueType())) {
5332 case Legal:
5333 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5334 Op.getValueType())) {
5335 default: assert(0 && "Unknown operation action!");
5336 case TargetLowering::Custom:
5337 isCustom = true;
5338 // FALLTHROUGH
5339 case TargetLowering::Legal:
5340 Tmp1 = LegalizeOp(Op);
Gabor Greifba36cb52008-08-28 21:40:38 +00005341 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005342 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5343 else
5344 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5345 DestTy, Tmp1);
5346 if (isCustom) {
5347 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005348 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005349 }
5350 break;
5351 case TargetLowering::Expand:
5352 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy);
5353 break;
5354 case TargetLowering::Promote:
5355 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned);
5356 break;
5357 }
5358 break;
5359 case Expand:
5360 Result = ExpandIntToFP(isSigned, DestTy, Op);
5361 break;
5362 case Promote:
5363 Tmp1 = PromoteOp(Op);
5364 if (isSigned) {
5365 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
5366 Tmp1, DAG.getValueType(Op.getValueType()));
5367 } else {
5368 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
5369 Op.getValueType());
5370 }
Gabor Greifba36cb52008-08-28 21:40:38 +00005371 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005372 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5373 else
5374 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5375 DestTy, Tmp1);
5376 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5377 break;
5378 }
5379 return Result;
5380}
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005381
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005382/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5383///
Dan Gohman475871a2008-07-27 21:46:04 +00005384SDValue SelectionDAGLegalize::
5385ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005386 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005387 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005388
Dan Gohman7f8613e2008-08-14 20:04:46 +00005389 // Expand unsupported int-to-fp vector casts by unrolling them.
5390 if (DestTy.isVector()) {
5391 if (!ExpandSource)
5392 return LegalizeOp(UnrollVectorOp(Source));
5393 MVT DestEltTy = DestTy.getVectorElementType();
5394 if (DestTy.getVectorNumElements() == 1) {
5395 SDValue Scalar = ScalarizeVectorOp(Source);
5396 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
5397 DestEltTy, Scalar);
5398 return DAG.getNode(ISD::BUILD_VECTOR, DestTy, Result);
5399 }
5400 SDValue Lo, Hi;
5401 SplitVectorOp(Source, Lo, Hi);
5402 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5403 DestTy.getVectorNumElements() / 2);
5404 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Lo);
5405 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Hi);
5406 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, DestTy, LoResult, HiResult));
5407 }
5408
Evan Cheng9845eb52008-04-01 02:18:22 +00005409 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5410 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005411 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005412 // incoming integer is set. To handle this, we dynamically test to see if
5413 // it is set, and, if so, add a fudge factor.
Dan Gohman475871a2008-07-27 21:46:04 +00005414 SDValue Hi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005415 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005416 SDValue Lo;
Dan Gohman034f60e2008-03-11 01:59:03 +00005417 ExpandOp(Source, Lo, Hi);
5418 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5419 } else {
5420 // The comparison for the sign bit will use the entire operand.
5421 Hi = Source;
5422 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005423
Chris Lattner66de05b2005-05-13 04:45:13 +00005424 // If this is unsigned, and not supported, first perform the conversion to
5425 // signed, then adjust the result if the sign bit is set.
Dan Gohman475871a2008-07-27 21:46:04 +00005426 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source);
Chris Lattner66de05b2005-05-13 04:45:13 +00005427
Dan Gohman475871a2008-07-27 21:46:04 +00005428 SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005429 DAG.getConstant(0, Hi.getValueType()),
5430 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00005431 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5432 SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
Chris Lattnere9c35e72005-04-13 05:09:42 +00005433 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005434 uint64_t FF = 0x5f800000ULL;
5435 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohman34bc1782008-03-05 02:07:31 +00005436 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005437
Dan Gohman475871a2008-07-27 21:46:04 +00005438 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00005439 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattnere9c35e72005-04-13 05:09:42 +00005440 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00005441 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00005442 SDValue FudgeInReg;
Chris Lattnere9c35e72005-04-13 05:09:42 +00005443 if (DestTy == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005444 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005445 PseudoSourceValue::getConstantPool(), 0,
5446 false, Alignment);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005447 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005448 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005449 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005450 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005451 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00005452 MVT::f32, false, Alignment);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005453 else
5454 assert(0 && "Unexpected conversion");
5455
Duncan Sands83ec4b62008-06-06 12:08:01 +00005456 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005457 if (SCVT != DestTy) {
5458 // Destination type needs to be expanded as well. The FADD now we are
5459 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005460 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5461 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dan Gohmand91446d2008-03-05 01:08:17 +00005462 SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005463 SignedConv, SignedConv.getValue(1));
5464 }
5465 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5466 }
Chris Lattner473a9902005-09-29 06:44:39 +00005467 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005468 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005469
Chris Lattnera88a2602005-05-14 05:33:54 +00005470 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00005471 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00005472 default: assert(0 && "This action not implemented for this operation!");
5473 case TargetLowering::Legal:
5474 case TargetLowering::Expand:
5475 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005476 case TargetLowering::Custom: {
Dan Gohman475871a2008-07-27 21:46:04 +00005477 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
Chris Lattner07dffd62005-08-26 00:14:16 +00005478 Source), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005479 if (NV.getNode())
Chris Lattner07dffd62005-08-26 00:14:16 +00005480 return LegalizeOp(NV);
5481 break; // The target decided this was legal after all
5482 }
Chris Lattnera88a2602005-05-14 05:33:54 +00005483 }
5484
Chris Lattner13689e22005-05-12 07:00:44 +00005485 // Expand the source, then glue it back together for the call. We must expand
5486 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00005487 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005488 SDValue SrcLo, SrcHi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005489 ExpandOp(Source, SrcLo, SrcHi);
5490 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5491 }
Chris Lattner13689e22005-05-12 07:00:44 +00005492
Duncan Sandsb2ff8852008-07-17 02:36:29 +00005493 RTLIB::Libcall LC = isSigned ?
5494 RTLIB::getSINTTOFP(SourceVT, DestTy) :
5495 RTLIB::getUINTTOFP(SourceVT, DestTy);
5496 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
5497
Chris Lattner6831a812006-02-13 09:18:02 +00005498 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
Dan Gohman475871a2008-07-27 21:46:04 +00005499 SDValue HiPart;
Gabor Greifba36cb52008-08-28 21:40:38 +00005500 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
5501 if (Result.getValueType() != DestTy && HiPart.getNode())
Dan Gohmana2e94852008-03-10 23:03:31 +00005502 Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5503 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005504}
Misha Brukmanedf128a2005-04-21 22:36:52 +00005505
Chris Lattner22cde6a2006-01-28 08:25:58 +00005506/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5507/// INT_TO_FP operation of the specified operand when the target requests that
5508/// we expand it. At this point, we know that the result and operand types are
5509/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00005510SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5511 SDValue Op0,
5512 MVT DestVT) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005513 if (Op0.getValueType() == MVT::i32) {
5514 // simple 32-bit [signed|unsigned] integer to float/double expansion
5515
Chris Lattner23594d42008-01-16 07:03:22 +00005516 // Get the stack frame index of a 8 byte buffer.
Dan Gohman475871a2008-07-27 21:46:04 +00005517 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Chris Lattner23594d42008-01-16 07:03:22 +00005518
Chris Lattner22cde6a2006-01-28 08:25:58 +00005519 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00005520 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00005521 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00005522 SDValue Hi = StackSlot;
5523 SDValue Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00005524 if (TLI.isLittleEndian())
5525 std::swap(Hi, Lo);
5526
Chris Lattner22cde6a2006-01-28 08:25:58 +00005527 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00005528 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005529 if (isSigned) {
5530 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman475871a2008-07-27 21:46:04 +00005531 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005532 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5533 } else {
5534 Op0Mapped = Op0;
5535 }
5536 // store the lo of the constructed double - based on integer input
Dan Gohman475871a2008-07-27 21:46:04 +00005537 SDValue Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005538 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005539 // initial hi portion of constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00005540 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005541 // store the hi of the constructed double - biased exponent
Dan Gohman475871a2008-07-27 21:46:04 +00005542 SDValue Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005543 // load the constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00005544 SDValue Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005545 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00005546 SDValue Bias = DAG.getConstantFP(isSigned ?
Chris Lattner22cde6a2006-01-28 08:25:58 +00005547 BitsToDouble(0x4330000080000000ULL)
5548 : BitsToDouble(0x4330000000000000ULL),
5549 MVT::f64);
5550 // subtract the bias
Dan Gohman475871a2008-07-27 21:46:04 +00005551 SDValue Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005552 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00005553 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005554 // handle final rounding
5555 if (DestVT == MVT::f64) {
5556 // do nothing
5557 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00005558 } else if (DestVT.bitsLT(MVT::f64)) {
Chris Lattner0bd48932008-01-17 07:00:52 +00005559 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5560 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005561 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005562 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005563 }
5564 return Result;
5565 }
5566 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dan Gohman475871a2008-07-27 21:46:04 +00005567 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005568
Dan Gohman475871a2008-07-27 21:46:04 +00005569 SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005570 DAG.getConstant(0, Op0.getValueType()),
5571 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00005572 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5573 SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005574 SignSet, Four, Zero);
5575
5576 // If the sign bit of the integer is set, the large number will be treated
5577 // as a negative number. To counteract this, the dynamic code adds an
5578 // offset depending on the data type.
5579 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005580 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005581 default: assert(0 && "Unsupported integer type!");
5582 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5583 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5584 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5585 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5586 }
5587 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005588 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005589
Dan Gohman475871a2008-07-27 21:46:04 +00005590 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00005591 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005592 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00005593 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00005594 SDValue FudgeInReg;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005595 if (DestVT == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005596 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005597 PseudoSourceValue::getConstantPool(), 0,
5598 false, Alignment);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005599 else {
Dan Gohman69de1932008-02-06 22:27:42 +00005600 FudgeInReg =
5601 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5602 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005603 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00005604 MVT::f32, false, Alignment));
Chris Lattner22cde6a2006-01-28 08:25:58 +00005605 }
5606
5607 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5608}
5609
5610/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5611/// *INT_TO_FP operation of the specified operand when the target requests that
5612/// we promote it. At this point, we know that the result and operand types are
5613/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5614/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00005615SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
5616 MVT DestVT,
5617 bool isSigned) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005618 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005619 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005620
5621 unsigned OpToUse = 0;
5622
5623 // Scan for the appropriate larger type to use.
5624 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005625 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
5626 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005627
5628 // If the target supports SINT_TO_FP of this type, use it.
5629 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5630 default: break;
5631 case TargetLowering::Legal:
5632 if (!TLI.isTypeLegal(NewInTy))
5633 break; // Can't use this datatype.
5634 // FALL THROUGH.
5635 case TargetLowering::Custom:
5636 OpToUse = ISD::SINT_TO_FP;
5637 break;
5638 }
5639 if (OpToUse) break;
5640 if (isSigned) continue;
5641
5642 // If the target supports UINT_TO_FP of this type, use it.
5643 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5644 default: break;
5645 case TargetLowering::Legal:
5646 if (!TLI.isTypeLegal(NewInTy))
5647 break; // Can't use this datatype.
5648 // FALL THROUGH.
5649 case TargetLowering::Custom:
5650 OpToUse = ISD::UINT_TO_FP;
5651 break;
5652 }
5653 if (OpToUse) break;
5654
5655 // Otherwise, try a larger type.
5656 }
5657
5658 // Okay, we found the operation and type to use. Zero extend our input to the
5659 // desired type then run the operation on it.
5660 return DAG.getNode(OpToUse, DestVT,
5661 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5662 NewInTy, LegalOp));
5663}
5664
5665/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5666/// FP_TO_*INT operation of the specified operand when the target requests that
5667/// we promote it. At this point, we know that the result and operand types are
5668/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5669/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00005670SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
5671 MVT DestVT,
5672 bool isSigned) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005673 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005674 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005675
5676 unsigned OpToUse = 0;
5677
5678 // Scan for the appropriate larger type to use.
5679 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005680 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
5681 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005682
5683 // If the target supports FP_TO_SINT returning this type, use it.
5684 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5685 default: break;
5686 case TargetLowering::Legal:
5687 if (!TLI.isTypeLegal(NewOutTy))
5688 break; // Can't use this datatype.
5689 // FALL THROUGH.
5690 case TargetLowering::Custom:
5691 OpToUse = ISD::FP_TO_SINT;
5692 break;
5693 }
5694 if (OpToUse) break;
5695
5696 // If the target supports FP_TO_UINT of this type, use it.
5697 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5698 default: break;
5699 case TargetLowering::Legal:
5700 if (!TLI.isTypeLegal(NewOutTy))
5701 break; // Can't use this datatype.
5702 // FALL THROUGH.
5703 case TargetLowering::Custom:
5704 OpToUse = ISD::FP_TO_UINT;
5705 break;
5706 }
5707 if (OpToUse) break;
5708
5709 // Otherwise, try a larger type.
5710 }
5711
Chris Lattner27a6c732007-11-24 07:07:01 +00005712
5713 // Okay, we found the operation and type to use.
Dan Gohman475871a2008-07-27 21:46:04 +00005714 SDValue Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00005715
Chris Lattner27a6c732007-11-24 07:07:01 +00005716 // If the operation produces an invalid type, it must be custom lowered. Use
5717 // the target lowering hooks to expand it. Just keep the low part of the
5718 // expanded operation, we know that we're truncating anyway.
5719 if (getTypeAction(NewOutTy) == Expand) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005720 Operation = SDValue(TLI.ReplaceNodeResults(Operation.getNode(), DAG), 0);
5721 assert(Operation.getNode() && "Didn't return anything");
Chris Lattner27a6c732007-11-24 07:07:01 +00005722 }
Duncan Sands126d9072008-07-04 11:47:58 +00005723
Chris Lattner27a6c732007-11-24 07:07:01 +00005724 // Truncate the result of the extended FP_TO_*INT operation to the desired
5725 // size.
5726 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005727}
5728
5729/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5730///
Dan Gohman475871a2008-07-27 21:46:04 +00005731SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005732 MVT VT = Op.getValueType();
5733 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman475871a2008-07-27 21:46:04 +00005734 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005735 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005736 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5737 case MVT::i16:
5738 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5739 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5740 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5741 case MVT::i32:
5742 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5743 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5744 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5745 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5746 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5747 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5748 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5749 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5750 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5751 case MVT::i64:
5752 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5753 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5754 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5755 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5756 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5757 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5758 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5759 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5760 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5761 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5762 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5763 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5764 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5765 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5766 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5767 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5768 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5769 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5770 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5771 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5772 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5773 }
5774}
5775
5776/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5777///
Dan Gohman475871a2008-07-27 21:46:04 +00005778SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005779 switch (Opc) {
5780 default: assert(0 && "Cannot expand this yet!");
5781 case ISD::CTPOP: {
5782 static const uint64_t mask[6] = {
5783 0x5555555555555555ULL, 0x3333333333333333ULL,
5784 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5785 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5786 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005787 MVT VT = Op.getValueType();
5788 MVT ShVT = TLI.getShiftAmountTy();
5789 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005790 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5791 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Dan Gohman475871a2008-07-27 21:46:04 +00005792 SDValue Tmp2 = DAG.getConstant(mask[i], VT);
5793 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005794 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5795 DAG.getNode(ISD::AND, VT,
5796 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5797 }
5798 return Op;
5799 }
5800 case ISD::CTLZ: {
5801 // for now, we do this:
5802 // x = x | (x >> 1);
5803 // x = x | (x >> 2);
5804 // ...
5805 // x = x | (x >>16);
5806 // x = x | (x >>32); // for 64-bit input
5807 // return popcount(~x);
5808 //
5809 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005810 MVT VT = Op.getValueType();
5811 MVT ShVT = TLI.getShiftAmountTy();
5812 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005813 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005814 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005815 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5816 }
5817 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5818 return DAG.getNode(ISD::CTPOP, VT, Op);
5819 }
5820 case ISD::CTTZ: {
5821 // for now, we use: { return popcount(~x & (x - 1)); }
5822 // unless the target has ctlz but not ctpop, in which case we use:
5823 // { return 32 - nlz(~x & (x-1)); }
5824 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005825 MVT VT = Op.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00005826 SDValue Tmp2 = DAG.getConstant(~0ULL, VT);
5827 SDValue Tmp3 = DAG.getNode(ISD::AND, VT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005828 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5829 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5830 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5831 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5832 TLI.isOperationLegal(ISD::CTLZ, VT))
5833 return DAG.getNode(ISD::SUB, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005834 DAG.getConstant(VT.getSizeInBits(), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005835 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5836 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5837 }
5838 }
5839}
Chris Lattnere34b3962005-01-19 04:19:40 +00005840
Dan Gohman475871a2008-07-27 21:46:04 +00005841/// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattner3e928bb2005-01-07 07:47:09 +00005842/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
5843/// LegalizeNodes map is filled in for any results that are not expanded, the
5844/// ExpandedNodes map is filled in for any results that are expanded, and the
5845/// Lo/Hi values are returned.
Dan Gohman475871a2008-07-27 21:46:04 +00005846void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00005847 MVT VT = Op.getValueType();
5848 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greifba36cb52008-08-28 21:40:38 +00005849 SDNode *Node = Op.getNode();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005850 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00005851 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00005852 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00005853
Chris Lattner6fdcb252005-09-02 20:32:45 +00005854 // See if we already expanded it.
Dan Gohman475871a2008-07-27 21:46:04 +00005855 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00005856 = ExpandedNodes.find(Op);
5857 if (I != ExpandedNodes.end()) {
5858 Lo = I->second.first;
5859 Hi = I->second.second;
5860 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005861 }
5862
Chris Lattner3e928bb2005-01-07 07:47:09 +00005863 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005864 case ISD::CopyFromReg:
5865 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005866 case ISD::FP_ROUND_INREG:
5867 if (VT == MVT::ppcf128 &&
5868 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5869 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00005870 SDValue SrcLo, SrcHi, Src;
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005871 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5872 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
Dan Gohman475871a2008-07-27 21:46:04 +00005873 SDValue Result = TLI.LowerOperation(
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005874 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005875 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
5876 Lo = Result.getNode()->getOperand(0);
5877 Hi = Result.getNode()->getOperand(1);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005878 break;
5879 }
5880 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00005881 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005882#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005883 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005884#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00005885 assert(0 && "Do not know how to expand this operator!");
5886 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00005887 case ISD::EXTRACT_ELEMENT:
5888 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005889 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman1953ecb2008-02-27 01:52:30 +00005890 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00005891 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00005892 case ISD::EXTRACT_VECTOR_ELT:
5893 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5894 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5895 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5896 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005897 case ISD::UNDEF:
5898 Lo = DAG.getNode(ISD::UNDEF, NVT);
5899 Hi = DAG.getNode(ISD::UNDEF, NVT);
5900 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005901 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005902 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00005903 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5904 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5905 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005906 break;
5907 }
Evan Cheng00495212006-12-12 21:32:44 +00005908 case ISD::ConstantFP: {
5909 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00005910 if (CFP->getValueType(0) == MVT::ppcf128) {
5911 APInt api = CFP->getValueAPF().convertToAPInt();
5912 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5913 MVT::f64);
5914 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5915 MVT::f64);
5916 break;
5917 }
Evan Cheng279101e2006-12-12 22:19:28 +00005918 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005919 if (getTypeAction(Lo.getValueType()) == Expand)
5920 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005921 break;
5922 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005923 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005924 // Return the operands.
5925 Lo = Node->getOperand(0);
5926 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005927 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005928
5929 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00005930 if (Node->getNumValues() == 1) {
5931 ExpandOp(Op.getOperand(0), Lo, Hi);
5932 break;
5933 }
Chris Lattner27a6c732007-11-24 07:07:01 +00005934 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif99a6cb92008-08-26 22:36:50 +00005935 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattner27a6c732007-11-24 07:07:01 +00005936 Op.getValue(1).getValueType() == MVT::Other &&
5937 "unhandled MERGE_VALUES");
5938 ExpandOp(Op.getOperand(0), Lo, Hi);
5939 // Remember that we legalized the chain.
5940 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5941 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005942
5943 case ISD::SIGN_EXTEND_INREG:
5944 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005945 // sext_inreg the low part if needed.
5946 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5947
5948 // The high part gets the sign extension from the lo-part. This handles
5949 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005950 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005951 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00005952 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005953 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005954
Nate Begemand88fc032006-01-14 03:14:10 +00005955 case ISD::BSWAP: {
5956 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00005957 SDValue TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
Nate Begemand88fc032006-01-14 03:14:10 +00005958 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5959 Lo = TempLo;
5960 break;
5961 }
5962
Chris Lattneredb1add2005-05-11 04:51:16 +00005963 case ISD::CTPOP:
5964 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005965 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5966 DAG.getNode(ISD::CTPOP, NVT, Lo),
5967 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005968 Hi = DAG.getConstant(0, NVT);
5969 break;
5970
Chris Lattner39a8f332005-05-12 19:05:01 +00005971 case ISD::CTLZ: {
5972 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005973 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00005974 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
5975 SDValue HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
5976 SDValue TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005977 ISD::SETNE);
Dan Gohman475871a2008-07-27 21:46:04 +00005978 SDValue LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
Chris Lattner39a8f332005-05-12 19:05:01 +00005979 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5980
5981 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5982 Hi = DAG.getConstant(0, NVT);
5983 break;
5984 }
5985
5986 case ISD::CTTZ: {
5987 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005988 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00005989 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
5990 SDValue LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
5991 SDValue BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005992 ISD::SETNE);
Dan Gohman475871a2008-07-27 21:46:04 +00005993 SDValue HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005994 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5995
5996 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
5997 Hi = DAG.getConstant(0, NVT);
5998 break;
5999 }
Chris Lattneredb1add2005-05-11 04:51:16 +00006000
Nate Begemanacc398c2006-01-25 18:21:52 +00006001 case ISD::VAARG: {
Dan Gohman475871a2008-07-27 21:46:04 +00006002 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6003 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00006004 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
6005 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
6006
6007 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00006008 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00006009 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00006010 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00006011 std::swap(Lo, Hi);
6012 break;
6013 }
6014
Chris Lattner3e928bb2005-01-07 07:47:09 +00006015 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00006016 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00006017 SDValue Ch = LD->getChain(); // Legalize the chain.
6018 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Evan Cheng466685d2006-10-09 20:57:25 +00006019 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f8613e2008-08-14 20:04:46 +00006020 const Value *SV = LD->getSrcValue();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006021 int SVOffset = LD->getSrcValueOffset();
6022 unsigned Alignment = LD->getAlignment();
6023 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006024
Evan Cheng466685d2006-10-09 20:57:25 +00006025 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00006026 Lo = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006027 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00006028 if (VT == MVT::f32 || VT == MVT::f64) {
6029 // f32->i32 or f64->i64 one to one expansion.
6030 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006031 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00006032 // Recursively expand the new load.
6033 if (getTypeAction(NVT) == Expand)
6034 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006035 break;
6036 }
Chris Lattnerec39a452005-01-19 18:02:17 +00006037
Evan Cheng466685d2006-10-09 20:57:25 +00006038 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006039 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Evan Cheng466685d2006-10-09 20:57:25 +00006040 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006041 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006042 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006043 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman7f8613e2008-08-14 20:04:46 +00006044 Hi = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006045 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00006046
Evan Cheng466685d2006-10-09 20:57:25 +00006047 // Build a factor node to remember that this load is independent of the
6048 // other one.
Dan Gohman475871a2008-07-27 21:46:04 +00006049 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Evan Cheng466685d2006-10-09 20:57:25 +00006050 Hi.getValue(1));
6051
6052 // Remember that we legalized the chain.
6053 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00006054 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00006055 std::swap(Lo, Hi);
6056 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006057 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00006058
Dale Johannesenb6210fc2007-10-19 20:29:00 +00006059 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6060 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00006061 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dan Gohman7f8613e2008-08-14 20:04:46 +00006062 SDValue Load = DAG.getLoad(EVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006063 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00006064 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006065 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Evan Cheng548f6112006-12-13 03:19:57 +00006066 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
6067 break;
6068 }
Evan Cheng466685d2006-10-09 20:57:25 +00006069
6070 if (EVT == NVT)
Dan Gohman7f8613e2008-08-14 20:04:46 +00006071 Lo = DAG.getLoad(NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006072 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006073 else
Dan Gohman7f8613e2008-08-14 20:04:46 +00006074 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006075 SVOffset, EVT, isVolatile,
6076 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006077
6078 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006079 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng466685d2006-10-09 20:57:25 +00006080
6081 if (ExtType == ISD::SEXTLOAD) {
6082 // The high part is obtained by SRA'ing all but one of the bits of the
6083 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006084 unsigned LoSize = Lo.getValueType().getSizeInBits();
Evan Cheng466685d2006-10-09 20:57:25 +00006085 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6086 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6087 } else if (ExtType == ISD::ZEXTLOAD) {
6088 // The high part is just a zero.
6089 Hi = DAG.getConstant(0, NVT);
6090 } else /* if (ExtType == ISD::EXTLOAD) */ {
6091 // The high part is undefined.
6092 Hi = DAG.getNode(ISD::UNDEF, NVT);
6093 }
6094 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006095 break;
6096 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006097 case ISD::AND:
6098 case ISD::OR:
6099 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman475871a2008-07-27 21:46:04 +00006100 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006101 ExpandOp(Node->getOperand(0), LL, LH);
6102 ExpandOp(Node->getOperand(1), RL, RH);
6103 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
6104 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
6105 break;
6106 }
6107 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006108 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006109 ExpandOp(Node->getOperand(1), LL, LH);
6110 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006111 if (getTypeAction(NVT) == Expand)
6112 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00006113 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006114 if (VT != MVT::f32)
6115 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006116 break;
6117 }
Nate Begeman9373a812005-08-10 20:51:12 +00006118 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006119 SDValue TL, TH, FL, FH;
Nate Begeman9373a812005-08-10 20:51:12 +00006120 ExpandOp(Node->getOperand(2), TL, TH);
6121 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006122 if (getTypeAction(NVT) == Expand)
6123 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00006124 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6125 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006126 if (VT != MVT::f32)
6127 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6128 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006129 break;
6130 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006131 case ISD::ANY_EXTEND:
6132 // The low part is any extension of the input (which degenerates to a copy).
6133 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
6134 // The high part is undefined.
6135 Hi = DAG.getNode(ISD::UNDEF, NVT);
6136 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006137 case ISD::SIGN_EXTEND: {
6138 // The low part is just a sign extension of the input (which degenerates to
6139 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006140 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006141
Chris Lattner3e928bb2005-01-07 07:47:09 +00006142 // The high part is obtained by SRA'ing all but one of the bits of the lo
6143 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006144 unsigned LoSize = Lo.getValueType().getSizeInBits();
Chris Lattner8137c9e2006-01-28 05:07:51 +00006145 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6146 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006147 break;
6148 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006149 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006150 // The low part is just a zero extension of the input (which degenerates to
6151 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006152 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006153
Chris Lattner3e928bb2005-01-07 07:47:09 +00006154 // The high part is just a zero.
6155 Hi = DAG.getConstant(0, NVT);
6156 break;
Chris Lattner35481892005-12-23 00:16:34 +00006157
Chris Lattner4c948eb2007-02-13 23:55:16 +00006158 case ISD::TRUNCATE: {
6159 // The input value must be larger than this value. Expand *it*.
Dan Gohman475871a2008-07-27 21:46:04 +00006160 SDValue NewLo;
Chris Lattner4c948eb2007-02-13 23:55:16 +00006161 ExpandOp(Node->getOperand(0), NewLo, Hi);
6162
6163 // The low part is now either the right size, or it is closer. If not the
6164 // right size, make an illegal truncate so we recursively expand it.
6165 if (NewLo.getValueType() != Node->getValueType(0))
6166 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6167 ExpandOp(NewLo, Lo, Hi);
6168 break;
6169 }
6170
Chris Lattner35481892005-12-23 00:16:34 +00006171 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006172 SDValue Tmp;
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006173 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6174 // If the target wants to, allow it to lower this itself.
6175 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6176 case Expand: assert(0 && "cannot expand FP!");
6177 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6178 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6179 }
6180 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6181 }
6182
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006183 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006184 if (VT == MVT::f32 || VT == MVT::f64) {
6185 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006186 if (getTypeAction(NVT) == Expand)
6187 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006188 break;
6189 }
6190
6191 // If source operand will be expanded to the same type as VT, i.e.
6192 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006193 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006194 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6195 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006196 break;
6197 }
6198
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006199 // Turn this into a load/store pair by default.
Gabor Greifba36cb52008-08-28 21:40:38 +00006200 if (Tmp.getNode() == 0)
Chris Lattner1401d152008-01-16 07:45:30 +00006201 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006202
Chris Lattner35481892005-12-23 00:16:34 +00006203 ExpandOp(Tmp, Lo, Hi);
6204 break;
6205 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006206
Chris Lattner27a6c732007-11-24 07:07:01 +00006207 case ISD::READCYCLECOUNTER: {
Chris Lattner308575b2005-11-20 22:56:56 +00006208 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6209 TargetLowering::Custom &&
6210 "Must custom expand ReadCycleCounter");
Dan Gohman475871a2008-07-27 21:46:04 +00006211 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006212 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattner27a6c732007-11-24 07:07:01 +00006213 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006214 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006215 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006216 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006217 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006218
Dale Johannesene00a8a22008-08-28 02:44:49 +00006219 // FIXME: should the LOAD_BIN and SWAP atomics get here too? Probably.
6220 case ISD::ATOMIC_CMP_SWAP_8:
6221 case ISD::ATOMIC_CMP_SWAP_16:
6222 case ISD::ATOMIC_CMP_SWAP_32:
6223 case ISD::ATOMIC_CMP_SWAP_64: {
Dan Gohman475871a2008-07-27 21:46:04 +00006224 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006225 assert(Tmp.getNode() && "Node must be custom expanded!");
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006226 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006227 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006228 LegalizeOp(Tmp.getValue(1)));
6229 break;
6230 }
6231
6232
6233
Chris Lattner4e6c7462005-01-08 19:27:05 +00006234 // These operators cannot be expanded directly, emit them as calls to
6235 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006236 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006237 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006238 SDValue Op;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006239 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6240 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006241 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6242 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006243 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006244
Chris Lattnerf20d1832005-07-30 01:40:57 +00006245 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6246
Chris Lattner80a3e942005-07-29 00:33:32 +00006247 // Now that the custom expander is done, expand the result, which is still
6248 // VT.
Gabor Greifba36cb52008-08-28 21:40:38 +00006249 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006250 ExpandOp(Op, Lo, Hi);
6251 break;
6252 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006253 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006254
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006255 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6256 VT);
6257 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6258 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006259 break;
Evan Cheng56966222007-01-12 02:11:51 +00006260 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006261
Evan Cheng56966222007-01-12 02:11:51 +00006262 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006263 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006264 SDValue Op;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006265 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6266 case Expand: assert(0 && "cannot expand FP!");
6267 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6268 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6269 }
6270
6271 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6272
6273 // Now that the custom expander is done, expand the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00006274 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006275 ExpandOp(Op, Lo, Hi);
6276 break;
6277 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006278 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006279
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006280 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6281 VT);
6282 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6283 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006284 break;
Evan Cheng56966222007-01-12 02:11:51 +00006285 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006286
Evan Cheng05a2d562006-01-09 18:31:59 +00006287 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006288 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006289 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006290 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006291 SDValue Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006292 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006293 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006294 // Now that the custom expander is done, expand the result, which is
6295 // still VT.
6296 ExpandOp(Op, Lo, Hi);
6297 break;
6298 }
6299 }
6300
Chris Lattner79980b02006-09-13 03:50:39 +00006301 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6302 // this X << 1 as X+X.
6303 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman002e5d02008-03-13 22:13:53 +00006304 if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
Chris Lattner79980b02006-09-13 03:50:39 +00006305 TLI.isOperationLegal(ISD::ADDE, NVT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006306 SDValue LoOps[2], HiOps[3];
Chris Lattner79980b02006-09-13 03:50:39 +00006307 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6308 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6309 LoOps[1] = LoOps[0];
6310 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6311
6312 HiOps[1] = HiOps[0];
6313 HiOps[2] = Lo.getValue(1);
6314 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6315 break;
6316 }
6317 }
6318
Chris Lattnere34b3962005-01-19 04:19:40 +00006319 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006320 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006321 break;
Chris Lattner47599822005-04-02 03:38:53 +00006322
6323 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006324 TargetLowering::LegalizeAction Action =
6325 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6326 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6327 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006328 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006329 break;
6330 }
6331
Chris Lattnere34b3962005-01-19 04:19:40 +00006332 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006333 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006334 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006335 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006336
Evan Cheng05a2d562006-01-09 18:31:59 +00006337 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006338 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006339 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006340 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006341 SDValue Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006342 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006343 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006344 // Now that the custom expander is done, expand the result, which is
6345 // still VT.
6346 ExpandOp(Op, Lo, Hi);
6347 break;
6348 }
6349 }
6350
Chris Lattnere34b3962005-01-19 04:19:40 +00006351 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006352 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006353 break;
Chris Lattner47599822005-04-02 03:38:53 +00006354
6355 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006356 TargetLowering::LegalizeAction Action =
6357 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6358 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6359 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006360 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006361 break;
6362 }
6363
Chris Lattnere34b3962005-01-19 04:19:40 +00006364 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006365 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006366 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006367 }
6368
6369 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006370 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006371 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006372 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006373 SDValue Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006374 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006375 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006376 // Now that the custom expander is done, expand the result, which is
6377 // still VT.
6378 ExpandOp(Op, Lo, Hi);
6379 break;
6380 }
6381 }
6382
Chris Lattnere34b3962005-01-19 04:19:40 +00006383 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006384 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006385 break;
Chris Lattner47599822005-04-02 03:38:53 +00006386
6387 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006388 TargetLowering::LegalizeAction Action =
6389 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6390 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6391 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006392 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006393 break;
6394 }
6395
Chris Lattnere34b3962005-01-19 04:19:40 +00006396 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006397 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006398 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006399 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006400
Misha Brukmanedf128a2005-04-21 22:36:52 +00006401 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006402 case ISD::SUB: {
6403 // If the target wants to custom expand this, let them.
6404 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6405 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006406 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006407 if (Result.getNode()) {
Duncan Sands69bfb152008-06-22 09:42:16 +00006408 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006409 break;
6410 }
6411 }
6412
6413 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006414 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006415 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6416 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00006417 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006418 SDValue LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006419 LoOps[0] = LHSL;
6420 LoOps[1] = RHSL;
6421 HiOps[0] = LHSH;
6422 HiOps[1] = RHSH;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006423 if (Node->getOpcode() == ISD::ADD) {
Chris Lattner79980b02006-09-13 03:50:39 +00006424 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006425 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006426 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006427 } else {
Chris Lattner79980b02006-09-13 03:50:39 +00006428 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006429 HiOps[2] = Lo.getValue(1);
Chris Lattner79980b02006-09-13 03:50:39 +00006430 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
Nate Begeman551bf3f2006-02-17 05:43:56 +00006431 }
Chris Lattner84f67882005-01-20 18:52:28 +00006432 break;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006433 }
Chris Lattnerb429f732007-05-17 18:15:41 +00006434
6435 case ISD::ADDC:
6436 case ISD::SUBC: {
6437 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006438 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00006439 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6440 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6441 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006442 SDValue LoOps[2] = { LHSL, RHSL };
6443 SDValue HiOps[3] = { LHSH, RHSH };
Chris Lattnerb429f732007-05-17 18:15:41 +00006444
6445 if (Node->getOpcode() == ISD::ADDC) {
6446 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6447 HiOps[2] = Lo.getValue(1);
6448 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6449 } else {
6450 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6451 HiOps[2] = Lo.getValue(1);
6452 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6453 }
6454 // Remember that we legalized the flag.
6455 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6456 break;
6457 }
6458 case ISD::ADDE:
6459 case ISD::SUBE: {
6460 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006461 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00006462 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6463 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6464 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006465 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6466 SDValue HiOps[3] = { LHSH, RHSH };
Chris Lattnerb429f732007-05-17 18:15:41 +00006467
6468 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6469 HiOps[2] = Lo.getValue(1);
6470 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6471
6472 // Remember that we legalized the flag.
6473 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6474 break;
6475 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006476 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006477 // If the target wants to custom expand this, let them.
6478 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006479 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006480 if (New.getNode()) {
Chris Lattner8829dc82006-09-16 05:08:34 +00006481 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006482 break;
6483 }
6484 }
6485
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006486 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6487 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00006488 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6489 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6490 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman475871a2008-07-27 21:46:04 +00006491 SDValue LL, LH, RL, RH;
Nate Begemanc7c16572005-04-11 03:01:51 +00006492 ExpandOp(Node->getOperand(0), LL, LH);
6493 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006494 unsigned OuterBitSize = Op.getValueSizeInBits();
6495 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00006496 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6497 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00006498 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6499 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6500 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00006501 // The inputs are both zero-extended.
6502 if (HasUMUL_LOHI) {
6503 // We can emit a umul_lohi.
6504 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00006505 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00006506 break;
6507 }
6508 if (HasMULHU) {
6509 // We can emit a mulhu+mul.
6510 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6511 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6512 break;
6513 }
Dan Gohman525178c2007-10-08 18:33:35 +00006514 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006515 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00006516 // The input values are both sign-extended.
6517 if (HasSMUL_LOHI) {
6518 // We can emit a smul_lohi.
6519 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00006520 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00006521 break;
6522 }
6523 if (HasMULHS) {
6524 // We can emit a mulhs+mul.
6525 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6526 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6527 break;
6528 }
6529 }
6530 if (HasUMUL_LOHI) {
6531 // Lo,Hi = umul LHS, RHS.
Dan Gohman475871a2008-07-27 21:46:04 +00006532 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
Dan Gohman525178c2007-10-08 18:33:35 +00006533 DAG.getVTList(NVT, NVT), LL, RL);
6534 Lo = UMulLOHI;
6535 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00006536 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);
Chris Lattnera89654b2006-09-16 00:21:44 +00006540 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00006541 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00006542 if (HasMULHU) {
6543 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6544 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6545 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6546 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6547 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6548 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6549 break;
6550 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006551 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006552
Dan Gohman525178c2007-10-08 18:33:35 +00006553 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006554 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00006555 break;
6556 }
Evan Cheng56966222007-01-12 02:11:51 +00006557 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006558 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006559 break;
6560 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006561 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006562 break;
6563 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006564 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006565 break;
6566 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006567 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006568 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00006569
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006570 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00006571 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6572 RTLIB::ADD_F64,
6573 RTLIB::ADD_F80,
6574 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006575 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006576 break;
6577 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00006578 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6579 RTLIB::SUB_F64,
6580 RTLIB::SUB_F80,
6581 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006582 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006583 break;
6584 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00006585 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6586 RTLIB::MUL_F64,
6587 RTLIB::MUL_F80,
6588 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006589 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006590 break;
6591 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006592 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6593 RTLIB::DIV_F64,
6594 RTLIB::DIV_F80,
6595 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006596 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006597 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006598 case ISD::FP_EXTEND: {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006599 if (VT == MVT::ppcf128) {
6600 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6601 Node->getOperand(0).getValueType()==MVT::f64);
6602 const uint64_t zero = 0;
6603 if (Node->getOperand(0).getValueType()==MVT::f32)
6604 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6605 else
6606 Hi = Node->getOperand(0);
6607 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6608 break;
6609 }
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006610 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
6611 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
6612 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006613 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006614 }
6615 case ISD::FP_ROUND: {
6616 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
6617 VT);
6618 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
6619 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006620 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006621 }
Evan Cheng4b887022008-09-09 23:02:14 +00006622 case ISD::FSQRT:
6623 case ISD::FSIN:
6624 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00006625 case ISD::FLOG:
6626 case ISD::FLOG2:
6627 case ISD::FLOG10:
6628 case ISD::FEXP:
6629 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00006630 case ISD::FTRUNC:
6631 case ISD::FFLOOR:
6632 case ISD::FCEIL:
6633 case ISD::FRINT:
6634 case ISD::FNEARBYINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00006635 case ISD::FPOW:
6636 case ISD::FPOWI: {
Evan Cheng56966222007-01-12 02:11:51 +00006637 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006638 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00006639 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00006640 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6641 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006642 break;
6643 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00006644 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6645 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006646 break;
6647 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00006648 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6649 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006650 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00006651 case ISD::FLOG:
6652 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
6653 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
6654 break;
6655 case ISD::FLOG2:
6656 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
6657 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
6658 break;
6659 case ISD::FLOG10:
6660 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
6661 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
6662 break;
6663 case ISD::FEXP:
6664 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
6665 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
6666 break;
6667 case ISD::FEXP2:
6668 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
6669 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
6670 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00006671 case ISD::FTRUNC:
6672 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
6673 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
6674 break;
6675 case ISD::FFLOOR:
6676 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
6677 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
6678 break;
6679 case ISD::FCEIL:
6680 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
6681 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
6682 break;
6683 case ISD::FRINT:
6684 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
6685 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
6686 break;
6687 case ISD::FNEARBYINT:
6688 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
6689 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
6690 break;
Evan Cheng4b887022008-09-09 23:02:14 +00006691 case ISD::FPOW:
6692 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
6693 RTLIB::POW_PPCF128);
6694 break;
6695 case ISD::FPOWI:
6696 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
6697 RTLIB::POWI_PPCF128);
6698 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006699 default: assert(0 && "Unreachable!");
6700 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006701 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00006702 break;
6703 }
Evan Cheng966bf242006-12-16 00:52:40 +00006704 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006705 if (VT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00006706 SDValue Tmp;
Dale Johannesenf6467742007-10-12 19:02:17 +00006707 ExpandOp(Node->getOperand(0), Lo, Tmp);
6708 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6709 // lo = hi==fabs(hi) ? lo : -lo;
6710 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6711 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6712 DAG.getCondCode(ISD::SETEQ));
6713 break;
6714 }
Dan Gohman475871a2008-07-27 21:46:04 +00006715 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00006716 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6717 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6718 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6719 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6720 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6721 if (getTypeAction(NVT) == Expand)
6722 ExpandOp(Lo, Lo, Hi);
6723 break;
6724 }
6725 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006726 if (VT == MVT::ppcf128) {
6727 ExpandOp(Node->getOperand(0), Lo, Hi);
6728 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6729 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6730 break;
6731 }
Dan Gohman475871a2008-07-27 21:46:04 +00006732 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00006733 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6734 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6735 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6736 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6737 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6738 if (getTypeAction(NVT) == Expand)
6739 ExpandOp(Lo, Lo, Hi);
6740 break;
6741 }
Evan Cheng912095b2007-01-04 21:56:39 +00006742 case ISD::FCOPYSIGN: {
6743 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6744 if (getTypeAction(NVT) == Expand)
6745 ExpandOp(Lo, Lo, Hi);
6746 break;
6747 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006748 case ISD::SINT_TO_FP:
6749 case ISD::UINT_TO_FP: {
6750 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006751 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00006752
6753 // Promote the operand if needed. Do this before checking for
6754 // ppcf128 so conversions of i16 and i8 work.
6755 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman475871a2008-07-27 21:46:04 +00006756 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesencf498192008-03-18 17:28:38 +00006757 Tmp = isSigned
6758 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6759 DAG.getValueType(SrcVT))
6760 : DAG.getZeroExtendInReg(Tmp, SrcVT);
Gabor Greifba36cb52008-08-28 21:40:38 +00006761 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesencf498192008-03-18 17:28:38 +00006762 SrcVT = Node->getOperand(0).getValueType();
6763 }
6764
Dan Gohmana2e94852008-03-10 23:03:31 +00006765 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006766 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006767 if (isSigned) {
6768 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6769 Node->getOperand(0)));
6770 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6771 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006772 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006773 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6774 Node->getOperand(0)));
6775 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6776 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00006777 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006778 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6779 DAG.getConstant(0, MVT::i32),
6780 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6781 DAG.getConstantFP(
6782 APFloat(APInt(128, 2, TwoE32)),
6783 MVT::ppcf128)),
6784 Hi,
6785 DAG.getCondCode(ISD::SETLT)),
6786 Lo, Hi);
6787 }
6788 break;
6789 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00006790 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6791 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006792 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen6e63e092007-10-12 17:52:03 +00006793 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6794 Lo, Hi);
6795 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6796 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6797 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6798 DAG.getConstant(0, MVT::i64),
6799 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6800 DAG.getConstantFP(
6801 APFloat(APInt(128, 2, TwoE64)),
6802 MVT::ppcf128)),
6803 Hi,
6804 DAG.getCondCode(ISD::SETLT)),
6805 Lo, Hi);
6806 break;
6807 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006808
Dan Gohmana2e94852008-03-10 23:03:31 +00006809 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6810 Node->getOperand(0));
Evan Cheng110cf482008-04-01 01:50:16 +00006811 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00006812 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00006813 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00006814 break;
6815 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00006816 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006817
Chris Lattner83397362005-12-21 18:02:52 +00006818 // Make sure the resultant values have been legalized themselves, unless this
6819 // is a type that requires multi-step expansion.
6820 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6821 Lo = LegalizeOp(Lo);
Gabor Greifba36cb52008-08-28 21:40:38 +00006822 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00006823 // Don't legalize the high part if it is expanded to a single node.
6824 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00006825 }
Evan Cheng05a2d562006-01-09 18:31:59 +00006826
6827 // Remember in a map if the values will be reused later.
Dan Gohman6b345ee2008-07-07 17:46:23 +00006828 bool isNew =
6829 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng05a2d562006-01-09 18:31:59 +00006830 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006831}
6832
Dan Gohman7f321562007-06-25 16:23:39 +00006833/// SplitVectorOp - Given an operand of vector type, break it down into
6834/// two smaller values, still of vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00006835void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
6836 SDValue &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006837 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greifba36cb52008-08-28 21:40:38 +00006838 SDNode *Node = Op.getNode();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006839 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00006840 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00006841
Duncan Sands83ec4b62008-06-06 12:08:01 +00006842 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00006843
6844 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6845 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6846
Duncan Sands83ec4b62008-06-06 12:08:01 +00006847 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
6848 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006849
Chris Lattnerc7029802006-03-18 01:44:44 +00006850 // See if we already split it.
Dan Gohman475871a2008-07-27 21:46:04 +00006851 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattnerc7029802006-03-18 01:44:44 +00006852 = SplitNodes.find(Op);
6853 if (I != SplitNodes.end()) {
6854 Lo = I->second.first;
6855 Hi = I->second.second;
6856 return;
6857 }
6858
6859 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006860 default:
6861#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006862 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006863#endif
6864 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00006865 case ISD::UNDEF:
6866 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6867 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6868 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006869 case ISD::BUILD_PAIR:
6870 Lo = Node->getOperand(0);
6871 Hi = Node->getOperand(1);
6872 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00006873 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00006874 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
6875 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006876 unsigned Index = Idx->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00006877 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman68679912008-04-25 18:07:40 +00006878 if (Index < NewNumElts_Lo)
6879 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
6880 DAG.getIntPtrConstant(Index));
6881 else
6882 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6883 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
6884 break;
6885 }
Dan Gohman475871a2008-07-27 21:46:04 +00006886 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Nate Begeman68679912008-04-25 18:07:40 +00006887 Node->getOperand(1),
6888 Node->getOperand(2));
6889 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00006890 break;
6891 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00006892 case ISD::VECTOR_SHUFFLE: {
6893 // Build the low part.
Dan Gohman475871a2008-07-27 21:46:04 +00006894 SDValue Mask = Node->getOperand(2);
6895 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006896 MVT PtrVT = TLI.getPointerTy();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006897
6898 // Insert all of the elements from the input that are needed. We use
6899 // buildvector of extractelement here because the input vectors will have
6900 // to be legalized, so this makes the code simpler.
6901 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00006902 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00006903 if (IdxNode.getOpcode() == ISD::UNDEF) {
6904 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6905 continue;
6906 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006907 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00006908 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00006909 if (Idx >= NumElements) {
6910 InVec = Node->getOperand(1);
6911 Idx -= NumElements;
6912 }
6913 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6914 DAG.getConstant(Idx, PtrVT)));
6915 }
6916 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6917 Ops.clear();
6918
6919 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00006920 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00006921 if (IdxNode.getOpcode() == ISD::UNDEF) {
6922 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6923 continue;
6924 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006925 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00006926 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00006927 if (Idx >= NumElements) {
6928 InVec = Node->getOperand(1);
6929 Idx -= NumElements;
6930 }
6931 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6932 DAG.getConstant(Idx, PtrVT)));
6933 }
Mon P Wang92879f32008-07-25 01:30:26 +00006934 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00006935 break;
6936 }
Dan Gohman7f321562007-06-25 16:23:39 +00006937 case ISD::BUILD_VECTOR: {
Dan Gohman475871a2008-07-27 21:46:04 +00006938 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00006939 Node->op_begin()+NewNumElts_Lo);
6940 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006941
Dan Gohman475871a2008-07-27 21:46:04 +00006942 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00006943 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006944 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00006945 break;
6946 }
Dan Gohman7f321562007-06-25 16:23:39 +00006947 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00006948 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00006949 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
6950 if (NewNumSubvectors == 1) {
6951 Lo = Node->getOperand(0);
6952 Hi = Node->getOperand(1);
6953 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00006954 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Dan Gohman7f321562007-06-25 16:23:39 +00006955 Node->op_begin()+NewNumSubvectors);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006956 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00006957
Dan Gohman475871a2008-07-27 21:46:04 +00006958 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Dan Gohman7f321562007-06-25 16:23:39 +00006959 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00006960 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00006961 }
Dan Gohman65956352007-06-13 15:12:02 +00006962 break;
6963 }
Dan Gohmanc6230962007-10-17 14:48:28 +00006964 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006965 SDValue Cond = Node->getOperand(0);
Dan Gohmanc6230962007-10-17 14:48:28 +00006966
Dan Gohman475871a2008-07-27 21:46:04 +00006967 SDValue LL, LH, RL, RH;
Dan Gohmanc6230962007-10-17 14:48:28 +00006968 SplitVectorOp(Node->getOperand(1), LL, LH);
6969 SplitVectorOp(Node->getOperand(2), RL, RH);
6970
Duncan Sands83ec4b62008-06-06 12:08:01 +00006971 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00006972 // Handle a vector merge.
Dan Gohman475871a2008-07-27 21:46:04 +00006973 SDValue CL, CH;
Dan Gohmanc6230962007-10-17 14:48:28 +00006974 SplitVectorOp(Cond, CL, CH);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006975 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
6976 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006977 } else {
6978 // Handle a simple select with vector operands.
Nate Begeman5db1afb2007-11-15 21:15:26 +00006979 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
6980 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00006981 }
6982 break;
6983 }
Chris Lattner80c1a562008-06-30 02:43:01 +00006984 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006985 SDValue CondLHS = Node->getOperand(0);
6986 SDValue CondRHS = Node->getOperand(1);
6987 SDValue CondCode = Node->getOperand(4);
Chris Lattner80c1a562008-06-30 02:43:01 +00006988
Dan Gohman475871a2008-07-27 21:46:04 +00006989 SDValue LL, LH, RL, RH;
Chris Lattner80c1a562008-06-30 02:43:01 +00006990 SplitVectorOp(Node->getOperand(2), LL, LH);
6991 SplitVectorOp(Node->getOperand(3), RL, RH);
6992
6993 // Handle a simple select with vector operands.
6994 Lo = DAG.getNode(ISD::SELECT_CC, NewVT_Lo, CondLHS, CondRHS,
6995 LL, RL, CondCode);
6996 Hi = DAG.getNode(ISD::SELECT_CC, NewVT_Hi, CondLHS, CondRHS,
6997 LH, RH, CondCode);
6998 break;
6999 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00007000 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007001 SDValue LL, LH, RL, RH;
Nate Begemanb43e9c12008-05-12 19:40:03 +00007002 SplitVectorOp(Node->getOperand(0), LL, LH);
7003 SplitVectorOp(Node->getOperand(1), RL, RH);
7004 Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2));
7005 Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2));
7006 break;
7007 }
Dan Gohman7f321562007-06-25 16:23:39 +00007008 case ISD::ADD:
7009 case ISD::SUB:
7010 case ISD::MUL:
7011 case ISD::FADD:
7012 case ISD::FSUB:
7013 case ISD::FMUL:
7014 case ISD::SDIV:
7015 case ISD::UDIV:
7016 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00007017 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007018 case ISD::AND:
7019 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00007020 case ISD::XOR:
7021 case ISD::UREM:
7022 case ISD::SREM:
7023 case ISD::FREM: {
Dan Gohman475871a2008-07-27 21:46:04 +00007024 SDValue LL, LH, RL, RH;
Chris Lattnerc7029802006-03-18 01:44:44 +00007025 SplitVectorOp(Node->getOperand(0), LL, LH);
7026 SplitVectorOp(Node->getOperand(1), RL, RH);
7027
Nate Begeman5db1afb2007-11-15 21:15:26 +00007028 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
7029 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00007030 break;
7031 }
Dan Gohman7f8613e2008-08-14 20:04:46 +00007032 case ISD::FP_ROUND:
Dan Gohman82669522007-10-11 23:57:53 +00007033 case ISD::FPOWI: {
Dan Gohman475871a2008-07-27 21:46:04 +00007034 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007035 SplitVectorOp(Node->getOperand(0), L, H);
7036
Nate Begeman5db1afb2007-11-15 21:15:26 +00007037 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
7038 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00007039 break;
7040 }
7041 case ISD::CTTZ:
7042 case ISD::CTLZ:
7043 case ISD::CTPOP:
7044 case ISD::FNEG:
7045 case ISD::FABS:
7046 case ISD::FSQRT:
7047 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00007048 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007049 case ISD::FLOG:
7050 case ISD::FLOG2:
7051 case ISD::FLOG10:
7052 case ISD::FEXP:
7053 case ISD::FEXP2:
Nate Begemanb348d182007-11-17 03:58:34 +00007054 case ISD::FP_TO_SINT:
7055 case ISD::FP_TO_UINT:
7056 case ISD::SINT_TO_FP:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007057 case ISD::UINT_TO_FP:
7058 case ISD::TRUNCATE:
7059 case ISD::ANY_EXTEND:
7060 case ISD::SIGN_EXTEND:
7061 case ISD::ZERO_EXTEND:
7062 case ISD::FP_EXTEND: {
Dan Gohman475871a2008-07-27 21:46:04 +00007063 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007064 SplitVectorOp(Node->getOperand(0), L, H);
7065
Nate Begeman5db1afb2007-11-15 21:15:26 +00007066 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
7067 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00007068 break;
7069 }
Dan Gohman7f321562007-06-25 16:23:39 +00007070 case ISD::LOAD: {
7071 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007072 SDValue Ch = LD->getChain();
7073 SDValue Ptr = LD->getBasePtr();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007074 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007075 const Value *SV = LD->getSrcValue();
7076 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007077 MVT MemoryVT = LD->getMemoryVT();
Dan Gohman7f321562007-06-25 16:23:39 +00007078 unsigned Alignment = LD->getAlignment();
7079 bool isVolatile = LD->isVolatile();
7080
Dan Gohman7f8613e2008-08-14 20:04:46 +00007081 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
7082 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
7083
7084 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7085 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7086 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7087
7088 Lo = DAG.getLoad(ISD::UNINDEXED, ExtType,
7089 NewVT_Lo, Ch, Ptr, Offset,
7090 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7091 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00007092 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00007093 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00007094 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00007095 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman7f8613e2008-08-14 20:04:46 +00007096 Hi = DAG.getLoad(ISD::UNINDEXED, ExtType,
7097 NewVT_Hi, Ch, Ptr, Offset,
7098 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00007099
7100 // Build a factor node to remember that this load is independent of the
7101 // other one.
Dan Gohman475871a2008-07-27 21:46:04 +00007102 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Chris Lattnerc7029802006-03-18 01:44:44 +00007103 Hi.getValue(1));
7104
7105 // Remember that we legalized the chain.
7106 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00007107 break;
7108 }
Dan Gohman7f321562007-06-25 16:23:39 +00007109 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00007110 // We know the result is a vector. The input may be either a vector or a
7111 // scalar value.
Dan Gohman475871a2008-07-27 21:46:04 +00007112 SDValue InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007113 if (!InOp.getValueType().isVector() ||
7114 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00007115 // The input is a scalar or single-element vector.
7116 // Lower to a store/load so that it can be split.
7117 // FIXME: this could be improved probably.
Mon P Wang2920d2b2008-07-15 05:28:34 +00007118 unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment(
7119 Op.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00007120 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greifba36cb52008-08-28 21:40:38 +00007121 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Chris Lattner7692eb42006-03-23 21:16:34 +00007122
Dan Gohman475871a2008-07-27 21:46:04 +00007123 SDValue St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00007124 InOp, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007125 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohman69de1932008-02-06 22:27:42 +00007126 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007127 PseudoSourceValue::getFixedStack(FI), 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00007128 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007129 // Split the vector and convert each of the pieces now.
7130 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007131 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
7132 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007133 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007134 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007135 }
7136
7137 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00007138 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007139 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007140 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007141}
7142
7143
Dan Gohman89b20c02007-06-27 14:06:22 +00007144/// ScalarizeVectorOp - Given an operand of single-element vector type
7145/// (e.g. v1f32), convert it into the equivalent operation that returns a
7146/// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +00007147SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007148 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007149 SDNode *Node = Op.getNode();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007150 MVT NewVT = Op.getValueType().getVectorElementType();
7151 assert(Op.getValueType().getVectorNumElements() == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00007152
Dan Gohman7f321562007-06-25 16:23:39 +00007153 // See if we already scalarized it.
Dan Gohman475871a2008-07-27 21:46:04 +00007154 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohman7f321562007-06-25 16:23:39 +00007155 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00007156
Dan Gohman475871a2008-07-27 21:46:04 +00007157 SDValue Result;
Chris Lattnerc7029802006-03-18 01:44:44 +00007158 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00007159 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007160#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007161 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007162#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007163 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7164 case ISD::ADD:
7165 case ISD::FADD:
7166 case ISD::SUB:
7167 case ISD::FSUB:
7168 case ISD::MUL:
7169 case ISD::FMUL:
7170 case ISD::SDIV:
7171 case ISD::UDIV:
7172 case ISD::FDIV:
7173 case ISD::SREM:
7174 case ISD::UREM:
7175 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007176 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007177 case ISD::AND:
7178 case ISD::OR:
7179 case ISD::XOR:
7180 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00007181 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007182 ScalarizeVectorOp(Node->getOperand(0)),
7183 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007184 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007185 case ISD::FNEG:
7186 case ISD::FABS:
7187 case ISD::FSQRT:
7188 case ISD::FSIN:
7189 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007190 case ISD::FLOG:
7191 case ISD::FLOG2:
7192 case ISD::FLOG10:
7193 case ISD::FEXP:
7194 case ISD::FEXP2:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007195 case ISD::FP_TO_SINT:
7196 case ISD::FP_TO_UINT:
7197 case ISD::SINT_TO_FP:
7198 case ISD::UINT_TO_FP:
7199 case ISD::SIGN_EXTEND:
7200 case ISD::ZERO_EXTEND:
7201 case ISD::ANY_EXTEND:
7202 case ISD::TRUNCATE:
7203 case ISD::FP_EXTEND:
Dan Gohman7f321562007-06-25 16:23:39 +00007204 Result = DAG.getNode(Node->getOpcode(),
7205 NewVT,
7206 ScalarizeVectorOp(Node->getOperand(0)));
7207 break;
Dan Gohman9e04c822007-10-12 14:13:46 +00007208 case ISD::FPOWI:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007209 case ISD::FP_ROUND:
Dan Gohman9e04c822007-10-12 14:13:46 +00007210 Result = DAG.getNode(Node->getOpcode(),
7211 NewVT,
7212 ScalarizeVectorOp(Node->getOperand(0)),
7213 Node->getOperand(1));
7214 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007215 case ISD::LOAD: {
7216 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007217 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7218 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman7f8613e2008-08-14 20:04:46 +00007219 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007220 const Value *SV = LD->getSrcValue();
7221 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007222 MVT MemoryVT = LD->getMemoryVT();
7223 unsigned Alignment = LD->getAlignment();
7224 bool isVolatile = LD->isVolatile();
7225
7226 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
7227 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
7228
7229 Result = DAG.getLoad(ISD::UNINDEXED, ExtType,
7230 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7231 MemoryVT.getVectorElementType(),
7232 isVolatile, Alignment);
Dan Gohman7f321562007-06-25 16:23:39 +00007233
Chris Lattnerc7029802006-03-18 01:44:44 +00007234 // Remember that we legalized the chain.
7235 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7236 break;
7237 }
Dan Gohman7f321562007-06-25 16:23:39 +00007238 case ISD::BUILD_VECTOR:
7239 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007240 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007241 case ISD::INSERT_VECTOR_ELT:
7242 // Returning the inserted scalar element.
7243 Result = Node->getOperand(1);
7244 break;
7245 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007246 assert(Node->getOperand(0).getValueType() == NewVT &&
7247 "Concat of non-legal vectors not yet supported!");
7248 Result = Node->getOperand(0);
7249 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007250 case ISD::VECTOR_SHUFFLE: {
7251 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman475871a2008-07-27 21:46:04 +00007252 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007253 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohman7f321562007-06-25 16:23:39 +00007254 Result = ScalarizeVectorOp(Node->getOperand(1));
7255 else
7256 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007257 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007258 }
7259 case ISD::EXTRACT_SUBVECTOR:
7260 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00007261 assert(Result.getValueType() == NewVT);
7262 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007263 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007264 SDValue Op0 = Op.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007265 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007266 Op0 = ScalarizeVectorOp(Op0);
7267 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007268 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007269 }
Dan Gohman7f321562007-06-25 16:23:39 +00007270 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007271 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007272 ScalarizeVectorOp(Op.getOperand(1)),
7273 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007274 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007275 case ISD::SELECT_CC:
7276 Result = DAG.getNode(ISD::SELECT_CC, NewVT, Node->getOperand(0),
7277 Node->getOperand(1),
7278 ScalarizeVectorOp(Op.getOperand(2)),
7279 ScalarizeVectorOp(Op.getOperand(3)),
7280 Node->getOperand(4));
7281 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007282 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007283 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7284 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Nate Begeman0d1704b2008-05-12 23:09:43 +00007285 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0), Op0, Op1,
7286 Op.getOperand(2));
7287 Result = DAG.getNode(ISD::SELECT, NewVT, Result,
7288 DAG.getConstant(-1ULL, NewVT),
7289 DAG.getConstant(0ULL, NewVT));
7290 break;
7291 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007292 }
7293
7294 if (TLI.isTypeLegal(NewVT))
7295 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007296 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7297 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007298 return Result;
7299}
7300
Chris Lattner3e928bb2005-01-07 07:47:09 +00007301
7302// SelectionDAG::Legalize - This is the entry point for the file.
7303//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00007304void SelectionDAG::Legalize() {
Chris Lattner3e928bb2005-01-07 07:47:09 +00007305 /// run - This is the main entry point to this class.
7306 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00007307 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00007308}
7309