blob: b7311b7d9e813a6bbf8b3305a9e21ba95fc5155c [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,
Dan Gohman929d3eb2008-10-01 15:07:49 +0000166 /// the LegalizedNodes map is filled in for any results that are not expanded,
Chris Lattnerc7029802006-03-18 01:44:44 +0000167 /// 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 Gohmanf06c8352008-09-30 18:30:35 +0000283 DAG.AssignTopologicalOrder();
284 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
285 E = prior(DAG.allnodes_end()); I != next(E); ++I)
286 HandleOp(SDValue(I, 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000287
288 // Finally, it's possible the root changed. Get the new root.
Dan Gohman475871a2008-07-27 21:46:04 +0000289 SDValue OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000290 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
291 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000292
293 ExpandedNodes.clear();
294 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000295 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000296 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000297 ScalarizedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000298
299 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000300 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000301}
302
Chris Lattner6831a812006-02-13 09:18:02 +0000303
304/// FindCallEndFromCallStart - Given a chained node that is part of a call
305/// sequence, find the CALLSEQ_END node that terminates the call sequence.
306static SDNode *FindCallEndFromCallStart(SDNode *Node) {
307 if (Node->getOpcode() == ISD::CALLSEQ_END)
308 return Node;
309 if (Node->use_empty())
310 return 0; // No CallSeqEnd
311
312 // The chain is usually at the end.
Dan Gohman475871a2008-07-27 21:46:04 +0000313 SDValue TheChain(Node, Node->getNumValues()-1);
Chris Lattner6831a812006-02-13 09:18:02 +0000314 if (TheChain.getValueType() != MVT::Other) {
315 // Sometimes it's at the beginning.
Dan Gohman475871a2008-07-27 21:46:04 +0000316 TheChain = SDValue(Node, 0);
Chris Lattner6831a812006-02-13 09:18:02 +0000317 if (TheChain.getValueType() != MVT::Other) {
318 // Otherwise, hunt for it.
319 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
320 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman475871a2008-07-27 21:46:04 +0000321 TheChain = SDValue(Node, i);
Chris Lattner6831a812006-02-13 09:18:02 +0000322 break;
323 }
324
325 // Otherwise, we walked into a node without a chain.
326 if (TheChain.getValueType() != MVT::Other)
327 return 0;
328 }
329 }
330
331 for (SDNode::use_iterator UI = Node->use_begin(),
332 E = Node->use_end(); UI != E; ++UI) {
333
334 // Make sure to only follow users of our token chain.
Dan Gohman89684502008-07-27 20:43:25 +0000335 SDNode *User = *UI;
Chris Lattner6831a812006-02-13 09:18:02 +0000336 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
337 if (User->getOperand(i) == TheChain)
338 if (SDNode *Result = FindCallEndFromCallStart(User))
339 return Result;
340 }
341 return 0;
342}
343
344/// FindCallStartFromCallEnd - Given a chained node that is part of a call
345/// sequence, find the CALLSEQ_START node that initiates the call sequence.
346static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
347 assert(Node && "Didn't find callseq_start for a call??");
348 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
349
350 assert(Node->getOperand(0).getValueType() == MVT::Other &&
351 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000352 return FindCallStartFromCallEnd(Node->getOperand(0).getNode());
Chris Lattner6831a812006-02-13 09:18:02 +0000353}
354
355/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
356/// see if any uses can reach Dest. If no dest operands can get to dest,
357/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000358///
359/// Keep track of the nodes we fine that actually do lead to Dest in
360/// NodesLeadingTo. This avoids retraversing them exponential number of times.
361///
362bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000363 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000364 if (N == Dest) return true; // N certainly leads to Dest :)
365
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000366 // If we've already processed this node and it does lead to Dest, there is no
367 // need to reprocess it.
368 if (NodesLeadingTo.count(N)) return true;
369
Chris Lattner6831a812006-02-13 09:18:02 +0000370 // If the first result of this node has been already legalized, then it cannot
371 // reach N.
372 switch (getTypeAction(N->getValueType(0))) {
373 case Legal:
Dan Gohman475871a2008-07-27 21:46:04 +0000374 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000375 break;
376 case Promote:
Dan Gohman475871a2008-07-27 21:46:04 +0000377 if (PromotedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000378 break;
379 case Expand:
Dan Gohman475871a2008-07-27 21:46:04 +0000380 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000381 break;
382 }
383
384 // Okay, this node has not already been legalized. Check and legalize all
385 // operands. If none lead to Dest, then we can legalize this node.
386 bool OperandsLeadToDest = false;
387 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
388 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Gabor Greifba36cb52008-08-28 21:40:38 +0000389 LegalizeAllNodesNotLeadingTo(N->getOperand(i).getNode(), Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000390
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000391 if (OperandsLeadToDest) {
392 NodesLeadingTo.insert(N);
393 return true;
394 }
Chris Lattner6831a812006-02-13 09:18:02 +0000395
396 // Okay, this node looks safe, legalize it and return false.
Dan Gohman475871a2008-07-27 21:46:04 +0000397 HandleOp(SDValue(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000398 return false;
399}
400
Dan Gohman7f321562007-06-25 16:23:39 +0000401/// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000402/// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000403void SelectionDAGLegalize::HandleOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000404 MVT VT = Op.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000405 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000406 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000407 case Legal: (void)LegalizeOp(Op); break;
408 case Promote: (void)PromoteOp(Op); break;
Chris Lattnerc7029802006-03-18 01:44:44 +0000409 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000410 if (!VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +0000411 // If this is an illegal scalar, expand it into its two component
412 // pieces.
Dan Gohman475871a2008-07-27 21:46:04 +0000413 SDValue X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000414 if (Op.getOpcode() == ISD::TargetConstant)
415 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000416 ExpandOp(Op, X, Y);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000417 } else if (VT.getVectorNumElements() == 1) {
Dan Gohman7f321562007-06-25 16:23:39 +0000418 // If this is an illegal single element vector, convert it to a
419 // scalar operation.
420 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000421 } else {
Dan Gohman7f321562007-06-25 16:23:39 +0000422 // Otherwise, this is an illegal multiple element vector.
423 // Split it in half and legalize both parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000424 SDValue X, Y;
Dan Gohman7f321562007-06-25 16:23:39 +0000425 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000426 }
427 break;
428 }
429}
Chris Lattner6831a812006-02-13 09:18:02 +0000430
Evan Cheng9f877882006-12-13 20:57:08 +0000431/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
432/// a load from the constant pool.
Dan Gohman475871a2008-07-27 21:46:04 +0000433static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng279101e2006-12-12 22:19:28 +0000434 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000435 bool Extend = false;
436
437 // If a FP immediate is precise when represented as a float and if the
438 // target can do an extending load from float to double, we put it into
439 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000440 // double. This shrinks FP constants and canonicalizes them for targets where
441 // an FP extending load is the same cost as a normal load (such as on the x87
442 // fp stack or PPC FP unit).
Duncan Sands83ec4b62008-06-06 12:08:01 +0000443 MVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000444 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000445 if (!UseCP) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000446 if (VT!=MVT::f64 && VT!=MVT::f32)
447 assert(0 && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000448 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Evan Chengef120572008-03-04 08:05:30 +0000449 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000450 }
451
Duncan Sands83ec4b62008-06-06 12:08:01 +0000452 MVT OrigVT = VT;
453 MVT SVT = VT;
Evan Chengef120572008-03-04 08:05:30 +0000454 while (SVT != MVT::f32) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000455 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Chengef120572008-03-04 08:05:30 +0000456 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
457 // Only do this if the target has a native EXTLOAD instruction from
458 // smaller type.
Evan Cheng6fd599f2008-03-05 01:30:59 +0000459 TLI.isLoadXLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000460 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000461 const Type *SType = SVT.getTypeForMVT();
Evan Chengef120572008-03-04 08:05:30 +0000462 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
463 VT = SVT;
464 Extend = true;
465 }
Evan Cheng00495212006-12-12 21:32:44 +0000466 }
467
Dan Gohman475871a2008-07-27 21:46:04 +0000468 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +0000469 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Evan Chengef120572008-03-04 08:05:30 +0000470 if (Extend)
471 return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000472 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman50284d82008-09-16 22:05:41 +0000473 0, VT, false, Alignment);
Evan Chengef120572008-03-04 08:05:30 +0000474 return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +0000475 PseudoSourceValue::getConstantPool(), 0, false, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +0000476}
477
Chris Lattner6831a812006-02-13 09:18:02 +0000478
Evan Cheng912095b2007-01-04 21:56:39 +0000479/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
480/// operations.
481static
Dan Gohman475871a2008-07-27 21:46:04 +0000482SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
483 SelectionDAG &DAG, TargetLowering &TLI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000484 MVT VT = Node->getValueType(0);
485 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000486 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
487 "fcopysign expansion only supported for f32 and f64");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000488 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000489
Evan Cheng912095b2007-01-04 21:56:39 +0000490 // First get the sign bit of second operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000491 SDValue Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000492 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
493 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000494 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Dan Gohman475871a2008-07-27 21:46:04 +0000495 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000496 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000497 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000498 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Evan Cheng912095b2007-01-04 21:56:39 +0000499 if (SizeDiff > 0) {
500 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
501 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
502 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000503 } else if (SizeDiff < 0) {
504 SignBit = DAG.getNode(ISD::ZERO_EXTEND, NVT, SignBit);
505 SignBit = DAG.getNode(ISD::SHL, NVT, SignBit,
506 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
507 }
Evan Cheng068c5f42007-01-05 21:31:51 +0000508
509 // Clear the sign bit of first operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000510 SDValue Mask2 = (VT == MVT::f64)
Evan Cheng068c5f42007-01-05 21:31:51 +0000511 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
512 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
513 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Dan Gohman475871a2008-07-27 21:46:04 +0000514 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000515 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
516
517 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000518 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
519 return Result;
520}
521
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000522/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
523static
Dan Gohman475871a2008-07-27 21:46:04 +0000524SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
525 TargetLowering &TLI) {
526 SDValue Chain = ST->getChain();
527 SDValue Ptr = ST->getBasePtr();
528 SDValue Val = ST->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000529 MVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000530 int Alignment = ST->getAlignment();
531 int SVOffset = ST->getSrcValueOffset();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000532 if (ST->getMemoryVT().isFloatingPoint() ||
533 ST->getMemoryVT().isVector()) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000534 // Expand to a bitconvert of the value to the integer type of the
535 // same size, then a (misaligned) int store.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000536 MVT intVT;
537 if (VT.is128BitVector() || VT == MVT::ppcf128 || VT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000538 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000539 else if (VT.is64BitVector() || VT==MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000540 intVT = MVT::i64;
541 else if (VT==MVT::f32)
542 intVT = MVT::i32;
543 else
Dale Johannesencd9f1742008-02-28 18:36:51 +0000544 assert(0 && "Unaligned store of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000545
Dan Gohman475871a2008-07-27 21:46:04 +0000546 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000547 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
548 SVOffset, ST->isVolatile(), Alignment);
549 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000550 assert(ST->getMemoryVT().isInteger() &&
551 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000552 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000553 // Get the half-size VT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000554 MVT NewStoredVT =
555 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
556 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000557 int IncrementSize = NumBits / 8;
558
559 // Divide the stored value in two parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000560 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
561 SDValue Lo = Val;
562 SDValue Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000563
564 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000565 SDValue Store1, Store2;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000566 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
567 ST->getSrcValue(), SVOffset, NewStoredVT,
568 ST->isVolatile(), Alignment);
569 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
570 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000571 Alignment = MinAlign(Alignment, IncrementSize);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000572 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
573 ST->getSrcValue(), SVOffset + IncrementSize,
574 NewStoredVT, ST->isVolatile(), Alignment);
575
576 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
577}
578
579/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
580static
Dan Gohman475871a2008-07-27 21:46:04 +0000581SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
582 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000583 int SVOffset = LD->getSrcValueOffset();
Dan Gohman475871a2008-07-27 21:46:04 +0000584 SDValue Chain = LD->getChain();
585 SDValue Ptr = LD->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000586 MVT VT = LD->getValueType(0);
587 MVT LoadedVT = LD->getMemoryVT();
588 if (VT.isFloatingPoint() || VT.isVector()) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000589 // Expand to a (misaligned) integer load of the same size,
Dale Johannesen8155d642008-02-27 22:36:00 +0000590 // then bitconvert to floating point or vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000591 MVT intVT;
592 if (LoadedVT.is128BitVector() ||
Dale Johannesen3c8b59c2008-03-01 03:40:57 +0000593 LoadedVT == MVT::ppcf128 || LoadedVT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000594 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000595 else if (LoadedVT.is64BitVector() || LoadedVT == MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000596 intVT = MVT::i64;
Chris Lattnere400af82007-11-19 21:38:03 +0000597 else if (LoadedVT == MVT::f32)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000598 intVT = MVT::i32;
599 else
Dale Johannesen8155d642008-02-27 22:36:00 +0000600 assert(0 && "Unaligned load of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000601
Dan Gohman475871a2008-07-27 21:46:04 +0000602 SDValue newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
Dale Johannesen907f28c2007-09-08 19:29:23 +0000603 SVOffset, LD->isVolatile(),
604 LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +0000605 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000606 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000607 Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
608
Dan Gohman475871a2008-07-27 21:46:04 +0000609 SDValue Ops[] = { Result, Chain };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000610 return DAG.getMergeValues(Ops, 2);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000611 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000612 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000613 "Unaligned load of unsupported type.");
614
Dale Johannesen8155d642008-02-27 22:36:00 +0000615 // Compute the new VT that is half the size of the old one. This is an
616 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000617 unsigned NumBits = LoadedVT.getSizeInBits();
618 MVT NewLoadedVT;
619 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000620 NumBits >>= 1;
621
622 unsigned Alignment = LD->getAlignment();
623 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000624 ISD::LoadExtType HiExtType = LD->getExtensionType();
625
626 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
627 if (HiExtType == ISD::NON_EXTLOAD)
628 HiExtType = ISD::ZEXTLOAD;
629
630 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000631 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000632 if (TLI.isLittleEndian()) {
633 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
634 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
635 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
636 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
637 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
638 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000639 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000640 } else {
641 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
642 NewLoadedVT,LD->isVolatile(), Alignment);
643 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
644 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
645 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
646 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000647 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000648 }
649
650 // aggregate the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000651 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
652 SDValue Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000653 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
654
Dan Gohman475871a2008-07-27 21:46:04 +0000655 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000656 Hi.getValue(1));
657
Dan Gohman475871a2008-07-27 21:46:04 +0000658 SDValue Ops[] = { Result, TF };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000659 return DAG.getMergeValues(Ops, 2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000660}
Evan Cheng912095b2007-01-04 21:56:39 +0000661
Dan Gohman82669522007-10-11 23:57:53 +0000662/// UnrollVectorOp - We know that the given vector has a legal type, however
663/// the operation it performs is not legal and is an operation that we have
664/// no way of lowering. "Unroll" the vector, splitting out the scalars and
665/// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000666SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000667 MVT VT = Op.getValueType();
Dan Gohman82669522007-10-11 23:57:53 +0000668 assert(isTypeLegal(VT) &&
669 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000670 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman82669522007-10-11 23:57:53 +0000671 "Can't unroll a vector with multiple results!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000672 unsigned NE = VT.getVectorNumElements();
673 MVT EltVT = VT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000674
Dan Gohman475871a2008-07-27 21:46:04 +0000675 SmallVector<SDValue, 8> Scalars;
676 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman82669522007-10-11 23:57:53 +0000677 for (unsigned i = 0; i != NE; ++i) {
678 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +0000679 SDValue Operand = Op.getOperand(j);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000680 MVT OperandVT = Operand.getValueType();
681 if (OperandVT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +0000682 // A vector operand; extract a single element.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000683 MVT OperandEltVT = OperandVT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000684 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
685 OperandEltVT,
686 Operand,
687 DAG.getConstant(i, MVT::i32));
688 } else {
689 // A scalar operand; just use it as is.
690 Operands[j] = Operand;
691 }
692 }
693 Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
694 &Operands[0], Operands.size()));
695 }
696
697 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
698}
699
Duncan Sands007f9842008-01-10 10:28:30 +0000700/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000701static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands007f9842008-01-10 10:28:30 +0000702 RTLIB::Libcall Call_F32,
703 RTLIB::Libcall Call_F64,
704 RTLIB::Libcall Call_F80,
705 RTLIB::Libcall Call_PPCF128) {
706 return
707 VT == MVT::f32 ? Call_F32 :
708 VT == MVT::f64 ? Call_F64 :
709 VT == MVT::f80 ? Call_F80 :
710 VT == MVT::ppcf128 ? Call_PPCF128 :
711 RTLIB::UNKNOWN_LIBCALL;
712}
713
Nate Begeman68679912008-04-25 18:07:40 +0000714/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
715/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
716/// is necessary to spill the vector being inserted into to memory, perform
717/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000718SDValue SelectionDAGLegalize::
719PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx) {
720 SDValue Tmp1 = Vec;
721 SDValue Tmp2 = Val;
722 SDValue Tmp3 = Idx;
Nate Begeman68679912008-04-25 18:07:40 +0000723
724 // If the target doesn't support this, we have to spill the input vector
725 // to a temporary stack slot, update the element, then reload it. This is
726 // badness. We could also load the value into a vector register (either
727 // with a "move to register" or "extload into register" instruction, then
728 // permute it into place, if the idx is a constant and if the idx is
729 // supported by the target.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000730 MVT VT = Tmp1.getValueType();
731 MVT EltVT = VT.getVectorElementType();
732 MVT IdxVT = Tmp3.getValueType();
733 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000734 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000735
Gabor Greifba36cb52008-08-28 21:40:38 +0000736 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman68679912008-04-25 18:07:40 +0000737
738 // Store the vector.
Dan Gohman475871a2008-07-27 21:46:04 +0000739 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +0000740 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000741
742 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000743 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Nate Begeman68679912008-04-25 18:07:40 +0000744 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
745 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000746 unsigned EltSize = EltVT.getSizeInBits()/8;
Nate Begeman68679912008-04-25 18:07:40 +0000747 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
Dan Gohman475871a2008-07-27 21:46:04 +0000748 SDValue StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000749 // Store the scalar value.
750 Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2,
Dan Gohmana54cf172008-07-11 22:44:52 +0000751 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman68679912008-04-25 18:07:40 +0000752 // Load the updated vector.
Dan Gohmana54cf172008-07-11 22:44:52 +0000753 return DAG.getLoad(VT, Ch, StackPtr,
754 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000755}
756
Dan Gohmana3466152007-07-13 20:14:11 +0000757/// LegalizeOp - We know that the specified value has a legal type, and
758/// that its operands are legal. Now ensure that the operation itself
759/// is legal, recursively ensuring that the operands' operations remain
760/// legal.
Dan Gohman475871a2008-07-27 21:46:04 +0000761SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000762 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
763 return Op;
764
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000765 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000766 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000767 SDNode *Node = Op.getNode();
Chris Lattnere3304a32005-01-08 20:35:13 +0000768
Chris Lattner3e928bb2005-01-07 07:47:09 +0000769 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000770 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000771 if (Node->getNumValues() > 1) {
772 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000773 if (getTypeAction(Node->getValueType(i)) != Legal) {
774 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000775 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000776 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000777 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000778 }
779 }
780
Chris Lattner45982da2005-05-12 16:53:42 +0000781 // Note that LegalizeOp may be reentered even from single-use nodes, which
782 // means that we always must cache transformed nodes.
Dan Gohman475871a2008-07-27 21:46:04 +0000783 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000784 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000785
Dan Gohman475871a2008-07-27 21:46:04 +0000786 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
787 SDValue Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000788 bool isCustom = false;
789
Chris Lattner3e928bb2005-01-07 07:47:09 +0000790 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000791 case ISD::FrameIndex:
792 case ISD::EntryToken:
793 case ISD::Register:
794 case ISD::BasicBlock:
795 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000796 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000797 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000798 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000799 case ISD::TargetConstantPool:
800 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000801 case ISD::TargetGlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +0000802 case ISD::TargetExternalSymbol:
Chris Lattner948c1b12006-01-28 08:31:04 +0000803 case ISD::VALUETYPE:
804 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +0000805 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +0000806 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +0000807 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +0000808 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +0000809 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +0000810 "This must be legal!");
811 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000812 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000813 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
814 // If this is a target node, legalize it by legalizing the operands then
815 // passing it through.
Dan Gohman475871a2008-07-27 21:46:04 +0000816 SmallVector<SDValue, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000817 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000818 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000819
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000820 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000821
822 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
823 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +0000824 return Result.getValue(Op.getResNo());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000825 }
826 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000827#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +0000828 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000829#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000830 assert(0 && "Do not know how to legalize this operator!");
831 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +0000832 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000833 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000834 case ISD::GlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +0000835 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000836 case ISD::ConstantPool:
837 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000838 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
839 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000840 case TargetLowering::Custom:
841 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000842 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner948c1b12006-01-28 08:31:04 +0000843 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000844 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000845 break;
846 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000847 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000848 case ISD::FRAMEADDR:
849 case ISD::RETURNADDR:
850 // The only option for these nodes is to custom lower them. If the target
851 // does not custom lower them, then return zero.
852 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000853 if (Tmp1.getNode())
Nate Begemanbcc5f362007-01-29 22:58:52 +0000854 Result = Tmp1;
855 else
856 Result = DAG.getConstant(0, TLI.getPointerTy());
857 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000858 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000859 MVT VT = Node->getValueType(0);
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000860 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
861 default: assert(0 && "This action is not supported yet!");
862 case TargetLowering::Custom:
863 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000864 if (Result.getNode()) break;
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000865 // Fall Thru
866 case TargetLowering::Legal:
867 Result = DAG.getConstant(0, VT);
868 break;
869 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000870 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000871 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000872 case ISD::EXCEPTIONADDR: {
873 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000874 MVT VT = Node->getValueType(0);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000875 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
876 default: assert(0 && "This action is not supported yet!");
877 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000878 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000879 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000880 }
881 break;
882 case TargetLowering::Custom:
883 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000884 if (Result.getNode()) break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000885 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000886 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +0000887 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000888 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000889 break;
890 }
891 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000892 }
Gabor Greifba36cb52008-08-28 21:40:38 +0000893 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +0000894
Gabor Greifba36cb52008-08-28 21:40:38 +0000895 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +0000896 "Cannot return more than two values!");
897
898 // Since we produced two values, make sure to remember that we
899 // legalized both of them.
900 Tmp1 = LegalizeOp(Result);
901 Tmp2 = LegalizeOp(Result.getValue(1));
902 AddLegalizedOperand(Op.getValue(0), Tmp1);
903 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +0000904 return Op.getResNo() ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +0000905 case ISD::EHSELECTION: {
906 Tmp1 = LegalizeOp(Node->getOperand(0));
907 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000908 MVT VT = Node->getValueType(0);
Jim Laskey8782d482007-02-28 20:43:58 +0000909 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
910 default: assert(0 && "This action is not supported yet!");
911 case TargetLowering::Expand: {
912 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000913 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +0000914 }
915 break;
916 case TargetLowering::Custom:
917 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000918 if (Result.getNode()) break;
Jim Laskey8782d482007-02-28 20:43:58 +0000919 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000920 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +0000921 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000922 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey8782d482007-02-28 20:43:58 +0000923 break;
924 }
925 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000926 }
Gabor Greifba36cb52008-08-28 21:40:38 +0000927 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +0000928
Gabor Greifba36cb52008-08-28 21:40:38 +0000929 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +0000930 "Cannot return more than two values!");
931
932 // Since we produced two values, make sure to remember that we
933 // legalized both of them.
934 Tmp1 = LegalizeOp(Result);
935 Tmp2 = LegalizeOp(Result.getValue(1));
936 AddLegalizedOperand(Op.getValue(0), Tmp1);
937 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +0000938 return Op.getResNo() ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000939 case ISD::EH_RETURN: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000940 MVT VT = Node->getValueType(0);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000941 // The only "good" option for this node is to custom lower it.
942 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
943 default: assert(0 && "This action is not supported at all!");
944 case TargetLowering::Custom:
945 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000946 if (Result.getNode()) break;
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000947 // Fall Thru
948 case TargetLowering::Legal:
949 // Target does not know, how to lower this, lower to noop
950 Result = LegalizeOp(Node->getOperand(0));
951 break;
952 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000953 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000954 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000955 case ISD::AssertSext:
956 case ISD::AssertZext:
957 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000958 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000959 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000960 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000961 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif99a6cb92008-08-26 22:36:50 +0000962 Result = Node->getOperand(Op.getResNo());
Chris Lattner456a93a2006-01-28 07:39:30 +0000963 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000964 case ISD::CopyFromReg:
965 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000966 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000967 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000968 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000969 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000970 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000971 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000972 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000973 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
974 } else {
975 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
976 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000977 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
978 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000979 // Since CopyFromReg produces two values, make sure to remember that we
980 // legalized both of them.
981 AddLegalizedOperand(Op.getValue(0), Result);
982 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +0000983 return Result.getValue(Op.getResNo());
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000984 case ISD::UNDEF: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000985 MVT VT = Op.getValueType();
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000986 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000987 default: assert(0 && "This action is not supported yet!");
988 case TargetLowering::Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000989 if (VT.isInteger())
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000990 Result = DAG.getConstant(0, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000991 else if (VT.isFloatingPoint())
992 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf41db212007-09-26 17:26:49 +0000993 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000994 else
995 assert(0 && "Unknown value type!");
996 break;
Nate Begemanea19cd52005-04-02 00:41:14 +0000997 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000998 break;
999 }
1000 break;
1001 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001002
Chris Lattner48b61a72006-03-28 00:40:33 +00001003 case ISD::INTRINSIC_W_CHAIN:
1004 case ISD::INTRINSIC_WO_CHAIN:
1005 case ISD::INTRINSIC_VOID: {
Dan Gohman475871a2008-07-27 21:46:04 +00001006 SmallVector<SDValue, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001007 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1008 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001009 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +00001010
1011 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +00001012 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001013 TargetLowering::Custom) {
1014 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001015 if (Tmp3.getNode()) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001016 }
1017
Gabor Greifba36cb52008-08-28 21:40:38 +00001018 if (Result.getNode()->getNumValues() == 1) break;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001019
1020 // Must have return value and chain result.
Gabor Greifba36cb52008-08-28 21:40:38 +00001021 assert(Result.getNode()->getNumValues() == 2 &&
Chris Lattner13fc2f12006-03-27 20:28:29 +00001022 "Cannot return more than two values!");
1023
1024 // Since loads produce two values, make sure to remember that we
1025 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001026 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1027 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001028 return Result.getValue(Op.getResNo());
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001029 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001030
Dan Gohman7f460202008-06-30 20:59:49 +00001031 case ISD::DBG_STOPPOINT:
1032 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Chris Lattner36ce6912005-11-29 06:21:05 +00001033 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1034
Dan Gohman7f460202008-06-30 20:59:49 +00001035 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Chris Lattner36ce6912005-11-29 06:21:05 +00001036 case TargetLowering::Promote:
1037 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001038 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001039 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001040 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Dan Gohman44066042008-07-01 00:05:16 +00001041 bool useLABEL = TLI.isOperationLegal(ISD::DBG_LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001042
Dan Gohman7f460202008-06-30 20:59:49 +00001043 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001044 if (MMI && (useDEBUG_LOC || useLABEL)) {
Dan Gohman7f460202008-06-30 20:59:49 +00001045 const CompileUnitDesc *CompileUnit = DSP->getCompileUnit();
1046 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001047
Dan Gohman7f460202008-06-30 20:59:49 +00001048 unsigned Line = DSP->getLine();
1049 unsigned Col = DSP->getColumn();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001050
1051 if (useDEBUG_LOC) {
Dan Gohman475871a2008-07-27 21:46:04 +00001052 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Evan Cheng71e86852008-07-08 20:06:39 +00001053 DAG.getConstant(Col, MVT::i32),
1054 DAG.getConstant(SrcFile, MVT::i32) };
1055 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Ops, 4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001056 } else {
Evan Chenga647c922008-02-01 02:05:57 +00001057 unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
Dan Gohman44066042008-07-01 00:05:16 +00001058 Result = DAG.getLabel(ISD::DBG_LABEL, Tmp1, ID);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001059 }
Jim Laskeye81aecb2005-12-21 20:51:37 +00001060 } else {
1061 Result = Tmp1; // chain
1062 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001063 break;
Chris Lattnere7736732005-12-18 23:54:29 +00001064 }
Evan Cheng71e86852008-07-08 20:06:39 +00001065 case TargetLowering::Legal: {
1066 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1067 if (Action == Legal && Tmp1 == Node->getOperand(0))
1068 break;
1069
Dan Gohman475871a2008-07-27 21:46:04 +00001070 SmallVector<SDValue, 8> Ops;
Evan Cheng71e86852008-07-08 20:06:39 +00001071 Ops.push_back(Tmp1);
1072 if (Action == Legal) {
1073 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1074 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1075 } else {
1076 // Otherwise promote them.
1077 Ops.push_back(PromoteOp(Node->getOperand(1)));
1078 Ops.push_back(PromoteOp(Node->getOperand(2)));
Chris Lattner36ce6912005-11-29 06:21:05 +00001079 }
Evan Cheng71e86852008-07-08 20:06:39 +00001080 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1081 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1082 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001083 break;
1084 }
Evan Cheng71e86852008-07-08 20:06:39 +00001085 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001086 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001087
1088 case ISD::DECLARE:
1089 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1090 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1091 default: assert(0 && "This action is not supported yet!");
1092 case TargetLowering::Legal:
1093 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1094 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1095 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1096 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1097 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001098 case TargetLowering::Expand:
1099 Result = LegalizeOp(Node->getOperand(0));
1100 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001101 }
1102 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001103
1104 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001105 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001106 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001107 default: assert(0 && "This action is not supported yet!");
Evan Cheng71e86852008-07-08 20:06:39 +00001108 case TargetLowering::Legal: {
1109 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001110 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Cheng71e86852008-07-08 20:06:39 +00001111 if (Action == Legal && Tmp1 == Node->getOperand(0))
1112 break;
1113 if (Action == Legal) {
1114 Tmp2 = Node->getOperand(1);
1115 Tmp3 = Node->getOperand(2);
1116 Tmp4 = Node->getOperand(3);
1117 } else {
1118 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1119 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1120 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1121 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001122 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001123 break;
1124 }
Evan Cheng71e86852008-07-08 20:06:39 +00001125 }
Jim Laskeyabf6d172006-01-05 01:25:28 +00001126 break;
1127
Dan Gohman44066042008-07-01 00:05:16 +00001128 case ISD::DBG_LABEL:
1129 case ISD::EH_LABEL:
1130 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1131 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001132 default: assert(0 && "This action is not supported yet!");
1133 case TargetLowering::Legal:
1134 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001135 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001136 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001137 case TargetLowering::Expand:
1138 Result = LegalizeOp(Node->getOperand(0));
1139 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001140 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001141 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001142
Evan Cheng27b7db52008-03-08 00:58:38 +00001143 case ISD::PREFETCH:
1144 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1145 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1146 default: assert(0 && "This action is not supported yet!");
1147 case TargetLowering::Legal:
1148 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1149 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1150 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1151 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1152 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1153 break;
1154 case TargetLowering::Expand:
1155 // It's a noop.
1156 Result = LegalizeOp(Node->getOperand(0));
1157 break;
1158 }
1159 break;
1160
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001161 case ISD::MEMBARRIER: {
1162 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001163 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1164 default: assert(0 && "This action is not supported yet!");
1165 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001166 SDValue Ops[6];
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001167 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001168 for (int x = 1; x < 6; ++x) {
1169 Ops[x] = Node->getOperand(x);
1170 if (!isTypeLegal(Ops[x].getValueType()))
1171 Ops[x] = PromoteOp(Ops[x]);
1172 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001173 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1174 break;
1175 }
1176 case TargetLowering::Expand:
1177 //There is no libgcc call for this op
1178 Result = Node->getOperand(0); // Noop
1179 break;
1180 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001181 break;
1182 }
1183
Dale Johannesene00a8a22008-08-28 02:44:49 +00001184 case ISD::ATOMIC_CMP_SWAP_8:
1185 case ISD::ATOMIC_CMP_SWAP_16:
1186 case ISD::ATOMIC_CMP_SWAP_32:
1187 case ISD::ATOMIC_CMP_SWAP_64: {
Mon P Wang63307c32008-05-05 19:05:59 +00001188 unsigned int num_operands = 4;
1189 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001190 SDValue Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001191 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001192 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001193 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1194
1195 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1196 default: assert(0 && "This action is not supported yet!");
1197 case TargetLowering::Custom:
1198 Result = TLI.LowerOperation(Result, DAG);
1199 break;
1200 case TargetLowering::Legal:
1201 break;
1202 }
Dan Gohman475871a2008-07-27 21:46:04 +00001203 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1204 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001205 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001206 }
Dale Johannesene00a8a22008-08-28 02:44:49 +00001207 case ISD::ATOMIC_LOAD_ADD_8:
1208 case ISD::ATOMIC_LOAD_SUB_8:
1209 case ISD::ATOMIC_LOAD_AND_8:
1210 case ISD::ATOMIC_LOAD_OR_8:
1211 case ISD::ATOMIC_LOAD_XOR_8:
1212 case ISD::ATOMIC_LOAD_NAND_8:
1213 case ISD::ATOMIC_LOAD_MIN_8:
1214 case ISD::ATOMIC_LOAD_MAX_8:
1215 case ISD::ATOMIC_LOAD_UMIN_8:
1216 case ISD::ATOMIC_LOAD_UMAX_8:
1217 case ISD::ATOMIC_SWAP_8:
1218 case ISD::ATOMIC_LOAD_ADD_16:
1219 case ISD::ATOMIC_LOAD_SUB_16:
1220 case ISD::ATOMIC_LOAD_AND_16:
1221 case ISD::ATOMIC_LOAD_OR_16:
1222 case ISD::ATOMIC_LOAD_XOR_16:
1223 case ISD::ATOMIC_LOAD_NAND_16:
1224 case ISD::ATOMIC_LOAD_MIN_16:
1225 case ISD::ATOMIC_LOAD_MAX_16:
1226 case ISD::ATOMIC_LOAD_UMIN_16:
1227 case ISD::ATOMIC_LOAD_UMAX_16:
1228 case ISD::ATOMIC_SWAP_16:
1229 case ISD::ATOMIC_LOAD_ADD_32:
1230 case ISD::ATOMIC_LOAD_SUB_32:
1231 case ISD::ATOMIC_LOAD_AND_32:
1232 case ISD::ATOMIC_LOAD_OR_32:
1233 case ISD::ATOMIC_LOAD_XOR_32:
1234 case ISD::ATOMIC_LOAD_NAND_32:
1235 case ISD::ATOMIC_LOAD_MIN_32:
1236 case ISD::ATOMIC_LOAD_MAX_32:
1237 case ISD::ATOMIC_LOAD_UMIN_32:
1238 case ISD::ATOMIC_LOAD_UMAX_32:
1239 case ISD::ATOMIC_SWAP_32:
1240 case ISD::ATOMIC_LOAD_ADD_64:
1241 case ISD::ATOMIC_LOAD_SUB_64:
1242 case ISD::ATOMIC_LOAD_AND_64:
1243 case ISD::ATOMIC_LOAD_OR_64:
1244 case ISD::ATOMIC_LOAD_XOR_64:
1245 case ISD::ATOMIC_LOAD_NAND_64:
1246 case ISD::ATOMIC_LOAD_MIN_64:
1247 case ISD::ATOMIC_LOAD_MAX_64:
1248 case ISD::ATOMIC_LOAD_UMIN_64:
1249 case ISD::ATOMIC_LOAD_UMAX_64:
1250 case ISD::ATOMIC_SWAP_64: {
Mon P Wang63307c32008-05-05 19:05:59 +00001251 unsigned int num_operands = 3;
1252 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001253 SDValue Ops[3];
Mon P Wang63307c32008-05-05 19:05:59 +00001254 for (unsigned int x = 0; x < num_operands; ++x)
1255 Ops[x] = LegalizeOp(Node->getOperand(x));
1256 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001257
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001258 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001259 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001260 case TargetLowering::Custom:
1261 Result = TLI.LowerOperation(Result, DAG);
1262 break;
1263 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001264 break;
1265 }
Dan Gohman475871a2008-07-27 21:46:04 +00001266 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1267 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001268 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001269 }
Scott Michelc1513d22007-08-08 23:23:31 +00001270 case ISD::Constant: {
1271 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1272 unsigned opAction =
1273 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1274
Chris Lattner3e928bb2005-01-07 07:47:09 +00001275 // We know we don't need to expand constants here, constants only have one
1276 // value and we check that it is fine above.
1277
Scott Michelc1513d22007-08-08 23:23:31 +00001278 if (opAction == TargetLowering::Custom) {
1279 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001280 if (Tmp1.getNode())
Scott Michelc1513d22007-08-08 23:23:31 +00001281 Result = Tmp1;
1282 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001283 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001284 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001285 case ISD::ConstantFP: {
1286 // Spill FP immediates to the constant pool if the target cannot directly
1287 // codegen them. Targets often have some immediate values that can be
1288 // efficiently generated into an FP register without a load. We explicitly
1289 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001290 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1291
Chris Lattner3181a772006-01-29 06:26:56 +00001292 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1293 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001294 case TargetLowering::Legal:
1295 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001296 case TargetLowering::Custom:
1297 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001298 if (Tmp3.getNode()) {
Chris Lattner3181a772006-01-29 06:26:56 +00001299 Result = Tmp3;
1300 break;
1301 }
1302 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001303 case TargetLowering::Expand: {
1304 // Check to see if this FP immediate is already legal.
1305 bool isLegal = false;
1306 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1307 E = TLI.legal_fpimm_end(); I != E; ++I) {
1308 if (CFP->isExactlyValue(*I)) {
1309 isLegal = true;
1310 break;
1311 }
1312 }
1313 // If this is a legal constant, turn it into a TargetConstantFP node.
1314 if (isLegal)
1315 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001316 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001317 }
Nate Begemane1795842008-02-14 08:57:00 +00001318 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001319 break;
1320 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001321 case ISD::TokenFactor:
1322 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001323 Tmp1 = LegalizeOp(Node->getOperand(0));
1324 Tmp2 = LegalizeOp(Node->getOperand(1));
1325 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1326 } else if (Node->getNumOperands() == 3) {
1327 Tmp1 = LegalizeOp(Node->getOperand(0));
1328 Tmp2 = LegalizeOp(Node->getOperand(1));
1329 Tmp3 = LegalizeOp(Node->getOperand(2));
1330 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001331 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00001332 SmallVector<SDValue, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001333 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001334 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1335 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001336 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001337 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001338 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001339
1340 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001341 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001342 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001343 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001344 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001345 // A call within a calling sequence must be legalized to something
1346 // other than the normal CALLSEQ_END. Violating this gets Legalize
1347 // into an infinite loop.
1348 assert ((!IsLegalizingCall ||
1349 Node->getOpcode() != ISD::CALL ||
Gabor Greifba36cb52008-08-28 21:40:38 +00001350 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesen0ea03562008-03-05 19:14:03 +00001351 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001352
1353 // The number of incoming and outgoing values should match; unless the final
1354 // outgoing value is a flag.
Gabor Greifba36cb52008-08-28 21:40:38 +00001355 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1356 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1357 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001358 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001359 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001360
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001361 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001362 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greifba36cb52008-08-28 21:40:38 +00001363 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1364 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001365 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001366 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001367 if (Op.getResNo() == i)
Chris Lattnere2e41732006-05-16 05:49:56 +00001368 Tmp2 = Tmp1;
Dan Gohman475871a2008-07-27 21:46:04 +00001369 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Chris Lattnere2e41732006-05-16 05:49:56 +00001370 }
1371 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001372 case ISD::EXTRACT_SUBREG: {
1373 Tmp1 = LegalizeOp(Node->getOperand(0));
1374 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1375 assert(idx && "Operand must be a constant");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001376 Tmp2 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lamb557c3632007-07-26 07:34:40 +00001377 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1378 }
1379 break;
1380 case ISD::INSERT_SUBREG: {
1381 Tmp1 = LegalizeOp(Node->getOperand(0));
1382 Tmp2 = LegalizeOp(Node->getOperand(1));
1383 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1384 assert(idx && "Operand must be a constant");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001385 Tmp3 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lamb557c3632007-07-26 07:34:40 +00001386 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1387 }
1388 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001389 case ISD::BUILD_VECTOR:
1390 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001391 default: assert(0 && "This action is not supported yet!");
1392 case TargetLowering::Custom:
1393 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001394 if (Tmp3.getNode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001395 Result = Tmp3;
1396 break;
1397 }
1398 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001399 case TargetLowering::Expand:
Gabor Greifba36cb52008-08-28 21:40:38 +00001400 Result = ExpandBUILD_VECTOR(Result.getNode());
Chris Lattnerb2827b02006-03-19 00:52:58 +00001401 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001402 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001403 break;
1404 case ISD::INSERT_VECTOR_ELT:
1405 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001406 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001407
1408 // The type of the value to insert may not be legal, even though the vector
1409 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1410 // here.
1411 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1412 default: assert(0 && "Cannot expand insert element operand");
1413 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1414 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1415 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001416 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1417
1418 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1419 Node->getValueType(0))) {
1420 default: assert(0 && "This action is not supported yet!");
1421 case TargetLowering::Legal:
1422 break;
1423 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001424 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001425 if (Tmp4.getNode()) {
Nate Begeman2281a992008-01-05 20:47:37 +00001426 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001427 break;
1428 }
1429 // FALLTHROUGH
1430 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001431 // If the insert index is a constant, codegen this as a scalar_to_vector,
1432 // then a shuffle that inserts it into the right position in the vector.
1433 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001434 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1435 // match the element type of the vector being created.
1436 if (Tmp2.getValueType() ==
Duncan Sands83ec4b62008-06-06 12:08:01 +00001437 Op.getValueType().getVectorElementType()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001438 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
Nate Begeman0325d902008-02-13 06:43:04 +00001439 Tmp1.getValueType(), Tmp2);
1440
Duncan Sands83ec4b62008-06-06 12:08:01 +00001441 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1442 MVT ShufMaskVT =
1443 MVT::getIntVectorWithNumElements(NumElts);
1444 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Nate Begeman0325d902008-02-13 06:43:04 +00001445
1446 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1447 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1448 // elt 0 of the RHS.
Dan Gohman475871a2008-07-27 21:46:04 +00001449 SmallVector<SDValue, 8> ShufOps;
Nate Begeman0325d902008-02-13 06:43:04 +00001450 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001451 if (i != InsertPos->getZExtValue())
Nate Begeman0325d902008-02-13 06:43:04 +00001452 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1453 else
1454 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1455 }
Dan Gohman475871a2008-07-27 21:46:04 +00001456 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
Nate Begeman0325d902008-02-13 06:43:04 +00001457 &ShufOps[0], ShufOps.size());
1458
1459 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1460 Tmp1, ScVec, ShufMask);
1461 Result = LegalizeOp(Result);
1462 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001463 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001464 }
Nate Begeman68679912008-04-25 18:07:40 +00001465 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001466 break;
1467 }
1468 }
1469 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001470 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001471 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1472 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1473 break;
1474 }
1475
Chris Lattnerce872152006-03-19 06:31:19 +00001476 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1477 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1478 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1479 Node->getValueType(0))) {
1480 default: assert(0 && "This action is not supported yet!");
1481 case TargetLowering::Legal:
1482 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001483 case TargetLowering::Custom:
1484 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001485 if (Tmp3.getNode()) {
Chris Lattner4d3abee2006-03-19 06:47:21 +00001486 Result = Tmp3;
1487 break;
1488 }
1489 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001490 case TargetLowering::Expand:
1491 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001492 break;
1493 }
Chris Lattnerce872152006-03-19 06:31:19 +00001494 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001495 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001496 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1497 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1498 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1499
1500 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001501 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1502 default: assert(0 && "Unknown operation action!");
1503 case TargetLowering::Legal:
1504 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1505 "vector shuffle should not be created if not legal!");
1506 break;
1507 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001508 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001509 if (Tmp3.getNode()) {
Evan Cheng18dd6d02006-04-05 06:07:11 +00001510 Result = Tmp3;
1511 break;
1512 }
1513 // FALLTHROUGH
1514 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001515 MVT VT = Node->getValueType(0);
1516 MVT EltVT = VT.getVectorElementType();
1517 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00001518 SDValue Mask = Node->getOperand(2);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001519 unsigned NumElems = Mask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00001520 SmallVector<SDValue,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001521 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001522 SDValue Arg = Mask.getOperand(i);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001523 if (Arg.getOpcode() == ISD::UNDEF) {
1524 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1525 } else {
1526 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001527 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng18dd6d02006-04-05 06:07:11 +00001528 if (Idx < NumElems)
1529 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1530 DAG.getConstant(Idx, PtrVT)));
1531 else
1532 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1533 DAG.getConstant(Idx - NumElems, PtrVT)));
1534 }
1535 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001536 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001537 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001538 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001539 case TargetLowering::Promote: {
1540 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001541 MVT OVT = Node->getValueType(0);
1542 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001543
1544 // Cast the two input vectors.
1545 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1546 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1547
1548 // Convert the shuffle mask to the right # elements.
Dan Gohman475871a2008-07-27 21:46:04 +00001549 Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001550 assert(Tmp3.getNode() && "Shuffle not legal?");
Chris Lattner4352cc92006-04-04 17:23:26 +00001551 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1552 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1553 break;
1554 }
Chris Lattner87100e02006-03-20 01:52:29 +00001555 }
1556 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001557
1558 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001559 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001560 Tmp2 = LegalizeOp(Node->getOperand(1));
1561 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001562 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001563 break;
1564
Dan Gohman7f321562007-06-25 16:23:39 +00001565 case ISD::EXTRACT_SUBVECTOR:
1566 Tmp1 = Node->getOperand(0);
1567 Tmp2 = LegalizeOp(Node->getOperand(1));
1568 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1569 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001570 break;
1571
Chris Lattner6831a812006-02-13 09:18:02 +00001572 case ISD::CALLSEQ_START: {
1573 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1574
1575 // Recursively Legalize all of the inputs of the call end that do not lead
1576 // to this call start. This ensures that any libcalls that need be inserted
1577 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001578 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001579 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00001580 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001581 NodesLeadingTo);
1582 }
Chris Lattner6831a812006-02-13 09:18:02 +00001583
1584 // Now that we legalized all of the inputs (which may have inserted
1585 // libcalls) create the new CALLSEQ_START node.
1586 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1587
1588 // Merge in the last call, to ensure that this call start after the last
1589 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001590 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001591 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1592 Tmp1 = LegalizeOp(Tmp1);
1593 }
Chris Lattner6831a812006-02-13 09:18:02 +00001594
1595 // Do not try to legalize the target-specific arguments (#1+).
1596 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001597 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001598 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001599 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001600 }
1601
1602 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001603 AddLegalizedOperand(Op.getValue(0), Result);
1604 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1605 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1606
Chris Lattner6831a812006-02-13 09:18:02 +00001607 // Now that the callseq_start and all of the non-call nodes above this call
1608 // sequence have been legalized, legalize the call itself. During this
1609 // process, no libcalls can/will be inserted, guaranteeing that no calls
1610 // can overlap.
1611 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001612 // Note that we are selecting this call!
Dan Gohman475871a2008-07-27 21:46:04 +00001613 LastCALLSEQ_END = SDValue(CallEnd, 0);
Chris Lattner6831a812006-02-13 09:18:02 +00001614 IsLegalizingCall = true;
1615
1616 // Legalize the call, starting from the CALLSEQ_END.
1617 LegalizeOp(LastCALLSEQ_END);
1618 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1619 return Result;
1620 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001621 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001622 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1623 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greifba36cb52008-08-28 21:40:38 +00001624 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman475871a2008-07-27 21:46:04 +00001625 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1626 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001627 assert(I != LegalizedNodes.end() &&
1628 "Legalizing the call start should have legalized this node!");
1629 return I->second;
1630 }
1631
1632 // Otherwise, the call start has been legalized and everything is going
1633 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001634 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001635 // Do not try to legalize the target-specific arguments (#1+), except for
1636 // an optional flag input.
1637 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1638 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001639 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001640 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001641 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001642 }
1643 } else {
1644 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1645 if (Tmp1 != Node->getOperand(0) ||
1646 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001647 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001648 Ops[0] = Tmp1;
1649 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001650 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001651 }
Chris Lattner6a542892006-01-24 05:48:21 +00001652 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001653 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001654 // This finishes up call legalization.
1655 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001656
1657 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman475871a2008-07-27 21:46:04 +00001658 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Chris Lattner4b653a02006-02-14 00:55:02 +00001659 if (Node->getNumValues() == 2)
Dan Gohman475871a2008-07-27 21:46:04 +00001660 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001661 return Result.getValue(Op.getResNo());
Evan Chenga7dce3c2006-01-11 22:14:47 +00001662 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001663 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001664 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1665 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1666 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001667 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001668
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001669 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001670 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001671 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001672 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001673 case TargetLowering::Expand: {
1674 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1675 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1676 " not tell us which reg is the stack pointer!");
Dan Gohman475871a2008-07-27 21:46:04 +00001677 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001678
1679 // Chain the dynamic stack allocation so that it doesn't modify the stack
1680 // pointer when other instructions are using the stack.
1681 Chain = DAG.getCALLSEQ_START(Chain,
1682 DAG.getConstant(0, TLI.getPointerTy()));
1683
Dan Gohman475871a2008-07-27 21:46:04 +00001684 SDValue Size = Tmp2.getOperand(1);
1685 SDValue SP = DAG.getCopyFromReg(Chain, SPReg, VT);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001686 Chain = SP.getValue(1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001687 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Cheng61bbbab2007-08-16 23:50:06 +00001688 unsigned StackAlign =
1689 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1690 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001691 SP = DAG.getNode(ISD::AND, VT, SP,
1692 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001693 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001694 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1695
1696 Tmp2 =
1697 DAG.getCALLSEQ_END(Chain,
1698 DAG.getConstant(0, TLI.getPointerTy()),
1699 DAG.getConstant(0, TLI.getPointerTy()),
Dan Gohman475871a2008-07-27 21:46:04 +00001700 SDValue());
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001701
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001702 Tmp1 = LegalizeOp(Tmp1);
1703 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001704 break;
1705 }
1706 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001707 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001708 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001709 Tmp1 = LegalizeOp(Tmp3);
1710 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001711 }
Chris Lattner903d2782006-01-15 08:54:32 +00001712 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001713 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001714 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001715 }
Chris Lattner903d2782006-01-15 08:54:32 +00001716 // Since this op produce two values, make sure to remember that we
1717 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001718 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1719 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001720 return Op.getResNo() ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001721 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001722 case ISD::INLINEASM: {
Dan Gohman475871a2008-07-27 21:46:04 +00001723 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001724 bool Changed = false;
1725 // Legalize all of the operands of the inline asm, in case they are nodes
1726 // that need to be expanded or something. Note we skip the asm string and
1727 // all of the TargetConstant flags.
Dan Gohman475871a2008-07-27 21:46:04 +00001728 SDValue Op = LegalizeOp(Ops[0]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001729 Changed = Op != Ops[0];
1730 Ops[0] = Op;
1731
1732 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1733 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001734 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getZExtValue() >> 3;
Chris Lattner25a022c2006-07-11 01:40:09 +00001735 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman475871a2008-07-27 21:46:04 +00001736 SDValue Op = LegalizeOp(Ops[i]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001737 if (Op != Ops[i]) {
1738 Changed = true;
1739 Ops[i] = Op;
1740 }
1741 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001742 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001743
1744 if (HasInFlag) {
1745 Op = LegalizeOp(Ops.back());
1746 Changed |= Op != Ops.back();
1747 Ops.back() = Op;
1748 }
1749
1750 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001751 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001752
1753 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman475871a2008-07-27 21:46:04 +00001754 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1755 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001756 return Result.getValue(Op.getResNo());
Chris Lattner25a022c2006-07-11 01:40:09 +00001757 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001758 case ISD::BR:
1759 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001760 // Ensure that libcalls are emitted before a branch.
1761 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1762 Tmp1 = LegalizeOp(Tmp1);
1763 LastCALLSEQ_END = DAG.getEntryNode();
1764
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001765 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001766 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001767 case ISD::BRIND:
1768 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1769 // Ensure that libcalls are emitted before a branch.
1770 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1771 Tmp1 = LegalizeOp(Tmp1);
1772 LastCALLSEQ_END = DAG.getEntryNode();
1773
1774 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1775 default: assert(0 && "Indirect target must be legal type (pointer)!");
1776 case Legal:
1777 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1778 break;
1779 }
1780 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1781 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001782 case ISD::BR_JT:
1783 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1784 // Ensure that libcalls are emitted before a branch.
1785 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1786 Tmp1 = LegalizeOp(Tmp1);
1787 LastCALLSEQ_END = DAG.getEntryNode();
1788
1789 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1790 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1791
1792 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1793 default: assert(0 && "This action is not supported yet!");
1794 case TargetLowering::Legal: break;
1795 case TargetLowering::Custom:
1796 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001797 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001798 break;
1799 case TargetLowering::Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00001800 SDValue Chain = Result.getOperand(0);
1801 SDValue Table = Result.getOperand(1);
1802 SDValue Index = Result.getOperand(2);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001803
Duncan Sands83ec4b62008-06-06 12:08:01 +00001804 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001805 MachineFunction &MF = DAG.getMachineFunction();
1806 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001807 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
Dan Gohman475871a2008-07-27 21:46:04 +00001808 SDValue Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001809
Dan Gohman475871a2008-07-27 21:46:04 +00001810 SDValue LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001811 switch (EntrySize) {
1812 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001813 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001814 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001815 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001816 PseudoSourceValue::getJumpTable(), 0); break;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001817 }
1818
Evan Chengcc415862007-11-09 01:32:10 +00001819 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001820 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001821 // For PIC, the sequence is:
1822 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00001823 // RelocBase can be JumpTable, GOT or some sort of global base.
1824 if (PTy != MVT::i32)
1825 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1826 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1827 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00001828 }
Evan Chengcc415862007-11-09 01:32:10 +00001829 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001830 }
1831 }
1832 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001833 case ISD::BRCOND:
1834 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001835 // Ensure that libcalls are emitted before a return.
1836 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1837 Tmp1 = LegalizeOp(Tmp1);
1838 LastCALLSEQ_END = DAG.getEntryNode();
1839
Chris Lattner47e92232005-01-18 19:27:06 +00001840 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1841 case Expand: assert(0 && "It's impossible to expand bools");
1842 case Legal:
1843 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1844 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001845 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00001846 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001847
1848 // The top bits of the promoted condition are not necessarily zero, ensure
1849 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001850 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001851 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001852 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerf9908172006-11-27 04:39:56 +00001853 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001854 break;
1855 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001856 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001857
1858 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001859 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001860
1861 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1862 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001863 case TargetLowering::Legal: break;
1864 case TargetLowering::Custom:
1865 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001866 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00001867 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001868 case TargetLowering::Expand:
1869 // Expand brcond's setcc into its constituent parts and create a BR_CC
1870 // Node.
1871 if (Tmp2.getOpcode() == ISD::SETCC) {
1872 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1873 Tmp2.getOperand(0), Tmp2.getOperand(1),
1874 Node->getOperand(2));
1875 } else {
1876 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1877 DAG.getCondCode(ISD::SETNE), Tmp2,
1878 DAG.getConstant(0, Tmp2.getValueType()),
1879 Node->getOperand(2));
1880 }
1881 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001882 }
1883 break;
1884 case ISD::BR_CC:
1885 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001886 // Ensure that libcalls are emitted before a branch.
1887 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1888 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001889 Tmp2 = Node->getOperand(2); // LHS
1890 Tmp3 = Node->getOperand(3); // RHS
1891 Tmp4 = Node->getOperand(1); // CC
1892
1893 LegalizeSetCCOperands(Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001894 LastCALLSEQ_END = DAG.getEntryNode();
1895
Nate Begeman750ac1b2006-02-01 07:19:44 +00001896 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
1897 // the LHS is a legal SETCC itself. In this case, we need to compare
1898 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00001899 if (Tmp3.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00001900 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1901 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001902 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001903
1904 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1905 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001906
Chris Lattner181b7a32005-12-17 23:46:46 +00001907 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1908 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001909 case TargetLowering::Legal: break;
1910 case TargetLowering::Custom:
1911 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001912 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001913 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001914 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001915 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001916 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001917 LoadSDNode *LD = cast<LoadSDNode>(Node);
1918 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1919 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001920
Evan Cheng466685d2006-10-09 20:57:25 +00001921 ISD::LoadExtType ExtType = LD->getExtensionType();
1922 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001923 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00001924 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1925 Tmp3 = Result.getValue(0);
1926 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001927
Evan Cheng466685d2006-10-09 20:57:25 +00001928 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1929 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001930 case TargetLowering::Legal:
1931 // If this is an unaligned load and the target doesn't support it,
1932 // expand it.
1933 if (!TLI.allowsUnalignedMemoryAccesses()) {
1934 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00001935 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001936 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00001937 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001938 TLI);
1939 Tmp3 = Result.getOperand(0);
1940 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001941 Tmp3 = LegalizeOp(Tmp3);
1942 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001943 }
1944 }
1945 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001946 case TargetLowering::Custom:
1947 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001948 if (Tmp1.getNode()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001949 Tmp3 = LegalizeOp(Tmp1);
1950 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001951 }
Evan Cheng466685d2006-10-09 20:57:25 +00001952 break;
1953 case TargetLowering::Promote: {
1954 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001955 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00001956 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001957 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00001958
1959 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001960 LD->getSrcValueOffset(),
1961 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001962 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1963 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001964 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001965 }
Evan Cheng466685d2006-10-09 20:57:25 +00001966 }
1967 // Since loads produce two values, make sure to remember that we
1968 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001969 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
1970 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001971 return Op.getResNo() ? Tmp4 : Tmp3;
Evan Cheng466685d2006-10-09 20:57:25 +00001972 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001973 MVT SrcVT = LD->getMemoryVT();
1974 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001975 int SVOffset = LD->getSrcValueOffset();
1976 unsigned Alignment = LD->getAlignment();
1977 bool isVolatile = LD->isVolatile();
1978
Duncan Sands83ec4b62008-06-06 12:08:01 +00001979 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001980 // Some targets pretend to have an i1 loading operation, and actually
1981 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1982 // bits are guaranteed to be zero; it helps the optimizers understand
1983 // that these bits are zero. It is also useful for EXTLOAD, since it
1984 // tells the optimizers that those bits are undefined. It would be
1985 // nice to have an effective generic way of getting these benefits...
1986 // Until such a way is found, don't insist on promoting i1 here.
1987 (SrcVT != MVT::i1 ||
1988 TLI.getLoadXAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
1989 // Promote to a byte-sized load if not loading an integral number of
1990 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001991 unsigned NewWidth = SrcVT.getStoreSizeInBits();
1992 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00001993 SDValue Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001994
1995 // The extra bits are guaranteed to be zero, since we stored them that
1996 // way. A zext load from NVT thus automatically gives zext from SrcVT.
1997
1998 ISD::LoadExtType NewExtType =
1999 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2000
2001 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
2002 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2003 NVT, isVolatile, Alignment);
2004
2005 Ch = Result.getValue(1); // The chain.
2006
2007 if (ExtType == ISD::SEXTLOAD)
2008 // Having the top bits zero doesn't help when sign extending.
2009 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2010 Result, DAG.getValueType(SrcVT));
2011 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2012 // All the top bits are guaranteed to be zero - inform the optimizers.
2013 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2014 DAG.getValueType(SrcVT));
2015
2016 Tmp1 = LegalizeOp(Result);
2017 Tmp2 = LegalizeOp(Ch);
2018 } else if (SrcWidth & (SrcWidth - 1)) {
2019 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002020 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002021 "Unsupported extload!");
2022 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2023 assert(RoundWidth < SrcWidth);
2024 unsigned ExtraWidth = SrcWidth - RoundWidth;
2025 assert(ExtraWidth < RoundWidth);
2026 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2027 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002028 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2029 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002030 SDValue Lo, Hi, Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002031 unsigned IncrementSize;
2032
2033 if (TLI.isLittleEndian()) {
2034 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2035 // Load the bottom RoundWidth bits.
2036 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2037 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2038 Alignment);
2039
2040 // Load the remaining ExtraWidth bits.
2041 IncrementSize = RoundWidth / 8;
2042 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2043 DAG.getIntPtrConstant(IncrementSize));
2044 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2045 LD->getSrcValue(), SVOffset + IncrementSize,
2046 ExtraVT, isVolatile,
2047 MinAlign(Alignment, IncrementSize));
2048
2049 // Build a factor node to remember that this load is independent of the
2050 // other one.
2051 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2052 Hi.getValue(1));
2053
2054 // Move the top bits to the right place.
2055 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2056 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2057
2058 // Join the hi and lo parts.
2059 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002060 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002061 // Big endian - avoid unaligned loads.
2062 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2063 // Load the top RoundWidth bits.
2064 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2065 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2066 Alignment);
2067
2068 // Load the remaining ExtraWidth bits.
2069 IncrementSize = RoundWidth / 8;
2070 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2071 DAG.getIntPtrConstant(IncrementSize));
2072 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2073 LD->getSrcValue(), SVOffset + IncrementSize,
2074 ExtraVT, isVolatile,
2075 MinAlign(Alignment, IncrementSize));
2076
2077 // Build a factor node to remember that this load is independent of the
2078 // other one.
2079 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2080 Hi.getValue(1));
2081
2082 // Move the top bits to the right place.
2083 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2084 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2085
2086 // Join the hi and lo parts.
2087 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2088 }
2089
2090 Tmp1 = LegalizeOp(Result);
2091 Tmp2 = LegalizeOp(Ch);
2092 } else {
2093 switch (TLI.getLoadXAction(ExtType, SrcVT)) {
2094 default: assert(0 && "This action is not supported yet!");
2095 case TargetLowering::Custom:
2096 isCustom = true;
2097 // FALLTHROUGH
2098 case TargetLowering::Legal:
2099 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2100 Tmp1 = Result.getValue(0);
2101 Tmp2 = Result.getValue(1);
2102
2103 if (isCustom) {
2104 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002105 if (Tmp3.getNode()) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002106 Tmp1 = LegalizeOp(Tmp3);
2107 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2108 }
2109 } else {
2110 // If this is an unaligned load and the target doesn't support it,
2111 // expand it.
2112 if (!TLI.allowsUnalignedMemoryAccesses()) {
2113 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002114 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002115 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002116 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002117 TLI);
2118 Tmp1 = Result.getOperand(0);
2119 Tmp2 = Result.getOperand(1);
2120 Tmp1 = LegalizeOp(Tmp1);
2121 Tmp2 = LegalizeOp(Tmp2);
2122 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002123 }
2124 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002125 break;
2126 case TargetLowering::Expand:
2127 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2128 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dan Gohman475871a2008-07-27 21:46:04 +00002129 SDValue Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002130 LD->getSrcValueOffset(),
2131 LD->isVolatile(), LD->getAlignment());
2132 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2133 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2134 Tmp2 = LegalizeOp(Load.getValue(1));
2135 break;
2136 }
2137 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2138 // Turn the unsupported load into an EXTLOAD followed by an explicit
2139 // zero/sign extend inreg.
2140 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2141 Tmp1, Tmp2, LD->getSrcValue(),
2142 LD->getSrcValueOffset(), SrcVT,
2143 LD->isVolatile(), LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00002144 SDValue ValRes;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002145 if (ExtType == ISD::SEXTLOAD)
2146 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2147 Result, DAG.getValueType(SrcVT));
2148 else
2149 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2150 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2151 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002152 break;
2153 }
Evan Cheng466685d2006-10-09 20:57:25 +00002154 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002155
Evan Cheng466685d2006-10-09 20:57:25 +00002156 // Since loads produce two values, make sure to remember that we legalized
2157 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002158 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2159 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002160 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002161 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002162 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002163 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002164 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002165 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002166 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002167 case Legal:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002168 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Nate Begeman5dc897b2005-10-19 00:06:56 +00002169 // 1 -> Hi
2170 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002171 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002172 TLI.getShiftAmountTy()));
2173 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2174 } else {
2175 // 0 -> Lo
2176 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2177 Node->getOperand(0));
2178 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002179 break;
2180 case Expand:
2181 // Get both the low and high parts.
2182 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002183 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Nate Begeman5dc897b2005-10-19 00:06:56 +00002184 Result = Tmp2; // 1 -> Hi
2185 else
2186 Result = Tmp1; // 0 -> Lo
2187 break;
2188 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002189 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002190 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002191
2192 case ISD::CopyToReg:
2193 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002194
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002195 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002196 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002197 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002198 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002199 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002200 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002201 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002202 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002203 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002204 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002205 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2206 Tmp3);
2207 } else {
2208 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002209 }
2210
2211 // Since this produces two values, make sure to remember that we legalized
2212 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002213 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2214 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002215 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002216 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002217 break;
2218
2219 case ISD::RET:
2220 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002221
2222 // Ensure that libcalls are emitted before a return.
2223 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2224 Tmp1 = LegalizeOp(Tmp1);
2225 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002226
Chris Lattner3e928bb2005-01-07 07:47:09 +00002227 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002228 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002229 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002230 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002231 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002232 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002233 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002234 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002235 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002236 if (!Tmp2.getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002237 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002238 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002239
2240 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002241 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002242 std::swap(Lo, Hi);
2243
Gabor Greifba36cb52008-08-28 21:40:38 +00002244 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00002245 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2246 else
2247 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002248 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002249 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00002250 SDNode *InVal = Tmp2.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002251 int InIx = Tmp2.getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002252 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2253 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002254
Dan Gohman7f321562007-06-25 16:23:39 +00002255 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002256 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002257 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002258 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002259 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002260 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002261 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002262 } else if (NumElems == 1) {
2263 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002264 Tmp2 = ScalarizeVectorOp(Tmp2);
2265 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002266 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002267
2268 // FIXME: Returns of gcc generic vectors smaller than a legal type
2269 // should be returned in integer registers!
2270
Chris Lattnerf87324e2006-04-11 01:31:51 +00002271 // The scalarized value type may not be legal, e.g. it might require
2272 // promotion or expansion. Relegalize the return.
2273 Result = LegalizeOp(Result);
2274 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002275 // FIXME: Returns of gcc generic vectors larger than a legal vector
2276 // type should be returned by reference!
Dan Gohman475871a2008-07-27 21:46:04 +00002277 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002278 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00002279 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002280 Result = LegalizeOp(Result);
2281 }
2282 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002283 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002284 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002285 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002286 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002287 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002288 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002289 }
2290 break;
2291 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002292 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002293 break;
2294 default: { // ret <values>
Dan Gohman475871a2008-07-27 21:46:04 +00002295 SmallVector<SDValue, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002296 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002297 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002298 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2299 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002300 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002301 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002302 break;
2303 case Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002304 SDValue Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002305 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002306 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002307 ExpandOp(Node->getOperand(i), Lo, Hi);
2308 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002309 NewValues.push_back(Node->getOperand(i+1));
Gabor Greifba36cb52008-08-28 21:40:38 +00002310 if (Hi.getNode()) {
Evan Cheng13acce32006-12-11 19:27:14 +00002311 NewValues.push_back(Hi);
2312 NewValues.push_back(Node->getOperand(i+1));
2313 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002314 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002315 }
2316 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002317 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002318 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002319
2320 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002321 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002322 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002323 Result = DAG.getNode(ISD::RET, MVT::Other,
2324 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002325 break;
2326 }
2327 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002328
Chris Lattner6862dbc2006-01-29 21:02:23 +00002329 if (Result.getOpcode() == ISD::RET) {
2330 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2331 default: assert(0 && "This action is not supported yet!");
2332 case TargetLowering::Legal: break;
2333 case TargetLowering::Custom:
2334 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002335 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner6862dbc2006-01-29 21:02:23 +00002336 break;
2337 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002338 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002339 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002340 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002341 StoreSDNode *ST = cast<StoreSDNode>(Node);
2342 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2343 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002344 int SVOffset = ST->getSrcValueOffset();
2345 unsigned Alignment = ST->getAlignment();
2346 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002347
Evan Cheng8b2794a2006-10-13 21:14:26 +00002348 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002349 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2350 // FIXME: We shouldn't do this for TargetConstantFP's.
2351 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2352 // to phase ordering between legalized code and the dag combiner. This
2353 // probably means that we need to integrate dag combiner and legalizer
2354 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002355 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002356 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002357 if (CFP->getValueType(0) == MVT::f32 &&
2358 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002359 Tmp3 = DAG.getConstant(CFP->getValueAPF().
Dale Johannesen7111b022008-10-09 18:53:47 +00002360 bitcastToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002361 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002362 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2363 SVOffset, isVolatile, Alignment);
2364 break;
2365 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002366 // If this target supports 64-bit registers, do a single 64-bit store.
2367 if (getTypeAction(MVT::i64) == Legal) {
Dale Johannesen7111b022008-10-09 18:53:47 +00002368 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002369 zextOrTrunc(64), MVT::i64);
Chris Lattner3cb93512007-10-15 05:46:06 +00002370 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2371 SVOffset, isVolatile, Alignment);
2372 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002373 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002374 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2375 // stores. If the target supports neither 32- nor 64-bits, this
2376 // xform is certainly not worth it.
Dale Johannesen7111b022008-10-09 18:53:47 +00002377 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Dan Gohman475871a2008-07-27 21:46:04 +00002378 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2379 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002380 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002381
2382 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2383 SVOffset, isVolatile, Alignment);
2384 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002385 DAG.getIntPtrConstant(4));
Chris Lattner3cb93512007-10-15 05:46:06 +00002386 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002387 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002388
2389 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2390 break;
2391 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002392 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002393 }
2394
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002395 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002396 case Legal: {
2397 Tmp3 = LegalizeOp(ST->getValue());
2398 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2399 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002400
Duncan Sands83ec4b62008-06-06 12:08:01 +00002401 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002402 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2403 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002404 case TargetLowering::Legal:
2405 // If this is an unaligned store and the target doesn't support it,
2406 // expand it.
2407 if (!TLI.allowsUnalignedMemoryAccesses()) {
2408 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002409 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002410 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002411 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002412 TLI);
2413 }
2414 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002415 case TargetLowering::Custom:
2416 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002417 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002418 break;
2419 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002420 assert(VT.isVector() && "Unknown legal promote case!");
Evan Cheng8b2794a2006-10-13 21:14:26 +00002421 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2422 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2423 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002424 ST->getSrcValue(), SVOffset, isVolatile,
2425 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002426 break;
2427 }
2428 break;
2429 }
2430 case Promote:
2431 // Truncate the value and store the result.
2432 Tmp3 = PromoteOp(ST->getValue());
2433 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002434 SVOffset, ST->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002435 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002436 break;
2437
2438 case Expand:
2439 unsigned IncrementSize = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002440 SDValue Lo, Hi;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002441
2442 // If this is a vector type, then we have to calculate the increment as
2443 // the product of the element size in bytes, and the number of elements
2444 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002445 if (ST->getValue().getValueType().isVector()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002446 SDNode *InVal = ST->getValue().getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002447 int InIx = ST->getValue().getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002448 MVT InVT = InVal->getValueType(InIx);
2449 unsigned NumElems = InVT.getVectorNumElements();
2450 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002451
Dan Gohman7f321562007-06-25 16:23:39 +00002452 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002453 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002454 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002455 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002456 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002457 Tmp3 = LegalizeOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002458 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002459 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002460 Result = LegalizeOp(Result);
2461 break;
2462 } else if (NumElems == 1) {
2463 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002464 Tmp3 = ScalarizeVectorOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002465 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002466 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002467 // The scalarized value type may not be legal, e.g. it might require
2468 // promotion or expansion. Relegalize the scalar store.
2469 Result = LegalizeOp(Result);
2470 break;
2471 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002472 SplitVectorOp(ST->getValue(), Lo, Hi);
Gabor Greifba36cb52008-08-28 21:40:38 +00002473 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
Duncan Sands83ec4b62008-06-06 12:08:01 +00002474 EVT.getSizeInBits()/8;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002475 }
2476 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002477 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greifba36cb52008-08-28 21:40:38 +00002478 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002479
Richard Pennington4b052dc2008-09-25 16:15:10 +00002480 if (Hi.getNode() && TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002481 std::swap(Lo, Hi);
2482 }
2483
2484 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002485 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002486
Gabor Greifba36cb52008-08-28 21:40:38 +00002487 if (Hi.getNode() == NULL) {
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002488 // Must be int <-> float one-to-one expansion.
2489 Result = Lo;
2490 break;
2491 }
2492
Evan Cheng8b2794a2006-10-13 21:14:26 +00002493 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002494 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002495 assert(isTypeLegal(Tmp2.getValueType()) &&
2496 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002497 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002498 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002499 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002500 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002501 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2502 break;
2503 }
2504 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002505 switch (getTypeAction(ST->getValue().getValueType())) {
2506 case Legal:
2507 Tmp3 = LegalizeOp(ST->getValue());
2508 break;
2509 case Promote:
2510 // We can promote the value, the truncstore will still take care of it.
2511 Tmp3 = PromoteOp(ST->getValue());
2512 break;
2513 case Expand:
2514 // Just store the low part. This may become a non-trunc store, so make
2515 // sure to use getTruncStore, not UpdateNodeOperands below.
2516 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2517 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2518 SVOffset, MVT::i8, isVolatile, Alignment);
2519 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002520
Duncan Sands83ec4b62008-06-06 12:08:01 +00002521 MVT StVT = ST->getMemoryVT();
2522 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002523
Duncan Sands83ec4b62008-06-06 12:08:01 +00002524 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002525 // Promote to a byte-sized store with upper bits zero if not
2526 // storing an integral number of bytes. For example, promote
2527 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002528 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Duncan Sands7e857202008-01-22 07:17:34 +00002529 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2530 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2531 SVOffset, NVT, isVolatile, Alignment);
2532 } else if (StWidth & (StWidth - 1)) {
2533 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002534 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002535 "Unsupported truncstore!");
2536 unsigned RoundWidth = 1 << Log2_32(StWidth);
2537 assert(RoundWidth < StWidth);
2538 unsigned ExtraWidth = StWidth - RoundWidth;
2539 assert(ExtraWidth < RoundWidth);
2540 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2541 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002542 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2543 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002544 SDValue Lo, Hi;
Duncan Sands7e857202008-01-22 07:17:34 +00002545 unsigned IncrementSize;
2546
2547 if (TLI.isLittleEndian()) {
2548 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2549 // Store the bottom RoundWidth bits.
2550 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2551 SVOffset, RoundVT,
2552 isVolatile, Alignment);
2553
2554 // Store the remaining ExtraWidth bits.
2555 IncrementSize = RoundWidth / 8;
2556 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2557 DAG.getIntPtrConstant(IncrementSize));
2558 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2559 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2560 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2561 SVOffset + IncrementSize, ExtraVT, isVolatile,
2562 MinAlign(Alignment, IncrementSize));
2563 } else {
2564 // Big endian - avoid unaligned stores.
2565 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2566 // Store the top RoundWidth bits.
2567 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2568 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2569 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2570 RoundVT, isVolatile, Alignment);
2571
2572 // Store the remaining ExtraWidth bits.
2573 IncrementSize = RoundWidth / 8;
2574 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2575 DAG.getIntPtrConstant(IncrementSize));
2576 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2577 SVOffset + IncrementSize, ExtraVT, isVolatile,
2578 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002579 }
Duncan Sands7e857202008-01-22 07:17:34 +00002580
2581 // The order of the stores doesn't matter.
2582 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2583 } else {
2584 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2585 Tmp2 != ST->getBasePtr())
2586 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2587 ST->getOffset());
2588
2589 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2590 default: assert(0 && "This action is not supported yet!");
2591 case TargetLowering::Legal:
2592 // If this is an unaligned store and the target doesn't support it,
2593 // expand it.
2594 if (!TLI.allowsUnalignedMemoryAccesses()) {
2595 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002596 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002597 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002598 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands7e857202008-01-22 07:17:34 +00002599 TLI);
2600 }
2601 break;
2602 case TargetLowering::Custom:
2603 Result = TLI.LowerOperation(Result, DAG);
2604 break;
2605 case Expand:
2606 // TRUNCSTORE:i16 i32 -> STORE i16
2607 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2608 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2609 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2610 isVolatile, Alignment);
2611 break;
2612 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002613 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002614 }
2615 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002616 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002617 case ISD::PCMARKER:
2618 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002619 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002620 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002621 case ISD::STACKSAVE:
2622 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002623 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2624 Tmp1 = Result.getValue(0);
2625 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002626
Chris Lattner140d53c2006-01-13 02:50:02 +00002627 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2628 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002629 case TargetLowering::Legal: break;
2630 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002631 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002632 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002633 Tmp1 = LegalizeOp(Tmp3);
2634 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002635 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002636 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002637 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002638 // Expand to CopyFromReg if the target set
2639 // StackPointerRegisterToSaveRestore.
2640 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002641 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002642 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002643 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002644 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002645 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2646 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002647 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002648 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002649 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002650
2651 // Since stacksave produce two values, make sure to remember that we
2652 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002653 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2654 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002655 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002656
Chris Lattner140d53c2006-01-13 02:50:02 +00002657 case ISD::STACKRESTORE:
2658 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2659 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002660 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002661
2662 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2663 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002664 case TargetLowering::Legal: break;
2665 case TargetLowering::Custom:
2666 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002667 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002668 break;
2669 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002670 // Expand to CopyToReg if the target set
2671 // StackPointerRegisterToSaveRestore.
2672 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2673 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2674 } else {
2675 Result = Tmp1;
2676 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002677 break;
2678 }
2679 break;
2680
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002681 case ISD::READCYCLECOUNTER:
2682 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002683 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002684 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2685 Node->getValueType(0))) {
2686 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002687 case TargetLowering::Legal:
2688 Tmp1 = Result.getValue(0);
2689 Tmp2 = Result.getValue(1);
2690 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002691 case TargetLowering::Custom:
2692 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002693 Tmp1 = LegalizeOp(Result.getValue(0));
2694 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002695 break;
2696 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002697
2698 // Since rdcc produce two values, make sure to remember that we legalized
2699 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002700 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2701 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002702 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002703
Chris Lattner2ee743f2005-01-14 22:08:15 +00002704 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002705 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2706 case Expand: assert(0 && "It's impossible to expand bools");
2707 case Legal:
2708 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2709 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002710 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002711 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002712 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002713 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002714 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002715 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerb6c80602006-11-28 01:03:30 +00002716 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002717 break;
2718 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002719 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002720 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002721 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002722
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002723 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002724
Nate Begemanb942a3d2005-08-23 04:29:48 +00002725 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002726 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002727 case TargetLowering::Legal: break;
2728 case TargetLowering::Custom: {
2729 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002730 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002731 break;
2732 }
Nate Begeman9373a812005-08-10 20:51:12 +00002733 case TargetLowering::Expand:
2734 if (Tmp1.getOpcode() == ISD::SETCC) {
2735 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2736 Tmp2, Tmp3,
2737 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2738 } else {
2739 Result = DAG.getSelectCC(Tmp1,
2740 DAG.getConstant(0, Tmp1.getValueType()),
2741 Tmp2, Tmp3, ISD::SETNE);
2742 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002743 break;
2744 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002745 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002746 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2747 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002748 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002749 ExtOp = ISD::BIT_CONVERT;
2750 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002751 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002752 ExtOp = ISD::ANY_EXTEND;
2753 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002754 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002755 ExtOp = ISD::FP_EXTEND;
2756 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002757 }
2758 // Promote each of the values to the new type.
2759 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2760 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2761 // Perform the larger operation, then round down.
2762 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002763 if (TruncOp != ISD::FP_ROUND)
2764 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2765 else
2766 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2767 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002768 break;
2769 }
2770 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002771 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002772 case ISD::SELECT_CC: {
2773 Tmp1 = Node->getOperand(0); // LHS
2774 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002775 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2776 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman475871a2008-07-27 21:46:04 +00002777 SDValue CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002778
Nate Begeman750ac1b2006-02-01 07:19:44 +00002779 LegalizeSetCCOperands(Tmp1, Tmp2, CC);
2780
2781 // If we didn't get both a LHS and RHS back from LegalizeSetCCOperands,
2782 // the LHS is a legal SETCC itself. In this case, we need to compare
2783 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00002784 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002785 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2786 CC = DAG.getCondCode(ISD::SETNE);
2787 }
2788 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2789
2790 // Everything is legal, see if we should expand this op or something.
2791 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2792 default: assert(0 && "This action is not supported yet!");
2793 case TargetLowering::Legal: break;
2794 case TargetLowering::Custom:
2795 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002796 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002797 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002798 }
2799 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002800 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002801 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002802 Tmp1 = Node->getOperand(0);
2803 Tmp2 = Node->getOperand(1);
2804 Tmp3 = Node->getOperand(2);
2805 LegalizeSetCCOperands(Tmp1, Tmp2, Tmp3);
2806
2807 // If we had to Expand the SetCC operands into a SELECT node, then it may
2808 // not always be possible to return a true LHS & RHS. In this case, just
2809 // return the value we legalized, returned in the LHS
Gabor Greifba36cb52008-08-28 21:40:38 +00002810 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002811 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002812 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002813 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002814
Chris Lattner73e142f2006-01-30 22:43:50 +00002815 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002816 default: assert(0 && "Cannot handle this action for SETCC yet!");
2817 case TargetLowering::Custom:
2818 isCustom = true;
2819 // FALLTHROUGH.
2820 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002821 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002822 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002823 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002824 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002825 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002826 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002827 case TargetLowering::Promote: {
2828 // First step, figure out the appropriate operation to use.
2829 // Allow SETCC to not be supported for all legal data types
2830 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00002831 MVT NewInTy = Node->getOperand(0).getValueType();
2832 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002833
2834 // Scan for the appropriate larger type to use.
2835 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002836 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00002837
Duncan Sands83ec4b62008-06-06 12:08:01 +00002838 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002839 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002840 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002841 "Fell off of the edge of the floating point world");
2842
2843 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002844 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002845 break;
2846 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002847 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00002848 assert(0 && "Cannot promote Legal Integer SETCC yet");
2849 else {
2850 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2851 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2852 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002853 Tmp1 = LegalizeOp(Tmp1);
2854 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002855 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002856 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002857 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002858 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002859 case TargetLowering::Expand:
2860 // Expand a setcc node into a select_cc of the same condition, lhs, and
2861 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00002862 MVT VT = Node->getValueType(0);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002863 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2864 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002865 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002866 break;
2867 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002868 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00002869 case ISD::VSETCC: {
2870 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2871 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman475871a2008-07-27 21:46:04 +00002872 SDValue CC = Node->getOperand(2);
Nate Begemanb43e9c12008-05-12 19:40:03 +00002873
2874 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
2875
2876 // Everything is legal, see if we should expand this op or something.
2877 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
2878 default: assert(0 && "This action is not supported yet!");
2879 case TargetLowering::Legal: break;
2880 case TargetLowering::Custom:
2881 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002882 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanb43e9c12008-05-12 19:40:03 +00002883 break;
2884 }
2885 break;
2886 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002887
Chris Lattner5b359c62005-04-02 04:00:59 +00002888 case ISD::SHL_PARTS:
2889 case ISD::SRA_PARTS:
2890 case ISD::SRL_PARTS: {
Dan Gohman475871a2008-07-27 21:46:04 +00002891 SmallVector<SDValue, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002892 bool Changed = false;
2893 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2894 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2895 Changed |= Ops.back() != Node->getOperand(i);
2896 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002897 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002898 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002899
Evan Cheng05a2d562006-01-09 18:31:59 +00002900 switch (TLI.getOperationAction(Node->getOpcode(),
2901 Node->getValueType(0))) {
2902 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002903 case TargetLowering::Legal: break;
2904 case TargetLowering::Custom:
2905 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002906 if (Tmp1.getNode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002907 SDValue Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002908 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002909 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman475871a2008-07-27 21:46:04 +00002910 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002911 if (i == Op.getResNo())
Evan Cheng12f22742006-01-19 04:54:52 +00002912 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002913 }
Gabor Greifba36cb52008-08-28 21:40:38 +00002914 assert(RetVal.getNode() && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002915 return RetVal;
2916 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002917 break;
2918 }
2919
Chris Lattner2c8086f2005-04-02 05:00:07 +00002920 // Since these produce multiple values, make sure to remember that we
2921 // legalized all of them.
2922 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00002923 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00002924 return Result.getValue(Op.getResNo());
Chris Lattner84f67882005-01-20 18:52:28 +00002925 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002926
2927 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002928 case ISD::ADD:
2929 case ISD::SUB:
2930 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002931 case ISD::MULHS:
2932 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002933 case ISD::UDIV:
2934 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002935 case ISD::AND:
2936 case ISD::OR:
2937 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002938 case ISD::SHL:
2939 case ISD::SRL:
2940 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002941 case ISD::FADD:
2942 case ISD::FSUB:
2943 case ISD::FMUL:
2944 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00002945 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002946 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002947 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2948 case Expand: assert(0 && "Not possible");
2949 case Legal:
2950 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2951 break;
2952 case Promote:
2953 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2954 break;
2955 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00002956
2957 if ((Node->getOpcode() == ISD::SHL ||
2958 Node->getOpcode() == ISD::SRL ||
2959 Node->getOpcode() == ISD::SRA) &&
2960 !Node->getValueType(0).isVector()) {
2961 if (TLI.getShiftAmountTy().bitsLT(Tmp2.getValueType()))
2962 Tmp2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Tmp2);
2963 else if (TLI.getShiftAmountTy().bitsGT(Tmp2.getValueType()))
2964 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Tmp2);
2965 }
2966
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002967 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002968
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002969 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002970 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002971 case TargetLowering::Legal: break;
2972 case TargetLowering::Custom:
2973 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002974 if (Tmp1.getNode()) {
Nate Begeman5bc1ea02008-07-29 15:49:41 +00002975 Result = Tmp1;
2976 break;
Nate Begeman24dc3462008-07-29 19:07:27 +00002977 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00002978 // Fall through if the custom lower can't deal with the operation
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002979 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002980 MVT VT = Op.getValueType();
Dan Gohman525178c2007-10-08 18:33:35 +00002981
2982 // See if multiply or divide can be lowered using two-result operations.
2983 SDVTList VTs = DAG.getVTList(VT, VT);
2984 if (Node->getOpcode() == ISD::MUL) {
2985 // We just need the low half of the multiply; try both the signed
2986 // and unsigned forms. If the target supports both SMUL_LOHI and
2987 // UMUL_LOHI, form a preference by checking which forms of plain
2988 // MULH it supports.
2989 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2990 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2991 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2992 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2993 unsigned OpToUse = 0;
2994 if (HasSMUL_LOHI && !HasMULHS) {
2995 OpToUse = ISD::SMUL_LOHI;
2996 } else if (HasUMUL_LOHI && !HasMULHU) {
2997 OpToUse = ISD::UMUL_LOHI;
2998 } else if (HasSMUL_LOHI) {
2999 OpToUse = ISD::SMUL_LOHI;
3000 } else if (HasUMUL_LOHI) {
3001 OpToUse = ISD::UMUL_LOHI;
3002 }
3003 if (OpToUse) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003004 Result = SDValue(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).getNode(), 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003005 break;
3006 }
3007 }
3008 if (Node->getOpcode() == ISD::MULHS &&
3009 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
Chris Lattner31d71612008-10-04 21:27:46 +00003010 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).getNode(),
3011 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003012 break;
3013 }
3014 if (Node->getOpcode() == ISD::MULHU &&
3015 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
Chris Lattner31d71612008-10-04 21:27:46 +00003016 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).getNode(),
3017 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003018 break;
3019 }
3020 if (Node->getOpcode() == ISD::SDIV &&
3021 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
Chris Lattner31d71612008-10-04 21:27:46 +00003022 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).getNode(),
3023 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003024 break;
3025 }
3026 if (Node->getOpcode() == ISD::UDIV &&
3027 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
Chris Lattner31d71612008-10-04 21:27:46 +00003028 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).getNode(),
3029 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;
Chris Lattner31d71612008-10-04 21:27:46 +00003045 case ISD::MUL:
3046 if (VT == MVT::i32)
3047 LC = RTLIB::MUL_I32;
3048 break;
Dan Gohman82669522007-10-11 23:57:53 +00003049 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003050 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3051 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003052 break;
3053 default: break;
3054 }
3055 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +00003056 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003057 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003058 break;
3059 }
3060
Duncan Sands83ec4b62008-06-06 12:08:01 +00003061 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003062 "Cannot expand this binary operator!");
3063 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003064 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003065 break;
3066 }
Evan Chengcc987612006-04-12 21:20:24 +00003067 case TargetLowering::Promote: {
3068 switch (Node->getOpcode()) {
3069 default: assert(0 && "Do not know how to promote this BinOp!");
3070 case ISD::AND:
3071 case ISD::OR:
3072 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003073 MVT OVT = Node->getValueType(0);
3074 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3075 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003076 // Bit convert each of the values to the new type.
3077 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3078 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3079 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3080 // Bit convert the result back the original type.
3081 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3082 break;
3083 }
3084 }
3085 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003086 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003087 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003088
Dan Gohmane14ea862007-10-05 14:17:22 +00003089 case ISD::SMUL_LOHI:
3090 case ISD::UMUL_LOHI:
3091 case ISD::SDIVREM:
3092 case ISD::UDIVREM:
3093 // These nodes will only be produced by target-specific lowering, so
3094 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003095 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003096 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003097
3098 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3099 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3100 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003101 break;
3102
Chris Lattnera09f8482006-03-05 05:09:38 +00003103 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3104 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3105 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3106 case Expand: assert(0 && "Not possible");
3107 case Legal:
3108 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3109 break;
3110 case Promote:
3111 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3112 break;
3113 }
3114
3115 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3116
3117 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3118 default: assert(0 && "Operation not supported");
3119 case TargetLowering::Custom:
3120 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003121 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003122 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003123 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003124 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003125 // If this target supports fabs/fneg natively and select is cheap,
3126 // do this efficiently.
3127 if (!TLI.isSelectExpensive() &&
3128 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3129 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003130 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003131 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003132 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003133 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003134 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman475871a2008-07-27 21:46:04 +00003135 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003136 SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003137 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3138 // Get the absolute value of the result.
Dan Gohman475871a2008-07-27 21:46:04 +00003139 SDValue AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
Chris Lattner8f4191d2006-03-13 06:08:38 +00003140 // Select between the nabs and abs value based on the sign bit of
3141 // the input.
3142 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3143 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3144 AbsVal),
3145 AbsVal);
3146 Result = LegalizeOp(Result);
3147 break;
3148 }
3149
3150 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003151 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003152 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3153 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3154 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3155 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003156 break;
3157 }
Evan Cheng912095b2007-01-04 21:56:39 +00003158 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003159 break;
3160
Nate Begeman551bf3f2006-02-17 05:43:56 +00003161 case ISD::ADDC:
3162 case ISD::SUBC:
3163 Tmp1 = LegalizeOp(Node->getOperand(0));
3164 Tmp2 = LegalizeOp(Node->getOperand(1));
3165 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3166 // Since this produces two values, make sure to remember that we legalized
3167 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003168 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
3169 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Nate Begeman551bf3f2006-02-17 05:43:56 +00003170 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003171
Nate Begeman551bf3f2006-02-17 05:43:56 +00003172 case ISD::ADDE:
3173 case ISD::SUBE:
3174 Tmp1 = LegalizeOp(Node->getOperand(0));
3175 Tmp2 = LegalizeOp(Node->getOperand(1));
3176 Tmp3 = LegalizeOp(Node->getOperand(2));
3177 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3178 // Since this produces two values, make sure to remember that we legalized
3179 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003180 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
3181 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Nate Begeman551bf3f2006-02-17 05:43:56 +00003182 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00003183
Nate Begeman419f8b62005-10-18 00:27:41 +00003184 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003185 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003186 // TODO: handle the case where the Lo and Hi operands are not of legal type
3187 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3188 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3189 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003190 case TargetLowering::Promote:
3191 case TargetLowering::Custom:
3192 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003193 case TargetLowering::Legal:
3194 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3195 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3196 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003197 case TargetLowering::Expand:
3198 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3199 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3200 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003201 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003202 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00003203 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003204 break;
3205 }
3206 break;
3207 }
3208
Nate Begemanc105e192005-04-06 00:23:54 +00003209 case ISD::UREM:
3210 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003211 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003212 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3213 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003214
Nate Begemanc105e192005-04-06 00:23:54 +00003215 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003216 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3217 case TargetLowering::Custom:
3218 isCustom = true;
3219 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003220 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003221 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003222 if (isCustom) {
3223 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003224 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003225 }
Nate Begemanc105e192005-04-06 00:23:54 +00003226 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003227 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003228 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003229 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003230 MVT VT = Node->getValueType(0);
Dan Gohman525178c2007-10-08 18:33:35 +00003231
3232 // See if remainder can be lowered using two-result operations.
3233 SDVTList VTs = DAG.getVTList(VT, VT);
3234 if (Node->getOpcode() == ISD::SREM &&
3235 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003236 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003237 break;
3238 }
3239 if (Node->getOpcode() == ISD::UREM &&
3240 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003241 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003242 break;
3243 }
3244
Duncan Sands83ec4b62008-06-06 12:08:01 +00003245 if (VT.isInteger()) {
Dan Gohman525178c2007-10-08 18:33:35 +00003246 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003247 TargetLowering::Legal) {
3248 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00003249 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003250 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3251 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003252 } else if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003253 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003254 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003255 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003256 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003257 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3258 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman475871a2008-07-27 21:46:04 +00003259 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003260 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003261 }
Dan Gohman0d974262007-11-06 22:11:54 +00003262 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003263 assert(VT.isFloatingPoint() &&
Dan Gohman0d974262007-11-06 22:11:54 +00003264 "remainder op must have integer or floating-point type");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003265 if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003266 Result = LegalizeOp(UnrollVectorOp(Op));
3267 } else {
3268 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003269 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3270 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003271 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003272 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003273 }
Nate Begemanc105e192005-04-06 00:23:54 +00003274 }
3275 break;
3276 }
Dan Gohman525178c2007-10-08 18:33:35 +00003277 }
Nate Begemanc105e192005-04-06 00:23:54 +00003278 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003279 case ISD::VAARG: {
3280 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3281 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3282
Duncan Sands83ec4b62008-06-06 12:08:01 +00003283 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003284 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3285 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003286 case TargetLowering::Custom:
3287 isCustom = true;
3288 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003289 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003290 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3291 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003292 Tmp1 = Result.getValue(1);
3293
3294 if (isCustom) {
3295 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003296 if (Tmp2.getNode()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003297 Result = LegalizeOp(Tmp2);
3298 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3299 }
3300 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003301 break;
3302 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003303 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman475871a2008-07-27 21:46:04 +00003304 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003305 // Increment the pointer, VAList, to the next vaarg
3306 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003307 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begemanacc398c2006-01-25 18:21:52 +00003308 TLI.getPointerTy()));
3309 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00003310 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003311 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003312 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003313 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003314 Result = LegalizeOp(Result);
3315 break;
3316 }
3317 }
3318 // Since VAARG produces two values, make sure to remember that we
3319 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003320 AddLegalizedOperand(SDValue(Node, 0), Result);
3321 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003322 return Op.getResNo() ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003323 }
3324
3325 case ISD::VACOPY:
3326 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3327 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3328 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3329
3330 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3331 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003332 case TargetLowering::Custom:
3333 isCustom = true;
3334 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003335 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003336 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3337 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003338 if (isCustom) {
3339 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003340 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003341 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003342 break;
3343 case TargetLowering::Expand:
3344 // This defaults to loading a pointer from the input and storing it to the
3345 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003346 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3347 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dan Gohman499c1bd2008-04-17 02:09:26 +00003348 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3349 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003350 break;
3351 }
3352 break;
3353
3354 case ISD::VAEND:
3355 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3356 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3357
3358 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3359 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003360 case TargetLowering::Custom:
3361 isCustom = true;
3362 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003363 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003364 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003365 if (isCustom) {
3366 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003367 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003368 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003369 break;
3370 case TargetLowering::Expand:
3371 Result = Tmp1; // Default to a no-op, return the chain
3372 break;
3373 }
3374 break;
3375
3376 case ISD::VASTART:
3377 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3378 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3379
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003380 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3381
Nate Begemanacc398c2006-01-25 18:21:52 +00003382 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3383 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003384 case TargetLowering::Legal: break;
3385 case TargetLowering::Custom:
3386 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003387 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003388 break;
3389 }
3390 break;
3391
Nate Begeman35ef9132006-01-11 21:21:00 +00003392 case ISD::ROTL:
3393 case ISD::ROTR:
3394 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3395 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003396 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003397 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3398 default:
3399 assert(0 && "ROTL/ROTR legalize operation not supported");
3400 break;
3401 case TargetLowering::Legal:
3402 break;
3403 case TargetLowering::Custom:
3404 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003405 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelc9dc1142007-04-02 21:36:32 +00003406 break;
3407 case TargetLowering::Promote:
3408 assert(0 && "Do not know how to promote ROTL/ROTR");
3409 break;
3410 case TargetLowering::Expand:
3411 assert(0 && "Do not know how to expand ROTL/ROTR");
3412 break;
3413 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003414 break;
3415
Nate Begemand88fc032006-01-14 03:14:10 +00003416 case ISD::BSWAP:
3417 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3418 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003419 case TargetLowering::Custom:
3420 assert(0 && "Cannot custom legalize this yet!");
3421 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003422 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003423 break;
3424 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003425 MVT OVT = Tmp1.getValueType();
3426 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3427 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003428
Chris Lattner456a93a2006-01-28 07:39:30 +00003429 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3430 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3431 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3432 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3433 break;
3434 }
3435 case TargetLowering::Expand:
3436 Result = ExpandBSWAP(Tmp1);
3437 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003438 }
3439 break;
3440
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003441 case ISD::CTPOP:
3442 case ISD::CTTZ:
3443 case ISD::CTLZ:
3444 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3445 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003446 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003447 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003448 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003449 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003450 TargetLowering::Custom) {
3451 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003452 if (Tmp1.getNode()) {
Scott Michel335f4f72007-08-02 02:22:46 +00003453 Result = Tmp1;
3454 }
Scott Michel910b66d2007-07-30 21:00:31 +00003455 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003456 break;
3457 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003458 MVT OVT = Tmp1.getValueType();
3459 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003460
3461 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003462 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3463 // Perform the larger operation, then subtract if needed.
3464 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003465 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003466 case ISD::CTPOP:
3467 Result = Tmp1;
3468 break;
3469 case ISD::CTTZ:
3470 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00003471 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003472 DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003473 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003474 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003475 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003476 break;
3477 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003478 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003479 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003480 DAG.getConstant(NVT.getSizeInBits() -
3481 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003482 break;
3483 }
3484 break;
3485 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003486 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003487 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003488 break;
3489 }
3490 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003491
Chris Lattner2c8086f2005-04-02 05:00:07 +00003492 // Unary operators
3493 case ISD::FABS:
3494 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003495 case ISD::FSQRT:
3496 case ISD::FSIN:
3497 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003498 case ISD::FLOG:
3499 case ISD::FLOG2:
3500 case ISD::FLOG10:
3501 case ISD::FEXP:
3502 case ISD::FEXP2:
Dan Gohman509e84f2008-08-21 17:55:02 +00003503 case ISD::FTRUNC:
3504 case ISD::FFLOOR:
3505 case ISD::FCEIL:
3506 case ISD::FRINT:
3507 case ISD::FNEARBYINT:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003508 Tmp1 = LegalizeOp(Node->getOperand(0));
3509 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003510 case TargetLowering::Promote:
3511 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003512 isCustom = true;
3513 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003514 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003515 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003516 if (isCustom) {
3517 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003518 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng59ad7812006-01-31 18:14:25 +00003519 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003520 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003521 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003522 switch (Node->getOpcode()) {
3523 default: assert(0 && "Unreachable!");
3524 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003525 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3526 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003527 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003528 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003529 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003530 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003531 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003532 Tmp2 = DAG.getConstantFP(0.0, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003533 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00003534 ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003535 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3536 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003537 break;
3538 }
Evan Cheng9d24ac52008-09-09 23:35:53 +00003539 case ISD::FSQRT:
3540 case ISD::FSIN:
3541 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003542 case ISD::FLOG:
3543 case ISD::FLOG2:
3544 case ISD::FLOG10:
3545 case ISD::FEXP:
3546 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003547 case ISD::FTRUNC:
3548 case ISD::FFLOOR:
3549 case ISD::FCEIL:
3550 case ISD::FRINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00003551 case ISD::FNEARBYINT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003552 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003553
3554 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003555 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003556 Result = LegalizeOp(UnrollVectorOp(Op));
3557 break;
3558 }
3559
Evan Cheng56966222007-01-12 02:11:51 +00003560 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003561 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003562 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003563 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3564 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003565 break;
3566 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003567 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3568 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003569 break;
3570 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003571 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3572 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003573 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003574 case ISD::FLOG:
3575 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3576 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3577 break;
3578 case ISD::FLOG2:
3579 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3580 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3581 break;
3582 case ISD::FLOG10:
3583 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3584 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3585 break;
3586 case ISD::FEXP:
3587 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3588 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3589 break;
3590 case ISD::FEXP2:
3591 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3592 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3593 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003594 case ISD::FTRUNC:
3595 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3596 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3597 break;
3598 case ISD::FFLOOR:
3599 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3600 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3601 break;
3602 case ISD::FCEIL:
3603 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3604 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3605 break;
3606 case ISD::FRINT:
3607 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3608 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3609 break;
3610 case ISD::FNEARBYINT:
3611 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3612 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3613 break;
Evan Cheng9d24ac52008-09-09 23:35:53 +00003614 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003615 default: assert(0 && "Unreachable!");
3616 }
Dan Gohman475871a2008-07-27 21:46:04 +00003617 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003618 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003619 break;
3620 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003621 }
3622 break;
3623 }
3624 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003625 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003626 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003627
3628 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003629 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003630 Result = LegalizeOp(UnrollVectorOp(Op));
3631 break;
3632 }
3633
3634 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003635 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3636 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003637 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003638 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003639 break;
3640 }
Chris Lattner35481892005-12-23 00:16:34 +00003641 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003642 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003643 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3644 Node->getValueType(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003645 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003646 // The input has to be a vector type, we have to either scalarize it, pack
3647 // it, or convert it based on whether the input vector type is legal.
Gabor Greifba36cb52008-08-28 21:40:38 +00003648 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00003649 int InIx = Node->getOperand(0).getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003650 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3651 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohman7f321562007-06-25 16:23:39 +00003652
3653 // Figure out if there is a simple type corresponding to this Vector
3654 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003655 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00003656 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003657 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003658 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3659 LegalizeOp(Node->getOperand(0)));
3660 break;
3661 } else if (NumElems == 1) {
3662 // Turn this into a bit convert of the scalar input.
3663 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3664 ScalarizeVectorOp(Node->getOperand(0)));
3665 break;
3666 } else {
3667 // FIXME: UNIMP! Store then reload
3668 assert(0 && "Cast from unsupported vector type not implemented yet!");
3669 }
Chris Lattner67993f72006-01-23 07:30:46 +00003670 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003671 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3672 Node->getOperand(0).getValueType())) {
3673 default: assert(0 && "Unknown operation action!");
3674 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003675 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3676 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003677 break;
3678 case TargetLowering::Legal:
3679 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003680 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003681 break;
3682 }
3683 }
3684 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003685
Chris Lattner2c8086f2005-04-02 05:00:07 +00003686 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003687 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003688 case ISD::UINT_TO_FP: {
3689 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman7f8613e2008-08-14 20:04:46 +00003690 Result = LegalizeINT_TO_FP(Result, isSigned,
3691 Node->getValueType(0), Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003692 break;
3693 }
3694 case ISD::TRUNCATE:
3695 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3696 case Legal:
3697 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003698 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003699 break;
3700 case Expand:
3701 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3702
3703 // Since the result is legal, we should just be able to truncate the low
3704 // part of the source.
3705 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3706 break;
3707 case Promote:
3708 Result = PromoteOp(Node->getOperand(0));
3709 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3710 break;
3711 }
3712 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003713
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003714 case ISD::FP_TO_SINT:
3715 case ISD::FP_TO_UINT:
3716 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3717 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003718 Tmp1 = LegalizeOp(Node->getOperand(0));
3719
Chris Lattner1618beb2005-07-29 00:11:56 +00003720 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3721 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003722 case TargetLowering::Custom:
3723 isCustom = true;
3724 // FALLTHROUGH
3725 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003726 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003727 if (isCustom) {
3728 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003729 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003730 }
3731 break;
3732 case TargetLowering::Promote:
3733 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3734 Node->getOpcode() == ISD::FP_TO_SINT);
3735 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003736 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003737 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman475871a2008-07-27 21:46:04 +00003738 SDValue True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003739 MVT VT = Node->getOperand(0).getValueType();
3740 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00003741 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00003742 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
3743 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003744 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00003745 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003746 Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
Nate Begemand2558e32005-08-14 01:20:53 +00003747 Node->getOperand(0), Tmp2, ISD::SETLT);
3748 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3749 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003750 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003751 Tmp2));
3752 False = DAG.getNode(ISD::XOR, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003753 DAG.getConstant(x, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003754 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3755 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003756 } else {
3757 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3758 }
3759 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003760 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003761 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003762 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003763 MVT VT = Op.getValueType();
3764 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003765 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003766 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003767 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3768 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3769 Node->getOperand(0), DAG.getValueType(MVT::f64));
3770 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3771 DAG.getIntPtrConstant(1));
3772 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3773 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003774 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3775 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3776 Tmp2 = DAG.getConstantFP(apf, OVT);
3777 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3778 // FIXME: generated code sucks.
3779 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3780 DAG.getNode(ISD::ADD, MVT::i32,
3781 DAG.getNode(ISD::FP_TO_SINT, VT,
3782 DAG.getNode(ISD::FSUB, OVT,
3783 Node->getOperand(0), Tmp2)),
3784 DAG.getConstant(0x80000000, MVT::i32)),
3785 DAG.getNode(ISD::FP_TO_SINT, VT,
3786 Node->getOperand(0)),
3787 DAG.getCondCode(ISD::SETGE));
3788 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003789 break;
3790 }
Dan Gohmana2e94852008-03-10 23:03:31 +00003791 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsb2ff8852008-07-17 02:36:29 +00003792 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
3793 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
3794 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman475871a2008-07-27 21:46:04 +00003795 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003796 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003797 break;
3798 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003799 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003800 Tmp1 = PromoteOp(Node->getOperand(0));
3801 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3802 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003803 break;
3804 }
3805 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003806
Chris Lattnerf2670a82008-01-16 06:57:07 +00003807 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003808 MVT DstVT = Op.getValueType();
3809 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003810 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3811 // The only other way we can lower this is to turn it into a STORE,
3812 // LOAD pair, targetting a temporary location (a stack slot).
3813 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3814 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00003815 }
3816 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3817 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3818 case Legal:
3819 Tmp1 = LegalizeOp(Node->getOperand(0));
3820 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3821 break;
3822 case Promote:
3823 Tmp1 = PromoteOp(Node->getOperand(0));
3824 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3825 break;
3826 }
3827 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003828 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003829 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003830 MVT DstVT = Op.getValueType();
3831 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003832 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3833 if (SrcVT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00003834 SDValue Lo;
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003835 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003836 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003837 if (DstVT!=MVT::f64)
3838 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00003839 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00003840 }
Chris Lattner0bd48932008-01-17 07:00:52 +00003841 // The only other way we can lower this is to turn it into a STORE,
3842 // LOAD pair, targetting a temporary location (a stack slot).
3843 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3844 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00003845 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00003846 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3847 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3848 case Legal:
3849 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003850 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003851 break;
3852 case Promote:
3853 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003854 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3855 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003856 break;
3857 }
3858 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003859 }
Chris Lattner13c78e22005-09-02 00:18:10 +00003860 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003861 case ISD::ZERO_EXTEND:
3862 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003863 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003864 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003865 case Legal:
3866 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00003867 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00003868 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3869 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00003870 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003871 if (Tmp1.getNode()) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00003872 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003873 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003874 case Promote:
3875 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003876 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003877 Tmp1 = PromoteOp(Node->getOperand(0));
3878 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003879 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003880 case ISD::ZERO_EXTEND:
3881 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003882 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003883 Result = DAG.getZeroExtendInReg(Result,
3884 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003885 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003886 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003887 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003888 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003889 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003890 Result,
3891 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003892 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003893 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003894 }
3895 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003896 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003897 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003898 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003899 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003900
3901 // If this operation is not supported, convert it to a shl/shr or load/store
3902 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003903 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3904 default: assert(0 && "This action not supported for this op yet!");
3905 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003906 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003907 break;
3908 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003909 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003910 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003911 // NOTE: we could fall back on load/store here too for targets without
3912 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003913 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
3914 ExtraVT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003915 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003916 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3917 Node->getOperand(0), ShiftCst);
3918 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3919 Result, ShiftCst);
3920 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003921 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003922 // EXTLOAD pair, targetting a temporary location (a stack slot).
3923
3924 // NOTE: there is a choice here between constantly creating new stack
3925 // slots and always reusing the same one. We currently always create
3926 // new ones, as reuse may inhibit scheduling.
Chris Lattnera66bb392008-01-16 07:51:34 +00003927 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3928 Node->getValueType(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00003929 } else {
3930 assert(0 && "Unknown op");
3931 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003932 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003933 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003934 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003935 }
Duncan Sands36397f52007-07-27 12:58:54 +00003936 case ISD::TRAMPOLINE: {
Dan Gohman475871a2008-07-27 21:46:04 +00003937 SDValue Ops[6];
Duncan Sands36397f52007-07-27 12:58:54 +00003938 for (unsigned i = 0; i != 6; ++i)
3939 Ops[i] = LegalizeOp(Node->getOperand(i));
3940 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3941 // The only option for this node is to custom lower it.
3942 Result = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003943 assert(Result.getNode() && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00003944
3945 // Since trampoline produces two values, make sure to remember that we
3946 // legalized both of them.
3947 Tmp1 = LegalizeOp(Result.getValue(1));
3948 Result = LegalizeOp(Result);
Dan Gohman475871a2008-07-27 21:46:04 +00003949 AddLegalizedOperand(SDValue(Node, 0), Result);
3950 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003951 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00003952 }
Dan Gohman9c78a392008-05-14 00:43:10 +00003953 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003954 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003955 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3956 default: assert(0 && "This action not supported for this op yet!");
3957 case TargetLowering::Custom:
3958 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003959 if (Result.getNode()) break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003960 // Fall Thru
3961 case TargetLowering::Legal:
3962 // If this operation is not supported, lower it to constant 1
3963 Result = DAG.getConstant(1, VT);
3964 break;
3965 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00003966 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003967 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003968 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003969 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003970 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3971 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00003972 case TargetLowering::Legal:
3973 Tmp1 = LegalizeOp(Node->getOperand(0));
3974 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3975 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003976 case TargetLowering::Custom:
3977 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003978 if (Result.getNode()) break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003979 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00003980 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003981 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00003982 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003983 TargetLowering::ArgListTy Args;
Dan Gohman475871a2008-07-27 21:46:04 +00003984 std::pair<SDValue,SDValue> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00003985 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003986 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003987 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Chris Lattner034f12e2008-01-15 22:09:33 +00003988 Args, DAG);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003989 Result = CallResult.second;
3990 break;
3991 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003992 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003993 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00003994 }
Chris Lattner456a93a2006-01-28 07:39:30 +00003995
Chris Lattner4ddd2832006-04-08 04:13:17 +00003996 assert(Result.getValueType() == Op.getValueType() &&
3997 "Bad legalization!");
3998
Chris Lattner456a93a2006-01-28 07:39:30 +00003999 // Make sure that the generated code is itself legal.
4000 if (Result != Op)
4001 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004002
Chris Lattner45982da2005-05-12 16:53:42 +00004003 // Note that LegalizeOp may be reentered even from single-use nodes, which
4004 // means that we always must cache transformed nodes.
4005 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004006 return Result;
4007}
4008
Chris Lattner8b6fa222005-01-15 22:16:26 +00004009/// PromoteOp - Given an operation that produces a value in an invalid type,
4010/// promote it to compute the value into a larger type. The produced value will
4011/// have the correct bits for the low portion of the register, but no guarantee
4012/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman475871a2008-07-27 21:46:04 +00004013SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004014 MVT VT = Op.getValueType();
4015 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004016 assert(getTypeAction(VT) == Promote &&
4017 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004018 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00004019 "Cannot promote to smaller type!");
4020
Dan Gohman475871a2008-07-27 21:46:04 +00004021 SDValue Tmp1, Tmp2, Tmp3;
4022 SDValue Result;
Gabor Greifba36cb52008-08-28 21:40:38 +00004023 SDNode *Node = Op.getNode();
Chris Lattner03c85462005-01-15 05:21:40 +00004024
Dan Gohman475871a2008-07-27 21:46:04 +00004025 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004026 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004027
Chris Lattner03c85462005-01-15 05:21:40 +00004028 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004029 case ISD::CopyFromReg:
4030 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004031 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004032#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004033 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004034#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004035 assert(0 && "Do not know how to promote this operator!");
4036 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004037 case ISD::UNDEF:
4038 Result = DAG.getNode(ISD::UNDEF, NVT);
4039 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004040 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004041 if (VT != MVT::i1)
4042 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4043 else
4044 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004045 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4046 break;
4047 case ISD::ConstantFP:
4048 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4049 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4050 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004051
Chris Lattner82fbfb62005-01-18 02:59:52 +00004052 case ISD::SETCC:
Scott Michel5b8f82e2008-03-10 15:42:14 +00004053 assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
Nate Begeman5922f562008-03-14 00:53:31 +00004054 && "SetCC type is not legal??");
Scott Michel5b8f82e2008-03-10 15:42:14 +00004055 Result = DAG.getNode(ISD::SETCC,
Nate Begeman5922f562008-03-14 00:53:31 +00004056 TLI.getSetCCResultType(Node->getOperand(0)),
4057 Node->getOperand(0), Node->getOperand(1),
4058 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004059 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00004060
Chris Lattner03c85462005-01-15 05:21:40 +00004061 case ISD::TRUNCATE:
4062 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4063 case Legal:
4064 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004065 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004066 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004067 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Chris Lattner03c85462005-01-15 05:21:40 +00004068 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4069 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004070 case Promote:
4071 // The truncation is not required, because we don't guarantee anything
4072 // about high bits anyway.
4073 Result = PromoteOp(Node->getOperand(0));
4074 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004075 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004076 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4077 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00004078 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004079 }
4080 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004081 case ISD::SIGN_EXTEND:
4082 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004083 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004084 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4085 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4086 case Legal:
4087 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00004088 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004089 break;
4090 case Promote:
4091 // Promote the reg if it's smaller.
4092 Result = PromoteOp(Node->getOperand(0));
4093 // The high bits are not guaranteed to be anything. Insert an extend.
4094 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00004095 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004096 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004097 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00004098 Result = DAG.getZeroExtendInReg(Result,
4099 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004100 break;
4101 }
4102 break;
Chris Lattner35481892005-12-23 00:16:34 +00004103 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004104 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4105 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00004106 Result = PromoteOp(Result);
4107 break;
4108
Chris Lattner8b6fa222005-01-15 22:16:26 +00004109 case ISD::FP_EXTEND:
4110 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4111 case ISD::FP_ROUND:
4112 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4113 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4114 case Promote: assert(0 && "Unreachable with 2 FP types!");
4115 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004116 if (Node->getConstantOperandVal(1) == 0) {
4117 // Input is legal? Do an FP_ROUND_INREG.
4118 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4119 DAG.getValueType(VT));
4120 } else {
4121 // Just remove the truncate, it isn't affecting the value.
4122 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4123 Node->getOperand(1));
4124 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004125 break;
4126 }
4127 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004128 case ISD::SINT_TO_FP:
4129 case ISD::UINT_TO_FP:
4130 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4131 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004132 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00004133 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004134 break;
4135
4136 case Promote:
4137 Result = PromoteOp(Node->getOperand(0));
4138 if (Node->getOpcode() == ISD::SINT_TO_FP)
4139 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004140 Result,
4141 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004142 else
Chris Lattner23993562005-04-13 02:38:47 +00004143 Result = DAG.getZeroExtendInReg(Result,
4144 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004145 // No extra round required here.
4146 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004147 break;
4148 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004149 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4150 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00004151 // Round if we cannot tolerate excess precision.
4152 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004153 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4154 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004155 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004156 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004157 break;
4158
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004159 case ISD::SIGN_EXTEND_INREG:
4160 Result = PromoteOp(Node->getOperand(0));
4161 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4162 Node->getOperand(1));
4163 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004164 case ISD::FP_TO_SINT:
4165 case ISD::FP_TO_UINT:
4166 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4167 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004168 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004169 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004170 break;
4171 case Promote:
4172 // The input result is prerounded, so we don't have to do anything
4173 // special.
4174 Tmp1 = PromoteOp(Node->getOperand(0));
4175 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004176 }
Nate Begemand2558e32005-08-14 01:20:53 +00004177 // If we're promoting a UINT to a larger size, check to see if the new node
4178 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4179 // we can use that instead. This allows us to generate better code for
4180 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4181 // legal, such as PowerPC.
4182 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004183 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004184 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4185 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00004186 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4187 } else {
4188 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4189 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004190 break;
4191
Chris Lattner2c8086f2005-04-02 05:00:07 +00004192 case ISD::FABS:
4193 case ISD::FNEG:
4194 Tmp1 = PromoteOp(Node->getOperand(0));
4195 assert(Tmp1.getValueType() == NVT);
4196 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4197 // NOTE: we do not have to do any extra rounding here for
4198 // NoExcessFPPrecision, because we know the input will have the appropriate
4199 // precision, and these operations don't modify precision at all.
4200 break;
4201
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004202 case ISD::FLOG:
4203 case ISD::FLOG2:
4204 case ISD::FLOG10:
4205 case ISD::FEXP:
4206 case ISD::FEXP2:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004207 case ISD::FSQRT:
4208 case ISD::FSIN:
4209 case ISD::FCOS:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00004210 case ISD::FTRUNC:
4211 case ISD::FFLOOR:
4212 case ISD::FCEIL:
4213 case ISD::FRINT:
4214 case ISD::FNEARBYINT:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004215 Tmp1 = PromoteOp(Node->getOperand(0));
4216 assert(Tmp1.getValueType() == NVT);
4217 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004218 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004219 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4220 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004221 break;
4222
Evan Cheng9d24ac52008-09-09 23:35:53 +00004223 case ISD::FPOW:
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004224 case ISD::FPOWI: {
Evan Cheng9d24ac52008-09-09 23:35:53 +00004225 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004226 // directly as well, which may be better.
4227 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng9d24ac52008-09-09 23:35:53 +00004228 Tmp2 = Node->getOperand(1);
4229 if (Node->getOpcode() == ISD::FPOW)
4230 Tmp2 = PromoteOp(Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004231 assert(Tmp1.getValueType() == NVT);
Evan Cheng9d24ac52008-09-09 23:35:53 +00004232 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004233 if (NoExcessFPPrecision)
4234 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4235 DAG.getValueType(VT));
4236 break;
4237 }
4238
Dale Johannesene00a8a22008-08-28 02:44:49 +00004239 case ISD::ATOMIC_CMP_SWAP_8:
4240 case ISD::ATOMIC_CMP_SWAP_16:
4241 case ISD::ATOMIC_CMP_SWAP_32:
4242 case ISD::ATOMIC_CMP_SWAP_64: {
Mon P Wang28873102008-06-25 08:15:39 +00004243 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004244 Tmp2 = PromoteOp(Node->getOperand(2));
4245 Tmp3 = PromoteOp(Node->getOperand(3));
Mon P Wang28873102008-06-25 08:15:39 +00004246 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4247 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004248 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004249 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004250 // Remember that we legalized the chain.
4251 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4252 break;
4253 }
Dale Johannesene00a8a22008-08-28 02:44:49 +00004254 case ISD::ATOMIC_LOAD_ADD_8:
4255 case ISD::ATOMIC_LOAD_SUB_8:
4256 case ISD::ATOMIC_LOAD_AND_8:
4257 case ISD::ATOMIC_LOAD_OR_8:
4258 case ISD::ATOMIC_LOAD_XOR_8:
4259 case ISD::ATOMIC_LOAD_NAND_8:
4260 case ISD::ATOMIC_LOAD_MIN_8:
4261 case ISD::ATOMIC_LOAD_MAX_8:
4262 case ISD::ATOMIC_LOAD_UMIN_8:
4263 case ISD::ATOMIC_LOAD_UMAX_8:
4264 case ISD::ATOMIC_SWAP_8:
4265 case ISD::ATOMIC_LOAD_ADD_16:
4266 case ISD::ATOMIC_LOAD_SUB_16:
4267 case ISD::ATOMIC_LOAD_AND_16:
4268 case ISD::ATOMIC_LOAD_OR_16:
4269 case ISD::ATOMIC_LOAD_XOR_16:
4270 case ISD::ATOMIC_LOAD_NAND_16:
4271 case ISD::ATOMIC_LOAD_MIN_16:
4272 case ISD::ATOMIC_LOAD_MAX_16:
4273 case ISD::ATOMIC_LOAD_UMIN_16:
4274 case ISD::ATOMIC_LOAD_UMAX_16:
4275 case ISD::ATOMIC_SWAP_16:
4276 case ISD::ATOMIC_LOAD_ADD_32:
4277 case ISD::ATOMIC_LOAD_SUB_32:
4278 case ISD::ATOMIC_LOAD_AND_32:
4279 case ISD::ATOMIC_LOAD_OR_32:
4280 case ISD::ATOMIC_LOAD_XOR_32:
4281 case ISD::ATOMIC_LOAD_NAND_32:
4282 case ISD::ATOMIC_LOAD_MIN_32:
4283 case ISD::ATOMIC_LOAD_MAX_32:
4284 case ISD::ATOMIC_LOAD_UMIN_32:
4285 case ISD::ATOMIC_LOAD_UMAX_32:
4286 case ISD::ATOMIC_SWAP_32:
4287 case ISD::ATOMIC_LOAD_ADD_64:
4288 case ISD::ATOMIC_LOAD_SUB_64:
4289 case ISD::ATOMIC_LOAD_AND_64:
4290 case ISD::ATOMIC_LOAD_OR_64:
4291 case ISD::ATOMIC_LOAD_XOR_64:
4292 case ISD::ATOMIC_LOAD_NAND_64:
4293 case ISD::ATOMIC_LOAD_MIN_64:
4294 case ISD::ATOMIC_LOAD_MAX_64:
4295 case ISD::ATOMIC_LOAD_UMIN_64:
4296 case ISD::ATOMIC_LOAD_UMAX_64:
4297 case ISD::ATOMIC_SWAP_64: {
Mon P Wang28873102008-06-25 08:15:39 +00004298 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004299 Tmp2 = PromoteOp(Node->getOperand(2));
Mon P Wang28873102008-06-25 08:15:39 +00004300 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4301 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004302 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004303 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004304 // Remember that we legalized the chain.
4305 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4306 break;
4307 }
4308
Chris Lattner03c85462005-01-15 05:21:40 +00004309 case ISD::AND:
4310 case ISD::OR:
4311 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004312 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004313 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004314 case ISD::MUL:
4315 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004316 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004317 // that too is okay if they are integer operations.
4318 Tmp1 = PromoteOp(Node->getOperand(0));
4319 Tmp2 = PromoteOp(Node->getOperand(1));
4320 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4321 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004322 break;
4323 case ISD::FADD:
4324 case ISD::FSUB:
4325 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004326 Tmp1 = PromoteOp(Node->getOperand(0));
4327 Tmp2 = PromoteOp(Node->getOperand(1));
4328 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4329 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4330
4331 // Floating point operations will give excess precision that we may not be
4332 // able to tolerate. If we DO allow excess precision, just leave it,
4333 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004334 // FIXME: Why would we need to round FP ops more than integer ones?
4335 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004336 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004337 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4338 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004339 break;
4340
Chris Lattner8b6fa222005-01-15 22:16:26 +00004341 case ISD::SDIV:
4342 case ISD::SREM:
4343 // These operators require that their input be sign extended.
4344 Tmp1 = PromoteOp(Node->getOperand(0));
4345 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004346 if (NVT.isInteger()) {
Chris Lattner15e4b012005-07-10 00:07:11 +00004347 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4348 DAG.getValueType(VT));
4349 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4350 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004351 }
4352 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4353
4354 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004355 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004356 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4357 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004358 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004359 case ISD::FDIV:
4360 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004361 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004362 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004363 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004364 case Expand: assert(0 && "not implemented");
4365 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4366 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004367 }
4368 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004369 case Expand: assert(0 && "not implemented");
4370 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4371 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004372 }
Chris Lattner01b3d732005-09-28 22:28:18 +00004373 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4374
4375 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004376 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00004377 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4378 DAG.getValueType(VT));
4379 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004380
4381 case ISD::UDIV:
4382 case ISD::UREM:
4383 // These operators require that their input be zero extended.
4384 Tmp1 = PromoteOp(Node->getOperand(0));
4385 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004386 assert(NVT.isInteger() && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00004387 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4388 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004389 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4390 break;
4391
4392 case ISD::SHL:
4393 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00004394 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004395 break;
4396 case ISD::SRA:
4397 // The input value must be properly sign extended.
4398 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00004399 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4400 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00004401 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004402 break;
4403 case ISD::SRL:
4404 // The input value must be properly zero extended.
4405 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00004406 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004407 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004408 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004409
4410 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004411 Tmp1 = Node->getOperand(0); // Get the chain.
4412 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004413 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4414 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004415 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004416 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004417 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman475871a2008-07-27 21:46:04 +00004418 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004419 // Increment the pointer, VAList, to the next vaarg
4420 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004421 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004422 TLI.getPointerTy()));
4423 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00004424 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004425 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004426 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004427 }
4428 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004429 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004430 break;
4431
Evan Cheng466685d2006-10-09 20:57:25 +00004432 case ISD::LOAD: {
4433 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004434 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4435 ? ISD::EXTLOAD : LD->getExtensionType();
4436 Result = DAG.getExtLoad(ExtType, NVT,
4437 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004438 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004439 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004440 LD->isVolatile(),
4441 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004442 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004443 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004444 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004445 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004446 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004447 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4448 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004449
Duncan Sands83ec4b62008-06-06 12:08:01 +00004450 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004451 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004452 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4453 // Ensure that the resulting node is at least the same size as the operands'
4454 // value types, because we cannot assume that TLI.getSetCCValueType() is
4455 // constant.
4456 Result = DAG.getNode(ISD::SELECT, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004457 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004458 }
Nate Begeman9373a812005-08-10 20:51:12 +00004459 case ISD::SELECT_CC:
4460 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4461 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4462 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004463 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004464 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004465 case ISD::BSWAP:
4466 Tmp1 = Node->getOperand(0);
4467 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4468 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4469 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004470 DAG.getConstant(NVT.getSizeInBits() -
4471 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004472 TLI.getShiftAmountTy()));
4473 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004474 case ISD::CTPOP:
4475 case ISD::CTTZ:
4476 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004477 // Zero extend the argument
4478 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004479 // Perform the larger operation, then subtract if needed.
4480 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004481 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004482 case ISD::CTPOP:
4483 Result = Tmp1;
4484 break;
4485 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004486 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004487 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004488 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004489 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004490 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004491 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004492 break;
4493 case ISD::CTLZ:
4494 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004495 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004496 DAG.getConstant(NVT.getSizeInBits() -
4497 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004498 break;
4499 }
4500 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004501 case ISD::EXTRACT_SUBVECTOR:
4502 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004503 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004504 case ISD::EXTRACT_VECTOR_ELT:
4505 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4506 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004507 }
4508
Gabor Greifba36cb52008-08-28 21:40:38 +00004509 assert(Result.getNode() && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004510
4511 // Make sure the result is itself legal.
4512 Result = LegalizeOp(Result);
4513
4514 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004515 AddPromotedOperand(Op, Result);
4516 return Result;
4517}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004518
Dan Gohman7f321562007-06-25 16:23:39 +00004519/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4520/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4521/// based on the vector type. The return type of this matches the element type
4522/// of the vector, which may not be legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00004523SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004524 // We know that operand #0 is the Vec vector. If the index is a constant
4525 // or if the invec is a supported hardware type, we can use it. Otherwise,
4526 // lower to a store then an indexed load.
Dan Gohman475871a2008-07-27 21:46:04 +00004527 SDValue Vec = Op.getOperand(0);
4528 SDValue Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00004529
Duncan Sands83ec4b62008-06-06 12:08:01 +00004530 MVT TVT = Vec.getValueType();
4531 unsigned NumElems = TVT.getVectorNumElements();
Chris Lattner15972212006-03-31 17:55:51 +00004532
Dan Gohman7f321562007-06-25 16:23:39 +00004533 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4534 default: assert(0 && "This action is not supported yet!");
4535 case TargetLowering::Custom: {
4536 Vec = LegalizeOp(Vec);
4537 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004538 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004539 if (Tmp3.getNode())
Dan Gohman7f321562007-06-25 16:23:39 +00004540 return Tmp3;
4541 break;
4542 }
4543 case TargetLowering::Legal:
4544 if (isTypeLegal(TVT)) {
4545 Vec = LegalizeOp(Vec);
4546 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004547 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004548 }
4549 break;
4550 case TargetLowering::Expand:
4551 break;
4552 }
4553
4554 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004555 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004556 Op = ScalarizeVectorOp(Vec);
4557 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00004558 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00004559 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004560 SDValue Lo, Hi;
Chris Lattner15972212006-03-31 17:55:51 +00004561 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004562 if (CIdx->getZExtValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00004563 Vec = Lo;
4564 } else {
4565 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004566 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00004567 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00004568 }
Dan Gohman7f321562007-06-25 16:23:39 +00004569
Chris Lattner15972212006-03-31 17:55:51 +00004570 // It's now an extract from the appropriate high or low part. Recurse.
4571 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004572 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00004573 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004574 // Store the value to a temporary stack slot, then LOAD the scalar
4575 // element back out.
Dan Gohman475871a2008-07-27 21:46:04 +00004576 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
4577 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
Dan Gohman7f321562007-06-25 16:23:39 +00004578
4579 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004580 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dan Gohman7f321562007-06-25 16:23:39 +00004581 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4582 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004583
Duncan Sands8e4eb092008-06-08 20:54:56 +00004584 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Chris Lattnerf185e672007-10-19 16:47:35 +00004585 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004586 else
Chris Lattnerf185e672007-10-19 16:47:35 +00004587 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004588
Dan Gohman7f321562007-06-25 16:23:39 +00004589 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4590
4591 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00004592 }
Dan Gohman7f321562007-06-25 16:23:39 +00004593 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00004594}
4595
Dan Gohman7f321562007-06-25 16:23:39 +00004596/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00004597/// we assume the operation can be split if it is not already legal.
Dan Gohman475871a2008-07-27 21:46:04 +00004598SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohman65956352007-06-13 15:12:02 +00004599 // We know that operand #0 is the Vec vector. For now we assume the index
4600 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman475871a2008-07-27 21:46:04 +00004601 SDValue Vec = Op.getOperand(0);
4602 SDValue Idx = LegalizeOp(Op.getOperand(1));
Dan Gohman65956352007-06-13 15:12:02 +00004603
Duncan Sands83ec4b62008-06-06 12:08:01 +00004604 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Dan Gohman65956352007-06-13 15:12:02 +00004605
Duncan Sands83ec4b62008-06-06 12:08:01 +00004606 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00004607 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004608 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00004609 }
4610
4611 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004612 SDValue Lo, Hi;
Dan Gohman65956352007-06-13 15:12:02 +00004613 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004614 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohman65956352007-06-13 15:12:02 +00004615 Vec = Lo;
4616 } else {
4617 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004618 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
4619 Idx.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00004620 }
4621
4622 // It's now an extract from the appropriate high or low part. Recurse.
4623 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004624 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00004625}
4626
Nate Begeman750ac1b2006-02-01 07:19:44 +00004627/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4628/// with condition CC on the current target. This usually involves legalizing
4629/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4630/// there may be no choice but to create a new SetCC node to represent the
4631/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman475871a2008-07-27 21:46:04 +00004632/// LHS, and the SDValue returned in RHS has a nil SDNode value.
4633void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
4634 SDValue &RHS,
4635 SDValue &CC) {
4636 SDValue Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004637
4638 switch (getTypeAction(LHS.getValueType())) {
4639 case Legal:
4640 Tmp1 = LegalizeOp(LHS); // LHS
4641 Tmp2 = LegalizeOp(RHS); // RHS
4642 break;
4643 case Promote:
4644 Tmp1 = PromoteOp(LHS); // LHS
4645 Tmp2 = PromoteOp(RHS); // RHS
4646
4647 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004648 if (LHS.getValueType().isInteger()) {
4649 MVT VT = LHS.getValueType();
4650 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00004651
4652 // Otherwise, we have to insert explicit sign or zero extends. Note
4653 // that we could insert sign extends for ALL conditions, but zero extend
4654 // is cheaper on many machines (an AND instead of two shifts), so prefer
4655 // it.
4656 switch (cast<CondCodeSDNode>(CC)->get()) {
4657 default: assert(0 && "Unknown integer comparison!");
4658 case ISD::SETEQ:
4659 case ISD::SETNE:
4660 case ISD::SETUGE:
4661 case ISD::SETUGT:
4662 case ISD::SETULE:
4663 case ISD::SETULT:
4664 // ALL of these operations will work if we either sign or zero extend
4665 // the operands (including the unsigned comparisons!). Zero extend is
4666 // usually a simpler/cheaper operation, so prefer it.
4667 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4668 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4669 break;
4670 case ISD::SETGE:
4671 case ISD::SETGT:
4672 case ISD::SETLT:
4673 case ISD::SETLE:
4674 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4675 DAG.getValueType(VT));
4676 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4677 DAG.getValueType(VT));
4678 break;
4679 }
4680 }
4681 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004682 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004683 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00004684 if (VT == MVT::f32 || VT == MVT::f64) {
4685 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00004686 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00004687 switch (cast<CondCodeSDNode>(CC)->get()) {
4688 case ISD::SETEQ:
4689 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00004690 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004691 break;
4692 case ISD::SETNE:
4693 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00004694 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004695 break;
4696 case ISD::SETGE:
4697 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00004698 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004699 break;
4700 case ISD::SETLT:
4701 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00004702 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004703 break;
4704 case ISD::SETLE:
4705 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00004706 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004707 break;
4708 case ISD::SETGT:
4709 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00004710 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004711 break;
4712 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00004713 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4714 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004715 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00004716 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004717 break;
4718 default:
Evan Cheng56966222007-01-12 02:11:51 +00004719 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004720 switch (cast<CondCodeSDNode>(CC)->get()) {
4721 case ISD::SETONE:
4722 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004723 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004724 // Fallthrough
4725 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004726 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004727 break;
4728 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004729 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004730 break;
4731 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004732 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004733 break;
4734 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004735 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004736 break;
Evan Cheng56966222007-01-12 02:11:51 +00004737 case ISD::SETUEQ:
4738 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004739 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004740 default: assert(0 && "Unsupported FP setcc!");
4741 }
4742 }
Duncan Sandsf9516202008-06-30 10:19:09 +00004743
Dan Gohman475871a2008-07-27 21:46:04 +00004744 SDValue Dummy;
4745 SDValue Ops[2] = { LHS, RHS };
Gabor Greifba36cb52008-08-28 21:40:38 +00004746 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00004747 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004748 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004749 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004750 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004751 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00004752 CC);
Gabor Greifba36cb52008-08-28 21:40:38 +00004753 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00004754 false /*sign irrelevant*/, Dummy);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004755 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004756 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004757 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman475871a2008-07-27 21:46:04 +00004758 Tmp2 = SDValue();
Evan Cheng2b49c502006-12-15 02:59:56 +00004759 }
Evan Cheng21cacc42008-07-07 07:18:09 +00004760 LHS = LegalizeOp(Tmp1);
Evan Cheng2b49c502006-12-15 02:59:56 +00004761 RHS = Tmp2;
4762 return;
4763 }
4764
Dan Gohman475871a2008-07-27 21:46:04 +00004765 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004766 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004767 ExpandOp(RHS, RHSLo, RHSHi);
4768 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4769
4770 if (VT==MVT::ppcf128) {
4771 // FIXME: This generated code sucks. We want to generate
Dale Johannesene2f20832008-09-12 00:30:56 +00004772 // FCMPU crN, hi1, hi2
Dale Johannesen638ccd52007-10-06 01:24:11 +00004773 // BNE crN, L:
Dale Johannesene2f20832008-09-12 00:30:56 +00004774 // FCMPU crN, lo1, lo2
Dale Johannesen638ccd52007-10-06 01:24:11 +00004775 // The following can be improved, but not that much.
Dale Johannesene2f20832008-09-12 00:30:56 +00004776 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
4777 ISD::SETOEQ);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004778 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004779 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
Dale Johannesene2f20832008-09-12 00:30:56 +00004780 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
4781 ISD::SETUNE);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004782 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004783 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4784 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman475871a2008-07-27 21:46:04 +00004785 Tmp2 = SDValue();
Dale Johannesen638ccd52007-10-06 01:24:11 +00004786 break;
4787 }
4788
4789 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004790 case ISD::SETEQ:
4791 case ISD::SETNE:
4792 if (RHSLo == RHSHi)
4793 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4794 if (RHSCST->isAllOnesValue()) {
4795 // Comparison to -1.
4796 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4797 Tmp2 = RHSLo;
4798 break;
4799 }
4800
4801 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4802 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4803 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4804 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4805 break;
4806 default:
4807 // If this is a comparison of the sign bit, just look at the top part.
4808 // X > -1, x < 0
4809 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4810 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004811 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00004812 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4813 CST->isAllOnesValue())) { // X > -1
4814 Tmp1 = LHSHi;
4815 Tmp2 = RHSHi;
4816 break;
4817 }
4818
4819 // FIXME: This generated code sucks.
4820 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004821 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004822 default: assert(0 && "Unknown integer setcc!");
4823 case ISD::SETLT:
4824 case ISD::SETULT: LowCC = ISD::SETULT; break;
4825 case ISD::SETGT:
4826 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4827 case ISD::SETLE:
4828 case ISD::SETULE: LowCC = ISD::SETULE; break;
4829 case ISD::SETGE:
4830 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4831 }
4832
4833 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4834 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4835 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4836
4837 // NOTE: on targets without efficient SELECT of bools, we can always use
4838 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004839 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004840 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
Nate Begeman5922f562008-03-14 00:53:31 +00004841 LowCC, false, DagCombineInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00004842 if (!Tmp1.getNode())
Scott Michel5b8f82e2008-03-10 15:42:14 +00004843 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4844 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004845 CCCode, false, DagCombineInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00004846 if (!Tmp2.getNode())
Scott Michel5b8f82e2008-03-10 15:42:14 +00004847 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004848 RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00004849
Gabor Greifba36cb52008-08-28 21:40:38 +00004850 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
4851 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman002e5d02008-03-13 22:13:53 +00004852 if ((Tmp1C && Tmp1C->isNullValue()) ||
4853 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00004854 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4855 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00004856 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00004857 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4858 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4859 // low part is known false, returns high part.
4860 // For LE / GE, if high part is known false, ignore the low part.
4861 // For LT / GT, if high part is known true, ignore the low part.
4862 Tmp1 = Tmp2;
Dan Gohman475871a2008-07-27 21:46:04 +00004863 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00004864 } else {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004865 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004866 ISD::SETEQ, false, DagCombineInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00004867 if (!Result.getNode())
Scott Michel5b8f82e2008-03-10 15:42:14 +00004868 Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004869 ISD::SETEQ);
Evan Cheng2e677812007-02-08 22:16:19 +00004870 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4871 Result, Tmp1, Tmp2));
4872 Tmp1 = Result;
Dan Gohman475871a2008-07-27 21:46:04 +00004873 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00004874 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004875 }
4876 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004877 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004878 LHS = Tmp1;
4879 RHS = Tmp2;
4880}
4881
Chris Lattner1401d152008-01-16 07:45:30 +00004882/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4883/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4884/// a load from the stack slot to DestVT, extending it if needed.
4885/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00004886SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
4887 MVT SlotVT,
4888 MVT DestVT) {
Chris Lattner35481892005-12-23 00:16:34 +00004889 // Create the stack frame object.
Mon P Wang364d73d2008-07-05 20:40:31 +00004890 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
4891 SrcOp.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00004892 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Mon P Wang364d73d2008-07-05 20:40:31 +00004893
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004894 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004895 int SPFI = StackPtrFI->getIndex();
Mon P Wang364d73d2008-07-05 20:40:31 +00004896
Duncan Sands83ec4b62008-06-06 12:08:01 +00004897 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
4898 unsigned SlotSize = SlotVT.getSizeInBits();
4899 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang364d73d2008-07-05 20:40:31 +00004900 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
4901 DestVT.getTypeForMVT());
Chris Lattner35481892005-12-23 00:16:34 +00004902
Chris Lattner1401d152008-01-16 07:45:30 +00004903 // Emit a store to the stack slot. Use a truncstore if the input value is
4904 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00004905 SDValue Store;
Mon P Wang364d73d2008-07-05 20:40:31 +00004906
Chris Lattner1401d152008-01-16 07:45:30 +00004907 if (SrcSize > SlotSize)
Dan Gohman69de1932008-02-06 22:27:42 +00004908 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004909 PseudoSourceValue::getFixedStack(SPFI), 0,
4910 SlotVT, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004911 else {
4912 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman69de1932008-02-06 22:27:42 +00004913 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004914 PseudoSourceValue::getFixedStack(SPFI), 0,
Mon P Wang364d73d2008-07-05 20:40:31 +00004915 false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004916 }
4917
Chris Lattner35481892005-12-23 00:16:34 +00004918 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00004919 if (SlotSize == DestSize)
Mon P Wang364d73d2008-07-05 20:40:31 +00004920 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0, false, DestAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004921
4922 assert(SlotSize < DestSize && "Unknown extension!");
Mon P Wang364d73d2008-07-05 20:40:31 +00004923 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT,
4924 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00004925}
4926
Dan Gohman475871a2008-07-27 21:46:04 +00004927SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Chris Lattner4352cc92006-04-04 17:23:26 +00004928 // Create a vector sized/aligned stack slot, store the value to element #0,
4929 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00004930 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00004931
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004932 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004933 int SPFI = StackPtrFI->getIndex();
4934
Dan Gohman475871a2008-07-27 21:46:04 +00004935 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004936 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohman69de1932008-02-06 22:27:42 +00004937 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004938 PseudoSourceValue::getFixedStack(SPFI), 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00004939}
4940
4941
Chris Lattnerce872152006-03-19 06:31:19 +00004942/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004943/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00004944SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Chris Lattnerce872152006-03-19 06:31:19 +00004945
4946 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004947 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004948 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004949 bool isOnlyLowElement = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004950 SDValue SplatValue = Node->getOperand(0);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004951
Dan Gohman475871a2008-07-27 21:46:04 +00004952 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004953 // and use a bitmask instead of a list of elements.
Dan Gohman475871a2008-07-27 21:46:04 +00004954 std::map<SDValue, std::vector<unsigned> > Values;
Evan Cheng033e6812006-03-24 01:17:21 +00004955 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004956 bool isConstant = true;
4957 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
4958 SplatValue.getOpcode() != ISD::UNDEF)
4959 isConstant = false;
4960
Evan Cheng033e6812006-03-24 01:17:21 +00004961 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00004962 SDValue V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00004963 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00004964 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00004965 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00004966 if (SplatValue != V)
Dan Gohman475871a2008-07-27 21:46:04 +00004967 SplatValue = SDValue(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004968
4969 // If this isn't a constant element or an undef, we can't use a constant
4970 // pool load.
4971 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
4972 V.getOpcode() != ISD::UNDEF)
4973 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00004974 }
4975
4976 if (isOnlyLowElement) {
4977 // If the low element is an undef too, then this whole things is an undef.
4978 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
4979 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
4980 // Otherwise, turn this into a scalar_to_vector node.
4981 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
4982 Node->getOperand(0));
4983 }
4984
Chris Lattner2eb86532006-03-24 07:29:17 +00004985 // If all elements are constants, create a load from the constant pool.
4986 if (isConstant) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004987 MVT VT = Node->getValueType(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00004988 std::vector<Constant*> CV;
4989 for (unsigned i = 0, e = NumElems; i != e; ++i) {
4990 if (ConstantFPSDNode *V =
4991 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00004992 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004993 } else if (ConstantSDNode *V =
Chris Lattner02a260a2008-04-20 00:41:09 +00004994 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00004995 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00004996 } else {
4997 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner02a260a2008-04-20 00:41:09 +00004998 const Type *OpNTy =
Duncan Sands83ec4b62008-06-06 12:08:01 +00004999 Node->getOperand(0).getValueType().getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00005000 CV.push_back(UndefValue::get(OpNTy));
5001 }
5002 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00005003 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00005004 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00005005 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman69de1932008-02-06 22:27:42 +00005006 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005007 PseudoSourceValue::getConstantPool(), 0,
5008 false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00005009 }
5010
Gabor Greifba36cb52008-08-28 21:40:38 +00005011 if (SplatValue.getNode()) { // Splat of one value?
Chris Lattner87100e02006-03-20 01:52:29 +00005012 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005013 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman475871a2008-07-27 21:46:04 +00005014 SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
5015 std::vector<SDValue> ZeroVec(NumElems, Zero);
5016 SDValue SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005017 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00005018
5019 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005020 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00005021 // Get the splatted value into the low element of a vector register.
Dan Gohman475871a2008-07-27 21:46:04 +00005022 SDValue LowValVec =
Chris Lattner87100e02006-03-20 01:52:29 +00005023 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
5024
5025 // Return shuffle(LowValVec, undef, <0,0,0,0>)
5026 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
5027 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
5028 SplatMask);
5029 }
5030 }
5031
Evan Cheng033e6812006-03-24 01:17:21 +00005032 // If there are only two unique elements, we may be able to turn this into a
5033 // vector shuffle.
5034 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005035 // Get the two values in deterministic order.
Dan Gohman475871a2008-07-27 21:46:04 +00005036 SDValue Val1 = Node->getOperand(1);
5037 SDValue Val2;
5038 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005039 if (MI->first != Val1)
5040 Val2 = MI->first;
5041 else
5042 Val2 = (++MI)->first;
5043
5044 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
5045 // vector shuffle has the undef vector on the RHS.
5046 if (Val1.getOpcode() == ISD::UNDEF)
5047 std::swap(Val1, Val2);
5048
Evan Cheng033e6812006-03-24 01:17:21 +00005049 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005050 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5051 MVT MaskEltVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00005052 std::vector<SDValue> MaskVec(NumElems);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005053
5054 // Set elements of the shuffle mask for Val1.
5055 std::vector<unsigned> &Val1Elts = Values[Val1];
5056 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5057 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5058
5059 // Set elements of the shuffle mask for Val2.
5060 std::vector<unsigned> &Val2Elts = Values[Val2];
5061 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5062 if (Val2.getOpcode() != ISD::UNDEF)
5063 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5064 else
5065 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
5066
Dan Gohman475871a2008-07-27 21:46:04 +00005067 SDValue ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005068 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00005069
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005070 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005071 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
5072 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005073 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
5074 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
Dan Gohman475871a2008-07-27 21:46:04 +00005075 SDValue Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng033e6812006-03-24 01:17:21 +00005076
5077 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005078 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Evan Cheng033e6812006-03-24 01:17:21 +00005079 }
5080 }
Chris Lattnerce872152006-03-19 06:31:19 +00005081
5082 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5083 // aligned object on the stack, store each element into it, then load
5084 // the result as a vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005085 MVT VT = Node->getValueType(0);
Chris Lattnerce872152006-03-19 06:31:19 +00005086 // Create the stack frame object.
Dan Gohman475871a2008-07-27 21:46:04 +00005087 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005088
5089 // Emit a store of each element to the stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00005090 SmallVector<SDValue, 8> Stores;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005091 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Chris Lattnerce872152006-03-19 06:31:19 +00005092 // Store (in the right endianness) the elements to memory.
5093 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5094 // Ignore undef elements.
5095 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5096
Chris Lattner841c8822006-03-22 01:46:54 +00005097 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00005098
Dan Gohman475871a2008-07-27 21:46:04 +00005099 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Chris Lattnerce872152006-03-19 06:31:19 +00005100 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5101
Evan Cheng786225a2006-10-05 23:01:46 +00005102 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00005103 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00005104 }
5105
Dan Gohman475871a2008-07-27 21:46:04 +00005106 SDValue StoreChain;
Chris Lattnerce872152006-03-19 06:31:19 +00005107 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005108 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5109 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005110 else
5111 StoreChain = DAG.getEntryNode();
5112
5113 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00005114 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005115}
5116
Chris Lattner5b359c62005-04-02 04:00:59 +00005117void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman475871a2008-07-27 21:46:04 +00005118 SDValue Op, SDValue Amt,
5119 SDValue &Lo, SDValue &Hi) {
Chris Lattner5b359c62005-04-02 04:00:59 +00005120 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00005121 SDValue LHSL, LHSH;
Chris Lattner5b359c62005-04-02 04:00:59 +00005122 ExpandOp(Op, LHSL, LHSH);
5123
Dan Gohman475871a2008-07-27 21:46:04 +00005124 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005125 MVT VT = LHSL.getValueType();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00005126 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005127 Hi = Lo.getValue(1);
5128}
5129
5130
Chris Lattnere34b3962005-01-19 04:19:40 +00005131/// ExpandShift - Try to find a clever way to expand this shift operation out to
5132/// smaller elements. If we can't find a way that is more efficient than a
5133/// libcall on this target, return false. Otherwise, return true with the
5134/// low-parts expanded into Lo and Hi.
Dan Gohman475871a2008-07-27 21:46:04 +00005135bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op,SDValue Amt,
5136 SDValue &Lo, SDValue &Hi) {
Chris Lattnere34b3962005-01-19 04:19:40 +00005137 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5138 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005139
Duncan Sands83ec4b62008-06-06 12:08:01 +00005140 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman475871a2008-07-27 21:46:04 +00005141 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005142 MVT ShTy = ShAmt.getValueType();
5143 unsigned ShBits = ShTy.getSizeInBits();
5144 unsigned VTBits = Op.getValueType().getSizeInBits();
5145 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005146
Chris Lattner7a3c8552007-10-14 20:35:12 +00005147 // Handle the case when Amt is an immediate.
Gabor Greifba36cb52008-08-28 21:40:38 +00005148 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005149 unsigned Cst = CN->getZExtValue();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005150 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005151 SDValue InL, InH;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005152 ExpandOp(Op, InL, InH);
5153 switch(Opc) {
5154 case ISD::SHL:
5155 if (Cst > VTBits) {
5156 Lo = DAG.getConstant(0, NVT);
5157 Hi = DAG.getConstant(0, NVT);
5158 } else if (Cst > NVTBits) {
5159 Lo = DAG.getConstant(0, NVT);
5160 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005161 } else if (Cst == NVTBits) {
5162 Lo = DAG.getConstant(0, NVT);
5163 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005164 } else {
5165 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5166 Hi = DAG.getNode(ISD::OR, NVT,
5167 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5168 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5169 }
5170 return true;
5171 case ISD::SRL:
5172 if (Cst > VTBits) {
5173 Lo = DAG.getConstant(0, NVT);
5174 Hi = DAG.getConstant(0, NVT);
5175 } else if (Cst > NVTBits) {
5176 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5177 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005178 } else if (Cst == NVTBits) {
5179 Lo = InH;
5180 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005181 } else {
5182 Lo = DAG.getNode(ISD::OR, NVT,
5183 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5184 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5185 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5186 }
5187 return true;
5188 case ISD::SRA:
5189 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005190 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005191 DAG.getConstant(NVTBits-1, ShTy));
5192 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005193 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005194 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005195 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005196 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005197 } else if (Cst == NVTBits) {
5198 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00005199 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005200 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005201 } else {
5202 Lo = DAG.getNode(ISD::OR, NVT,
5203 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5204 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5205 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5206 }
5207 return true;
5208 }
5209 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005210
5211 // Okay, the shift amount isn't constant. However, if we can tell that it is
5212 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005213 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5214 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005215 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005216
Dan Gohman9e255b72008-02-22 01:12:31 +00005217 // If we know that if any of the high bits of the shift amount are one, then
5218 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005219 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005220 // Mask out the high bit, which we know is set.
5221 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005222 DAG.getConstant(~Mask, Amt.getValueType()));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005223
5224 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005225 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005226 ExpandOp(Op, InL, InH);
5227 switch(Opc) {
5228 case ISD::SHL:
5229 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5230 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5231 return true;
5232 case ISD::SRL:
5233 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5234 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5235 return true;
5236 case ISD::SRA:
5237 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5238 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5239 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5240 return true;
5241 }
5242 }
5243
Dan Gohman9e255b72008-02-22 01:12:31 +00005244 // If we know that the high bits of the shift amount are all zero, then we can
5245 // do this as a couple of simple shifts.
5246 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005247 // Compute 32-amt.
Dan Gohman475871a2008-07-27 21:46:04 +00005248 SDValue Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005249 DAG.getConstant(NVTBits, Amt.getValueType()),
5250 Amt);
5251
5252 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005253 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005254 ExpandOp(Op, InL, InH);
5255 switch(Opc) {
5256 case ISD::SHL:
5257 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5258 Hi = DAG.getNode(ISD::OR, NVT,
5259 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5260 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5261 return true;
5262 case ISD::SRL:
5263 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5264 Lo = DAG.getNode(ISD::OR, NVT,
5265 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5266 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5267 return true;
5268 case ISD::SRA:
5269 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5270 Lo = DAG.getNode(ISD::OR, NVT,
5271 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5272 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5273 return true;
5274 }
5275 }
5276
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005277 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005278}
Chris Lattner77e77a62005-01-21 06:05:23 +00005279
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005280
Chris Lattner77e77a62005-01-21 06:05:23 +00005281// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5282// does not fit into a register, return the lo part and set the hi part to the
5283// by-reg argument. If it does fit into a single register, return the result
5284// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00005285SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5286 bool isSigned, SDValue &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005287 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5288 // The input chain to this libcall is the entry node of the function.
5289 // Legalizing the call will automatically add the previous call to the
5290 // dependence.
Dan Gohman475871a2008-07-27 21:46:04 +00005291 SDValue InChain = DAG.getEntryNode();
Chris Lattner6831a812006-02-13 09:18:02 +00005292
Chris Lattner77e77a62005-01-21 06:05:23 +00005293 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005294 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005295 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005296 MVT ArgVT = Node->getOperand(i).getValueType();
5297 const Type *ArgTy = ArgVT.getTypeForMVT();
Reid Spencer47857812006-12-31 05:55:36 +00005298 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005299 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005300 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005301 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005302 }
Bill Wendling056292f2008-09-16 21:48:12 +00005303 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
5304 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005305
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005306 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005307 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Dan Gohman475871a2008-07-27 21:46:04 +00005308 std::pair<SDValue,SDValue> CallInfo =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005309 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
5310 CallingConv::C, false, Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005311
Chris Lattner6831a812006-02-13 09:18:02 +00005312 // Legalize the call sequence, starting with the chain. This will advance
5313 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5314 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5315 LegalizeOp(CallInfo.second);
Dan Gohman475871a2008-07-27 21:46:04 +00005316 SDValue Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005317 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005318 default: assert(0 && "Unknown thing");
5319 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005320 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005321 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005322 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005323 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005324 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005325 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005326 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005327}
5328
Dan Gohman7f8613e2008-08-14 20:04:46 +00005329/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5330///
5331SDValue SelectionDAGLegalize::
5332LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op) {
5333 bool isCustom = false;
5334 SDValue Tmp1;
5335 switch (getTypeAction(Op.getValueType())) {
5336 case Legal:
5337 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5338 Op.getValueType())) {
5339 default: assert(0 && "Unknown operation action!");
5340 case TargetLowering::Custom:
5341 isCustom = true;
5342 // FALLTHROUGH
5343 case TargetLowering::Legal:
5344 Tmp1 = LegalizeOp(Op);
Gabor Greifba36cb52008-08-28 21:40:38 +00005345 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005346 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5347 else
5348 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5349 DestTy, Tmp1);
5350 if (isCustom) {
5351 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005352 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005353 }
5354 break;
5355 case TargetLowering::Expand:
5356 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy);
5357 break;
5358 case TargetLowering::Promote:
5359 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned);
5360 break;
5361 }
5362 break;
5363 case Expand:
5364 Result = ExpandIntToFP(isSigned, DestTy, Op);
5365 break;
5366 case Promote:
5367 Tmp1 = PromoteOp(Op);
5368 if (isSigned) {
5369 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
5370 Tmp1, DAG.getValueType(Op.getValueType()));
5371 } else {
5372 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
5373 Op.getValueType());
5374 }
Gabor Greifba36cb52008-08-28 21:40:38 +00005375 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005376 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5377 else
5378 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5379 DestTy, Tmp1);
5380 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5381 break;
5382 }
5383 return Result;
5384}
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005385
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005386/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5387///
Dan Gohman475871a2008-07-27 21:46:04 +00005388SDValue SelectionDAGLegalize::
5389ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005390 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005391 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005392
Dan Gohman7f8613e2008-08-14 20:04:46 +00005393 // Expand unsupported int-to-fp vector casts by unrolling them.
5394 if (DestTy.isVector()) {
5395 if (!ExpandSource)
5396 return LegalizeOp(UnrollVectorOp(Source));
5397 MVT DestEltTy = DestTy.getVectorElementType();
5398 if (DestTy.getVectorNumElements() == 1) {
5399 SDValue Scalar = ScalarizeVectorOp(Source);
5400 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
5401 DestEltTy, Scalar);
5402 return DAG.getNode(ISD::BUILD_VECTOR, DestTy, Result);
5403 }
5404 SDValue Lo, Hi;
5405 SplitVectorOp(Source, Lo, Hi);
5406 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5407 DestTy.getVectorNumElements() / 2);
5408 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Lo);
5409 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Hi);
5410 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, DestTy, LoResult, HiResult));
5411 }
5412
Evan Cheng9845eb52008-04-01 02:18:22 +00005413 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5414 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005415 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005416 // incoming integer is set. To handle this, we dynamically test to see if
5417 // it is set, and, if so, add a fudge factor.
Dan Gohman475871a2008-07-27 21:46:04 +00005418 SDValue Hi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005419 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005420 SDValue Lo;
Dan Gohman034f60e2008-03-11 01:59:03 +00005421 ExpandOp(Source, Lo, Hi);
5422 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5423 } else {
5424 // The comparison for the sign bit will use the entire operand.
5425 Hi = Source;
5426 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005427
Chris Lattner66de05b2005-05-13 04:45:13 +00005428 // If this is unsigned, and not supported, first perform the conversion to
5429 // signed, then adjust the result if the sign bit is set.
Dan Gohman475871a2008-07-27 21:46:04 +00005430 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source);
Chris Lattner66de05b2005-05-13 04:45:13 +00005431
Dan Gohman475871a2008-07-27 21:46:04 +00005432 SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005433 DAG.getConstant(0, Hi.getValueType()),
5434 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00005435 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5436 SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
Chris Lattnere9c35e72005-04-13 05:09:42 +00005437 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005438 uint64_t FF = 0x5f800000ULL;
5439 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohman34bc1782008-03-05 02:07:31 +00005440 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005441
Dan Gohman475871a2008-07-27 21:46:04 +00005442 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00005443 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattnere9c35e72005-04-13 05:09:42 +00005444 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00005445 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00005446 SDValue FudgeInReg;
Chris Lattnere9c35e72005-04-13 05:09:42 +00005447 if (DestTy == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005448 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005449 PseudoSourceValue::getConstantPool(), 0,
5450 false, Alignment);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005451 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005452 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005453 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005454 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005455 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00005456 MVT::f32, false, Alignment);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005457 else
5458 assert(0 && "Unexpected conversion");
5459
Duncan Sands83ec4b62008-06-06 12:08:01 +00005460 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005461 if (SCVT != DestTy) {
5462 // Destination type needs to be expanded as well. The FADD now we are
5463 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005464 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5465 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dan Gohmand91446d2008-03-05 01:08:17 +00005466 SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005467 SignedConv, SignedConv.getValue(1));
5468 }
5469 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5470 }
Chris Lattner473a9902005-09-29 06:44:39 +00005471 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005472 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005473
Chris Lattnera88a2602005-05-14 05:33:54 +00005474 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00005475 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00005476 default: assert(0 && "This action not implemented for this operation!");
5477 case TargetLowering::Legal:
5478 case TargetLowering::Expand:
5479 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005480 case TargetLowering::Custom: {
Dan Gohman475871a2008-07-27 21:46:04 +00005481 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
Chris Lattner07dffd62005-08-26 00:14:16 +00005482 Source), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005483 if (NV.getNode())
Chris Lattner07dffd62005-08-26 00:14:16 +00005484 return LegalizeOp(NV);
5485 break; // The target decided this was legal after all
5486 }
Chris Lattnera88a2602005-05-14 05:33:54 +00005487 }
5488
Chris Lattner13689e22005-05-12 07:00:44 +00005489 // Expand the source, then glue it back together for the call. We must expand
5490 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00005491 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005492 SDValue SrcLo, SrcHi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005493 ExpandOp(Source, SrcLo, SrcHi);
5494 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5495 }
Chris Lattner13689e22005-05-12 07:00:44 +00005496
Duncan Sandsb2ff8852008-07-17 02:36:29 +00005497 RTLIB::Libcall LC = isSigned ?
5498 RTLIB::getSINTTOFP(SourceVT, DestTy) :
5499 RTLIB::getUINTTOFP(SourceVT, DestTy);
5500 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
5501
Chris Lattner6831a812006-02-13 09:18:02 +00005502 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
Dan Gohman475871a2008-07-27 21:46:04 +00005503 SDValue HiPart;
Gabor Greifba36cb52008-08-28 21:40:38 +00005504 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
5505 if (Result.getValueType() != DestTy && HiPart.getNode())
Dan Gohmana2e94852008-03-10 23:03:31 +00005506 Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5507 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005508}
Misha Brukmanedf128a2005-04-21 22:36:52 +00005509
Chris Lattner22cde6a2006-01-28 08:25:58 +00005510/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5511/// INT_TO_FP operation of the specified operand when the target requests that
5512/// we expand it. At this point, we know that the result and operand types are
5513/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00005514SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5515 SDValue Op0,
5516 MVT DestVT) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005517 if (Op0.getValueType() == MVT::i32) {
5518 // simple 32-bit [signed|unsigned] integer to float/double expansion
5519
Chris Lattner23594d42008-01-16 07:03:22 +00005520 // Get the stack frame index of a 8 byte buffer.
Dan Gohman475871a2008-07-27 21:46:04 +00005521 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Chris Lattner23594d42008-01-16 07:03:22 +00005522
Chris Lattner22cde6a2006-01-28 08:25:58 +00005523 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00005524 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00005525 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00005526 SDValue Hi = StackSlot;
5527 SDValue Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00005528 if (TLI.isLittleEndian())
5529 std::swap(Hi, Lo);
5530
Chris Lattner22cde6a2006-01-28 08:25:58 +00005531 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00005532 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005533 if (isSigned) {
5534 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman475871a2008-07-27 21:46:04 +00005535 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005536 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5537 } else {
5538 Op0Mapped = Op0;
5539 }
5540 // store the lo of the constructed double - based on integer input
Dan Gohman475871a2008-07-27 21:46:04 +00005541 SDValue Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005542 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005543 // initial hi portion of constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00005544 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005545 // store the hi of the constructed double - biased exponent
Dan Gohman475871a2008-07-27 21:46:04 +00005546 SDValue Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005547 // load the constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00005548 SDValue Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005549 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00005550 SDValue Bias = DAG.getConstantFP(isSigned ?
Chris Lattner22cde6a2006-01-28 08:25:58 +00005551 BitsToDouble(0x4330000080000000ULL)
5552 : BitsToDouble(0x4330000000000000ULL),
5553 MVT::f64);
5554 // subtract the bias
Dan Gohman475871a2008-07-27 21:46:04 +00005555 SDValue Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005556 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00005557 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005558 // handle final rounding
5559 if (DestVT == MVT::f64) {
5560 // do nothing
5561 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00005562 } else if (DestVT.bitsLT(MVT::f64)) {
Chris Lattner0bd48932008-01-17 07:00:52 +00005563 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5564 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005565 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005566 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005567 }
5568 return Result;
5569 }
5570 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dan Gohman475871a2008-07-27 21:46:04 +00005571 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005572
Dan Gohman475871a2008-07-27 21:46:04 +00005573 SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005574 DAG.getConstant(0, Op0.getValueType()),
5575 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00005576 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5577 SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005578 SignSet, Four, Zero);
5579
5580 // If the sign bit of the integer is set, the large number will be treated
5581 // as a negative number. To counteract this, the dynamic code adds an
5582 // offset depending on the data type.
5583 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005584 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005585 default: assert(0 && "Unsupported integer type!");
5586 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5587 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5588 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5589 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5590 }
5591 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005592 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005593
Dan Gohman475871a2008-07-27 21:46:04 +00005594 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00005595 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005596 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00005597 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00005598 SDValue FudgeInReg;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005599 if (DestVT == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005600 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005601 PseudoSourceValue::getConstantPool(), 0,
5602 false, Alignment);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005603 else {
Dan Gohman69de1932008-02-06 22:27:42 +00005604 FudgeInReg =
5605 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5606 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005607 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00005608 MVT::f32, false, Alignment));
Chris Lattner22cde6a2006-01-28 08:25:58 +00005609 }
5610
5611 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5612}
5613
5614/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5615/// *INT_TO_FP operation of the specified operand when the target requests that
5616/// we promote it. At this point, we know that the result and operand types are
5617/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5618/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00005619SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
5620 MVT DestVT,
5621 bool isSigned) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005622 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005623 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005624
5625 unsigned OpToUse = 0;
5626
5627 // Scan for the appropriate larger type to use.
5628 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005629 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
5630 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005631
5632 // If the target supports SINT_TO_FP of this type, use it.
5633 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5634 default: break;
5635 case TargetLowering::Legal:
5636 if (!TLI.isTypeLegal(NewInTy))
5637 break; // Can't use this datatype.
5638 // FALL THROUGH.
5639 case TargetLowering::Custom:
5640 OpToUse = ISD::SINT_TO_FP;
5641 break;
5642 }
5643 if (OpToUse) break;
5644 if (isSigned) continue;
5645
5646 // If the target supports UINT_TO_FP of this type, use it.
5647 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5648 default: break;
5649 case TargetLowering::Legal:
5650 if (!TLI.isTypeLegal(NewInTy))
5651 break; // Can't use this datatype.
5652 // FALL THROUGH.
5653 case TargetLowering::Custom:
5654 OpToUse = ISD::UINT_TO_FP;
5655 break;
5656 }
5657 if (OpToUse) break;
5658
5659 // Otherwise, try a larger type.
5660 }
5661
5662 // Okay, we found the operation and type to use. Zero extend our input to the
5663 // desired type then run the operation on it.
5664 return DAG.getNode(OpToUse, DestVT,
5665 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5666 NewInTy, LegalOp));
5667}
5668
5669/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5670/// FP_TO_*INT operation of the specified operand when the target requests that
5671/// we promote it. At this point, we know that the result and operand types are
5672/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5673/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00005674SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
5675 MVT DestVT,
5676 bool isSigned) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005677 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005678 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005679
5680 unsigned OpToUse = 0;
5681
5682 // Scan for the appropriate larger type to use.
5683 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005684 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
5685 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005686
5687 // If the target supports FP_TO_SINT returning this type, use it.
5688 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5689 default: break;
5690 case TargetLowering::Legal:
5691 if (!TLI.isTypeLegal(NewOutTy))
5692 break; // Can't use this datatype.
5693 // FALL THROUGH.
5694 case TargetLowering::Custom:
5695 OpToUse = ISD::FP_TO_SINT;
5696 break;
5697 }
5698 if (OpToUse) break;
5699
5700 // If the target supports FP_TO_UINT of this type, use it.
5701 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5702 default: break;
5703 case TargetLowering::Legal:
5704 if (!TLI.isTypeLegal(NewOutTy))
5705 break; // Can't use this datatype.
5706 // FALL THROUGH.
5707 case TargetLowering::Custom:
5708 OpToUse = ISD::FP_TO_UINT;
5709 break;
5710 }
5711 if (OpToUse) break;
5712
5713 // Otherwise, try a larger type.
5714 }
5715
Chris Lattner27a6c732007-11-24 07:07:01 +00005716
5717 // Okay, we found the operation and type to use.
Dan Gohman475871a2008-07-27 21:46:04 +00005718 SDValue Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00005719
Chris Lattner27a6c732007-11-24 07:07:01 +00005720 // If the operation produces an invalid type, it must be custom lowered. Use
5721 // the target lowering hooks to expand it. Just keep the low part of the
5722 // expanded operation, we know that we're truncating anyway.
5723 if (getTypeAction(NewOutTy) == Expand) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005724 Operation = SDValue(TLI.ReplaceNodeResults(Operation.getNode(), DAG), 0);
5725 assert(Operation.getNode() && "Didn't return anything");
Chris Lattner27a6c732007-11-24 07:07:01 +00005726 }
Duncan Sands126d9072008-07-04 11:47:58 +00005727
Chris Lattner27a6c732007-11-24 07:07:01 +00005728 // Truncate the result of the extended FP_TO_*INT operation to the desired
5729 // size.
5730 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005731}
5732
5733/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5734///
Dan Gohman475871a2008-07-27 21:46:04 +00005735SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005736 MVT VT = Op.getValueType();
5737 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman475871a2008-07-27 21:46:04 +00005738 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005739 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005740 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5741 case MVT::i16:
5742 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5743 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5744 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5745 case MVT::i32:
5746 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5747 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5748 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5749 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5750 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5751 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5752 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5753 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5754 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5755 case MVT::i64:
5756 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5757 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5758 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5759 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5760 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5761 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5762 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5763 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5764 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5765 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5766 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5767 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5768 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5769 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5770 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5771 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5772 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5773 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5774 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5775 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5776 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5777 }
5778}
5779
5780/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5781///
Dan Gohman475871a2008-07-27 21:46:04 +00005782SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005783 switch (Opc) {
5784 default: assert(0 && "Cannot expand this yet!");
5785 case ISD::CTPOP: {
5786 static const uint64_t mask[6] = {
5787 0x5555555555555555ULL, 0x3333333333333333ULL,
5788 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5789 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5790 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005791 MVT VT = Op.getValueType();
5792 MVT ShVT = TLI.getShiftAmountTy();
5793 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005794 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5795 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Dan Gohman475871a2008-07-27 21:46:04 +00005796 SDValue Tmp2 = DAG.getConstant(mask[i], VT);
5797 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005798 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5799 DAG.getNode(ISD::AND, VT,
5800 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5801 }
5802 return Op;
5803 }
5804 case ISD::CTLZ: {
5805 // for now, we do this:
5806 // x = x | (x >> 1);
5807 // x = x | (x >> 2);
5808 // ...
5809 // x = x | (x >>16);
5810 // x = x | (x >>32); // for 64-bit input
5811 // return popcount(~x);
5812 //
5813 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005814 MVT VT = Op.getValueType();
5815 MVT ShVT = TLI.getShiftAmountTy();
5816 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005817 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005818 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005819 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5820 }
5821 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5822 return DAG.getNode(ISD::CTPOP, VT, Op);
5823 }
5824 case ISD::CTTZ: {
5825 // for now, we use: { return popcount(~x & (x - 1)); }
5826 // unless the target has ctlz but not ctpop, in which case we use:
5827 // { return 32 - nlz(~x & (x-1)); }
5828 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005829 MVT VT = Op.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00005830 SDValue Tmp2 = DAG.getConstant(~0ULL, VT);
5831 SDValue Tmp3 = DAG.getNode(ISD::AND, VT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005832 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5833 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5834 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5835 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5836 TLI.isOperationLegal(ISD::CTLZ, VT))
5837 return DAG.getNode(ISD::SUB, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005838 DAG.getConstant(VT.getSizeInBits(), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005839 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5840 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5841 }
5842 }
5843}
Chris Lattnere34b3962005-01-19 04:19:40 +00005844
Dan Gohman475871a2008-07-27 21:46:04 +00005845/// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattner3e928bb2005-01-07 07:47:09 +00005846/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
Dan Gohman929d3eb2008-10-01 15:07:49 +00005847/// LegalizedNodes map is filled in for any results that are not expanded, the
Chris Lattner3e928bb2005-01-07 07:47:09 +00005848/// ExpandedNodes map is filled in for any results that are expanded, and the
5849/// Lo/Hi values are returned.
Dan Gohman475871a2008-07-27 21:46:04 +00005850void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00005851 MVT VT = Op.getValueType();
5852 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greifba36cb52008-08-28 21:40:38 +00005853 SDNode *Node = Op.getNode();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005854 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00005855 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00005856 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00005857
Chris Lattner6fdcb252005-09-02 20:32:45 +00005858 // See if we already expanded it.
Dan Gohman475871a2008-07-27 21:46:04 +00005859 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00005860 = ExpandedNodes.find(Op);
5861 if (I != ExpandedNodes.end()) {
5862 Lo = I->second.first;
5863 Hi = I->second.second;
5864 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005865 }
5866
Chris Lattner3e928bb2005-01-07 07:47:09 +00005867 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005868 case ISD::CopyFromReg:
5869 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005870 case ISD::FP_ROUND_INREG:
5871 if (VT == MVT::ppcf128 &&
5872 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5873 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00005874 SDValue SrcLo, SrcHi, Src;
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005875 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5876 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
Dan Gohman475871a2008-07-27 21:46:04 +00005877 SDValue Result = TLI.LowerOperation(
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005878 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005879 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
5880 Lo = Result.getNode()->getOperand(0);
5881 Hi = Result.getNode()->getOperand(1);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005882 break;
5883 }
5884 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00005885 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005886#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005887 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005888#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00005889 assert(0 && "Do not know how to expand this operator!");
5890 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00005891 case ISD::EXTRACT_ELEMENT:
5892 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005893 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman1953ecb2008-02-27 01:52:30 +00005894 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00005895 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00005896 case ISD::EXTRACT_VECTOR_ELT:
5897 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5898 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5899 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5900 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005901 case ISD::UNDEF:
5902 Lo = DAG.getNode(ISD::UNDEF, NVT);
5903 Hi = DAG.getNode(ISD::UNDEF, NVT);
5904 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005905 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005906 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00005907 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5908 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5909 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005910 break;
5911 }
Evan Cheng00495212006-12-12 21:32:44 +00005912 case ISD::ConstantFP: {
5913 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00005914 if (CFP->getValueType(0) == MVT::ppcf128) {
Dale Johannesen7111b022008-10-09 18:53:47 +00005915 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesena471c2e2007-10-11 18:07:22 +00005916 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5917 MVT::f64);
5918 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5919 MVT::f64);
5920 break;
5921 }
Evan Cheng279101e2006-12-12 22:19:28 +00005922 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005923 if (getTypeAction(Lo.getValueType()) == Expand)
5924 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005925 break;
5926 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005927 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005928 // Return the operands.
5929 Lo = Node->getOperand(0);
5930 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005931 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005932
5933 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00005934 if (Node->getNumValues() == 1) {
5935 ExpandOp(Op.getOperand(0), Lo, Hi);
5936 break;
5937 }
Chris Lattner27a6c732007-11-24 07:07:01 +00005938 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif99a6cb92008-08-26 22:36:50 +00005939 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattner27a6c732007-11-24 07:07:01 +00005940 Op.getValue(1).getValueType() == MVT::Other &&
5941 "unhandled MERGE_VALUES");
5942 ExpandOp(Op.getOperand(0), Lo, Hi);
5943 // Remember that we legalized the chain.
5944 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5945 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005946
5947 case ISD::SIGN_EXTEND_INREG:
5948 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005949 // sext_inreg the low part if needed.
5950 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5951
5952 // The high part gets the sign extension from the lo-part. This handles
5953 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00005954 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005955 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00005956 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00005957 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005958
Nate Begemand88fc032006-01-14 03:14:10 +00005959 case ISD::BSWAP: {
5960 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00005961 SDValue TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
Nate Begemand88fc032006-01-14 03:14:10 +00005962 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
5963 Lo = TempLo;
5964 break;
5965 }
5966
Chris Lattneredb1add2005-05-11 04:51:16 +00005967 case ISD::CTPOP:
5968 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00005969 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
5970 DAG.getNode(ISD::CTPOP, NVT, Lo),
5971 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00005972 Hi = DAG.getConstant(0, NVT);
5973 break;
5974
Chris Lattner39a8f332005-05-12 19:05:01 +00005975 case ISD::CTLZ: {
5976 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005977 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00005978 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
5979 SDValue HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
5980 SDValue TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005981 ISD::SETNE);
Dan Gohman475871a2008-07-27 21:46:04 +00005982 SDValue LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
Chris Lattner39a8f332005-05-12 19:05:01 +00005983 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
5984
5985 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
5986 Hi = DAG.getConstant(0, NVT);
5987 break;
5988 }
5989
5990 case ISD::CTTZ: {
5991 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00005992 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00005993 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
5994 SDValue LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
5995 SDValue BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005996 ISD::SETNE);
Dan Gohman475871a2008-07-27 21:46:04 +00005997 SDValue HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00005998 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
5999
6000 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
6001 Hi = DAG.getConstant(0, NVT);
6002 break;
6003 }
Chris Lattneredb1add2005-05-11 04:51:16 +00006004
Nate Begemanacc398c2006-01-25 18:21:52 +00006005 case ISD::VAARG: {
Dan Gohman475871a2008-07-27 21:46:04 +00006006 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6007 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00006008 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
6009 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
6010
6011 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00006012 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00006013 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00006014 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00006015 std::swap(Lo, Hi);
6016 break;
6017 }
6018
Chris Lattner3e928bb2005-01-07 07:47:09 +00006019 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00006020 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00006021 SDValue Ch = LD->getChain(); // Legalize the chain.
6022 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Evan Cheng466685d2006-10-09 20:57:25 +00006023 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f8613e2008-08-14 20:04:46 +00006024 const Value *SV = LD->getSrcValue();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006025 int SVOffset = LD->getSrcValueOffset();
6026 unsigned Alignment = LD->getAlignment();
6027 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006028
Evan Cheng466685d2006-10-09 20:57:25 +00006029 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00006030 Lo = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006031 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00006032 if (VT == MVT::f32 || VT == MVT::f64) {
6033 // f32->i32 or f64->i64 one to one expansion.
6034 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006035 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00006036 // Recursively expand the new load.
6037 if (getTypeAction(NVT) == Expand)
6038 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006039 break;
6040 }
Chris Lattnerec39a452005-01-19 18:02:17 +00006041
Evan Cheng466685d2006-10-09 20:57:25 +00006042 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006043 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Evan Cheng466685d2006-10-09 20:57:25 +00006044 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006045 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006046 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006047 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman7f8613e2008-08-14 20:04:46 +00006048 Hi = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006049 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00006050
Evan Cheng466685d2006-10-09 20:57:25 +00006051 // Build a factor node to remember that this load is independent of the
6052 // other one.
Dan Gohman475871a2008-07-27 21:46:04 +00006053 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Evan Cheng466685d2006-10-09 20:57:25 +00006054 Hi.getValue(1));
6055
6056 // Remember that we legalized the chain.
6057 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00006058 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00006059 std::swap(Lo, Hi);
6060 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006061 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00006062
Dale Johannesenb6210fc2007-10-19 20:29:00 +00006063 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6064 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00006065 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dan Gohman7f8613e2008-08-14 20:04:46 +00006066 SDValue Load = DAG.getLoad(EVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006067 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00006068 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006069 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Evan Cheng548f6112006-12-13 03:19:57 +00006070 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
6071 break;
6072 }
Evan Cheng466685d2006-10-09 20:57:25 +00006073
6074 if (EVT == NVT)
Dan Gohman7f8613e2008-08-14 20:04:46 +00006075 Lo = DAG.getLoad(NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006076 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006077 else
Dan Gohman7f8613e2008-08-14 20:04:46 +00006078 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006079 SVOffset, EVT, isVolatile,
6080 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006081
6082 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006083 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng466685d2006-10-09 20:57:25 +00006084
6085 if (ExtType == ISD::SEXTLOAD) {
6086 // The high part is obtained by SRA'ing all but one of the bits of the
6087 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006088 unsigned LoSize = Lo.getValueType().getSizeInBits();
Evan Cheng466685d2006-10-09 20:57:25 +00006089 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6090 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6091 } else if (ExtType == ISD::ZEXTLOAD) {
6092 // The high part is just a zero.
6093 Hi = DAG.getConstant(0, NVT);
6094 } else /* if (ExtType == ISD::EXTLOAD) */ {
6095 // The high part is undefined.
6096 Hi = DAG.getNode(ISD::UNDEF, NVT);
6097 }
6098 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006099 break;
6100 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006101 case ISD::AND:
6102 case ISD::OR:
6103 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman475871a2008-07-27 21:46:04 +00006104 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006105 ExpandOp(Node->getOperand(0), LL, LH);
6106 ExpandOp(Node->getOperand(1), RL, RH);
6107 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
6108 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
6109 break;
6110 }
6111 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006112 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006113 ExpandOp(Node->getOperand(1), LL, LH);
6114 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006115 if (getTypeAction(NVT) == Expand)
6116 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00006117 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006118 if (VT != MVT::f32)
6119 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006120 break;
6121 }
Nate Begeman9373a812005-08-10 20:51:12 +00006122 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006123 SDValue TL, TH, FL, FH;
Nate Begeman9373a812005-08-10 20:51:12 +00006124 ExpandOp(Node->getOperand(2), TL, TH);
6125 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006126 if (getTypeAction(NVT) == Expand)
6127 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00006128 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6129 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006130 if (VT != MVT::f32)
6131 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6132 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006133 break;
6134 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006135 case ISD::ANY_EXTEND:
6136 // The low part is any extension of the input (which degenerates to a copy).
6137 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
6138 // The high part is undefined.
6139 Hi = DAG.getNode(ISD::UNDEF, NVT);
6140 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006141 case ISD::SIGN_EXTEND: {
6142 // The low part is just a sign extension of the input (which degenerates to
6143 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006144 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006145
Chris Lattner3e928bb2005-01-07 07:47:09 +00006146 // The high part is obtained by SRA'ing all but one of the bits of the lo
6147 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006148 unsigned LoSize = Lo.getValueType().getSizeInBits();
Chris Lattner8137c9e2006-01-28 05:07:51 +00006149 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6150 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006151 break;
6152 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006153 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006154 // The low part is just a zero extension of the input (which degenerates to
6155 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006156 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006157
Chris Lattner3e928bb2005-01-07 07:47:09 +00006158 // The high part is just a zero.
6159 Hi = DAG.getConstant(0, NVT);
6160 break;
Chris Lattner35481892005-12-23 00:16:34 +00006161
Chris Lattner4c948eb2007-02-13 23:55:16 +00006162 case ISD::TRUNCATE: {
6163 // The input value must be larger than this value. Expand *it*.
Dan Gohman475871a2008-07-27 21:46:04 +00006164 SDValue NewLo;
Chris Lattner4c948eb2007-02-13 23:55:16 +00006165 ExpandOp(Node->getOperand(0), NewLo, Hi);
6166
6167 // The low part is now either the right size, or it is closer. If not the
6168 // right size, make an illegal truncate so we recursively expand it.
6169 if (NewLo.getValueType() != Node->getValueType(0))
6170 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6171 ExpandOp(NewLo, Lo, Hi);
6172 break;
6173 }
6174
Chris Lattner35481892005-12-23 00:16:34 +00006175 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006176 SDValue Tmp;
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006177 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6178 // If the target wants to, allow it to lower this itself.
6179 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6180 case Expand: assert(0 && "cannot expand FP!");
6181 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6182 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6183 }
6184 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6185 }
6186
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006187 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006188 if (VT == MVT::f32 || VT == MVT::f64) {
6189 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006190 if (getTypeAction(NVT) == Expand)
6191 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006192 break;
6193 }
6194
6195 // If source operand will be expanded to the same type as VT, i.e.
6196 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006197 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006198 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6199 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006200 break;
6201 }
6202
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006203 // Turn this into a load/store pair by default.
Gabor Greifba36cb52008-08-28 21:40:38 +00006204 if (Tmp.getNode() == 0)
Chris Lattner1401d152008-01-16 07:45:30 +00006205 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006206
Chris Lattner35481892005-12-23 00:16:34 +00006207 ExpandOp(Tmp, Lo, Hi);
6208 break;
6209 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006210
Chris Lattner27a6c732007-11-24 07:07:01 +00006211 case ISD::READCYCLECOUNTER: {
Chris Lattner308575b2005-11-20 22:56:56 +00006212 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6213 TargetLowering::Custom &&
6214 "Must custom expand ReadCycleCounter");
Dan Gohman475871a2008-07-27 21:46:04 +00006215 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006216 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattner27a6c732007-11-24 07:07:01 +00006217 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006218 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006219 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006220 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006221 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006222
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006223 case ISD::ATOMIC_CMP_SWAP_64: {
6224 // This operation does not need a loop.
6225 SDValue Tmp = TLI.LowerOperation(Op, DAG);
6226 assert(Tmp.getNode() && "Node must be custom expanded!");
6227 ExpandOp(Tmp.getValue(0), Lo, Hi);
6228 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
6229 LegalizeOp(Tmp.getValue(1)));
6230 break;
6231 }
6232
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006233 case ISD::ATOMIC_LOAD_ADD_64:
6234 case ISD::ATOMIC_LOAD_SUB_64:
6235 case ISD::ATOMIC_LOAD_AND_64:
6236 case ISD::ATOMIC_LOAD_OR_64:
6237 case ISD::ATOMIC_LOAD_XOR_64:
6238 case ISD::ATOMIC_LOAD_NAND_64:
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006239 case ISD::ATOMIC_SWAP_64: {
6240 // These operations require a loop to be generated. We can't do that yet,
6241 // so substitute a target-dependent pseudo and expand that later.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006242 SDValue In2Lo, In2Hi, In2;
6243 ExpandOp(Op.getOperand(2), In2Lo, In2Hi);
6244 In2 = DAG.getNode(ISD::BUILD_PAIR, VT, In2Lo, In2Hi);
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006245 AtomicSDNode* Anode = cast<AtomicSDNode>(Node);
6246 SDValue Replace =
6247 DAG.getAtomic(Op.getOpcode(), Op.getOperand(0), Op.getOperand(1), In2,
6248 Anode->getSrcValue(), Anode->getAlignment());
6249 SDValue Result = TLI.LowerOperation(Replace, DAG);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006250 ExpandOp(Result.getValue(0), Lo, Hi);
6251 // Remember that we legalized the chain.
6252 AddLegalizedOperand(SDValue(Node,1), LegalizeOp(Result.getValue(1)));
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006253 break;
6254 }
6255
Chris Lattner4e6c7462005-01-08 19:27:05 +00006256 // These operators cannot be expanded directly, emit them as calls to
6257 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006258 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006259 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006260 SDValue Op;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006261 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6262 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006263 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6264 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006265 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006266
Chris Lattnerf20d1832005-07-30 01:40:57 +00006267 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6268
Chris Lattner80a3e942005-07-29 00:33:32 +00006269 // Now that the custom expander is done, expand the result, which is still
6270 // VT.
Gabor Greifba36cb52008-08-28 21:40:38 +00006271 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006272 ExpandOp(Op, Lo, Hi);
6273 break;
6274 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006275 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006276
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006277 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6278 VT);
6279 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6280 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006281 break;
Evan Cheng56966222007-01-12 02:11:51 +00006282 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006283
Evan Cheng56966222007-01-12 02:11:51 +00006284 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006285 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006286 SDValue Op;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006287 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6288 case Expand: assert(0 && "cannot expand FP!");
6289 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6290 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6291 }
6292
6293 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6294
6295 // Now that the custom expander is done, expand the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00006296 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006297 ExpandOp(Op, Lo, Hi);
6298 break;
6299 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006300 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006301
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006302 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6303 VT);
6304 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6305 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006306 break;
Evan Cheng56966222007-01-12 02:11:51 +00006307 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006308
Evan Cheng05a2d562006-01-09 18:31:59 +00006309 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006310 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006311 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006312 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006313 SDValue Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006314 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006315 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006316 // Now that the custom expander is done, expand the result, which is
6317 // still VT.
6318 ExpandOp(Op, Lo, Hi);
6319 break;
6320 }
6321 }
6322
Chris Lattner79980b02006-09-13 03:50:39 +00006323 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6324 // this X << 1 as X+X.
6325 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman002e5d02008-03-13 22:13:53 +00006326 if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
Chris Lattner79980b02006-09-13 03:50:39 +00006327 TLI.isOperationLegal(ISD::ADDE, NVT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006328 SDValue LoOps[2], HiOps[3];
Chris Lattner79980b02006-09-13 03:50:39 +00006329 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6330 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6331 LoOps[1] = LoOps[0];
6332 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6333
6334 HiOps[1] = HiOps[0];
6335 HiOps[2] = Lo.getValue(1);
6336 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6337 break;
6338 }
6339 }
6340
Chris Lattnere34b3962005-01-19 04:19:40 +00006341 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006342 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006343 break;
Chris Lattner47599822005-04-02 03:38:53 +00006344
6345 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006346 TargetLowering::LegalizeAction Action =
6347 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6348 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6349 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006350 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006351 break;
6352 }
6353
Chris Lattnere34b3962005-01-19 04:19:40 +00006354 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006355 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006356 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006357 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006358
Evan Cheng05a2d562006-01-09 18:31:59 +00006359 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006360 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006361 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006362 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006363 SDValue Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006364 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006365 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006366 // Now that the custom expander is done, expand the result, which is
6367 // still VT.
6368 ExpandOp(Op, Lo, Hi);
6369 break;
6370 }
6371 }
6372
Chris Lattnere34b3962005-01-19 04:19:40 +00006373 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006374 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006375 break;
Chris Lattner47599822005-04-02 03:38:53 +00006376
6377 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006378 TargetLowering::LegalizeAction Action =
6379 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6380 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6381 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006382 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006383 break;
6384 }
6385
Chris Lattnere34b3962005-01-19 04:19:40 +00006386 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006387 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006388 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006389 }
6390
6391 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006392 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006393 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006394 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006395 SDValue Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006396 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006397 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006398 // Now that the custom expander is done, expand the result, which is
6399 // still VT.
6400 ExpandOp(Op, Lo, Hi);
6401 break;
6402 }
6403 }
6404
Chris Lattnere34b3962005-01-19 04:19:40 +00006405 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006406 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006407 break;
Chris Lattner47599822005-04-02 03:38:53 +00006408
6409 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006410 TargetLowering::LegalizeAction Action =
6411 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6412 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6413 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006414 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006415 break;
6416 }
6417
Chris Lattnere34b3962005-01-19 04:19:40 +00006418 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006419 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006420 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006421 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006422
Misha Brukmanedf128a2005-04-21 22:36:52 +00006423 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006424 case ISD::SUB: {
6425 // If the target wants to custom expand this, let them.
6426 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6427 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006428 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006429 if (Result.getNode()) {
Duncan Sands69bfb152008-06-22 09:42:16 +00006430 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006431 break;
6432 }
6433 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006434 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006435 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006436 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6437 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00006438 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006439 SDValue LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006440 LoOps[0] = LHSL;
6441 LoOps[1] = RHSL;
6442 HiOps[0] = LHSH;
6443 HiOps[1] = RHSH;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006444
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00006445 //cascaded check to see if any smaller size has a a carry flag.
6446 unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
6447 bool hasCarry = false;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006448 for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) {
6449 MVT AVT = MVT::getIntegerVT(BitSize);
6450 if (TLI.isOperationLegal(OpV, AVT)) {
6451 hasCarry = true;
6452 break;
6453 }
6454 }
6455
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00006456 if(hasCarry) {
Andrew Lenharth40d51392008-10-07 14:15:42 +00006457 if (Node->getOpcode() == ISD::ADD) {
6458 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6459 HiOps[2] = Lo.getValue(1);
6460 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6461 } else {
6462 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6463 HiOps[2] = Lo.getValue(1);
6464 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6465 }
6466 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006467 } else {
Andrew Lenharth40d51392008-10-07 14:15:42 +00006468 if (Node->getOpcode() == ISD::ADD) {
6469 Lo = DAG.getNode(ISD::ADD, VTList, LoOps, 2);
6470 Hi = DAG.getNode(ISD::ADD, VTList, HiOps, 2);
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00006471 SDValue Cmp1 = DAG.getSetCC(TLI.getSetCCResultType(Lo),
6472 Lo, LoOps[0], ISD::SETULT);
Andrew Lenharth40d51392008-10-07 14:15:42 +00006473 SDValue Carry1 = DAG.getNode(ISD::SELECT, NVT, Cmp1,
6474 DAG.getConstant(1, NVT),
6475 DAG.getConstant(0, NVT));
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00006476 SDValue Cmp2 = DAG.getSetCC(TLI.getSetCCResultType(Lo),
6477 Lo, LoOps[1], ISD::SETULT);
Andrew Lenharth40d51392008-10-07 14:15:42 +00006478 SDValue Carry2 = DAG.getNode(ISD::SELECT, NVT, Cmp2,
6479 DAG.getConstant(1, NVT),
6480 Carry1);
6481 Hi = DAG.getNode(ISD::ADD, NVT, Hi, Carry2);
6482 } else {
6483 Lo = DAG.getNode(ISD::SUB, VTList, LoOps, 2);
6484 Hi = DAG.getNode(ISD::SUB, VTList, HiOps, 2);
6485 SDValue Cmp = DAG.getSetCC(NVT, LoOps[0], LoOps[1], ISD::SETULT);
6486 SDValue Borrow = DAG.getNode(ISD::SELECT, NVT, Cmp,
6487 DAG.getConstant(1, NVT),
6488 DAG.getConstant(0, NVT));
6489 Hi = DAG.getNode(ISD::SUB, NVT, Hi, Borrow);
6490 }
6491 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006492 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006493 }
Chris Lattnerb429f732007-05-17 18:15:41 +00006494
6495 case ISD::ADDC:
6496 case ISD::SUBC: {
6497 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006498 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00006499 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6500 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6501 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006502 SDValue LoOps[2] = { LHSL, RHSL };
6503 SDValue HiOps[3] = { LHSH, RHSH };
Chris Lattnerb429f732007-05-17 18:15:41 +00006504
6505 if (Node->getOpcode() == ISD::ADDC) {
6506 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6507 HiOps[2] = Lo.getValue(1);
6508 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6509 } else {
6510 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6511 HiOps[2] = Lo.getValue(1);
6512 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6513 }
6514 // Remember that we legalized the flag.
6515 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6516 break;
6517 }
6518 case ISD::ADDE:
6519 case ISD::SUBE: {
6520 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006521 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00006522 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6523 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6524 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006525 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6526 SDValue HiOps[3] = { LHSH, RHSH };
Chris Lattnerb429f732007-05-17 18:15:41 +00006527
6528 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6529 HiOps[2] = Lo.getValue(1);
6530 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6531
6532 // Remember that we legalized the flag.
6533 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6534 break;
6535 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006536 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006537 // If the target wants to custom expand this, let them.
6538 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006539 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006540 if (New.getNode()) {
Chris Lattner8829dc82006-09-16 05:08:34 +00006541 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006542 break;
6543 }
6544 }
6545
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006546 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6547 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00006548 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6549 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6550 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman475871a2008-07-27 21:46:04 +00006551 SDValue LL, LH, RL, RH;
Nate Begemanc7c16572005-04-11 03:01:51 +00006552 ExpandOp(Node->getOperand(0), LL, LH);
6553 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006554 unsigned OuterBitSize = Op.getValueSizeInBits();
6555 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00006556 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6557 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00006558 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6559 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6560 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00006561 // The inputs are both zero-extended.
6562 if (HasUMUL_LOHI) {
6563 // We can emit a umul_lohi.
6564 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00006565 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00006566 break;
6567 }
6568 if (HasMULHU) {
6569 // We can emit a mulhu+mul.
6570 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6571 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6572 break;
6573 }
Dan Gohman525178c2007-10-08 18:33:35 +00006574 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006575 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00006576 // The input values are both sign-extended.
6577 if (HasSMUL_LOHI) {
6578 // We can emit a smul_lohi.
6579 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00006580 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00006581 break;
6582 }
6583 if (HasMULHS) {
6584 // We can emit a mulhs+mul.
6585 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6586 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6587 break;
6588 }
6589 }
6590 if (HasUMUL_LOHI) {
6591 // Lo,Hi = umul LHS, RHS.
Dan Gohman475871a2008-07-27 21:46:04 +00006592 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
Dan Gohman525178c2007-10-08 18:33:35 +00006593 DAG.getVTList(NVT, NVT), LL, RL);
6594 Lo = UMulLOHI;
6595 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00006596 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6597 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6598 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6599 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00006600 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00006601 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00006602 if (HasMULHU) {
6603 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6604 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6605 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6606 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6607 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6608 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6609 break;
6610 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006611 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006612
Dan Gohman525178c2007-10-08 18:33:35 +00006613 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006614 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00006615 break;
6616 }
Evan Cheng56966222007-01-12 02:11:51 +00006617 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006618 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006619 break;
6620 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006621 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006622 break;
6623 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006624 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006625 break;
6626 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006627 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006628 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00006629
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006630 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00006631 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6632 RTLIB::ADD_F64,
6633 RTLIB::ADD_F80,
6634 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006635 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006636 break;
6637 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00006638 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6639 RTLIB::SUB_F64,
6640 RTLIB::SUB_F80,
6641 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006642 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006643 break;
6644 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00006645 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6646 RTLIB::MUL_F64,
6647 RTLIB::MUL_F80,
6648 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006649 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006650 break;
6651 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006652 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6653 RTLIB::DIV_F64,
6654 RTLIB::DIV_F80,
6655 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006656 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006657 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006658 case ISD::FP_EXTEND: {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006659 if (VT == MVT::ppcf128) {
6660 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6661 Node->getOperand(0).getValueType()==MVT::f64);
6662 const uint64_t zero = 0;
6663 if (Node->getOperand(0).getValueType()==MVT::f32)
6664 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6665 else
6666 Hi = Node->getOperand(0);
6667 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6668 break;
6669 }
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006670 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
6671 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
6672 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006673 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006674 }
6675 case ISD::FP_ROUND: {
6676 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
6677 VT);
6678 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
6679 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006680 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006681 }
Evan Cheng4b887022008-09-09 23:02:14 +00006682 case ISD::FSQRT:
6683 case ISD::FSIN:
6684 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00006685 case ISD::FLOG:
6686 case ISD::FLOG2:
6687 case ISD::FLOG10:
6688 case ISD::FEXP:
6689 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00006690 case ISD::FTRUNC:
6691 case ISD::FFLOOR:
6692 case ISD::FCEIL:
6693 case ISD::FRINT:
6694 case ISD::FNEARBYINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00006695 case ISD::FPOW:
6696 case ISD::FPOWI: {
Evan Cheng56966222007-01-12 02:11:51 +00006697 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006698 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00006699 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00006700 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6701 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006702 break;
6703 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00006704 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6705 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006706 break;
6707 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00006708 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6709 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006710 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00006711 case ISD::FLOG:
6712 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
6713 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
6714 break;
6715 case ISD::FLOG2:
6716 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
6717 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
6718 break;
6719 case ISD::FLOG10:
6720 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
6721 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
6722 break;
6723 case ISD::FEXP:
6724 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
6725 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
6726 break;
6727 case ISD::FEXP2:
6728 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
6729 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
6730 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00006731 case ISD::FTRUNC:
6732 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
6733 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
6734 break;
6735 case ISD::FFLOOR:
6736 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
6737 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
6738 break;
6739 case ISD::FCEIL:
6740 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
6741 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
6742 break;
6743 case ISD::FRINT:
6744 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
6745 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
6746 break;
6747 case ISD::FNEARBYINT:
6748 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
6749 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
6750 break;
Evan Cheng4b887022008-09-09 23:02:14 +00006751 case ISD::FPOW:
6752 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
6753 RTLIB::POW_PPCF128);
6754 break;
6755 case ISD::FPOWI:
6756 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
6757 RTLIB::POWI_PPCF128);
6758 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006759 default: assert(0 && "Unreachable!");
6760 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006761 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00006762 break;
6763 }
Evan Cheng966bf242006-12-16 00:52:40 +00006764 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006765 if (VT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00006766 SDValue Tmp;
Dale Johannesenf6467742007-10-12 19:02:17 +00006767 ExpandOp(Node->getOperand(0), Lo, Tmp);
6768 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6769 // lo = hi==fabs(hi) ? lo : -lo;
6770 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6771 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6772 DAG.getCondCode(ISD::SETEQ));
6773 break;
6774 }
Dan Gohman475871a2008-07-27 21:46:04 +00006775 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00006776 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6777 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6778 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6779 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6780 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6781 if (getTypeAction(NVT) == Expand)
6782 ExpandOp(Lo, Lo, Hi);
6783 break;
6784 }
6785 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006786 if (VT == MVT::ppcf128) {
6787 ExpandOp(Node->getOperand(0), Lo, Hi);
6788 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6789 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6790 break;
6791 }
Dan Gohman475871a2008-07-27 21:46:04 +00006792 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00006793 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6794 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6795 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6796 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6797 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6798 if (getTypeAction(NVT) == Expand)
6799 ExpandOp(Lo, Lo, Hi);
6800 break;
6801 }
Evan Cheng912095b2007-01-04 21:56:39 +00006802 case ISD::FCOPYSIGN: {
6803 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6804 if (getTypeAction(NVT) == Expand)
6805 ExpandOp(Lo, Lo, Hi);
6806 break;
6807 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006808 case ISD::SINT_TO_FP:
6809 case ISD::UINT_TO_FP: {
6810 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006811 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00006812
6813 // Promote the operand if needed. Do this before checking for
6814 // ppcf128 so conversions of i16 and i8 work.
6815 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman475871a2008-07-27 21:46:04 +00006816 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesencf498192008-03-18 17:28:38 +00006817 Tmp = isSigned
6818 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6819 DAG.getValueType(SrcVT))
6820 : DAG.getZeroExtendInReg(Tmp, SrcVT);
Gabor Greifba36cb52008-08-28 21:40:38 +00006821 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesencf498192008-03-18 17:28:38 +00006822 SrcVT = Node->getOperand(0).getValueType();
6823 }
6824
Dan Gohmana2e94852008-03-10 23:03:31 +00006825 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006826 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006827 if (isSigned) {
6828 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6829 Node->getOperand(0)));
6830 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6831 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006832 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006833 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6834 Node->getOperand(0)));
6835 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6836 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00006837 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006838 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6839 DAG.getConstant(0, MVT::i32),
6840 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6841 DAG.getConstantFP(
6842 APFloat(APInt(128, 2, TwoE32)),
6843 MVT::ppcf128)),
6844 Hi,
6845 DAG.getCondCode(ISD::SETLT)),
6846 Lo, Hi);
6847 }
6848 break;
6849 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00006850 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6851 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006852 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen6e63e092007-10-12 17:52:03 +00006853 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6854 Lo, Hi);
6855 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6856 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6857 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6858 DAG.getConstant(0, MVT::i64),
6859 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6860 DAG.getConstantFP(
6861 APFloat(APInt(128, 2, TwoE64)),
6862 MVT::ppcf128)),
6863 Hi,
6864 DAG.getCondCode(ISD::SETLT)),
6865 Lo, Hi);
6866 break;
6867 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006868
Dan Gohmana2e94852008-03-10 23:03:31 +00006869 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6870 Node->getOperand(0));
Evan Cheng110cf482008-04-01 01:50:16 +00006871 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00006872 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00006873 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00006874 break;
6875 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00006876 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006877
Chris Lattner83397362005-12-21 18:02:52 +00006878 // Make sure the resultant values have been legalized themselves, unless this
6879 // is a type that requires multi-step expansion.
6880 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6881 Lo = LegalizeOp(Lo);
Gabor Greifba36cb52008-08-28 21:40:38 +00006882 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00006883 // Don't legalize the high part if it is expanded to a single node.
6884 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00006885 }
Evan Cheng05a2d562006-01-09 18:31:59 +00006886
6887 // Remember in a map if the values will be reused later.
Dan Gohman6b345ee2008-07-07 17:46:23 +00006888 bool isNew =
6889 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng05a2d562006-01-09 18:31:59 +00006890 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006891}
6892
Dan Gohman7f321562007-06-25 16:23:39 +00006893/// SplitVectorOp - Given an operand of vector type, break it down into
6894/// two smaller values, still of vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00006895void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
6896 SDValue &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006897 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greifba36cb52008-08-28 21:40:38 +00006898 SDNode *Node = Op.getNode();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006899 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00006900 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00006901
Duncan Sands83ec4b62008-06-06 12:08:01 +00006902 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00006903
6904 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6905 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6906
Duncan Sands83ec4b62008-06-06 12:08:01 +00006907 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
6908 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006909
Chris Lattnerc7029802006-03-18 01:44:44 +00006910 // See if we already split it.
Dan Gohman475871a2008-07-27 21:46:04 +00006911 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattnerc7029802006-03-18 01:44:44 +00006912 = SplitNodes.find(Op);
6913 if (I != SplitNodes.end()) {
6914 Lo = I->second.first;
6915 Hi = I->second.second;
6916 return;
6917 }
6918
6919 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006920 default:
6921#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006922 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006923#endif
6924 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00006925 case ISD::UNDEF:
6926 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6927 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6928 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006929 case ISD::BUILD_PAIR:
6930 Lo = Node->getOperand(0);
6931 Hi = Node->getOperand(1);
6932 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00006933 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00006934 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
6935 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006936 unsigned Index = Idx->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00006937 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman68679912008-04-25 18:07:40 +00006938 if (Index < NewNumElts_Lo)
6939 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
6940 DAG.getIntPtrConstant(Index));
6941 else
6942 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6943 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
6944 break;
6945 }
Dan Gohman475871a2008-07-27 21:46:04 +00006946 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Nate Begeman68679912008-04-25 18:07:40 +00006947 Node->getOperand(1),
6948 Node->getOperand(2));
6949 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00006950 break;
6951 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00006952 case ISD::VECTOR_SHUFFLE: {
6953 // Build the low part.
Dan Gohman475871a2008-07-27 21:46:04 +00006954 SDValue Mask = Node->getOperand(2);
6955 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006956 MVT PtrVT = TLI.getPointerTy();
Chris Lattner6c9c6802007-11-19 21:16:54 +00006957
6958 // Insert all of the elements from the input that are needed. We use
6959 // buildvector of extractelement here because the input vectors will have
6960 // to be legalized, so this makes the code simpler.
6961 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00006962 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00006963 if (IdxNode.getOpcode() == ISD::UNDEF) {
6964 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6965 continue;
6966 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006967 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00006968 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00006969 if (Idx >= NumElements) {
6970 InVec = Node->getOperand(1);
6971 Idx -= NumElements;
6972 }
6973 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6974 DAG.getConstant(Idx, PtrVT)));
6975 }
6976 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
6977 Ops.clear();
6978
6979 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00006980 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00006981 if (IdxNode.getOpcode() == ISD::UNDEF) {
6982 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
6983 continue;
6984 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006985 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00006986 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00006987 if (Idx >= NumElements) {
6988 InVec = Node->getOperand(1);
6989 Idx -= NumElements;
6990 }
6991 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
6992 DAG.getConstant(Idx, PtrVT)));
6993 }
Mon P Wang92879f32008-07-25 01:30:26 +00006994 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00006995 break;
6996 }
Dan Gohman7f321562007-06-25 16:23:39 +00006997 case ISD::BUILD_VECTOR: {
Dan Gohman475871a2008-07-27 21:46:04 +00006998 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00006999 Node->op_begin()+NewNumElts_Lo);
7000 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007001
Dan Gohman475871a2008-07-27 21:46:04 +00007002 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00007003 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00007004 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007005 break;
7006 }
Dan Gohman7f321562007-06-25 16:23:39 +00007007 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00007008 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00007009 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
7010 if (NewNumSubvectors == 1) {
7011 Lo = Node->getOperand(0);
7012 Hi = Node->getOperand(1);
7013 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00007014 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Dan Gohman7f321562007-06-25 16:23:39 +00007015 Node->op_begin()+NewNumSubvectors);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007016 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00007017
Dan Gohman475871a2008-07-27 21:46:04 +00007018 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Dan Gohman7f321562007-06-25 16:23:39 +00007019 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00007020 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00007021 }
Dan Gohman65956352007-06-13 15:12:02 +00007022 break;
7023 }
Dan Gohmanc6230962007-10-17 14:48:28 +00007024 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007025 SDValue Cond = Node->getOperand(0);
Dan Gohmanc6230962007-10-17 14:48:28 +00007026
Dan Gohman475871a2008-07-27 21:46:04 +00007027 SDValue LL, LH, RL, RH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007028 SplitVectorOp(Node->getOperand(1), LL, LH);
7029 SplitVectorOp(Node->getOperand(2), RL, RH);
7030
Duncan Sands83ec4b62008-06-06 12:08:01 +00007031 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00007032 // Handle a vector merge.
Dan Gohman475871a2008-07-27 21:46:04 +00007033 SDValue CL, CH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007034 SplitVectorOp(Cond, CL, CH);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007035 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
7036 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007037 } else {
7038 // Handle a simple select with vector operands.
Nate Begeman5db1afb2007-11-15 21:15:26 +00007039 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
7040 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007041 }
7042 break;
7043 }
Chris Lattner80c1a562008-06-30 02:43:01 +00007044 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007045 SDValue CondLHS = Node->getOperand(0);
7046 SDValue CondRHS = Node->getOperand(1);
7047 SDValue CondCode = Node->getOperand(4);
Chris Lattner80c1a562008-06-30 02:43:01 +00007048
Dan Gohman475871a2008-07-27 21:46:04 +00007049 SDValue LL, LH, RL, RH;
Chris Lattner80c1a562008-06-30 02:43:01 +00007050 SplitVectorOp(Node->getOperand(2), LL, LH);
7051 SplitVectorOp(Node->getOperand(3), RL, RH);
7052
7053 // Handle a simple select with vector operands.
7054 Lo = DAG.getNode(ISD::SELECT_CC, NewVT_Lo, CondLHS, CondRHS,
7055 LL, RL, CondCode);
7056 Hi = DAG.getNode(ISD::SELECT_CC, NewVT_Hi, CondLHS, CondRHS,
7057 LH, RH, CondCode);
7058 break;
7059 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00007060 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007061 SDValue LL, LH, RL, RH;
Nate Begemanb43e9c12008-05-12 19:40:03 +00007062 SplitVectorOp(Node->getOperand(0), LL, LH);
7063 SplitVectorOp(Node->getOperand(1), RL, RH);
7064 Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2));
7065 Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2));
7066 break;
7067 }
Dan Gohman7f321562007-06-25 16:23:39 +00007068 case ISD::ADD:
7069 case ISD::SUB:
7070 case ISD::MUL:
7071 case ISD::FADD:
7072 case ISD::FSUB:
7073 case ISD::FMUL:
7074 case ISD::SDIV:
7075 case ISD::UDIV:
7076 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00007077 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007078 case ISD::AND:
7079 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00007080 case ISD::XOR:
7081 case ISD::UREM:
7082 case ISD::SREM:
7083 case ISD::FREM: {
Dan Gohman475871a2008-07-27 21:46:04 +00007084 SDValue LL, LH, RL, RH;
Chris Lattnerc7029802006-03-18 01:44:44 +00007085 SplitVectorOp(Node->getOperand(0), LL, LH);
7086 SplitVectorOp(Node->getOperand(1), RL, RH);
7087
Nate Begeman5db1afb2007-11-15 21:15:26 +00007088 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
7089 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00007090 break;
7091 }
Dan Gohman7f8613e2008-08-14 20:04:46 +00007092 case ISD::FP_ROUND:
Dan Gohman82669522007-10-11 23:57:53 +00007093 case ISD::FPOWI: {
Dan Gohman475871a2008-07-27 21:46:04 +00007094 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007095 SplitVectorOp(Node->getOperand(0), L, H);
7096
Nate Begeman5db1afb2007-11-15 21:15:26 +00007097 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
7098 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00007099 break;
7100 }
7101 case ISD::CTTZ:
7102 case ISD::CTLZ:
7103 case ISD::CTPOP:
7104 case ISD::FNEG:
7105 case ISD::FABS:
7106 case ISD::FSQRT:
7107 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00007108 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007109 case ISD::FLOG:
7110 case ISD::FLOG2:
7111 case ISD::FLOG10:
7112 case ISD::FEXP:
7113 case ISD::FEXP2:
Nate Begemanb348d182007-11-17 03:58:34 +00007114 case ISD::FP_TO_SINT:
7115 case ISD::FP_TO_UINT:
7116 case ISD::SINT_TO_FP:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007117 case ISD::UINT_TO_FP:
7118 case ISD::TRUNCATE:
7119 case ISD::ANY_EXTEND:
7120 case ISD::SIGN_EXTEND:
7121 case ISD::ZERO_EXTEND:
7122 case ISD::FP_EXTEND: {
Dan Gohman475871a2008-07-27 21:46:04 +00007123 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007124 SplitVectorOp(Node->getOperand(0), L, H);
7125
Nate Begeman5db1afb2007-11-15 21:15:26 +00007126 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
7127 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00007128 break;
7129 }
Dan Gohman7f321562007-06-25 16:23:39 +00007130 case ISD::LOAD: {
7131 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007132 SDValue Ch = LD->getChain();
7133 SDValue Ptr = LD->getBasePtr();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007134 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007135 const Value *SV = LD->getSrcValue();
7136 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007137 MVT MemoryVT = LD->getMemoryVT();
Dan Gohman7f321562007-06-25 16:23:39 +00007138 unsigned Alignment = LD->getAlignment();
7139 bool isVolatile = LD->isVolatile();
7140
Dan Gohman7f8613e2008-08-14 20:04:46 +00007141 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
7142 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
7143
7144 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7145 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7146 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7147
7148 Lo = DAG.getLoad(ISD::UNINDEXED, ExtType,
7149 NewVT_Lo, Ch, Ptr, Offset,
7150 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7151 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00007152 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00007153 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00007154 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00007155 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman7f8613e2008-08-14 20:04:46 +00007156 Hi = DAG.getLoad(ISD::UNINDEXED, ExtType,
7157 NewVT_Hi, Ch, Ptr, Offset,
7158 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00007159
7160 // Build a factor node to remember that this load is independent of the
7161 // other one.
Dan Gohman475871a2008-07-27 21:46:04 +00007162 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Chris Lattnerc7029802006-03-18 01:44:44 +00007163 Hi.getValue(1));
7164
7165 // Remember that we legalized the chain.
7166 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00007167 break;
7168 }
Dan Gohman7f321562007-06-25 16:23:39 +00007169 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00007170 // We know the result is a vector. The input may be either a vector or a
7171 // scalar value.
Dan Gohman475871a2008-07-27 21:46:04 +00007172 SDValue InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007173 if (!InOp.getValueType().isVector() ||
7174 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00007175 // The input is a scalar or single-element vector.
7176 // Lower to a store/load so that it can be split.
7177 // FIXME: this could be improved probably.
Mon P Wang2920d2b2008-07-15 05:28:34 +00007178 unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment(
7179 Op.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00007180 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greifba36cb52008-08-28 21:40:38 +00007181 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Chris Lattner7692eb42006-03-23 21:16:34 +00007182
Dan Gohman475871a2008-07-27 21:46:04 +00007183 SDValue St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00007184 InOp, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007185 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohman69de1932008-02-06 22:27:42 +00007186 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007187 PseudoSourceValue::getFixedStack(FI), 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00007188 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007189 // Split the vector and convert each of the pieces now.
7190 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007191 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
7192 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007193 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007194 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007195 }
7196
7197 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00007198 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007199 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007200 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007201}
7202
7203
Dan Gohman89b20c02007-06-27 14:06:22 +00007204/// ScalarizeVectorOp - Given an operand of single-element vector type
7205/// (e.g. v1f32), convert it into the equivalent operation that returns a
7206/// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +00007207SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007208 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007209 SDNode *Node = Op.getNode();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007210 MVT NewVT = Op.getValueType().getVectorElementType();
7211 assert(Op.getValueType().getVectorNumElements() == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00007212
Dan Gohman7f321562007-06-25 16:23:39 +00007213 // See if we already scalarized it.
Dan Gohman475871a2008-07-27 21:46:04 +00007214 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohman7f321562007-06-25 16:23:39 +00007215 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00007216
Dan Gohman475871a2008-07-27 21:46:04 +00007217 SDValue Result;
Chris Lattnerc7029802006-03-18 01:44:44 +00007218 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00007219 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007220#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007221 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007222#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007223 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7224 case ISD::ADD:
7225 case ISD::FADD:
7226 case ISD::SUB:
7227 case ISD::FSUB:
7228 case ISD::MUL:
7229 case ISD::FMUL:
7230 case ISD::SDIV:
7231 case ISD::UDIV:
7232 case ISD::FDIV:
7233 case ISD::SREM:
7234 case ISD::UREM:
7235 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007236 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007237 case ISD::AND:
7238 case ISD::OR:
7239 case ISD::XOR:
7240 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00007241 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007242 ScalarizeVectorOp(Node->getOperand(0)),
7243 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007244 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007245 case ISD::FNEG:
7246 case ISD::FABS:
7247 case ISD::FSQRT:
7248 case ISD::FSIN:
7249 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007250 case ISD::FLOG:
7251 case ISD::FLOG2:
7252 case ISD::FLOG10:
7253 case ISD::FEXP:
7254 case ISD::FEXP2:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007255 case ISD::FP_TO_SINT:
7256 case ISD::FP_TO_UINT:
7257 case ISD::SINT_TO_FP:
7258 case ISD::UINT_TO_FP:
7259 case ISD::SIGN_EXTEND:
7260 case ISD::ZERO_EXTEND:
7261 case ISD::ANY_EXTEND:
7262 case ISD::TRUNCATE:
7263 case ISD::FP_EXTEND:
Dan Gohman7f321562007-06-25 16:23:39 +00007264 Result = DAG.getNode(Node->getOpcode(),
7265 NewVT,
7266 ScalarizeVectorOp(Node->getOperand(0)));
7267 break;
Dan Gohman9e04c822007-10-12 14:13:46 +00007268 case ISD::FPOWI:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007269 case ISD::FP_ROUND:
Dan Gohman9e04c822007-10-12 14:13:46 +00007270 Result = DAG.getNode(Node->getOpcode(),
7271 NewVT,
7272 ScalarizeVectorOp(Node->getOperand(0)),
7273 Node->getOperand(1));
7274 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007275 case ISD::LOAD: {
7276 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007277 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7278 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman7f8613e2008-08-14 20:04:46 +00007279 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007280 const Value *SV = LD->getSrcValue();
7281 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007282 MVT MemoryVT = LD->getMemoryVT();
7283 unsigned Alignment = LD->getAlignment();
7284 bool isVolatile = LD->isVolatile();
7285
7286 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
7287 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
7288
7289 Result = DAG.getLoad(ISD::UNINDEXED, ExtType,
7290 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7291 MemoryVT.getVectorElementType(),
7292 isVolatile, Alignment);
Dan Gohman7f321562007-06-25 16:23:39 +00007293
Chris Lattnerc7029802006-03-18 01:44:44 +00007294 // Remember that we legalized the chain.
7295 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7296 break;
7297 }
Dan Gohman7f321562007-06-25 16:23:39 +00007298 case ISD::BUILD_VECTOR:
7299 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007300 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007301 case ISD::INSERT_VECTOR_ELT:
7302 // Returning the inserted scalar element.
7303 Result = Node->getOperand(1);
7304 break;
7305 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007306 assert(Node->getOperand(0).getValueType() == NewVT &&
7307 "Concat of non-legal vectors not yet supported!");
7308 Result = Node->getOperand(0);
7309 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007310 case ISD::VECTOR_SHUFFLE: {
7311 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman475871a2008-07-27 21:46:04 +00007312 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007313 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohman7f321562007-06-25 16:23:39 +00007314 Result = ScalarizeVectorOp(Node->getOperand(1));
7315 else
7316 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007317 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007318 }
7319 case ISD::EXTRACT_SUBVECTOR:
7320 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00007321 assert(Result.getValueType() == NewVT);
7322 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007323 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007324 SDValue Op0 = Op.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007325 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007326 Op0 = ScalarizeVectorOp(Op0);
7327 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007328 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007329 }
Dan Gohman7f321562007-06-25 16:23:39 +00007330 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007331 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007332 ScalarizeVectorOp(Op.getOperand(1)),
7333 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007334 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007335 case ISD::SELECT_CC:
7336 Result = DAG.getNode(ISD::SELECT_CC, NewVT, Node->getOperand(0),
7337 Node->getOperand(1),
7338 ScalarizeVectorOp(Op.getOperand(2)),
7339 ScalarizeVectorOp(Op.getOperand(3)),
7340 Node->getOperand(4));
7341 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007342 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007343 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7344 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Nate Begeman0d1704b2008-05-12 23:09:43 +00007345 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0), Op0, Op1,
7346 Op.getOperand(2));
7347 Result = DAG.getNode(ISD::SELECT, NewVT, Result,
7348 DAG.getConstant(-1ULL, NewVT),
7349 DAG.getConstant(0ULL, NewVT));
7350 break;
7351 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007352 }
7353
7354 if (TLI.isTypeLegal(NewVT))
7355 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007356 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7357 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007358 return Result;
7359}
7360
Chris Lattner3e928bb2005-01-07 07:47:09 +00007361
7362// SelectionDAG::Legalize - This is the entry point for the file.
7363//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00007364void SelectionDAG::Legalize() {
Chris Lattner3e928bb2005-01-07 07:47:09 +00007365 /// run - This is the main entry point to this class.
7366 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00007367 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00007368}
7369