blob: 53d12b224d9d6e791966a70560ab395203fd06ea [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);
Evan Cheng7f042682008-10-15 02:05:31 +0000196 void LegalizeSetCCCondCode(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC);
197 void LegalizeSetCC(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC) {
198 LegalizeSetCCOperands(LHS, RHS, CC);
199 LegalizeSetCCCondCode(VT, LHS, RHS, CC);
200 }
Nate Begeman750ac1b2006-02-01 07:19:44 +0000201
Dan Gohman475871a2008-07-27 21:46:04 +0000202 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
203 SDValue &Hi);
204 SDValue ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source);
Chris Lattnercad063f2005-07-16 00:19:57 +0000205
Dan Gohman475871a2008-07-27 21:46:04 +0000206 SDValue EmitStackConvert(SDValue SrcOp, MVT SlotVT, MVT DestVT);
207 SDValue ExpandBUILD_VECTOR(SDNode *Node);
208 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Dan Gohman7f8613e2008-08-14 20:04:46 +0000209 SDValue LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op);
Dan Gohman475871a2008-07-27 21:46:04 +0000210 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, MVT DestVT);
211 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, MVT DestVT, bool isSigned);
212 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, MVT DestVT, bool isSigned);
Jeff Cohen00b168892005-07-27 06:12:32 +0000213
Dan Gohman475871a2008-07-27 21:46:04 +0000214 SDValue ExpandBSWAP(SDValue Op);
215 SDValue ExpandBitCount(unsigned Opc, SDValue Op);
216 bool ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
217 SDValue &Lo, SDValue &Hi);
218 void ExpandShiftParts(unsigned NodeOp, SDValue Op, SDValue Amt,
219 SDValue &Lo, SDValue &Hi);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000220
Dan Gohman475871a2008-07-27 21:46:04 +0000221 SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op);
222 SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000223};
224}
225
Chris Lattner4352cc92006-04-04 17:23:26 +0000226/// isVectorShuffleLegal - Return true if a vector shuffle is legal with the
227/// specified mask and type. Targets can specify exactly which masks they
228/// support and the code generator is tasked with not creating illegal masks.
229///
230/// Note that this will also return true for shuffles that are promoted to a
231/// different type.
Dan Gohman475871a2008-07-27 21:46:04 +0000232SDNode *SelectionDAGLegalize::isShuffleLegal(MVT VT, SDValue Mask) const {
Chris Lattner4352cc92006-04-04 17:23:26 +0000233 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
234 default: return 0;
235 case TargetLowering::Legal:
236 case TargetLowering::Custom:
237 break;
238 case TargetLowering::Promote: {
239 // If this is promoted to a different type, convert the shuffle mask and
240 // ask if it is legal in the promoted type!
Duncan Sands83ec4b62008-06-06 12:08:01 +0000241 MVT NVT = TLI.getTypeToPromoteTo(ISD::VECTOR_SHUFFLE, VT);
Duncan Sandsd038e042008-07-21 10:20:31 +0000242 MVT EltVT = NVT.getVectorElementType();
Chris Lattner4352cc92006-04-04 17:23:26 +0000243
244 // If we changed # elements, change the shuffle mask.
245 unsigned NumEltsGrowth =
Duncan Sands83ec4b62008-06-06 12:08:01 +0000246 NVT.getVectorNumElements() / VT.getVectorNumElements();
Chris Lattner4352cc92006-04-04 17:23:26 +0000247 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
248 if (NumEltsGrowth > 1) {
249 // Renumber the elements.
Dan Gohman475871a2008-07-27 21:46:04 +0000250 SmallVector<SDValue, 8> Ops;
Chris Lattner4352cc92006-04-04 17:23:26 +0000251 for (unsigned i = 0, e = Mask.getNumOperands(); i != e; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +0000252 SDValue InOp = Mask.getOperand(i);
Chris Lattner4352cc92006-04-04 17:23:26 +0000253 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
254 if (InOp.getOpcode() == ISD::UNDEF)
Duncan Sandsd038e042008-07-21 10:20:31 +0000255 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
Chris Lattner4352cc92006-04-04 17:23:26 +0000256 else {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +0000257 unsigned InEltNo = cast<ConstantSDNode>(InOp)->getZExtValue();
Duncan Sandsd038e042008-07-21 10:20:31 +0000258 Ops.push_back(DAG.getConstant(InEltNo*NumEltsGrowth+j, EltVT));
Chris Lattner4352cc92006-04-04 17:23:26 +0000259 }
260 }
261 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +0000262 Mask = DAG.getNode(ISD::BUILD_VECTOR, NVT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +0000263 }
264 VT = NVT;
265 break;
266 }
267 }
Gabor Greifba36cb52008-08-28 21:40:38 +0000268 return TLI.isShuffleMaskLegal(Mask, VT) ? Mask.getNode() : 0;
Chris Lattner4352cc92006-04-04 17:23:26 +0000269}
270
Chris Lattner9c32d3b2005-01-23 04:42:50 +0000271SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag)
272 : TLI(dag.getTargetLoweringInfo()), DAG(dag),
273 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000274 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000275 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000276}
277
Chris Lattner3e928bb2005-01-07 07:47:09 +0000278void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000279 LastCALLSEQ_END = DAG.getEntryNode();
280 IsLegalizingCall = false;
281
Chris Lattnerab510a72005-10-02 17:49:46 +0000282 // The legalize process is inherently a bottom-up recursive process (users
283 // legalize their uses before themselves). Given infinite stack space, we
284 // could just start legalizing on the root and traverse the whole graph. In
285 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000286 // blocks. To avoid this problem, compute an ordering of the nodes where each
287 // node is only legalized after all of its operands are legalized.
Dan Gohmanf06c8352008-09-30 18:30:35 +0000288 DAG.AssignTopologicalOrder();
289 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
290 E = prior(DAG.allnodes_end()); I != next(E); ++I)
291 HandleOp(SDValue(I, 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000292
293 // Finally, it's possible the root changed. Get the new root.
Dan Gohman475871a2008-07-27 21:46:04 +0000294 SDValue OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000295 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
296 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000297
298 ExpandedNodes.clear();
299 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000300 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000301 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000302 ScalarizedNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000303
304 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000305 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000306}
307
Chris Lattner6831a812006-02-13 09:18:02 +0000308
309/// FindCallEndFromCallStart - Given a chained node that is part of a call
310/// sequence, find the CALLSEQ_END node that terminates the call sequence.
311static SDNode *FindCallEndFromCallStart(SDNode *Node) {
312 if (Node->getOpcode() == ISD::CALLSEQ_END)
313 return Node;
314 if (Node->use_empty())
315 return 0; // No CallSeqEnd
316
317 // The chain is usually at the end.
Dan Gohman475871a2008-07-27 21:46:04 +0000318 SDValue TheChain(Node, Node->getNumValues()-1);
Chris Lattner6831a812006-02-13 09:18:02 +0000319 if (TheChain.getValueType() != MVT::Other) {
320 // Sometimes it's at the beginning.
Dan Gohman475871a2008-07-27 21:46:04 +0000321 TheChain = SDValue(Node, 0);
Chris Lattner6831a812006-02-13 09:18:02 +0000322 if (TheChain.getValueType() != MVT::Other) {
323 // Otherwise, hunt for it.
324 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
325 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman475871a2008-07-27 21:46:04 +0000326 TheChain = SDValue(Node, i);
Chris Lattner6831a812006-02-13 09:18:02 +0000327 break;
328 }
329
330 // Otherwise, we walked into a node without a chain.
331 if (TheChain.getValueType() != MVT::Other)
332 return 0;
333 }
334 }
335
336 for (SDNode::use_iterator UI = Node->use_begin(),
337 E = Node->use_end(); UI != E; ++UI) {
338
339 // Make sure to only follow users of our token chain.
Dan Gohman89684502008-07-27 20:43:25 +0000340 SDNode *User = *UI;
Chris Lattner6831a812006-02-13 09:18:02 +0000341 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
342 if (User->getOperand(i) == TheChain)
343 if (SDNode *Result = FindCallEndFromCallStart(User))
344 return Result;
345 }
346 return 0;
347}
348
349/// FindCallStartFromCallEnd - Given a chained node that is part of a call
350/// sequence, find the CALLSEQ_START node that initiates the call sequence.
351static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
352 assert(Node && "Didn't find callseq_start for a call??");
353 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
354
355 assert(Node->getOperand(0).getValueType() == MVT::Other &&
356 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000357 return FindCallStartFromCallEnd(Node->getOperand(0).getNode());
Chris Lattner6831a812006-02-13 09:18:02 +0000358}
359
360/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
361/// see if any uses can reach Dest. If no dest operands can get to dest,
362/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000363///
364/// Keep track of the nodes we fine that actually do lead to Dest in
365/// NodesLeadingTo. This avoids retraversing them exponential number of times.
366///
367bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000368 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000369 if (N == Dest) return true; // N certainly leads to Dest :)
370
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000371 // If we've already processed this node and it does lead to Dest, there is no
372 // need to reprocess it.
373 if (NodesLeadingTo.count(N)) return true;
374
Chris Lattner6831a812006-02-13 09:18:02 +0000375 // If the first result of this node has been already legalized, then it cannot
376 // reach N.
377 switch (getTypeAction(N->getValueType(0))) {
378 case Legal:
Dan Gohman475871a2008-07-27 21:46:04 +0000379 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000380 break;
381 case Promote:
Dan Gohman475871a2008-07-27 21:46:04 +0000382 if (PromotedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000383 break;
384 case Expand:
Dan Gohman475871a2008-07-27 21:46:04 +0000385 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000386 break;
387 }
388
389 // Okay, this node has not already been legalized. Check and legalize all
390 // operands. If none lead to Dest, then we can legalize this node.
391 bool OperandsLeadToDest = false;
392 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
393 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Gabor Greifba36cb52008-08-28 21:40:38 +0000394 LegalizeAllNodesNotLeadingTo(N->getOperand(i).getNode(), Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000395
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000396 if (OperandsLeadToDest) {
397 NodesLeadingTo.insert(N);
398 return true;
399 }
Chris Lattner6831a812006-02-13 09:18:02 +0000400
401 // Okay, this node looks safe, legalize it and return false.
Dan Gohman475871a2008-07-27 21:46:04 +0000402 HandleOp(SDValue(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000403 return false;
404}
405
Dan Gohman7f321562007-06-25 16:23:39 +0000406/// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000407/// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000408void SelectionDAGLegalize::HandleOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000409 MVT VT = Op.getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000410 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000411 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000412 case Legal: (void)LegalizeOp(Op); break;
413 case Promote: (void)PromoteOp(Op); break;
Chris Lattnerc7029802006-03-18 01:44:44 +0000414 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000415 if (!VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +0000416 // If this is an illegal scalar, expand it into its two component
417 // pieces.
Dan Gohman475871a2008-07-27 21:46:04 +0000418 SDValue X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000419 if (Op.getOpcode() == ISD::TargetConstant)
420 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000421 ExpandOp(Op, X, Y);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000422 } else if (VT.getVectorNumElements() == 1) {
Dan Gohman7f321562007-06-25 16:23:39 +0000423 // If this is an illegal single element vector, convert it to a
424 // scalar operation.
425 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000426 } else {
Dan Gohman7f321562007-06-25 16:23:39 +0000427 // Otherwise, this is an illegal multiple element vector.
428 // Split it in half and legalize both parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000429 SDValue X, Y;
Dan Gohman7f321562007-06-25 16:23:39 +0000430 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000431 }
432 break;
433 }
434}
Chris Lattner6831a812006-02-13 09:18:02 +0000435
Evan Cheng9f877882006-12-13 20:57:08 +0000436/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
437/// a load from the constant pool.
Dan Gohman475871a2008-07-27 21:46:04 +0000438static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Evan Cheng279101e2006-12-12 22:19:28 +0000439 SelectionDAG &DAG, TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000440 bool Extend = false;
441
442 // If a FP immediate is precise when represented as a float and if the
443 // target can do an extending load from float to double, we put it into
444 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000445 // double. This shrinks FP constants and canonicalizes them for targets where
446 // an FP extending load is the same cost as a normal load (such as on the x87
447 // fp stack or PPC FP unit).
Duncan Sands83ec4b62008-06-06 12:08:01 +0000448 MVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000449 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000450 if (!UseCP) {
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +0000451 if (VT!=MVT::f64 && VT!=MVT::f32)
452 assert(0 && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000453 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Evan Chengef120572008-03-04 08:05:30 +0000454 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000455 }
456
Duncan Sands83ec4b62008-06-06 12:08:01 +0000457 MVT OrigVT = VT;
458 MVT SVT = VT;
Evan Chengef120572008-03-04 08:05:30 +0000459 while (SVT != MVT::f32) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000460 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Chengef120572008-03-04 08:05:30 +0000461 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
462 // Only do this if the target has a native EXTLOAD instruction from
463 // smaller type.
Evan Cheng03294662008-10-14 21:26:46 +0000464 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000465 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000466 const Type *SType = SVT.getTypeForMVT();
Evan Chengef120572008-03-04 08:05:30 +0000467 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
468 VT = SVT;
469 Extend = true;
470 }
Evan Cheng00495212006-12-12 21:32:44 +0000471 }
472
Dan Gohman475871a2008-07-27 21:46:04 +0000473 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +0000474 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Evan Chengef120572008-03-04 08:05:30 +0000475 if (Extend)
476 return DAG.getExtLoad(ISD::EXTLOAD, OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000477 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman50284d82008-09-16 22:05:41 +0000478 0, VT, false, Alignment);
Evan Chengef120572008-03-04 08:05:30 +0000479 return DAG.getLoad(OrigVT, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +0000480 PseudoSourceValue::getConstantPool(), 0, false, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +0000481}
482
Chris Lattner6831a812006-02-13 09:18:02 +0000483
Evan Cheng912095b2007-01-04 21:56:39 +0000484/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
485/// operations.
486static
Dan Gohman475871a2008-07-27 21:46:04 +0000487SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
488 SelectionDAG &DAG, TargetLowering &TLI) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000489 MVT VT = Node->getValueType(0);
490 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000491 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
492 "fcopysign expansion only supported for f32 and f64");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000493 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000494
Evan Cheng912095b2007-01-04 21:56:39 +0000495 // First get the sign bit of second operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000496 SDValue Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000497 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
498 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Evan Cheng068c5f42007-01-05 21:31:51 +0000499 Mask1 = DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Mask1);
Dan Gohman475871a2008-07-27 21:46:04 +0000500 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, SrcNVT, Node->getOperand(1));
Evan Cheng068c5f42007-01-05 21:31:51 +0000501 SignBit = DAG.getNode(ISD::AND, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000502 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000503 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Evan Cheng912095b2007-01-04 21:56:39 +0000504 if (SizeDiff > 0) {
505 SignBit = DAG.getNode(ISD::SRL, SrcNVT, SignBit,
506 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
507 SignBit = DAG.getNode(ISD::TRUNCATE, NVT, SignBit);
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000508 } else if (SizeDiff < 0) {
509 SignBit = DAG.getNode(ISD::ZERO_EXTEND, NVT, SignBit);
510 SignBit = DAG.getNode(ISD::SHL, NVT, SignBit,
511 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
512 }
Evan Cheng068c5f42007-01-05 21:31:51 +0000513
514 // Clear the sign bit of first operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000515 SDValue Mask2 = (VT == MVT::f64)
Evan Cheng068c5f42007-01-05 21:31:51 +0000516 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
517 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
518 Mask2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask2);
Dan Gohman475871a2008-07-27 21:46:04 +0000519 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng068c5f42007-01-05 21:31:51 +0000520 Result = DAG.getNode(ISD::AND, NVT, Result, Mask2);
521
522 // Or the value with the sign bit.
Evan Cheng912095b2007-01-04 21:56:39 +0000523 Result = DAG.getNode(ISD::OR, NVT, Result, SignBit);
524 return Result;
525}
526
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000527/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
528static
Dan Gohman475871a2008-07-27 21:46:04 +0000529SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
530 TargetLowering &TLI) {
531 SDValue Chain = ST->getChain();
532 SDValue Ptr = ST->getBasePtr();
533 SDValue Val = ST->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000534 MVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000535 int Alignment = ST->getAlignment();
536 int SVOffset = ST->getSrcValueOffset();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000537 if (ST->getMemoryVT().isFloatingPoint() ||
538 ST->getMemoryVT().isVector()) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000539 // Expand to a bitconvert of the value to the integer type of the
540 // same size, then a (misaligned) int store.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000541 MVT intVT;
542 if (VT.is128BitVector() || VT == MVT::ppcf128 || VT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000543 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000544 else if (VT.is64BitVector() || VT==MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000545 intVT = MVT::i64;
546 else if (VT==MVT::f32)
547 intVT = MVT::i32;
548 else
Dale Johannesencd9f1742008-02-28 18:36:51 +0000549 assert(0 && "Unaligned store of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000550
Dan Gohman475871a2008-07-27 21:46:04 +0000551 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, intVT, Val);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000552 return DAG.getStore(Chain, Result, Ptr, ST->getSrcValue(),
553 SVOffset, ST->isVolatile(), Alignment);
554 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000555 assert(ST->getMemoryVT().isInteger() &&
556 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000557 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000558 // Get the half-size VT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000559 MVT NewStoredVT =
560 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
561 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000562 int IncrementSize = NumBits / 8;
563
564 // Divide the stored value in two parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000565 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
566 SDValue Lo = Val;
567 SDValue Hi = DAG.getNode(ISD::SRL, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000568
569 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000570 SDValue Store1, Store2;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000571 Store1 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Lo:Hi, Ptr,
572 ST->getSrcValue(), SVOffset, NewStoredVT,
573 ST->isVolatile(), Alignment);
574 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
575 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000576 Alignment = MinAlign(Alignment, IncrementSize);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000577 Store2 = DAG.getTruncStore(Chain, TLI.isLittleEndian()?Hi:Lo, Ptr,
578 ST->getSrcValue(), SVOffset + IncrementSize,
579 NewStoredVT, ST->isVolatile(), Alignment);
580
581 return DAG.getNode(ISD::TokenFactor, MVT::Other, Store1, Store2);
582}
583
584/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
585static
Dan Gohman475871a2008-07-27 21:46:04 +0000586SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
587 TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000588 int SVOffset = LD->getSrcValueOffset();
Dan Gohman475871a2008-07-27 21:46:04 +0000589 SDValue Chain = LD->getChain();
590 SDValue Ptr = LD->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000591 MVT VT = LD->getValueType(0);
592 MVT LoadedVT = LD->getMemoryVT();
593 if (VT.isFloatingPoint() || VT.isVector()) {
Dale Johannesen907f28c2007-09-08 19:29:23 +0000594 // Expand to a (misaligned) integer load of the same size,
Dale Johannesen8155d642008-02-27 22:36:00 +0000595 // then bitconvert to floating point or vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000596 MVT intVT;
597 if (LoadedVT.is128BitVector() ||
Dale Johannesen3c8b59c2008-03-01 03:40:57 +0000598 LoadedVT == MVT::ppcf128 || LoadedVT == MVT::f128)
Dale Johannesen8155d642008-02-27 22:36:00 +0000599 intVT = MVT::i128;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000600 else if (LoadedVT.is64BitVector() || LoadedVT == MVT::f64)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000601 intVT = MVT::i64;
Chris Lattnere400af82007-11-19 21:38:03 +0000602 else if (LoadedVT == MVT::f32)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000603 intVT = MVT::i32;
604 else
Dale Johannesen8155d642008-02-27 22:36:00 +0000605 assert(0 && "Unaligned load of unsupported type");
Dale Johannesen907f28c2007-09-08 19:29:23 +0000606
Dan Gohman475871a2008-07-27 21:46:04 +0000607 SDValue newLoad = DAG.getLoad(intVT, Chain, Ptr, LD->getSrcValue(),
Dale Johannesen907f28c2007-09-08 19:29:23 +0000608 SVOffset, LD->isVolatile(),
609 LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +0000610 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, LoadedVT, newLoad);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000611 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesen907f28c2007-09-08 19:29:23 +0000612 Result = DAG.getNode(ISD::FP_EXTEND, VT, Result);
613
Dan Gohman475871a2008-07-27 21:46:04 +0000614 SDValue Ops[] = { Result, Chain };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000615 return DAG.getMergeValues(Ops, 2);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000616 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000617 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000618 "Unaligned load of unsupported type.");
619
Dale Johannesen8155d642008-02-27 22:36:00 +0000620 // Compute the new VT that is half the size of the old one. This is an
621 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000622 unsigned NumBits = LoadedVT.getSizeInBits();
623 MVT NewLoadedVT;
624 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000625 NumBits >>= 1;
626
627 unsigned Alignment = LD->getAlignment();
628 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000629 ISD::LoadExtType HiExtType = LD->getExtensionType();
630
631 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
632 if (HiExtType == ISD::NON_EXTLOAD)
633 HiExtType = ISD::ZEXTLOAD;
634
635 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000636 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000637 if (TLI.isLittleEndian()) {
638 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
639 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
640 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
641 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
642 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(),
643 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000644 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000645 } else {
646 Hi = DAG.getExtLoad(HiExtType, VT, Chain, Ptr, LD->getSrcValue(), SVOffset,
647 NewLoadedVT,LD->isVolatile(), Alignment);
648 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
649 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
650 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, VT, Chain, Ptr, LD->getSrcValue(),
651 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000652 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000653 }
654
655 // aggregate the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000656 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
657 SDValue Result = DAG.getNode(ISD::SHL, VT, Hi, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000658 Result = DAG.getNode(ISD::OR, VT, Result, Lo);
659
Dan Gohman475871a2008-07-27 21:46:04 +0000660 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000661 Hi.getValue(1));
662
Dan Gohman475871a2008-07-27 21:46:04 +0000663 SDValue Ops[] = { Result, TF };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000664 return DAG.getMergeValues(Ops, 2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000665}
Evan Cheng912095b2007-01-04 21:56:39 +0000666
Dan Gohman82669522007-10-11 23:57:53 +0000667/// UnrollVectorOp - We know that the given vector has a legal type, however
668/// the operation it performs is not legal and is an operation that we have
669/// no way of lowering. "Unroll" the vector, splitting out the scalars and
670/// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000671SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000672 MVT VT = Op.getValueType();
Dan Gohman82669522007-10-11 23:57:53 +0000673 assert(isTypeLegal(VT) &&
674 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000675 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman82669522007-10-11 23:57:53 +0000676 "Can't unroll a vector with multiple results!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000677 unsigned NE = VT.getVectorNumElements();
678 MVT EltVT = VT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000679
Dan Gohman475871a2008-07-27 21:46:04 +0000680 SmallVector<SDValue, 8> Scalars;
681 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman82669522007-10-11 23:57:53 +0000682 for (unsigned i = 0; i != NE; ++i) {
683 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +0000684 SDValue Operand = Op.getOperand(j);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000685 MVT OperandVT = Operand.getValueType();
686 if (OperandVT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +0000687 // A vector operand; extract a single element.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000688 MVT OperandEltVT = OperandVT.getVectorElementType();
Dan Gohman82669522007-10-11 23:57:53 +0000689 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT,
690 OperandEltVT,
691 Operand,
692 DAG.getConstant(i, MVT::i32));
693 } else {
694 // A scalar operand; just use it as is.
695 Operands[j] = Operand;
696 }
697 }
698 Scalars.push_back(DAG.getNode(Op.getOpcode(), EltVT,
699 &Operands[0], Operands.size()));
700 }
701
702 return DAG.getNode(ISD::BUILD_VECTOR, VT, &Scalars[0], Scalars.size());
703}
704
Duncan Sands007f9842008-01-10 10:28:30 +0000705/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000706static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands007f9842008-01-10 10:28:30 +0000707 RTLIB::Libcall Call_F32,
708 RTLIB::Libcall Call_F64,
709 RTLIB::Libcall Call_F80,
710 RTLIB::Libcall Call_PPCF128) {
711 return
712 VT == MVT::f32 ? Call_F32 :
713 VT == MVT::f64 ? Call_F64 :
714 VT == MVT::f80 ? Call_F80 :
715 VT == MVT::ppcf128 ? Call_PPCF128 :
716 RTLIB::UNKNOWN_LIBCALL;
717}
718
Nate Begeman68679912008-04-25 18:07:40 +0000719/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
720/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
721/// is necessary to spill the vector being inserted into to memory, perform
722/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000723SDValue SelectionDAGLegalize::
724PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx) {
725 SDValue Tmp1 = Vec;
726 SDValue Tmp2 = Val;
727 SDValue Tmp3 = Idx;
Nate Begeman68679912008-04-25 18:07:40 +0000728
729 // If the target doesn't support this, we have to spill the input vector
730 // to a temporary stack slot, update the element, then reload it. This is
731 // badness. We could also load the value into a vector register (either
732 // with a "move to register" or "extload into register" instruction, then
733 // permute it into place, if the idx is a constant and if the idx is
734 // supported by the target.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000735 MVT VT = Tmp1.getValueType();
736 MVT EltVT = VT.getVectorElementType();
737 MVT IdxVT = Tmp3.getValueType();
738 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000739 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000740
Gabor Greifba36cb52008-08-28 21:40:38 +0000741 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman68679912008-04-25 18:07:40 +0000742
743 // Store the vector.
Dan Gohman475871a2008-07-27 21:46:04 +0000744 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Tmp1, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +0000745 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000746
747 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000748 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Nate Begeman68679912008-04-25 18:07:40 +0000749 Tmp3 = DAG.getNode(CastOpc, PtrVT, Tmp3);
750 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000751 unsigned EltSize = EltVT.getSizeInBits()/8;
Nate Begeman68679912008-04-25 18:07:40 +0000752 Tmp3 = DAG.getNode(ISD::MUL, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
Dan Gohman475871a2008-07-27 21:46:04 +0000753 SDValue StackPtr2 = DAG.getNode(ISD::ADD, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000754 // Store the scalar value.
755 Ch = DAG.getTruncStore(Ch, Tmp2, StackPtr2,
Dan Gohmana54cf172008-07-11 22:44:52 +0000756 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman68679912008-04-25 18:07:40 +0000757 // Load the updated vector.
Dan Gohmana54cf172008-07-11 22:44:52 +0000758 return DAG.getLoad(VT, Ch, StackPtr,
759 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000760}
761
Dan Gohmana3466152007-07-13 20:14:11 +0000762/// LegalizeOp - We know that the specified value has a legal type, and
763/// that its operands are legal. Now ensure that the operation itself
764/// is legal, recursively ensuring that the operands' operations remain
765/// legal.
Dan Gohman475871a2008-07-27 21:46:04 +0000766SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000767 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
768 return Op;
769
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000770 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000771 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000772 SDNode *Node = Op.getNode();
Chris Lattnere3304a32005-01-08 20:35:13 +0000773
Chris Lattner3e928bb2005-01-07 07:47:09 +0000774 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000775 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000776 if (Node->getNumValues() > 1) {
777 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000778 if (getTypeAction(Node->getValueType(i)) != Legal) {
779 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000780 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +0000781 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +0000782 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +0000783 }
784 }
785
Chris Lattner45982da2005-05-12 16:53:42 +0000786 // Note that LegalizeOp may be reentered even from single-use nodes, which
787 // means that we always must cache transformed nodes.
Dan Gohman475871a2008-07-27 21:46:04 +0000788 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +0000789 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000790
Dan Gohman475871a2008-07-27 21:46:04 +0000791 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
792 SDValue Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +0000793 bool isCustom = false;
794
Chris Lattner3e928bb2005-01-07 07:47:09 +0000795 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +0000796 case ISD::FrameIndex:
797 case ISD::EntryToken:
798 case ISD::Register:
799 case ISD::BasicBlock:
800 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +0000801 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +0000802 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +0000803 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +0000804 case ISD::TargetConstantPool:
805 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000806 case ISD::TargetGlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +0000807 case ISD::TargetExternalSymbol:
Chris Lattner948c1b12006-01-28 08:31:04 +0000808 case ISD::VALUETYPE:
809 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +0000810 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +0000811 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +0000812 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +0000813 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +0000814 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +0000815 "This must be legal!");
816 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000817 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000818 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
819 // If this is a target node, legalize it by legalizing the operands then
820 // passing it through.
Dan Gohman475871a2008-07-27 21:46:04 +0000821 SmallVector<SDValue, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000822 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000823 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +0000824
Chris Lattnerf06f35e2006-08-08 01:09:31 +0000825 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000826
827 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
828 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +0000829 return Result.getValue(Op.getResNo());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +0000830 }
831 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000832#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +0000833 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +0000834#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +0000835 assert(0 && "Do not know how to legalize this operator!");
836 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +0000837 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +0000838 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +0000839 case ISD::GlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +0000840 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +0000841 case ISD::ConstantPool:
842 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000843 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
844 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +0000845 case TargetLowering::Custom:
846 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000847 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner948c1b12006-01-28 08:31:04 +0000848 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000849 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +0000850 break;
851 }
Chris Lattner3e928bb2005-01-07 07:47:09 +0000852 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +0000853 case ISD::FRAMEADDR:
854 case ISD::RETURNADDR:
855 // The only option for these nodes is to custom lower them. If the target
856 // does not custom lower them, then return zero.
857 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000858 if (Tmp1.getNode())
Nate Begemanbcc5f362007-01-29 22:58:52 +0000859 Result = Tmp1;
860 else
861 Result = DAG.getConstant(0, TLI.getPointerTy());
862 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000863 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000864 MVT VT = Node->getValueType(0);
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000865 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
866 default: assert(0 && "This action is not supported yet!");
867 case TargetLowering::Custom:
868 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000869 if (Result.getNode()) break;
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000870 // Fall Thru
871 case TargetLowering::Legal:
872 Result = DAG.getConstant(0, VT);
873 break;
874 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +0000875 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +0000876 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000877 case ISD::EXCEPTIONADDR: {
878 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000879 MVT VT = Node->getValueType(0);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000880 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
881 default: assert(0 && "This action is not supported yet!");
882 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +0000883 unsigned Reg = TLI.getExceptionAddressRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000884 Result = DAG.getCopyFromReg(Tmp1, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000885 }
886 break;
887 case TargetLowering::Custom:
888 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000889 if (Result.getNode()) break;
Jim Laskey2bc210d2007-02-22 15:37:19 +0000890 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000891 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +0000892 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000893 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey2bc210d2007-02-22 15:37:19 +0000894 break;
895 }
896 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000897 }
Gabor Greifba36cb52008-08-28 21:40:38 +0000898 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +0000899
Gabor Greifba36cb52008-08-28 21:40:38 +0000900 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +0000901 "Cannot return more than two values!");
902
903 // Since we produced two values, make sure to remember that we
904 // legalized both of them.
905 Tmp1 = LegalizeOp(Result);
906 Tmp2 = LegalizeOp(Result.getValue(1));
907 AddLegalizedOperand(Op.getValue(0), Tmp1);
908 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +0000909 return Op.getResNo() ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +0000910 case ISD::EHSELECTION: {
911 Tmp1 = LegalizeOp(Node->getOperand(0));
912 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +0000913 MVT VT = Node->getValueType(0);
Jim Laskey8782d482007-02-28 20:43:58 +0000914 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
915 default: assert(0 && "This action is not supported yet!");
916 case TargetLowering::Expand: {
917 unsigned Reg = TLI.getExceptionSelectorRegister();
Duncan Sandsb027fa02007-12-31 18:35:50 +0000918 Result = DAG.getCopyFromReg(Tmp2, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +0000919 }
920 break;
921 case TargetLowering::Custom:
922 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000923 if (Result.getNode()) break;
Jim Laskey8782d482007-02-28 20:43:58 +0000924 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000925 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +0000926 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Duncan Sands4bdcb612008-07-02 17:40:58 +0000927 Result = DAG.getMergeValues(Ops, 2);
Jim Laskey8782d482007-02-28 20:43:58 +0000928 break;
929 }
930 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +0000931 }
Gabor Greifba36cb52008-08-28 21:40:38 +0000932 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +0000933
Gabor Greifba36cb52008-08-28 21:40:38 +0000934 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +0000935 "Cannot return more than two values!");
936
937 // Since we produced two values, make sure to remember that we
938 // legalized both of them.
939 Tmp1 = LegalizeOp(Result);
940 Tmp2 = LegalizeOp(Result.getValue(1));
941 AddLegalizedOperand(Op.getValue(0), Tmp1);
942 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +0000943 return Op.getResNo() ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000944 case ISD::EH_RETURN: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000945 MVT VT = Node->getValueType(0);
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000946 // The only "good" option for this node is to custom lower it.
947 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
948 default: assert(0 && "This action is not supported at all!");
949 case TargetLowering::Custom:
950 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +0000951 if (Result.getNode()) break;
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000952 // Fall Thru
953 case TargetLowering::Legal:
954 // Target does not know, how to lower this, lower to noop
955 Result = LegalizeOp(Node->getOperand(0));
956 break;
957 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +0000958 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +0000959 break;
Chris Lattner08951a32005-09-02 01:15:01 +0000960 case ISD::AssertSext:
961 case ISD::AssertZext:
962 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000963 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +0000964 break;
Chris Lattner308575b2005-11-20 22:56:56 +0000965 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000966 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif99a6cb92008-08-26 22:36:50 +0000967 Result = Node->getOperand(Op.getResNo());
Chris Lattner456a93a2006-01-28 07:39:30 +0000968 break;
Chris Lattner69a52152005-01-14 22:38:01 +0000969 case ISD::CopyFromReg:
970 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +0000971 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000972 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000973 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +0000974 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000975 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000976 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +0000977 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +0000978 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
979 } else {
980 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
981 }
Chris Lattner7310fb12005-12-18 15:27:43 +0000982 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
983 }
Chris Lattner13c184d2005-01-28 06:27:38 +0000984 // Since CopyFromReg produces two values, make sure to remember that we
985 // legalized both of them.
986 AddLegalizedOperand(Op.getValue(0), Result);
987 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +0000988 return Result.getValue(Op.getResNo());
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000989 case ISD::UNDEF: {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000990 MVT VT = Op.getValueType();
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000991 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +0000992 default: assert(0 && "This action is not supported yet!");
993 case TargetLowering::Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000994 if (VT.isInteger())
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000995 Result = DAG.getConstant(0, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000996 else if (VT.isFloatingPoint())
997 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf41db212007-09-26 17:26:49 +0000998 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +0000999 else
1000 assert(0 && "Unknown value type!");
1001 break;
Nate Begemanea19cd52005-04-02 00:41:14 +00001002 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001003 break;
1004 }
1005 break;
1006 }
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001007
Chris Lattner48b61a72006-03-28 00:40:33 +00001008 case ISD::INTRINSIC_W_CHAIN:
1009 case ISD::INTRINSIC_WO_CHAIN:
1010 case ISD::INTRINSIC_VOID: {
Dan Gohman475871a2008-07-27 21:46:04 +00001011 SmallVector<SDValue, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001012 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1013 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001014 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner10d7fa62006-03-26 09:12:51 +00001015
1016 // Allow the target to custom lower its intrinsics if it wants to.
Chris Lattner48b61a72006-03-28 00:40:33 +00001017 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001018 TargetLowering::Custom) {
1019 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001020 if (Tmp3.getNode()) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001021 }
1022
Gabor Greifba36cb52008-08-28 21:40:38 +00001023 if (Result.getNode()->getNumValues() == 1) break;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001024
1025 // Must have return value and chain result.
Gabor Greifba36cb52008-08-28 21:40:38 +00001026 assert(Result.getNode()->getNumValues() == 2 &&
Chris Lattner13fc2f12006-03-27 20:28:29 +00001027 "Cannot return more than two values!");
1028
1029 // Since loads produce two values, make sure to remember that we
1030 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001031 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1032 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001033 return Result.getValue(Op.getResNo());
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001034 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001035
Dan Gohman7f460202008-06-30 20:59:49 +00001036 case ISD::DBG_STOPPOINT:
1037 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Chris Lattner36ce6912005-11-29 06:21:05 +00001038 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
1039
Dan Gohman7f460202008-06-30 20:59:49 +00001040 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Chris Lattner36ce6912005-11-29 06:21:05 +00001041 case TargetLowering::Promote:
1042 default: assert(0 && "This action is not supported yet!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001043 case TargetLowering::Expand: {
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001044 MachineModuleInfo *MMI = DAG.getMachineModuleInfo();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001045 bool useDEBUG_LOC = TLI.isOperationLegal(ISD::DEBUG_LOC, MVT::Other);
Dan Gohman44066042008-07-01 00:05:16 +00001046 bool useLABEL = TLI.isOperationLegal(ISD::DBG_LABEL, MVT::Other);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001047
Dan Gohman7f460202008-06-30 20:59:49 +00001048 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
Jim Laskey44c3b9f2007-01-26 21:22:28 +00001049 if (MMI && (useDEBUG_LOC || useLABEL)) {
Dan Gohman7f460202008-06-30 20:59:49 +00001050 const CompileUnitDesc *CompileUnit = DSP->getCompileUnit();
1051 unsigned SrcFile = MMI->RecordSource(CompileUnit);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001052
Dan Gohman7f460202008-06-30 20:59:49 +00001053 unsigned Line = DSP->getLine();
1054 unsigned Col = DSP->getColumn();
Jim Laskeyabf6d172006-01-05 01:25:28 +00001055
1056 if (useDEBUG_LOC) {
Dan Gohman475871a2008-07-27 21:46:04 +00001057 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Evan Cheng71e86852008-07-08 20:06:39 +00001058 DAG.getConstant(Col, MVT::i32),
1059 DAG.getConstant(SrcFile, MVT::i32) };
1060 Result = DAG.getNode(ISD::DEBUG_LOC, MVT::Other, Ops, 4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001061 } else {
Evan Chenga647c922008-02-01 02:05:57 +00001062 unsigned ID = MMI->RecordSourceLine(Line, Col, SrcFile);
Dan Gohman44066042008-07-01 00:05:16 +00001063 Result = DAG.getLabel(ISD::DBG_LABEL, Tmp1, ID);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001064 }
Jim Laskeye81aecb2005-12-21 20:51:37 +00001065 } else {
1066 Result = Tmp1; // chain
1067 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001068 break;
Chris Lattnere7736732005-12-18 23:54:29 +00001069 }
Evan Cheng71e86852008-07-08 20:06:39 +00001070 case TargetLowering::Legal: {
1071 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1072 if (Action == Legal && Tmp1 == Node->getOperand(0))
1073 break;
1074
Dan Gohman475871a2008-07-27 21:46:04 +00001075 SmallVector<SDValue, 8> Ops;
Evan Cheng71e86852008-07-08 20:06:39 +00001076 Ops.push_back(Tmp1);
1077 if (Action == Legal) {
1078 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1079 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1080 } else {
1081 // Otherwise promote them.
1082 Ops.push_back(PromoteOp(Node->getOperand(1)));
1083 Ops.push_back(PromoteOp(Node->getOperand(2)));
Chris Lattner36ce6912005-11-29 06:21:05 +00001084 }
Evan Cheng71e86852008-07-08 20:06:39 +00001085 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1086 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1087 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001088 break;
1089 }
Evan Cheng71e86852008-07-08 20:06:39 +00001090 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001091 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001092
1093 case ISD::DECLARE:
1094 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1095 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1096 default: assert(0 && "This action is not supported yet!");
1097 case TargetLowering::Legal:
1098 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1099 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1100 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1101 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1102 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001103 case TargetLowering::Expand:
1104 Result = LegalizeOp(Node->getOperand(0));
1105 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001106 }
1107 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001108
1109 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001110 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001111 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001112 default: assert(0 && "This action is not supported yet!");
Evan Cheng71e86852008-07-08 20:06:39 +00001113 case TargetLowering::Legal: {
1114 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001115 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Cheng71e86852008-07-08 20:06:39 +00001116 if (Action == Legal && Tmp1 == Node->getOperand(0))
1117 break;
1118 if (Action == Legal) {
1119 Tmp2 = Node->getOperand(1);
1120 Tmp3 = Node->getOperand(2);
1121 Tmp4 = Node->getOperand(3);
1122 } else {
1123 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1124 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1125 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1126 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001127 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001128 break;
1129 }
Evan Cheng71e86852008-07-08 20:06:39 +00001130 }
Jim Laskeyabf6d172006-01-05 01:25:28 +00001131 break;
1132
Dan Gohman44066042008-07-01 00:05:16 +00001133 case ISD::DBG_LABEL:
1134 case ISD::EH_LABEL:
1135 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1136 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001137 default: assert(0 && "This action is not supported yet!");
1138 case TargetLowering::Legal:
1139 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001140 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001141 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001142 case TargetLowering::Expand:
1143 Result = LegalizeOp(Node->getOperand(0));
1144 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001145 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001146 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001147
Evan Cheng27b7db52008-03-08 00:58:38 +00001148 case ISD::PREFETCH:
1149 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1150 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1151 default: assert(0 && "This action is not supported yet!");
1152 case TargetLowering::Legal:
1153 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1154 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1155 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1156 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1157 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1158 break;
1159 case TargetLowering::Expand:
1160 // It's a noop.
1161 Result = LegalizeOp(Node->getOperand(0));
1162 break;
1163 }
1164 break;
1165
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001166 case ISD::MEMBARRIER: {
1167 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001168 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1169 default: assert(0 && "This action is not supported yet!");
1170 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001171 SDValue Ops[6];
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001172 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001173 for (int x = 1; x < 6; ++x) {
1174 Ops[x] = Node->getOperand(x);
1175 if (!isTypeLegal(Ops[x].getValueType()))
1176 Ops[x] = PromoteOp(Ops[x]);
1177 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001178 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1179 break;
1180 }
1181 case TargetLowering::Expand:
1182 //There is no libgcc call for this op
1183 Result = Node->getOperand(0); // Noop
1184 break;
1185 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001186 break;
1187 }
1188
Dale Johannesene00a8a22008-08-28 02:44:49 +00001189 case ISD::ATOMIC_CMP_SWAP_8:
1190 case ISD::ATOMIC_CMP_SWAP_16:
1191 case ISD::ATOMIC_CMP_SWAP_32:
1192 case ISD::ATOMIC_CMP_SWAP_64: {
Mon P Wang63307c32008-05-05 19:05:59 +00001193 unsigned int num_operands = 4;
1194 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001195 SDValue Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001196 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001197 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001198 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
1199
1200 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1201 default: assert(0 && "This action is not supported yet!");
1202 case TargetLowering::Custom:
1203 Result = TLI.LowerOperation(Result, DAG);
1204 break;
1205 case TargetLowering::Legal:
1206 break;
1207 }
Dan Gohman475871a2008-07-27 21:46:04 +00001208 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1209 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001210 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001211 }
Dale Johannesene00a8a22008-08-28 02:44:49 +00001212 case ISD::ATOMIC_LOAD_ADD_8:
1213 case ISD::ATOMIC_LOAD_SUB_8:
1214 case ISD::ATOMIC_LOAD_AND_8:
1215 case ISD::ATOMIC_LOAD_OR_8:
1216 case ISD::ATOMIC_LOAD_XOR_8:
1217 case ISD::ATOMIC_LOAD_NAND_8:
1218 case ISD::ATOMIC_LOAD_MIN_8:
1219 case ISD::ATOMIC_LOAD_MAX_8:
1220 case ISD::ATOMIC_LOAD_UMIN_8:
1221 case ISD::ATOMIC_LOAD_UMAX_8:
1222 case ISD::ATOMIC_SWAP_8:
1223 case ISD::ATOMIC_LOAD_ADD_16:
1224 case ISD::ATOMIC_LOAD_SUB_16:
1225 case ISD::ATOMIC_LOAD_AND_16:
1226 case ISD::ATOMIC_LOAD_OR_16:
1227 case ISD::ATOMIC_LOAD_XOR_16:
1228 case ISD::ATOMIC_LOAD_NAND_16:
1229 case ISD::ATOMIC_LOAD_MIN_16:
1230 case ISD::ATOMIC_LOAD_MAX_16:
1231 case ISD::ATOMIC_LOAD_UMIN_16:
1232 case ISD::ATOMIC_LOAD_UMAX_16:
1233 case ISD::ATOMIC_SWAP_16:
1234 case ISD::ATOMIC_LOAD_ADD_32:
1235 case ISD::ATOMIC_LOAD_SUB_32:
1236 case ISD::ATOMIC_LOAD_AND_32:
1237 case ISD::ATOMIC_LOAD_OR_32:
1238 case ISD::ATOMIC_LOAD_XOR_32:
1239 case ISD::ATOMIC_LOAD_NAND_32:
1240 case ISD::ATOMIC_LOAD_MIN_32:
1241 case ISD::ATOMIC_LOAD_MAX_32:
1242 case ISD::ATOMIC_LOAD_UMIN_32:
1243 case ISD::ATOMIC_LOAD_UMAX_32:
1244 case ISD::ATOMIC_SWAP_32:
1245 case ISD::ATOMIC_LOAD_ADD_64:
1246 case ISD::ATOMIC_LOAD_SUB_64:
1247 case ISD::ATOMIC_LOAD_AND_64:
1248 case ISD::ATOMIC_LOAD_OR_64:
1249 case ISD::ATOMIC_LOAD_XOR_64:
1250 case ISD::ATOMIC_LOAD_NAND_64:
1251 case ISD::ATOMIC_LOAD_MIN_64:
1252 case ISD::ATOMIC_LOAD_MAX_64:
1253 case ISD::ATOMIC_LOAD_UMIN_64:
1254 case ISD::ATOMIC_LOAD_UMAX_64:
1255 case ISD::ATOMIC_SWAP_64: {
Mon P Wang63307c32008-05-05 19:05:59 +00001256 unsigned int num_operands = 3;
1257 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001258 SDValue Ops[3];
Mon P Wang63307c32008-05-05 19:05:59 +00001259 for (unsigned int x = 0; x < num_operands; ++x)
1260 Ops[x] = LegalizeOp(Node->getOperand(x));
1261 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001262
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001263 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001264 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001265 case TargetLowering::Custom:
1266 Result = TLI.LowerOperation(Result, DAG);
1267 break;
1268 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001269 break;
1270 }
Dan Gohman475871a2008-07-27 21:46:04 +00001271 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1272 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001273 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001274 }
Scott Michelc1513d22007-08-08 23:23:31 +00001275 case ISD::Constant: {
1276 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1277 unsigned opAction =
1278 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1279
Chris Lattner3e928bb2005-01-07 07:47:09 +00001280 // We know we don't need to expand constants here, constants only have one
1281 // value and we check that it is fine above.
1282
Scott Michelc1513d22007-08-08 23:23:31 +00001283 if (opAction == TargetLowering::Custom) {
1284 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001285 if (Tmp1.getNode())
Scott Michelc1513d22007-08-08 23:23:31 +00001286 Result = Tmp1;
1287 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001288 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001289 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001290 case ISD::ConstantFP: {
1291 // Spill FP immediates to the constant pool if the target cannot directly
1292 // codegen them. Targets often have some immediate values that can be
1293 // efficiently generated into an FP register without a load. We explicitly
1294 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001295 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1296
Chris Lattner3181a772006-01-29 06:26:56 +00001297 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1298 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001299 case TargetLowering::Legal:
1300 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001301 case TargetLowering::Custom:
1302 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001303 if (Tmp3.getNode()) {
Chris Lattner3181a772006-01-29 06:26:56 +00001304 Result = Tmp3;
1305 break;
1306 }
1307 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001308 case TargetLowering::Expand: {
1309 // Check to see if this FP immediate is already legal.
1310 bool isLegal = false;
1311 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1312 E = TLI.legal_fpimm_end(); I != E; ++I) {
1313 if (CFP->isExactlyValue(*I)) {
1314 isLegal = true;
1315 break;
1316 }
1317 }
1318 // If this is a legal constant, turn it into a TargetConstantFP node.
1319 if (isLegal)
1320 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001321 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001322 }
Nate Begemane1795842008-02-14 08:57:00 +00001323 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001324 break;
1325 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001326 case ISD::TokenFactor:
1327 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001328 Tmp1 = LegalizeOp(Node->getOperand(0));
1329 Tmp2 = LegalizeOp(Node->getOperand(1));
1330 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1331 } else if (Node->getNumOperands() == 3) {
1332 Tmp1 = LegalizeOp(Node->getOperand(0));
1333 Tmp2 = LegalizeOp(Node->getOperand(1));
1334 Tmp3 = LegalizeOp(Node->getOperand(2));
1335 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001336 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00001337 SmallVector<SDValue, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001338 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001339 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1340 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001341 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001342 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001343 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00001344
1345 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001346 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001347 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001348 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001349 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001350 // A call within a calling sequence must be legalized to something
1351 // other than the normal CALLSEQ_END. Violating this gets Legalize
1352 // into an infinite loop.
1353 assert ((!IsLegalizingCall ||
1354 Node->getOpcode() != ISD::CALL ||
Gabor Greifba36cb52008-08-28 21:40:38 +00001355 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesen0ea03562008-03-05 19:14:03 +00001356 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001357
1358 // The number of incoming and outgoing values should match; unless the final
1359 // outgoing value is a flag.
Gabor Greifba36cb52008-08-28 21:40:38 +00001360 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1361 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1362 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001363 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001364 "Lowering call/formal_arguments produced unexpected # results!");
Chris Lattnere2e41732006-05-16 05:49:56 +00001365
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001366 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001367 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greifba36cb52008-08-28 21:40:38 +00001368 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1369 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001370 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001371 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001372 if (Op.getResNo() == i)
Chris Lattnere2e41732006-05-16 05:49:56 +00001373 Tmp2 = Tmp1;
Dan Gohman475871a2008-07-27 21:46:04 +00001374 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Chris Lattnere2e41732006-05-16 05:49:56 +00001375 }
1376 return Tmp2;
Christopher Lamb557c3632007-07-26 07:34:40 +00001377 case ISD::EXTRACT_SUBREG: {
1378 Tmp1 = LegalizeOp(Node->getOperand(0));
1379 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(1));
1380 assert(idx && "Operand must be a constant");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001381 Tmp2 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lamb557c3632007-07-26 07:34:40 +00001382 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1383 }
1384 break;
1385 case ISD::INSERT_SUBREG: {
1386 Tmp1 = LegalizeOp(Node->getOperand(0));
1387 Tmp2 = LegalizeOp(Node->getOperand(1));
1388 ConstantSDNode *idx = dyn_cast<ConstantSDNode>(Node->getOperand(2));
1389 assert(idx && "Operand must be a constant");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001390 Tmp3 = DAG.getTargetConstant(idx->getAPIntValue(), idx->getValueType(0));
Christopher Lamb557c3632007-07-26 07:34:40 +00001391 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1392 }
1393 break;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001394 case ISD::BUILD_VECTOR:
1395 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001396 default: assert(0 && "This action is not supported yet!");
1397 case TargetLowering::Custom:
1398 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001399 if (Tmp3.getNode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001400 Result = Tmp3;
1401 break;
1402 }
1403 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001404 case TargetLowering::Expand:
Gabor Greifba36cb52008-08-28 21:40:38 +00001405 Result = ExpandBUILD_VECTOR(Result.getNode());
Chris Lattnerb2827b02006-03-19 00:52:58 +00001406 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001407 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001408 break;
1409 case ISD::INSERT_VECTOR_ELT:
1410 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001411 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001412
1413 // The type of the value to insert may not be legal, even though the vector
1414 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1415 // here.
1416 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1417 default: assert(0 && "Cannot expand insert element operand");
1418 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1419 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
1420 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001421 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1422
1423 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1424 Node->getValueType(0))) {
1425 default: assert(0 && "This action is not supported yet!");
1426 case TargetLowering::Legal:
1427 break;
1428 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001429 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001430 if (Tmp4.getNode()) {
Nate Begeman2281a992008-01-05 20:47:37 +00001431 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001432 break;
1433 }
1434 // FALLTHROUGH
1435 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001436 // If the insert index is a constant, codegen this as a scalar_to_vector,
1437 // then a shuffle that inserts it into the right position in the vector.
1438 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001439 // SCALAR_TO_VECTOR requires that the type of the value being inserted
1440 // match the element type of the vector being created.
1441 if (Tmp2.getValueType() ==
Duncan Sands83ec4b62008-06-06 12:08:01 +00001442 Op.getValueType().getVectorElementType()) {
Dan Gohman475871a2008-07-27 21:46:04 +00001443 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR,
Nate Begeman0325d902008-02-13 06:43:04 +00001444 Tmp1.getValueType(), Tmp2);
1445
Duncan Sands83ec4b62008-06-06 12:08:01 +00001446 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
1447 MVT ShufMaskVT =
1448 MVT::getIntVectorWithNumElements(NumElts);
1449 MVT ShufMaskEltVT = ShufMaskVT.getVectorElementType();
Nate Begeman0325d902008-02-13 06:43:04 +00001450
1451 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1452 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1453 // elt 0 of the RHS.
Dan Gohman475871a2008-07-27 21:46:04 +00001454 SmallVector<SDValue, 8> ShufOps;
Nate Begeman0325d902008-02-13 06:43:04 +00001455 for (unsigned i = 0; i != NumElts; ++i) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001456 if (i != InsertPos->getZExtValue())
Nate Begeman0325d902008-02-13 06:43:04 +00001457 ShufOps.push_back(DAG.getConstant(i, ShufMaskEltVT));
1458 else
1459 ShufOps.push_back(DAG.getConstant(NumElts, ShufMaskEltVT));
1460 }
Dan Gohman475871a2008-07-27 21:46:04 +00001461 SDValue ShufMask = DAG.getNode(ISD::BUILD_VECTOR, ShufMaskVT,
Nate Begeman0325d902008-02-13 06:43:04 +00001462 &ShufOps[0], ShufOps.size());
1463
1464 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, Tmp1.getValueType(),
1465 Tmp1, ScVec, ShufMask);
1466 Result = LegalizeOp(Result);
1467 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001468 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001469 }
Nate Begeman68679912008-04-25 18:07:40 +00001470 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001471 break;
1472 }
1473 }
1474 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001475 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001476 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1477 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1478 break;
1479 }
1480
Chris Lattnerce872152006-03-19 06:31:19 +00001481 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1482 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1483 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1484 Node->getValueType(0))) {
1485 default: assert(0 && "This action is not supported yet!");
1486 case TargetLowering::Legal:
1487 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001488 case TargetLowering::Custom:
1489 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001490 if (Tmp3.getNode()) {
Chris Lattner4d3abee2006-03-19 06:47:21 +00001491 Result = Tmp3;
1492 break;
1493 }
1494 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001495 case TargetLowering::Expand:
1496 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001497 break;
1498 }
Chris Lattnerce872152006-03-19 06:31:19 +00001499 break;
Chris Lattner87100e02006-03-20 01:52:29 +00001500 case ISD::VECTOR_SHUFFLE:
Chris Lattner87100e02006-03-20 01:52:29 +00001501 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1502 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
1503 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1504
1505 // Allow targets to custom lower the SHUFFLEs they support.
Chris Lattner4352cc92006-04-04 17:23:26 +00001506 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE,Result.getValueType())) {
1507 default: assert(0 && "Unknown operation action!");
1508 case TargetLowering::Legal:
1509 assert(isShuffleLegal(Result.getValueType(), Node->getOperand(2)) &&
1510 "vector shuffle should not be created if not legal!");
1511 break;
1512 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001513 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001514 if (Tmp3.getNode()) {
Evan Cheng18dd6d02006-04-05 06:07:11 +00001515 Result = Tmp3;
1516 break;
1517 }
1518 // FALLTHROUGH
1519 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001520 MVT VT = Node->getValueType(0);
1521 MVT EltVT = VT.getVectorElementType();
1522 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +00001523 SDValue Mask = Node->getOperand(2);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001524 unsigned NumElems = Mask.getNumOperands();
Dan Gohman475871a2008-07-27 21:46:04 +00001525 SmallVector<SDValue,8> Ops;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001526 for (unsigned i = 0; i != NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00001527 SDValue Arg = Mask.getOperand(i);
Evan Cheng18dd6d02006-04-05 06:07:11 +00001528 if (Arg.getOpcode() == ISD::UNDEF) {
1529 Ops.push_back(DAG.getNode(ISD::UNDEF, EltVT));
1530 } else {
1531 assert(isa<ConstantSDNode>(Arg) && "Invalid VECTOR_SHUFFLE mask!");
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001532 unsigned Idx = cast<ConstantSDNode>(Arg)->getZExtValue();
Evan Cheng18dd6d02006-04-05 06:07:11 +00001533 if (Idx < NumElems)
1534 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp1,
1535 DAG.getConstant(Idx, PtrVT)));
1536 else
1537 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, EltVT, Tmp2,
1538 DAG.getConstant(Idx - NumElems, PtrVT)));
1539 }
1540 }
Chris Lattnerbd564bf2006-08-08 02:23:42 +00001541 Result = DAG.getNode(ISD::BUILD_VECTOR, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001542 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001543 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001544 case TargetLowering::Promote: {
1545 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001546 MVT OVT = Node->getValueType(0);
1547 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001548
1549 // Cast the two input vectors.
1550 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
1551 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
1552
1553 // Convert the shuffle mask to the right # elements.
Dan Gohman475871a2008-07-27 21:46:04 +00001554 Tmp3 = SDValue(isShuffleLegal(OVT, Node->getOperand(2)), 0);
Gabor Greifba36cb52008-08-28 21:40:38 +00001555 assert(Tmp3.getNode() && "Shuffle not legal?");
Chris Lattner4352cc92006-04-04 17:23:26 +00001556 Result = DAG.getNode(ISD::VECTOR_SHUFFLE, NVT, Tmp1, Tmp2, Tmp3);
1557 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
1558 break;
1559 }
Chris Lattner87100e02006-03-20 01:52:29 +00001560 }
1561 break;
Chris Lattner384504c2006-03-21 20:44:12 +00001562
1563 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001564 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001565 Tmp2 = LegalizeOp(Node->getOperand(1));
1566 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001567 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001568 break;
1569
Dan Gohman7f321562007-06-25 16:23:39 +00001570 case ISD::EXTRACT_SUBVECTOR:
1571 Tmp1 = Node->getOperand(0);
1572 Tmp2 = LegalizeOp(Node->getOperand(1));
1573 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1574 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001575 break;
1576
Chris Lattner6831a812006-02-13 09:18:02 +00001577 case ISD::CALLSEQ_START: {
1578 SDNode *CallEnd = FindCallEndFromCallStart(Node);
1579
1580 // Recursively Legalize all of the inputs of the call end that do not lead
1581 // to this call start. This ensures that any libcalls that need be inserted
1582 // are inserted *before* the CALLSEQ_START.
Chris Lattner00755df2007-02-04 00:27:56 +00001583 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001584 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00001585 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001586 NodesLeadingTo);
1587 }
Chris Lattner6831a812006-02-13 09:18:02 +00001588
1589 // Now that we legalized all of the inputs (which may have inserted
1590 // libcalls) create the new CALLSEQ_START node.
1591 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1592
1593 // Merge in the last call, to ensure that this call start after the last
1594 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001595 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Chris Lattnerb248e162006-05-17 17:55:45 +00001596 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1597 Tmp1 = LegalizeOp(Tmp1);
1598 }
Chris Lattner6831a812006-02-13 09:18:02 +00001599
1600 // Do not try to legalize the target-specific arguments (#1+).
1601 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001602 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001603 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001604 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001605 }
1606
1607 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001608 AddLegalizedOperand(Op.getValue(0), Result);
1609 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1610 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
1611
Chris Lattner6831a812006-02-13 09:18:02 +00001612 // Now that the callseq_start and all of the non-call nodes above this call
1613 // sequence have been legalized, legalize the call itself. During this
1614 // process, no libcalls can/will be inserted, guaranteeing that no calls
1615 // can overlap.
1616 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001617 // Note that we are selecting this call!
Dan Gohman475871a2008-07-27 21:46:04 +00001618 LastCALLSEQ_END = SDValue(CallEnd, 0);
Chris Lattner6831a812006-02-13 09:18:02 +00001619 IsLegalizingCall = true;
1620
1621 // Legalize the call, starting from the CALLSEQ_END.
1622 LegalizeOp(LastCALLSEQ_END);
1623 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1624 return Result;
1625 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001626 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001627 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1628 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greifba36cb52008-08-28 21:40:38 +00001629 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman475871a2008-07-27 21:46:04 +00001630 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1631 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001632 assert(I != LegalizedNodes.end() &&
1633 "Legalizing the call start should have legalized this node!");
1634 return I->second;
1635 }
1636
1637 // Otherwise, the call start has been legalized and everything is going
1638 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001639 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001640 // Do not try to legalize the target-specific arguments (#1+), except for
1641 // an optional flag input.
1642 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1643 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001644 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001645 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001646 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001647 }
1648 } else {
1649 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1650 if (Tmp1 != Node->getOperand(0) ||
1651 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001652 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001653 Ops[0] = Tmp1;
1654 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001655 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001656 }
Chris Lattner6a542892006-01-24 05:48:21 +00001657 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001658 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001659 // This finishes up call legalization.
1660 IsLegalizingCall = false;
Chris Lattner4b653a02006-02-14 00:55:02 +00001661
1662 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman475871a2008-07-27 21:46:04 +00001663 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Chris Lattner4b653a02006-02-14 00:55:02 +00001664 if (Node->getNumValues() == 2)
Dan Gohman475871a2008-07-27 21:46:04 +00001665 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001666 return Result.getValue(Op.getResNo());
Evan Chenga7dce3c2006-01-11 22:14:47 +00001667 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001668 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001669 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1670 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1671 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001672 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001673
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001674 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001675 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001676 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001677 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001678 case TargetLowering::Expand: {
1679 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1680 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1681 " not tell us which reg is the stack pointer!");
Dan Gohman475871a2008-07-27 21:46:04 +00001682 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001683
1684 // Chain the dynamic stack allocation so that it doesn't modify the stack
1685 // pointer when other instructions are using the stack.
Chris Lattnere563bbc2008-10-11 22:08:30 +00001686 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001687
Dan Gohman475871a2008-07-27 21:46:04 +00001688 SDValue Size = Tmp2.getOperand(1);
1689 SDValue SP = DAG.getCopyFromReg(Chain, SPReg, VT);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001690 Chain = SP.getValue(1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001691 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Cheng61bbbab2007-08-16 23:50:06 +00001692 unsigned StackAlign =
1693 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1694 if (Align > StackAlign)
Evan Cheng3e20bba2007-08-17 18:02:22 +00001695 SP = DAG.getNode(ISD::AND, VT, SP,
1696 DAG.getConstant(-(uint64_t)Align, VT));
Evan Cheng61bbbab2007-08-16 23:50:06 +00001697 Tmp1 = DAG.getNode(ISD::SUB, VT, SP, Size); // Value
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001698 Chain = DAG.getCopyToReg(Chain, SPReg, Tmp1); // Output chain
1699
Chris Lattnere563bbc2008-10-11 22:08:30 +00001700 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
1701 DAG.getIntPtrConstant(0, true), SDValue());
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001702
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001703 Tmp1 = LegalizeOp(Tmp1);
1704 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001705 break;
1706 }
1707 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001708 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001709 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001710 Tmp1 = LegalizeOp(Tmp3);
1711 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001712 }
Chris Lattner903d2782006-01-15 08:54:32 +00001713 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001714 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001715 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001716 }
Chris Lattner903d2782006-01-15 08:54:32 +00001717 // Since this op produce two values, make sure to remember that we
1718 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001719 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1720 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001721 return Op.getResNo() ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001722 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001723 case ISD::INLINEASM: {
Dan Gohman475871a2008-07-27 21:46:04 +00001724 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001725 bool Changed = false;
1726 // Legalize all of the operands of the inline asm, in case they are nodes
1727 // that need to be expanded or something. Note we skip the asm string and
1728 // all of the TargetConstant flags.
Dan Gohman475871a2008-07-27 21:46:04 +00001729 SDValue Op = LegalizeOp(Ops[0]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001730 Changed = Op != Ops[0];
1731 Ops[0] = Op;
1732
1733 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1734 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001735 unsigned NumVals = cast<ConstantSDNode>(Ops[i])->getZExtValue() >> 3;
Chris Lattner25a022c2006-07-11 01:40:09 +00001736 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman475871a2008-07-27 21:46:04 +00001737 SDValue Op = LegalizeOp(Ops[i]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001738 if (Op != Ops[i]) {
1739 Changed = true;
1740 Ops[i] = Op;
1741 }
1742 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001743 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001744
1745 if (HasInFlag) {
1746 Op = LegalizeOp(Ops.back());
1747 Changed |= Op != Ops.back();
1748 Ops.back() = Op;
1749 }
1750
1751 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001752 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnerce7518c2006-01-26 22:24:51 +00001753
1754 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman475871a2008-07-27 21:46:04 +00001755 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1756 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001757 return Result.getValue(Op.getResNo());
Chris Lattner25a022c2006-07-11 01:40:09 +00001758 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001759 case ISD::BR:
1760 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001761 // Ensure that libcalls are emitted before a branch.
1762 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1763 Tmp1 = LegalizeOp(Tmp1);
1764 LastCALLSEQ_END = DAG.getEntryNode();
1765
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001766 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001767 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001768 case ISD::BRIND:
1769 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1770 // Ensure that libcalls are emitted before a branch.
1771 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1772 Tmp1 = LegalizeOp(Tmp1);
1773 LastCALLSEQ_END = DAG.getEntryNode();
1774
1775 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1776 default: assert(0 && "Indirect target must be legal type (pointer)!");
1777 case Legal:
1778 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1779 break;
1780 }
1781 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1782 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001783 case ISD::BR_JT:
1784 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1785 // Ensure that libcalls are emitted before a branch.
1786 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1787 Tmp1 = LegalizeOp(Tmp1);
1788 LastCALLSEQ_END = DAG.getEntryNode();
1789
1790 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1791 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1792
1793 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
1794 default: assert(0 && "This action is not supported yet!");
1795 case TargetLowering::Legal: break;
1796 case TargetLowering::Custom:
1797 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001798 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001799 break;
1800 case TargetLowering::Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00001801 SDValue Chain = Result.getOperand(0);
1802 SDValue Table = Result.getOperand(1);
1803 SDValue Index = Result.getOperand(2);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001804
Duncan Sands83ec4b62008-06-06 12:08:01 +00001805 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001806 MachineFunction &MF = DAG.getMachineFunction();
1807 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Evan Cheng3d4ce112006-10-30 08:00:44 +00001808 Index= DAG.getNode(ISD::MUL, PTy, Index, DAG.getConstant(EntrySize, PTy));
Dan Gohman475871a2008-07-27 21:46:04 +00001809 SDValue Addr = DAG.getNode(ISD::ADD, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001810
Dan Gohman475871a2008-07-27 21:46:04 +00001811 SDValue LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001812 switch (EntrySize) {
1813 default: assert(0 && "Size of jump table not supported yet."); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001814 case 4: LD = DAG.getLoad(MVT::i32, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001815 PseudoSourceValue::getJumpTable(), 0); break;
Dan Gohman69de1932008-02-06 22:27:42 +00001816 case 8: LD = DAG.getLoad(MVT::i64, Chain, Addr,
Dan Gohman3069b872008-02-07 18:41:25 +00001817 PseudoSourceValue::getJumpTable(), 0); break;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001818 }
1819
Evan Chengcc415862007-11-09 01:32:10 +00001820 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00001821 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001822 // For PIC, the sequence is:
1823 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00001824 // RelocBase can be JumpTable, GOT or some sort of global base.
1825 if (PTy != MVT::i32)
1826 Addr = DAG.getNode(ISD::SIGN_EXTEND, PTy, Addr);
1827 Addr = DAG.getNode(ISD::ADD, PTy, Addr,
1828 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00001829 }
Evan Chengcc415862007-11-09 01:32:10 +00001830 Result = DAG.getNode(ISD::BRIND, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001831 }
1832 }
1833 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001834 case ISD::BRCOND:
1835 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001836 // Ensure that libcalls are emitted before a return.
1837 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1838 Tmp1 = LegalizeOp(Tmp1);
1839 LastCALLSEQ_END = DAG.getEntryNode();
1840
Chris Lattner47e92232005-01-18 19:27:06 +00001841 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1842 case Expand: assert(0 && "It's impossible to expand bools");
1843 case Legal:
1844 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1845 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001846 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00001847 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Chris Lattnerf9908172006-11-27 04:39:56 +00001848
1849 // The top bits of the promoted condition are not necessarily zero, ensure
1850 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001851 unsigned BitWidth = Tmp2.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00001852 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001853 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerf9908172006-11-27 04:39:56 +00001854 Tmp2 = DAG.getZeroExtendInReg(Tmp2, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00001855 break;
1856 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00001857 }
Chris Lattner456a93a2006-01-28 07:39:30 +00001858
1859 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001860 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Nate Begeman7cbd5252005-08-16 19:49:35 +00001861
1862 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
1863 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001864 case TargetLowering::Legal: break;
1865 case TargetLowering::Custom:
1866 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001867 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00001868 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001869 case TargetLowering::Expand:
1870 // Expand brcond's setcc into its constituent parts and create a BR_CC
1871 // Node.
1872 if (Tmp2.getOpcode() == ISD::SETCC) {
1873 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1, Tmp2.getOperand(2),
1874 Tmp2.getOperand(0), Tmp2.getOperand(1),
1875 Node->getOperand(2));
1876 } else {
1877 Result = DAG.getNode(ISD::BR_CC, MVT::Other, Tmp1,
1878 DAG.getCondCode(ISD::SETNE), Tmp2,
1879 DAG.getConstant(0, Tmp2.getValueType()),
1880 Node->getOperand(2));
1881 }
1882 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001883 }
1884 break;
1885 case ISD::BR_CC:
1886 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001887 // Ensure that libcalls are emitted before a branch.
1888 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
1889 Tmp1 = LegalizeOp(Tmp1);
Nate Begeman750ac1b2006-02-01 07:19:44 +00001890 Tmp2 = Node->getOperand(2); // LHS
1891 Tmp3 = Node->getOperand(3); // RHS
1892 Tmp4 = Node->getOperand(1); // CC
1893
Evan Cheng7f042682008-10-15 02:05:31 +00001894 LegalizeSetCC(Node->getValueType(0), Tmp2, Tmp3, Tmp4);
Evan Cheng722cb362006-12-18 22:55:34 +00001895 LastCALLSEQ_END = DAG.getEntryNode();
1896
Evan Cheng7f042682008-10-15 02:05:31 +00001897 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00001898 // the LHS is a legal SETCC itself. In this case, we need to compare
1899 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00001900 if (Tmp3.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00001901 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
1902 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00001903 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00001904
1905 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
1906 Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00001907
Chris Lattner181b7a32005-12-17 23:46:46 +00001908 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
1909 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00001910 case TargetLowering::Legal: break;
1911 case TargetLowering::Custom:
1912 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001913 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00001914 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00001915 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00001916 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00001917 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00001918 LoadSDNode *LD = cast<LoadSDNode>(Node);
1919 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
1920 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00001921
Evan Cheng466685d2006-10-09 20:57:25 +00001922 ISD::LoadExtType ExtType = LD->getExtensionType();
1923 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001924 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00001925 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
1926 Tmp3 = Result.getValue(0);
1927 Tmp4 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00001928
Evan Cheng466685d2006-10-09 20:57:25 +00001929 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1930 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001931 case TargetLowering::Legal:
1932 // If this is an unaligned load and the target doesn't support it,
1933 // expand it.
1934 if (!TLI.allowsUnalignedMemoryAccesses()) {
1935 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00001936 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001937 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00001938 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001939 TLI);
1940 Tmp3 = Result.getOperand(0);
1941 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00001942 Tmp3 = LegalizeOp(Tmp3);
1943 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00001944 }
1945 }
1946 break;
Evan Cheng466685d2006-10-09 20:57:25 +00001947 case TargetLowering::Custom:
1948 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001949 if (Tmp1.getNode()) {
Evan Cheng466685d2006-10-09 20:57:25 +00001950 Tmp3 = LegalizeOp(Tmp1);
1951 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00001952 }
Evan Cheng466685d2006-10-09 20:57:25 +00001953 break;
1954 case TargetLowering::Promote: {
1955 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001956 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00001957 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001958 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00001959
1960 Tmp1 = DAG.getLoad(NVT, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00001961 LD->getSrcValueOffset(),
1962 LD->isVolatile(), LD->getAlignment());
Evan Cheng466685d2006-10-09 20:57:25 +00001963 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp1));
1964 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001965 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00001966 }
Evan Cheng466685d2006-10-09 20:57:25 +00001967 }
1968 // Since loads produce two values, make sure to remember that we
1969 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001970 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
1971 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001972 return Op.getResNo() ? Tmp4 : Tmp3;
Evan Cheng466685d2006-10-09 20:57:25 +00001973 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001974 MVT SrcVT = LD->getMemoryVT();
1975 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001976 int SVOffset = LD->getSrcValueOffset();
1977 unsigned Alignment = LD->getAlignment();
1978 bool isVolatile = LD->isVolatile();
1979
Duncan Sands83ec4b62008-06-06 12:08:01 +00001980 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001981 // Some targets pretend to have an i1 loading operation, and actually
1982 // load an i8. This trick is correct for ZEXTLOAD because the top 7
1983 // bits are guaranteed to be zero; it helps the optimizers understand
1984 // that these bits are zero. It is also useful for EXTLOAD, since it
1985 // tells the optimizers that those bits are undefined. It would be
1986 // nice to have an effective generic way of getting these benefits...
1987 // Until such a way is found, don't insist on promoting i1 here.
1988 (SrcVT != MVT::i1 ||
Evan Cheng03294662008-10-14 21:26:46 +00001989 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001990 // Promote to a byte-sized load if not loading an integral number of
1991 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001992 unsigned NewWidth = SrcVT.getStoreSizeInBits();
1993 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00001994 SDValue Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00001995
1996 // The extra bits are guaranteed to be zero, since we stored them that
1997 // way. A zext load from NVT thus automatically gives zext from SrcVT.
1998
1999 ISD::LoadExtType NewExtType =
2000 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2001
2002 Result = DAG.getExtLoad(NewExtType, Node->getValueType(0),
2003 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2004 NVT, isVolatile, Alignment);
2005
2006 Ch = Result.getValue(1); // The chain.
2007
2008 if (ExtType == ISD::SEXTLOAD)
2009 // Having the top bits zero doesn't help when sign extending.
2010 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2011 Result, DAG.getValueType(SrcVT));
2012 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2013 // All the top bits are guaranteed to be zero - inform the optimizers.
2014 Result = DAG.getNode(ISD::AssertZext, Result.getValueType(), Result,
2015 DAG.getValueType(SrcVT));
2016
2017 Tmp1 = LegalizeOp(Result);
2018 Tmp2 = LegalizeOp(Ch);
2019 } else if (SrcWidth & (SrcWidth - 1)) {
2020 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002021 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002022 "Unsupported extload!");
2023 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2024 assert(RoundWidth < SrcWidth);
2025 unsigned ExtraWidth = SrcWidth - RoundWidth;
2026 assert(ExtraWidth < RoundWidth);
2027 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2028 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002029 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2030 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002031 SDValue Lo, Hi, Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002032 unsigned IncrementSize;
2033
2034 if (TLI.isLittleEndian()) {
2035 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2036 // Load the bottom RoundWidth bits.
2037 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2038 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2039 Alignment);
2040
2041 // Load the remaining ExtraWidth bits.
2042 IncrementSize = RoundWidth / 8;
2043 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2044 DAG.getIntPtrConstant(IncrementSize));
2045 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2046 LD->getSrcValue(), SVOffset + IncrementSize,
2047 ExtraVT, isVolatile,
2048 MinAlign(Alignment, IncrementSize));
2049
2050 // Build a factor node to remember that this load is independent of the
2051 // other one.
2052 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2053 Hi.getValue(1));
2054
2055 // Move the top bits to the right place.
2056 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2057 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2058
2059 // Join the hi and lo parts.
2060 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002061 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002062 // Big endian - avoid unaligned loads.
2063 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2064 // Load the top RoundWidth bits.
2065 Hi = DAG.getExtLoad(ExtType, Node->getValueType(0), Tmp1, Tmp2,
2066 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2067 Alignment);
2068
2069 // Load the remaining ExtraWidth bits.
2070 IncrementSize = RoundWidth / 8;
2071 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2072 DAG.getIntPtrConstant(IncrementSize));
2073 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, Node->getValueType(0), Tmp1, Tmp2,
2074 LD->getSrcValue(), SVOffset + IncrementSize,
2075 ExtraVT, isVolatile,
2076 MinAlign(Alignment, IncrementSize));
2077
2078 // Build a factor node to remember that this load is independent of the
2079 // other one.
2080 Ch = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
2081 Hi.getValue(1));
2082
2083 // Move the top bits to the right place.
2084 Hi = DAG.getNode(ISD::SHL, Hi.getValueType(), Hi,
2085 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2086
2087 // Join the hi and lo parts.
2088 Result = DAG.getNode(ISD::OR, Node->getValueType(0), Lo, Hi);
2089 }
2090
2091 Tmp1 = LegalizeOp(Result);
2092 Tmp2 = LegalizeOp(Ch);
2093 } else {
Evan Cheng03294662008-10-14 21:26:46 +00002094 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002095 default: assert(0 && "This action is not supported yet!");
2096 case TargetLowering::Custom:
2097 isCustom = true;
2098 // FALLTHROUGH
2099 case TargetLowering::Legal:
2100 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2101 Tmp1 = Result.getValue(0);
2102 Tmp2 = Result.getValue(1);
2103
2104 if (isCustom) {
2105 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002106 if (Tmp3.getNode()) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002107 Tmp1 = LegalizeOp(Tmp3);
2108 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2109 }
2110 } else {
2111 // If this is an unaligned load and the target doesn't support it,
2112 // expand it.
2113 if (!TLI.allowsUnalignedMemoryAccesses()) {
2114 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002115 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002116 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002117 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002118 TLI);
2119 Tmp1 = Result.getOperand(0);
2120 Tmp2 = Result.getOperand(1);
2121 Tmp1 = LegalizeOp(Tmp1);
2122 Tmp2 = LegalizeOp(Tmp2);
2123 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002124 }
2125 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002126 break;
2127 case TargetLowering::Expand:
2128 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2129 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dan Gohman475871a2008-07-27 21:46:04 +00002130 SDValue Load = DAG.getLoad(SrcVT, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002131 LD->getSrcValueOffset(),
2132 LD->isVolatile(), LD->getAlignment());
2133 Result = DAG.getNode(ISD::FP_EXTEND, Node->getValueType(0), Load);
2134 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2135 Tmp2 = LegalizeOp(Load.getValue(1));
2136 break;
2137 }
2138 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2139 // Turn the unsupported load into an EXTLOAD followed by an explicit
2140 // zero/sign extend inreg.
2141 Result = DAG.getExtLoad(ISD::EXTLOAD, Node->getValueType(0),
2142 Tmp1, Tmp2, LD->getSrcValue(),
2143 LD->getSrcValueOffset(), SrcVT,
2144 LD->isVolatile(), LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00002145 SDValue ValRes;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002146 if (ExtType == ISD::SEXTLOAD)
2147 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
2148 Result, DAG.getValueType(SrcVT));
2149 else
2150 ValRes = DAG.getZeroExtendInReg(Result, SrcVT);
2151 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2152 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002153 break;
2154 }
Evan Cheng466685d2006-10-09 20:57:25 +00002155 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002156
Evan Cheng466685d2006-10-09 20:57:25 +00002157 // Since loads produce two values, make sure to remember that we legalized
2158 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002159 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2160 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002161 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002162 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002163 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002164 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002165 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002166 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002167 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002168 case Legal:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002169 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Nate Begeman5dc897b2005-10-19 00:06:56 +00002170 // 1 -> Hi
2171 Result = DAG.getNode(ISD::SRL, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002172 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002173 TLI.getShiftAmountTy()));
2174 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Result);
2175 } else {
2176 // 0 -> Lo
2177 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0),
2178 Node->getOperand(0));
2179 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002180 break;
2181 case Expand:
2182 // Get both the low and high parts.
2183 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002184 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Nate Begeman5dc897b2005-10-19 00:06:56 +00002185 Result = Tmp2; // 1 -> Hi
2186 else
2187 Result = Tmp1; // 0 -> Lo
2188 break;
2189 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002190 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002191 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002192
2193 case ISD::CopyToReg:
2194 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002195
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002196 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002197 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002198 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002199 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002200 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002201 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002202 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002203 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002204 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002205 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002206 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2207 Tmp3);
2208 } else {
2209 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002210 }
2211
2212 // Since this produces two values, make sure to remember that we legalized
2213 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002214 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2215 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002216 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002217 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002218 break;
2219
2220 case ISD::RET:
2221 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002222
2223 // Ensure that libcalls are emitted before a return.
2224 Tmp1 = DAG.getNode(ISD::TokenFactor, MVT::Other, Tmp1, LastCALLSEQ_END);
2225 Tmp1 = LegalizeOp(Tmp1);
2226 LastCALLSEQ_END = DAG.getEntryNode();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002227
Chris Lattner3e928bb2005-01-07 07:47:09 +00002228 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002229 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002230 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002231 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002232 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002233 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002234 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002235 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002236 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002237 if (!Tmp2.getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002238 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002239 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002240
2241 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002242 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002243 std::swap(Lo, Hi);
2244
Gabor Greifba36cb52008-08-28 21:40:38 +00002245 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00002246 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
2247 else
2248 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002249 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002250 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00002251 SDNode *InVal = Tmp2.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002252 int InIx = Tmp2.getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002253 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2254 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Chris Lattnerf87324e2006-04-11 01:31:51 +00002255
Dan Gohman7f321562007-06-25 16:23:39 +00002256 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002257 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002258 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002259 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002260 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002261 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002262 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002263 } else if (NumElems == 1) {
2264 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002265 Tmp2 = ScalarizeVectorOp(Tmp2);
2266 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002267 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002268
2269 // FIXME: Returns of gcc generic vectors smaller than a legal type
2270 // should be returned in integer registers!
2271
Chris Lattnerf87324e2006-04-11 01:31:51 +00002272 // The scalarized value type may not be legal, e.g. it might require
2273 // promotion or expansion. Relegalize the return.
2274 Result = LegalizeOp(Result);
2275 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002276 // FIXME: Returns of gcc generic vectors larger than a legal vector
2277 // type should be returned by reference!
Dan Gohman475871a2008-07-27 21:46:04 +00002278 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002279 SplitVectorOp(Tmp2, Lo, Hi);
Chris Lattnerfea997a2007-02-01 04:55:59 +00002280 Result = DAG.getNode(ISD::RET, MVT::Other, Tmp1, Lo, Tmp3, Hi,Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002281 Result = LegalizeOp(Result);
2282 }
2283 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002284 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002285 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002286 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002287 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002288 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002289 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002290 }
2291 break;
2292 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002293 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002294 break;
2295 default: { // ret <values>
Dan Gohman475871a2008-07-27 21:46:04 +00002296 SmallVector<SDValue, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002297 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002298 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002299 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2300 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002301 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002302 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002303 break;
2304 case Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002305 SDValue Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002306 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002307 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002308 ExpandOp(Node->getOperand(i), Lo, Hi);
2309 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002310 NewValues.push_back(Node->getOperand(i+1));
Gabor Greifba36cb52008-08-28 21:40:38 +00002311 if (Hi.getNode()) {
Evan Cheng13acce32006-12-11 19:27:14 +00002312 NewValues.push_back(Hi);
2313 NewValues.push_back(Node->getOperand(i+1));
2314 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002315 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002316 }
2317 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002318 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002319 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002320
2321 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002322 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002323 else
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002324 Result = DAG.getNode(ISD::RET, MVT::Other,
2325 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002326 break;
2327 }
2328 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002329
Chris Lattner6862dbc2006-01-29 21:02:23 +00002330 if (Result.getOpcode() == ISD::RET) {
2331 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2332 default: assert(0 && "This action is not supported yet!");
2333 case TargetLowering::Legal: break;
2334 case TargetLowering::Custom:
2335 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002336 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner6862dbc2006-01-29 21:02:23 +00002337 break;
2338 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002339 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002340 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002341 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002342 StoreSDNode *ST = cast<StoreSDNode>(Node);
2343 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2344 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002345 int SVOffset = ST->getSrcValueOffset();
2346 unsigned Alignment = ST->getAlignment();
2347 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002348
Evan Cheng8b2794a2006-10-13 21:14:26 +00002349 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002350 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2351 // FIXME: We shouldn't do this for TargetConstantFP's.
2352 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2353 // to phase ordering between legalized code and the dag combiner. This
2354 // probably means that we need to integrate dag combiner and legalizer
2355 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002356 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002357 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002358 if (CFP->getValueType(0) == MVT::f32 &&
2359 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002360 Tmp3 = DAG.getConstant(CFP->getValueAPF().
Dale Johannesen7111b022008-10-09 18:53:47 +00002361 bitcastToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002362 MVT::i32);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002363 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2364 SVOffset, isVolatile, Alignment);
2365 break;
2366 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002367 // If this target supports 64-bit registers, do a single 64-bit store.
2368 if (getTypeAction(MVT::i64) == Legal) {
Dale Johannesen7111b022008-10-09 18:53:47 +00002369 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002370 zextOrTrunc(64), MVT::i64);
Chris Lattner3cb93512007-10-15 05:46:06 +00002371 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2372 SVOffset, isVolatile, Alignment);
2373 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002374 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002375 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2376 // stores. If the target supports neither 32- nor 64-bits, this
2377 // xform is certainly not worth it.
Dale Johannesen7111b022008-10-09 18:53:47 +00002378 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Dan Gohman475871a2008-07-27 21:46:04 +00002379 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2380 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002381 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002382
2383 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
2384 SVOffset, isVolatile, Alignment);
2385 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002386 DAG.getIntPtrConstant(4));
Chris Lattner3cb93512007-10-15 05:46:06 +00002387 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002388 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002389
2390 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2391 break;
2392 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002393 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002394 }
2395
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002396 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002397 case Legal: {
2398 Tmp3 = LegalizeOp(ST->getValue());
2399 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2400 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002401
Duncan Sands83ec4b62008-06-06 12:08:01 +00002402 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002403 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2404 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002405 case TargetLowering::Legal:
2406 // If this is an unaligned store and the target doesn't support it,
2407 // expand it.
2408 if (!TLI.allowsUnalignedMemoryAccesses()) {
2409 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002410 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002411 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002412 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002413 TLI);
2414 }
2415 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002416 case TargetLowering::Custom:
2417 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002418 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002419 break;
2420 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002421 assert(VT.isVector() && "Unknown legal promote case!");
Evan Cheng8b2794a2006-10-13 21:14:26 +00002422 Tmp3 = DAG.getNode(ISD::BIT_CONVERT,
2423 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
2424 Result = DAG.getStore(Tmp1, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002425 ST->getSrcValue(), SVOffset, isVolatile,
2426 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002427 break;
2428 }
2429 break;
2430 }
2431 case Promote:
2432 // Truncate the value and store the result.
2433 Tmp3 = PromoteOp(ST->getValue());
2434 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002435 SVOffset, ST->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002436 isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002437 break;
2438
2439 case Expand:
2440 unsigned IncrementSize = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002441 SDValue Lo, Hi;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002442
2443 // If this is a vector type, then we have to calculate the increment as
2444 // the product of the element size in bytes, and the number of elements
2445 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002446 if (ST->getValue().getValueType().isVector()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002447 SDNode *InVal = ST->getValue().getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002448 int InIx = ST->getValue().getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002449 MVT InVT = InVal->getValueType(InIx);
2450 unsigned NumElems = InVT.getVectorNumElements();
2451 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002452
Dan Gohman7f321562007-06-25 16:23:39 +00002453 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002454 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002455 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002456 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002457 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002458 Tmp3 = LegalizeOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002459 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002460 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002461 Result = LegalizeOp(Result);
2462 break;
2463 } else if (NumElems == 1) {
2464 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002465 Tmp3 = ScalarizeVectorOp(ST->getValue());
Evan Cheng8b2794a2006-10-13 21:14:26 +00002466 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002467 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002468 // The scalarized value type may not be legal, e.g. it might require
2469 // promotion or expansion. Relegalize the scalar store.
2470 Result = LegalizeOp(Result);
2471 break;
2472 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002473 SplitVectorOp(ST->getValue(), Lo, Hi);
Gabor Greifba36cb52008-08-28 21:40:38 +00002474 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
Duncan Sands83ec4b62008-06-06 12:08:01 +00002475 EVT.getSizeInBits()/8;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002476 }
2477 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002478 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greifba36cb52008-08-28 21:40:38 +00002479 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002480
Richard Pennington4b052dc2008-09-25 16:15:10 +00002481 if (Hi.getNode() && TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002482 std::swap(Lo, Hi);
2483 }
2484
2485 Lo = DAG.getStore(Tmp1, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002486 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002487
Gabor Greifba36cb52008-08-28 21:40:38 +00002488 if (Hi.getNode() == NULL) {
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002489 // Must be int <-> float one-to-one expansion.
2490 Result = Lo;
2491 break;
2492 }
2493
Evan Cheng8b2794a2006-10-13 21:14:26 +00002494 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002495 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002496 assert(isTypeLegal(Tmp2.getValueType()) &&
2497 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002498 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002499 Alignment = MinAlign(Alignment, IncrementSize);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002500 Hi = DAG.getStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002501 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002502 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2503 break;
2504 }
2505 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002506 switch (getTypeAction(ST->getValue().getValueType())) {
2507 case Legal:
2508 Tmp3 = LegalizeOp(ST->getValue());
2509 break;
2510 case Promote:
2511 // We can promote the value, the truncstore will still take care of it.
2512 Tmp3 = PromoteOp(ST->getValue());
2513 break;
2514 case Expand:
2515 // Just store the low part. This may become a non-trunc store, so make
2516 // sure to use getTruncStore, not UpdateNodeOperands below.
2517 ExpandOp(ST->getValue(), Tmp3, Tmp4);
2518 return DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2519 SVOffset, MVT::i8, isVolatile, Alignment);
2520 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002521
Duncan Sands83ec4b62008-06-06 12:08:01 +00002522 MVT StVT = ST->getMemoryVT();
2523 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002524
Duncan Sands83ec4b62008-06-06 12:08:01 +00002525 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002526 // Promote to a byte-sized store with upper bits zero if not
2527 // storing an integral number of bytes. For example, promote
2528 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002529 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Duncan Sands7e857202008-01-22 07:17:34 +00002530 Tmp3 = DAG.getZeroExtendInReg(Tmp3, StVT);
2531 Result = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2532 SVOffset, NVT, isVolatile, Alignment);
2533 } else if (StWidth & (StWidth - 1)) {
2534 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002535 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002536 "Unsupported truncstore!");
2537 unsigned RoundWidth = 1 << Log2_32(StWidth);
2538 assert(RoundWidth < StWidth);
2539 unsigned ExtraWidth = StWidth - RoundWidth;
2540 assert(ExtraWidth < RoundWidth);
2541 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2542 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002543 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2544 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002545 SDValue Lo, Hi;
Duncan Sands7e857202008-01-22 07:17:34 +00002546 unsigned IncrementSize;
2547
2548 if (TLI.isLittleEndian()) {
2549 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2550 // Store the bottom RoundWidth bits.
2551 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2552 SVOffset, RoundVT,
2553 isVolatile, Alignment);
2554
2555 // Store the remaining ExtraWidth bits.
2556 IncrementSize = RoundWidth / 8;
2557 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2558 DAG.getIntPtrConstant(IncrementSize));
2559 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2560 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2561 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(),
2562 SVOffset + IncrementSize, ExtraVT, isVolatile,
2563 MinAlign(Alignment, IncrementSize));
2564 } else {
2565 // Big endian - avoid unaligned stores.
2566 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2567 // Store the top RoundWidth bits.
2568 Hi = DAG.getNode(ISD::SRL, Tmp3.getValueType(), Tmp3,
2569 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2570 Hi = DAG.getTruncStore(Tmp1, Hi, Tmp2, ST->getSrcValue(), SVOffset,
2571 RoundVT, isVolatile, Alignment);
2572
2573 // Store the remaining ExtraWidth bits.
2574 IncrementSize = RoundWidth / 8;
2575 Tmp2 = DAG.getNode(ISD::ADD, Tmp2.getValueType(), Tmp2,
2576 DAG.getIntPtrConstant(IncrementSize));
2577 Lo = DAG.getTruncStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(),
2578 SVOffset + IncrementSize, ExtraVT, isVolatile,
2579 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002580 }
Duncan Sands7e857202008-01-22 07:17:34 +00002581
2582 // The order of the stores doesn't matter.
2583 Result = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo, Hi);
2584 } else {
2585 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2586 Tmp2 != ST->getBasePtr())
2587 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2588 ST->getOffset());
2589
2590 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2591 default: assert(0 && "This action is not supported yet!");
2592 case TargetLowering::Legal:
2593 // If this is an unaligned store and the target doesn't support it,
2594 // expand it.
2595 if (!TLI.allowsUnalignedMemoryAccesses()) {
2596 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002597 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002598 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002599 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands7e857202008-01-22 07:17:34 +00002600 TLI);
2601 }
2602 break;
2603 case TargetLowering::Custom:
2604 Result = TLI.LowerOperation(Result, DAG);
2605 break;
2606 case Expand:
2607 // TRUNCSTORE:i16 i32 -> STORE i16
2608 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
2609 Tmp3 = DAG.getNode(ISD::TRUNCATE, StVT, Tmp3);
2610 Result = DAG.getStore(Tmp1, Tmp3, Tmp2, ST->getSrcValue(), SVOffset,
2611 isVolatile, Alignment);
2612 break;
2613 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002614 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002615 }
2616 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002617 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002618 case ISD::PCMARKER:
2619 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002620 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002621 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002622 case ISD::STACKSAVE:
2623 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002624 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2625 Tmp1 = Result.getValue(0);
2626 Tmp2 = Result.getValue(1);
Chris Lattner456a93a2006-01-28 07:39:30 +00002627
Chris Lattner140d53c2006-01-13 02:50:02 +00002628 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2629 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002630 case TargetLowering::Legal: break;
2631 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002632 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002633 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002634 Tmp1 = LegalizeOp(Tmp3);
2635 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002636 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002637 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002638 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002639 // Expand to CopyFromReg if the target set
2640 // StackPointerRegisterToSaveRestore.
2641 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002642 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002643 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002644 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002645 } else {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002646 Tmp1 = DAG.getNode(ISD::UNDEF, Node->getValueType(0));
2647 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002648 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002649 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002650 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002651
2652 // Since stacksave produce two values, make sure to remember that we
2653 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002654 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2655 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002656 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002657
Chris Lattner140d53c2006-01-13 02:50:02 +00002658 case ISD::STACKRESTORE:
2659 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2660 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002661 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner140d53c2006-01-13 02:50:02 +00002662
2663 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2664 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002665 case TargetLowering::Legal: break;
2666 case TargetLowering::Custom:
2667 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002668 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002669 break;
2670 case TargetLowering::Expand:
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002671 // Expand to CopyToReg if the target set
2672 // StackPointerRegisterToSaveRestore.
2673 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
2674 Result = DAG.getCopyToReg(Tmp1, SP, Tmp2);
2675 } else {
2676 Result = Tmp1;
2677 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002678 break;
2679 }
2680 break;
2681
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002682 case ISD::READCYCLECOUNTER:
2683 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002684 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002685 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2686 Node->getValueType(0))) {
2687 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002688 case TargetLowering::Legal:
2689 Tmp1 = Result.getValue(0);
2690 Tmp2 = Result.getValue(1);
2691 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002692 case TargetLowering::Custom:
2693 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002694 Tmp1 = LegalizeOp(Result.getValue(0));
2695 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002696 break;
2697 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002698
2699 // Since rdcc produce two values, make sure to remember that we legalized
2700 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002701 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2702 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002703 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002704
Chris Lattner2ee743f2005-01-14 22:08:15 +00002705 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002706 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2707 case Expand: assert(0 && "It's impossible to expand bools");
2708 case Legal:
2709 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2710 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002711 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002712 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002713 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002714 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002715 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002716 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Chris Lattnerb6c80602006-11-28 01:03:30 +00002717 Tmp1 = DAG.getZeroExtendInReg(Tmp1, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002718 break;
2719 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002720 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002721 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002722 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002723
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002724 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002725
Nate Begemanb942a3d2005-08-23 04:29:48 +00002726 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002727 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002728 case TargetLowering::Legal: break;
2729 case TargetLowering::Custom: {
2730 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002731 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002732 break;
2733 }
Nate Begeman9373a812005-08-10 20:51:12 +00002734 case TargetLowering::Expand:
2735 if (Tmp1.getOpcode() == ISD::SETCC) {
2736 Result = DAG.getSelectCC(Tmp1.getOperand(0), Tmp1.getOperand(1),
2737 Tmp2, Tmp3,
2738 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2739 } else {
2740 Result = DAG.getSelectCC(Tmp1,
2741 DAG.getConstant(0, Tmp1.getValueType()),
2742 Tmp2, Tmp3, ISD::SETNE);
2743 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002744 break;
2745 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002746 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002747 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2748 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002749 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002750 ExtOp = ISD::BIT_CONVERT;
2751 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002752 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002753 ExtOp = ISD::ANY_EXTEND;
2754 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002755 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002756 ExtOp = ISD::FP_EXTEND;
2757 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002758 }
2759 // Promote each of the values to the new type.
2760 Tmp2 = DAG.getNode(ExtOp, NVT, Tmp2);
2761 Tmp3 = DAG.getNode(ExtOp, NVT, Tmp3);
2762 // Perform the larger operation, then round down.
2763 Result = DAG.getNode(ISD::SELECT, NVT, Tmp1, Tmp2,Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002764 if (TruncOp != ISD::FP_ROUND)
2765 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result);
2766 else
2767 Result = DAG.getNode(TruncOp, Node->getValueType(0), Result,
2768 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002769 break;
2770 }
2771 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002772 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002773 case ISD::SELECT_CC: {
2774 Tmp1 = Node->getOperand(0); // LHS
2775 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002776 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2777 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman475871a2008-07-27 21:46:04 +00002778 SDValue CC = Node->getOperand(4);
Nate Begeman9373a812005-08-10 20:51:12 +00002779
Evan Cheng7f042682008-10-15 02:05:31 +00002780 LegalizeSetCC(Node->getValueType(0), Tmp1, Tmp2, CC);
Nate Begeman750ac1b2006-02-01 07:19:44 +00002781
Evan Cheng7f042682008-10-15 02:05:31 +00002782 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002783 // the LHS is a legal SETCC itself. In this case, we need to compare
2784 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00002785 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002786 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
2787 CC = DAG.getCondCode(ISD::SETNE);
2788 }
2789 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
2790
2791 // Everything is legal, see if we should expand this op or something.
2792 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
2793 default: assert(0 && "This action is not supported yet!");
2794 case TargetLowering::Legal: break;
2795 case TargetLowering::Custom:
2796 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002797 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00002798 break;
Nate Begeman9373a812005-08-10 20:51:12 +00002799 }
2800 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002801 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002802 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00002803 Tmp1 = Node->getOperand(0);
2804 Tmp2 = Node->getOperand(1);
2805 Tmp3 = Node->getOperand(2);
Evan Cheng7f042682008-10-15 02:05:31 +00002806 LegalizeSetCC(Node->getValueType(0), Tmp1, Tmp2, Tmp3);
Nate Begeman750ac1b2006-02-01 07:19:44 +00002807
2808 // If we had to Expand the SetCC operands into a SELECT node, then it may
2809 // not always be possible to return a true LHS & RHS. In this case, just
2810 // return the value we legalized, returned in the LHS
Gabor Greifba36cb52008-08-28 21:40:38 +00002811 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002812 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002813 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002814 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002815
Chris Lattner73e142f2006-01-30 22:43:50 +00002816 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002817 default: assert(0 && "Cannot handle this action for SETCC yet!");
2818 case TargetLowering::Custom:
2819 isCustom = true;
2820 // FALLTHROUGH.
2821 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00002822 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00002823 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00002824 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002825 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00002826 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002827 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002828 case TargetLowering::Promote: {
2829 // First step, figure out the appropriate operation to use.
2830 // Allow SETCC to not be supported for all legal data types
2831 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00002832 MVT NewInTy = Node->getOperand(0).getValueType();
2833 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00002834
2835 // Scan for the appropriate larger type to use.
2836 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002837 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00002838
Duncan Sands83ec4b62008-06-06 12:08:01 +00002839 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002840 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002841 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00002842 "Fell off of the edge of the floating point world");
2843
2844 // If the target supports SETCC of this type, use it.
Chris Lattner1ccf26a2005-12-22 05:23:45 +00002845 if (TLI.isOperationLegal(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00002846 break;
2847 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00002848 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00002849 assert(0 && "Cannot promote Legal Integer SETCC yet");
2850 else {
2851 Tmp1 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp1);
2852 Tmp2 = DAG.getNode(ISD::FP_EXTEND, NewInTy, Tmp2);
2853 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002854 Tmp1 = LegalizeOp(Tmp1);
2855 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00002856 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00002857 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00002858 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00002859 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00002860 case TargetLowering::Expand:
2861 // Expand a setcc node into a select_cc of the same condition, lhs, and
2862 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00002863 MVT VT = Node->getValueType(0);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002864 Result = DAG.getNode(ISD::SELECT_CC, VT, Tmp1, Tmp2,
2865 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00002866 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00002867 break;
2868 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002869 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00002870 case ISD::VSETCC: {
2871 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
2872 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman475871a2008-07-27 21:46:04 +00002873 SDValue CC = Node->getOperand(2);
Nate Begemanb43e9c12008-05-12 19:40:03 +00002874
2875 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
2876
2877 // Everything is legal, see if we should expand this op or something.
2878 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
2879 default: assert(0 && "This action is not supported yet!");
2880 case TargetLowering::Legal: break;
2881 case TargetLowering::Custom:
2882 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002883 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanb43e9c12008-05-12 19:40:03 +00002884 break;
2885 }
2886 break;
2887 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00002888
Chris Lattner5b359c62005-04-02 04:00:59 +00002889 case ISD::SHL_PARTS:
2890 case ISD::SRA_PARTS:
2891 case ISD::SRL_PARTS: {
Dan Gohman475871a2008-07-27 21:46:04 +00002892 SmallVector<SDValue, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00002893 bool Changed = false;
2894 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
2895 Ops.push_back(LegalizeOp(Node->getOperand(i)));
2896 Changed |= Ops.back() != Node->getOperand(i);
2897 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002898 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002899 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00002900
Evan Cheng05a2d562006-01-09 18:31:59 +00002901 switch (TLI.getOperationAction(Node->getOpcode(),
2902 Node->getValueType(0))) {
2903 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002904 case TargetLowering::Legal: break;
2905 case TargetLowering::Custom:
2906 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002907 if (Tmp1.getNode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002908 SDValue Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00002909 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002910 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman475871a2008-07-27 21:46:04 +00002911 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002912 if (i == Op.getResNo())
Evan Cheng12f22742006-01-19 04:54:52 +00002913 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00002914 }
Gabor Greifba36cb52008-08-28 21:40:38 +00002915 assert(RetVal.getNode() && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00002916 return RetVal;
2917 }
Evan Cheng05a2d562006-01-09 18:31:59 +00002918 break;
2919 }
2920
Chris Lattner2c8086f2005-04-02 05:00:07 +00002921 // Since these produce multiple values, make sure to remember that we
2922 // legalized all of them.
2923 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00002924 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00002925 return Result.getValue(Op.getResNo());
Chris Lattner84f67882005-01-20 18:52:28 +00002926 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00002927
2928 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00002929 case ISD::ADD:
2930 case ISD::SUB:
2931 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00002932 case ISD::MULHS:
2933 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002934 case ISD::UDIV:
2935 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002936 case ISD::AND:
2937 case ISD::OR:
2938 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00002939 case ISD::SHL:
2940 case ISD::SRL:
2941 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00002942 case ISD::FADD:
2943 case ISD::FSUB:
2944 case ISD::FMUL:
2945 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00002946 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00002947 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Andrew Lenharthf2eb1392005-07-05 19:52:39 +00002948 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2949 case Expand: assert(0 && "Not possible");
2950 case Legal:
2951 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
2952 break;
2953 case Promote:
2954 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
2955 break;
2956 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00002957
2958 if ((Node->getOpcode() == ISD::SHL ||
2959 Node->getOpcode() == ISD::SRL ||
2960 Node->getOpcode() == ISD::SRA) &&
2961 !Node->getValueType(0).isVector()) {
2962 if (TLI.getShiftAmountTy().bitsLT(Tmp2.getValueType()))
2963 Tmp2 = DAG.getNode(ISD::TRUNCATE, TLI.getShiftAmountTy(), Tmp2);
2964 else if (TLI.getShiftAmountTy().bitsGT(Tmp2.getValueType()))
2965 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, TLI.getShiftAmountTy(), Tmp2);
2966 }
2967
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002968 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00002969
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00002970 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002971 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00002972 case TargetLowering::Legal: break;
2973 case TargetLowering::Custom:
2974 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002975 if (Tmp1.getNode()) {
Nate Begeman5bc1ea02008-07-29 15:49:41 +00002976 Result = Tmp1;
2977 break;
Nate Begeman24dc3462008-07-29 19:07:27 +00002978 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00002979 // Fall through if the custom lower can't deal with the operation
Chris Lattnerbc70cf82006-04-02 03:57:31 +00002980 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002981 MVT VT = Op.getValueType();
Dan Gohman525178c2007-10-08 18:33:35 +00002982
2983 // See if multiply or divide can be lowered using two-result operations.
2984 SDVTList VTs = DAG.getVTList(VT, VT);
2985 if (Node->getOpcode() == ISD::MUL) {
2986 // We just need the low half of the multiply; try both the signed
2987 // and unsigned forms. If the target supports both SMUL_LOHI and
2988 // UMUL_LOHI, form a preference by checking which forms of plain
2989 // MULH it supports.
2990 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, VT);
2991 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, VT);
2992 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, VT);
2993 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, VT);
2994 unsigned OpToUse = 0;
2995 if (HasSMUL_LOHI && !HasMULHS) {
2996 OpToUse = ISD::SMUL_LOHI;
2997 } else if (HasUMUL_LOHI && !HasMULHU) {
2998 OpToUse = ISD::UMUL_LOHI;
2999 } else if (HasSMUL_LOHI) {
3000 OpToUse = ISD::SMUL_LOHI;
3001 } else if (HasUMUL_LOHI) {
3002 OpToUse = ISD::UMUL_LOHI;
3003 }
3004 if (OpToUse) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003005 Result = SDValue(DAG.getNode(OpToUse, VTs, Tmp1, Tmp2).getNode(), 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003006 break;
3007 }
3008 }
3009 if (Node->getOpcode() == ISD::MULHS &&
3010 TLI.isOperationLegal(ISD::SMUL_LOHI, VT)) {
Chris Lattner31d71612008-10-04 21:27:46 +00003011 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, VTs, Tmp1, Tmp2).getNode(),
3012 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003013 break;
3014 }
3015 if (Node->getOpcode() == ISD::MULHU &&
3016 TLI.isOperationLegal(ISD::UMUL_LOHI, VT)) {
Chris Lattner31d71612008-10-04 21:27:46 +00003017 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, VTs, Tmp1, Tmp2).getNode(),
3018 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003019 break;
3020 }
3021 if (Node->getOpcode() == ISD::SDIV &&
3022 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
Chris Lattner31d71612008-10-04 21:27:46 +00003023 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).getNode(),
3024 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003025 break;
3026 }
3027 if (Node->getOpcode() == ISD::UDIV &&
3028 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
Chris Lattner31d71612008-10-04 21:27:46 +00003029 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).getNode(),
3030 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003031 break;
3032 }
3033
Dan Gohman82669522007-10-11 23:57:53 +00003034 // Check to see if we have a libcall for this operator.
3035 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3036 bool isSigned = false;
3037 switch (Node->getOpcode()) {
3038 case ISD::UDIV:
3039 case ISD::SDIV:
3040 if (VT == MVT::i32) {
3041 LC = Node->getOpcode() == ISD::UDIV
Evan Cheng56966222007-01-12 02:11:51 +00003042 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003043 isSigned = Node->getOpcode() == ISD::SDIV;
3044 }
3045 break;
Chris Lattner31d71612008-10-04 21:27:46 +00003046 case ISD::MUL:
3047 if (VT == MVT::i32)
3048 LC = RTLIB::MUL_I32;
3049 break;
Dan Gohman82669522007-10-11 23:57:53 +00003050 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003051 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3052 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003053 break;
3054 default: break;
3055 }
3056 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +00003057 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003058 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003059 break;
3060 }
3061
Duncan Sands83ec4b62008-06-06 12:08:01 +00003062 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003063 "Cannot expand this binary operator!");
3064 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003065 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003066 break;
3067 }
Evan Chengcc987612006-04-12 21:20:24 +00003068 case TargetLowering::Promote: {
3069 switch (Node->getOpcode()) {
3070 default: assert(0 && "Do not know how to promote this BinOp!");
3071 case ISD::AND:
3072 case ISD::OR:
3073 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003074 MVT OVT = Node->getValueType(0);
3075 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3076 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003077 // Bit convert each of the values to the new type.
3078 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp1);
3079 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, NVT, Tmp2);
3080 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
3081 // Bit convert the result back the original type.
3082 Result = DAG.getNode(ISD::BIT_CONVERT, OVT, Result);
3083 break;
3084 }
3085 }
3086 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003087 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003088 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003089
Dan Gohmane14ea862007-10-05 14:17:22 +00003090 case ISD::SMUL_LOHI:
3091 case ISD::UMUL_LOHI:
3092 case ISD::SDIVREM:
3093 case ISD::UDIVREM:
3094 // These nodes will only be produced by target-specific lowering, so
3095 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003096 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003097 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003098
3099 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3100 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3101 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003102 break;
3103
Chris Lattnera09f8482006-03-05 05:09:38 +00003104 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3105 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3106 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3107 case Expand: assert(0 && "Not possible");
3108 case Legal:
3109 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3110 break;
3111 case Promote:
3112 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3113 break;
3114 }
3115
3116 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3117
3118 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3119 default: assert(0 && "Operation not supported");
3120 case TargetLowering::Custom:
3121 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003122 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003123 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003124 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003125 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003126 // If this target supports fabs/fneg natively and select is cheap,
3127 // do this efficiently.
3128 if (!TLI.isSelectExpensive() &&
3129 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3130 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003131 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003132 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003133 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003134 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003135 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dan Gohman475871a2008-07-27 21:46:04 +00003136 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, IVT, Tmp2);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003137 SignBit = DAG.getSetCC(TLI.getSetCCResultType(SignBit),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003138 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3139 // Get the absolute value of the result.
Dan Gohman475871a2008-07-27 21:46:04 +00003140 SDValue AbsVal = DAG.getNode(ISD::FABS, Tmp1.getValueType(), Tmp1);
Chris Lattner8f4191d2006-03-13 06:08:38 +00003141 // Select between the nabs and abs value based on the sign bit of
3142 // the input.
3143 Result = DAG.getNode(ISD::SELECT, AbsVal.getValueType(), SignBit,
3144 DAG.getNode(ISD::FNEG, AbsVal.getValueType(),
3145 AbsVal),
3146 AbsVal);
3147 Result = LegalizeOp(Result);
3148 break;
3149 }
3150
3151 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003152 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003153 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3154 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
3155 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0), Result);
3156 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003157 break;
3158 }
Evan Cheng912095b2007-01-04 21:56:39 +00003159 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003160 break;
3161
Nate Begeman551bf3f2006-02-17 05:43:56 +00003162 case ISD::ADDC:
3163 case ISD::SUBC:
3164 Tmp1 = LegalizeOp(Node->getOperand(0));
3165 Tmp2 = LegalizeOp(Node->getOperand(1));
3166 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
3167 // Since this produces two values, make sure to remember that we legalized
3168 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003169 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
3170 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Nate Begeman551bf3f2006-02-17 05:43:56 +00003171 return Result;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003172
Nate Begeman551bf3f2006-02-17 05:43:56 +00003173 case ISD::ADDE:
3174 case ISD::SUBE:
3175 Tmp1 = LegalizeOp(Node->getOperand(0));
3176 Tmp2 = LegalizeOp(Node->getOperand(1));
3177 Tmp3 = LegalizeOp(Node->getOperand(2));
3178 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
3179 // Since this produces two values, make sure to remember that we legalized
3180 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003181 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
3182 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Nate Begeman551bf3f2006-02-17 05:43:56 +00003183 return Result;
Nate Begeman551bf3f2006-02-17 05:43:56 +00003184
Nate Begeman419f8b62005-10-18 00:27:41 +00003185 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003186 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003187 // TODO: handle the case where the Lo and Hi operands are not of legal type
3188 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3189 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3190 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003191 case TargetLowering::Promote:
3192 case TargetLowering::Custom:
3193 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003194 case TargetLowering::Legal:
3195 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
3196 Result = DAG.getNode(ISD::BUILD_PAIR, PairTy, Tmp1, Tmp2);
3197 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003198 case TargetLowering::Expand:
3199 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, PairTy, Tmp1);
3200 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, PairTy, Tmp2);
3201 Tmp2 = DAG.getNode(ISD::SHL, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003202 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003203 TLI.getShiftAmountTy()));
Chris Lattner456a93a2006-01-28 07:39:30 +00003204 Result = DAG.getNode(ISD::OR, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003205 break;
3206 }
3207 break;
3208 }
3209
Nate Begemanc105e192005-04-06 00:23:54 +00003210 case ISD::UREM:
3211 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003212 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003213 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3214 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003215
Nate Begemanc105e192005-04-06 00:23:54 +00003216 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003217 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3218 case TargetLowering::Custom:
3219 isCustom = true;
3220 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003221 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003222 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003223 if (isCustom) {
3224 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003225 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003226 }
Nate Begemanc105e192005-04-06 00:23:54 +00003227 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003228 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003229 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003230 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003231 MVT VT = Node->getValueType(0);
Dan Gohman525178c2007-10-08 18:33:35 +00003232
3233 // See if remainder can be lowered using two-result operations.
3234 SDVTList VTs = DAG.getVTList(VT, VT);
3235 if (Node->getOpcode() == ISD::SREM &&
3236 TLI.isOperationLegal(ISD::SDIVREM, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003237 Result = SDValue(DAG.getNode(ISD::SDIVREM, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003238 break;
3239 }
3240 if (Node->getOpcode() == ISD::UREM &&
3241 TLI.isOperationLegal(ISD::UDIVREM, VT)) {
Gabor Greifba36cb52008-08-28 21:40:38 +00003242 Result = SDValue(DAG.getNode(ISD::UDIVREM, VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003243 break;
3244 }
3245
Duncan Sands83ec4b62008-06-06 12:08:01 +00003246 if (VT.isInteger()) {
Dan Gohman525178c2007-10-08 18:33:35 +00003247 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003248 TargetLowering::Legal) {
3249 // X % Y -> X-X/Y*Y
Evan Cheng6b5578f2006-09-18 23:28:33 +00003250 Result = DAG.getNode(DivOpc, VT, Tmp1, Tmp2);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003251 Result = DAG.getNode(ISD::MUL, VT, Result, Tmp2);
3252 Result = DAG.getNode(ISD::SUB, VT, Tmp1, Result);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003253 } else if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003254 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003255 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003256 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003257 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003258 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3259 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman475871a2008-07-27 21:46:04 +00003260 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003261 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003262 }
Dan Gohman0d974262007-11-06 22:11:54 +00003263 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003264 assert(VT.isFloatingPoint() &&
Dan Gohman0d974262007-11-06 22:11:54 +00003265 "remainder op must have integer or floating-point type");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003266 if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003267 Result = LegalizeOp(UnrollVectorOp(Op));
3268 } else {
3269 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003270 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3271 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003272 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003273 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003274 }
Nate Begemanc105e192005-04-06 00:23:54 +00003275 }
3276 break;
3277 }
Dan Gohman525178c2007-10-08 18:33:35 +00003278 }
Nate Begemanc105e192005-04-06 00:23:54 +00003279 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003280 case ISD::VAARG: {
3281 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3282 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3283
Duncan Sands83ec4b62008-06-06 12:08:01 +00003284 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003285 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3286 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003287 case TargetLowering::Custom:
3288 isCustom = true;
3289 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003290 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003291 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3292 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003293 Tmp1 = Result.getValue(1);
3294
3295 if (isCustom) {
3296 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003297 if (Tmp2.getNode()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003298 Result = LegalizeOp(Tmp2);
3299 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3300 }
3301 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003302 break;
3303 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003304 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman475871a2008-07-27 21:46:04 +00003305 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003306 // Increment the pointer, VAList, to the next vaarg
3307 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003308 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begemanacc398c2006-01-25 18:21:52 +00003309 TLI.getPointerTy()));
3310 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00003311 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003312 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00003313 Result = DAG.getLoad(VT, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003314 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003315 Result = LegalizeOp(Result);
3316 break;
3317 }
3318 }
3319 // Since VAARG produces two values, make sure to remember that we
3320 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003321 AddLegalizedOperand(SDValue(Node, 0), Result);
3322 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003323 return Op.getResNo() ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003324 }
3325
3326 case ISD::VACOPY:
3327 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3328 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3329 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3330
3331 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3332 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003333 case TargetLowering::Custom:
3334 isCustom = true;
3335 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003336 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003337 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3338 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003339 if (isCustom) {
3340 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003341 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003342 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003343 break;
3344 case TargetLowering::Expand:
3345 // This defaults to loading a pointer from the input and storing it to the
3346 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003347 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3348 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dan Gohman499c1bd2008-04-17 02:09:26 +00003349 Tmp4 = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp3, VS, 0);
3350 Result = DAG.getStore(Tmp4.getValue(1), Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003351 break;
3352 }
3353 break;
3354
3355 case ISD::VAEND:
3356 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3357 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3358
3359 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3360 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003361 case TargetLowering::Custom:
3362 isCustom = true;
3363 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003364 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003365 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003366 if (isCustom) {
3367 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003368 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003369 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003370 break;
3371 case TargetLowering::Expand:
3372 Result = Tmp1; // Default to a no-op, return the chain
3373 break;
3374 }
3375 break;
3376
3377 case ISD::VASTART:
3378 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3379 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3380
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003381 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3382
Nate Begemanacc398c2006-01-25 18:21:52 +00003383 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3384 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003385 case TargetLowering::Legal: break;
3386 case TargetLowering::Custom:
3387 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003388 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003389 break;
3390 }
3391 break;
3392
Nate Begeman35ef9132006-01-11 21:21:00 +00003393 case ISD::ROTL:
3394 case ISD::ROTR:
3395 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3396 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003397 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003398 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3399 default:
3400 assert(0 && "ROTL/ROTR legalize operation not supported");
3401 break;
3402 case TargetLowering::Legal:
3403 break;
3404 case TargetLowering::Custom:
3405 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003406 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelc9dc1142007-04-02 21:36:32 +00003407 break;
3408 case TargetLowering::Promote:
3409 assert(0 && "Do not know how to promote ROTL/ROTR");
3410 break;
3411 case TargetLowering::Expand:
3412 assert(0 && "Do not know how to expand ROTL/ROTR");
3413 break;
3414 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003415 break;
3416
Nate Begemand88fc032006-01-14 03:14:10 +00003417 case ISD::BSWAP:
3418 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3419 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003420 case TargetLowering::Custom:
3421 assert(0 && "Cannot custom legalize this yet!");
3422 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003423 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003424 break;
3425 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003426 MVT OVT = Tmp1.getValueType();
3427 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3428 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003429
Chris Lattner456a93a2006-01-28 07:39:30 +00003430 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3431 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
3432 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
3433 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3434 break;
3435 }
3436 case TargetLowering::Expand:
3437 Result = ExpandBSWAP(Tmp1);
3438 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003439 }
3440 break;
3441
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003442 case ISD::CTPOP:
3443 case ISD::CTTZ:
3444 case ISD::CTLZ:
3445 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3446 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003447 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003448 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003449 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003450 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003451 TargetLowering::Custom) {
3452 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003453 if (Tmp1.getNode()) {
Scott Michel335f4f72007-08-02 02:22:46 +00003454 Result = Tmp1;
3455 }
Scott Michel910b66d2007-07-30 21:00:31 +00003456 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003457 break;
3458 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003459 MVT OVT = Tmp1.getValueType();
3460 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003461
3462 // Zero extend the argument.
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003463 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
3464 // Perform the larger operation, then subtract if needed.
3465 Tmp1 = DAG.getNode(Node->getOpcode(), Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003466 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003467 case ISD::CTPOP:
3468 Result = Tmp1;
3469 break;
3470 case ISD::CTTZ:
3471 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00003472 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003473 DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003474 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00003475 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003476 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003477 break;
3478 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003479 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00003480 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003481 DAG.getConstant(NVT.getSizeInBits() -
3482 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003483 break;
3484 }
3485 break;
3486 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003487 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003488 Result = ExpandBitCount(Node->getOpcode(), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003489 break;
3490 }
3491 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003492
Chris Lattner2c8086f2005-04-02 05:00:07 +00003493 // Unary operators
3494 case ISD::FABS:
3495 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003496 case ISD::FSQRT:
3497 case ISD::FSIN:
3498 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003499 case ISD::FLOG:
3500 case ISD::FLOG2:
3501 case ISD::FLOG10:
3502 case ISD::FEXP:
3503 case ISD::FEXP2:
Dan Gohman509e84f2008-08-21 17:55:02 +00003504 case ISD::FTRUNC:
3505 case ISD::FFLOOR:
3506 case ISD::FCEIL:
3507 case ISD::FRINT:
3508 case ISD::FNEARBYINT:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003509 Tmp1 = LegalizeOp(Node->getOperand(0));
3510 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003511 case TargetLowering::Promote:
3512 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003513 isCustom = true;
3514 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003515 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003516 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003517 if (isCustom) {
3518 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003519 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng59ad7812006-01-31 18:14:25 +00003520 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003521 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003522 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003523 switch (Node->getOpcode()) {
3524 default: assert(0 && "Unreachable!");
3525 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003526 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3527 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00003528 Result = DAG.getNode(ISD::FSUB, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003529 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003530 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003531 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003532 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003533 Tmp2 = DAG.getConstantFP(0.0, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003534 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00003535 ISD::SETUGT);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003536 Tmp3 = DAG.getNode(ISD::FNEG, VT, Tmp1);
3537 Result = DAG.getNode(ISD::SELECT, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003538 break;
3539 }
Evan Cheng9d24ac52008-09-09 23:35:53 +00003540 case ISD::FSQRT:
3541 case ISD::FSIN:
3542 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003543 case ISD::FLOG:
3544 case ISD::FLOG2:
3545 case ISD::FLOG10:
3546 case ISD::FEXP:
3547 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003548 case ISD::FTRUNC:
3549 case ISD::FFLOOR:
3550 case ISD::FCEIL:
3551 case ISD::FRINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00003552 case ISD::FNEARBYINT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003553 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003554
3555 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003556 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003557 Result = LegalizeOp(UnrollVectorOp(Op));
3558 break;
3559 }
3560
Evan Cheng56966222007-01-12 02:11:51 +00003561 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003562 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003563 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003564 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3565 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003566 break;
3567 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003568 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3569 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003570 break;
3571 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003572 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3573 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003574 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003575 case ISD::FLOG:
3576 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3577 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3578 break;
3579 case ISD::FLOG2:
3580 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3581 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3582 break;
3583 case ISD::FLOG10:
3584 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3585 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3586 break;
3587 case ISD::FEXP:
3588 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3589 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3590 break;
3591 case ISD::FEXP2:
3592 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3593 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3594 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003595 case ISD::FTRUNC:
3596 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3597 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3598 break;
3599 case ISD::FFLOOR:
3600 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3601 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3602 break;
3603 case ISD::FCEIL:
3604 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3605 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3606 break;
3607 case ISD::FRINT:
3608 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3609 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3610 break;
3611 case ISD::FNEARBYINT:
3612 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3613 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3614 break;
Evan Cheng9d24ac52008-09-09 23:35:53 +00003615 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003616 default: assert(0 && "Unreachable!");
3617 }
Dan Gohman475871a2008-07-27 21:46:04 +00003618 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003619 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003620 break;
3621 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003622 }
3623 break;
3624 }
3625 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003626 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003627 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003628
3629 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003630 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003631 Result = LegalizeOp(UnrollVectorOp(Op));
3632 break;
3633 }
3634
3635 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003636 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3637 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003638 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003639 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003640 break;
3641 }
Chris Lattner35481892005-12-23 00:16:34 +00003642 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003643 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003644 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3645 Node->getValueType(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003646 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003647 // The input has to be a vector type, we have to either scalarize it, pack
3648 // it, or convert it based on whether the input vector type is legal.
Gabor Greifba36cb52008-08-28 21:40:38 +00003649 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00003650 int InIx = Node->getOperand(0).getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003651 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3652 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Dan Gohman7f321562007-06-25 16:23:39 +00003653
3654 // Figure out if there is a simple type corresponding to this Vector
3655 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003656 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00003657 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003658 // Turn this into a bit convert of the vector input.
Dan Gohman7f321562007-06-25 16:23:39 +00003659 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3660 LegalizeOp(Node->getOperand(0)));
3661 break;
3662 } else if (NumElems == 1) {
3663 // Turn this into a bit convert of the scalar input.
3664 Result = DAG.getNode(ISD::BIT_CONVERT, Node->getValueType(0),
3665 ScalarizeVectorOp(Node->getOperand(0)));
3666 break;
3667 } else {
3668 // FIXME: UNIMP! Store then reload
3669 assert(0 && "Cast from unsupported vector type not implemented yet!");
3670 }
Chris Lattner67993f72006-01-23 07:30:46 +00003671 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003672 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3673 Node->getOperand(0).getValueType())) {
3674 default: assert(0 && "Unknown operation action!");
3675 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003676 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
3677 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00003678 break;
3679 case TargetLowering::Legal:
3680 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003681 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003682 break;
3683 }
3684 }
3685 break;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00003686
Chris Lattner2c8086f2005-04-02 05:00:07 +00003687 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00003688 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003689 case ISD::UINT_TO_FP: {
3690 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman7f8613e2008-08-14 20:04:46 +00003691 Result = LegalizeINT_TO_FP(Result, isSigned,
3692 Node->getValueType(0), Node->getOperand(0));
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003693 break;
3694 }
3695 case ISD::TRUNCATE:
3696 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3697 case Legal:
3698 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003699 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003700 break;
3701 case Expand:
3702 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
3703
3704 // Since the result is legal, we should just be able to truncate the low
3705 // part of the source.
3706 Result = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), Tmp1);
3707 break;
3708 case Promote:
3709 Result = PromoteOp(Node->getOperand(0));
3710 Result = DAG.getNode(ISD::TRUNCATE, Op.getValueType(), Result);
3711 break;
3712 }
3713 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003714
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003715 case ISD::FP_TO_SINT:
3716 case ISD::FP_TO_UINT:
3717 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3718 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00003719 Tmp1 = LegalizeOp(Node->getOperand(0));
3720
Chris Lattner1618beb2005-07-29 00:11:56 +00003721 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
3722 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003723 case TargetLowering::Custom:
3724 isCustom = true;
3725 // FALLTHROUGH
3726 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003727 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003728 if (isCustom) {
3729 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003730 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003731 }
3732 break;
3733 case TargetLowering::Promote:
3734 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
3735 Node->getOpcode() == ISD::FP_TO_SINT);
3736 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00003737 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00003738 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman475871a2008-07-27 21:46:04 +00003739 SDValue True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003740 MVT VT = Node->getOperand(0).getValueType();
3741 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00003742 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00003743 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
3744 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003745 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00003746 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michel5b8f82e2008-03-10 15:42:14 +00003747 Tmp3 = DAG.getSetCC(TLI.getSetCCResultType(Node->getOperand(0)),
Nate Begemand2558e32005-08-14 01:20:53 +00003748 Node->getOperand(0), Tmp2, ISD::SETLT);
3749 True = DAG.getNode(ISD::FP_TO_SINT, NVT, Node->getOperand(0));
3750 False = DAG.getNode(ISD::FP_TO_SINT, NVT,
Chris Lattner01b3d732005-09-28 22:28:18 +00003751 DAG.getNode(ISD::FSUB, VT, Node->getOperand(0),
Nate Begemand2558e32005-08-14 01:20:53 +00003752 Tmp2));
3753 False = DAG.getNode(ISD::XOR, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00003754 DAG.getConstant(x, NVT));
Chris Lattner456a93a2006-01-28 07:39:30 +00003755 Result = DAG.getNode(ISD::SELECT, NVT, Tmp3, True, False);
3756 break;
Nate Begemand2558e32005-08-14 01:20:53 +00003757 } else {
3758 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
3759 }
3760 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00003761 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003762 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00003763 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003764 MVT VT = Op.getValueType();
3765 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003766 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003767 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00003768 if (Node->getOpcode() == ISD::FP_TO_SINT) {
3769 Result = DAG.getNode(ISD::FP_ROUND_INREG, MVT::ppcf128,
3770 Node->getOperand(0), DAG.getValueType(MVT::f64));
3771 Result = DAG.getNode(ISD::FP_ROUND, MVT::f64, Result,
3772 DAG.getIntPtrConstant(1));
3773 Result = DAG.getNode(ISD::FP_TO_SINT, VT, Result);
3774 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00003775 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
3776 APFloat apf = APFloat(APInt(128, 2, TwoE31));
3777 Tmp2 = DAG.getConstantFP(apf, OVT);
3778 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
3779 // FIXME: generated code sucks.
3780 Result = DAG.getNode(ISD::SELECT_CC, VT, Node->getOperand(0), Tmp2,
3781 DAG.getNode(ISD::ADD, MVT::i32,
3782 DAG.getNode(ISD::FP_TO_SINT, VT,
3783 DAG.getNode(ISD::FSUB, OVT,
3784 Node->getOperand(0), Tmp2)),
3785 DAG.getConstant(0x80000000, MVT::i32)),
3786 DAG.getNode(ISD::FP_TO_SINT, VT,
3787 Node->getOperand(0)),
3788 DAG.getCondCode(ISD::SETGE));
3789 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00003790 break;
3791 }
Dan Gohmana2e94852008-03-10 23:03:31 +00003792 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsb2ff8852008-07-17 02:36:29 +00003793 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
3794 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
3795 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman475871a2008-07-27 21:46:04 +00003796 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003797 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00003798 break;
3799 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003800 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003801 Tmp1 = PromoteOp(Node->getOperand(0));
3802 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
3803 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003804 break;
3805 }
3806 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00003807
Chris Lattnerf2670a82008-01-16 06:57:07 +00003808 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003809 MVT DstVT = Op.getValueType();
3810 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003811 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3812 // The only other way we can lower this is to turn it into a STORE,
3813 // LOAD pair, targetting a temporary location (a stack slot).
3814 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT);
3815 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00003816 }
3817 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3818 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3819 case Legal:
3820 Tmp1 = LegalizeOp(Node->getOperand(0));
3821 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3822 break;
3823 case Promote:
3824 Tmp1 = PromoteOp(Node->getOperand(0));
3825 Result = DAG.getNode(ISD::FP_EXTEND, Op.getValueType(), Tmp1);
3826 break;
3827 }
3828 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003829 }
Dale Johannesen5411a392007-08-09 01:04:01 +00003830 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003831 MVT DstVT = Op.getValueType();
3832 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00003833 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
3834 if (SrcVT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00003835 SDValue Lo;
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003836 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003837 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00003838 if (DstVT!=MVT::f64)
3839 Result = DAG.getNode(ISD::FP_ROUND, DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00003840 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00003841 }
Chris Lattner0bd48932008-01-17 07:00:52 +00003842 // The only other way we can lower this is to turn it into a STORE,
3843 // LOAD pair, targetting a temporary location (a stack slot).
3844 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT);
3845 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00003846 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00003847 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3848 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3849 case Legal:
3850 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003851 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003852 break;
3853 case Promote:
3854 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00003855 Result = DAG.getNode(ISD::FP_ROUND, Op.getValueType(), Tmp1,
3856 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00003857 break;
3858 }
3859 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00003860 }
Chris Lattner13c78e22005-09-02 00:18:10 +00003861 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003862 case ISD::ZERO_EXTEND:
3863 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003864 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003865 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003866 case Legal:
3867 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00003868 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00003869 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
3870 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00003871 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003872 if (Tmp1.getNode()) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00003873 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00003874 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003875 case Promote:
3876 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00003877 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003878 Tmp1 = PromoteOp(Node->getOperand(0));
3879 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00003880 break;
Chris Lattner1713e732005-01-16 00:38:00 +00003881 case ISD::ZERO_EXTEND:
3882 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003883 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner23993562005-04-13 02:38:47 +00003884 Result = DAG.getZeroExtendInReg(Result,
3885 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00003886 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003887 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00003888 Result = PromoteOp(Node->getOperand(0));
Chris Lattner13c78e22005-09-02 00:18:10 +00003889 Result = DAG.getNode(ISD::ANY_EXTEND, Op.getValueType(), Result);
Chris Lattner1713e732005-01-16 00:38:00 +00003890 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00003891 Result,
3892 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00003893 break;
Chris Lattner03c85462005-01-15 05:21:40 +00003894 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003895 }
3896 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00003897 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00003898 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00003899 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00003900 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00003901
3902 // If this operation is not supported, convert it to a shl/shr or load/store
3903 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003904 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
3905 default: assert(0 && "This action not supported for this op yet!");
3906 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003907 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003908 break;
3909 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00003910 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00003911 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00003912 // NOTE: we could fall back on load/store here too for targets without
3913 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003914 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
3915 ExtraVT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00003916 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Chris Lattner45b8caf2005-01-15 07:15:18 +00003917 Result = DAG.getNode(ISD::SHL, Node->getValueType(0),
3918 Node->getOperand(0), ShiftCst);
3919 Result = DAG.getNode(ISD::SRA, Node->getValueType(0),
3920 Result, ShiftCst);
3921 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00003922 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00003923 // EXTLOAD pair, targetting a temporary location (a stack slot).
3924
3925 // NOTE: there is a choice here between constantly creating new stack
3926 // slots and always reusing the same one. We currently always create
3927 // new ones, as reuse may inhibit scheduling.
Chris Lattnera66bb392008-01-16 07:51:34 +00003928 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
3929 Node->getValueType(0));
Chris Lattner45b8caf2005-01-15 07:15:18 +00003930 } else {
3931 assert(0 && "Unknown op");
3932 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003933 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00003934 }
Chris Lattner0f69b292005-01-15 06:18:18 +00003935 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003936 }
Duncan Sands36397f52007-07-27 12:58:54 +00003937 case ISD::TRAMPOLINE: {
Dan Gohman475871a2008-07-27 21:46:04 +00003938 SDValue Ops[6];
Duncan Sands36397f52007-07-27 12:58:54 +00003939 for (unsigned i = 0; i != 6; ++i)
3940 Ops[i] = LegalizeOp(Node->getOperand(i));
3941 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
3942 // The only option for this node is to custom lower it.
3943 Result = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003944 assert(Result.getNode() && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00003945
3946 // Since trampoline produces two values, make sure to remember that we
3947 // legalized both of them.
3948 Tmp1 = LegalizeOp(Result.getValue(1));
3949 Result = LegalizeOp(Result);
Dan Gohman475871a2008-07-27 21:46:04 +00003950 AddLegalizedOperand(SDValue(Node, 0), Result);
3951 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003952 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00003953 }
Dan Gohman9c78a392008-05-14 00:43:10 +00003954 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003955 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003956 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3957 default: assert(0 && "This action not supported for this op yet!");
3958 case TargetLowering::Custom:
3959 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003960 if (Result.getNode()) break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003961 // Fall Thru
3962 case TargetLowering::Legal:
3963 // If this operation is not supported, lower it to constant 1
3964 Result = DAG.getConstant(1, VT);
3965 break;
3966 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00003967 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00003968 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003969 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003970 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003971 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
3972 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00003973 case TargetLowering::Legal:
3974 Tmp1 = LegalizeOp(Node->getOperand(0));
3975 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3976 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003977 case TargetLowering::Custom:
3978 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003979 if (Result.getNode()) break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003980 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00003981 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003982 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00003983 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003984 TargetLowering::ArgListTy Args;
Dan Gohman475871a2008-07-27 21:46:04 +00003985 std::pair<SDValue,SDValue> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00003986 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00003987 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00003988 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Chris Lattner034f12e2008-01-15 22:09:33 +00003989 Args, DAG);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003990 Result = CallResult.second;
3991 break;
3992 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00003993 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00003994 }
Chris Lattner45b8caf2005-01-15 07:15:18 +00003995 }
Chris Lattner456a93a2006-01-28 07:39:30 +00003996
Chris Lattner4ddd2832006-04-08 04:13:17 +00003997 assert(Result.getValueType() == Op.getValueType() &&
3998 "Bad legalization!");
3999
Chris Lattner456a93a2006-01-28 07:39:30 +00004000 // Make sure that the generated code is itself legal.
4001 if (Result != Op)
4002 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004003
Chris Lattner45982da2005-05-12 16:53:42 +00004004 // Note that LegalizeOp may be reentered even from single-use nodes, which
4005 // means that we always must cache transformed nodes.
4006 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004007 return Result;
4008}
4009
Chris Lattner8b6fa222005-01-15 22:16:26 +00004010/// PromoteOp - Given an operation that produces a value in an invalid type,
4011/// promote it to compute the value into a larger type. The produced value will
4012/// have the correct bits for the low portion of the register, but no guarantee
4013/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman475871a2008-07-27 21:46:04 +00004014SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004015 MVT VT = Op.getValueType();
4016 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004017 assert(getTypeAction(VT) == Promote &&
4018 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004019 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00004020 "Cannot promote to smaller type!");
4021
Dan Gohman475871a2008-07-27 21:46:04 +00004022 SDValue Tmp1, Tmp2, Tmp3;
4023 SDValue Result;
Gabor Greifba36cb52008-08-28 21:40:38 +00004024 SDNode *Node = Op.getNode();
Chris Lattner03c85462005-01-15 05:21:40 +00004025
Dan Gohman475871a2008-07-27 21:46:04 +00004026 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004027 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004028
Chris Lattner03c85462005-01-15 05:21:40 +00004029 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004030 case ISD::CopyFromReg:
4031 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004032 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004033#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004034 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004035#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004036 assert(0 && "Do not know how to promote this operator!");
4037 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004038 case ISD::UNDEF:
4039 Result = DAG.getNode(ISD::UNDEF, NVT);
4040 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004041 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004042 if (VT != MVT::i1)
4043 Result = DAG.getNode(ISD::SIGN_EXTEND, NVT, Op);
4044 else
4045 Result = DAG.getNode(ISD::ZERO_EXTEND, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004046 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4047 break;
4048 case ISD::ConstantFP:
4049 Result = DAG.getNode(ISD::FP_EXTEND, NVT, Op);
4050 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4051 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004052
Chris Lattner82fbfb62005-01-18 02:59:52 +00004053 case ISD::SETCC:
Scott Michel5b8f82e2008-03-10 15:42:14 +00004054 assert(isTypeLegal(TLI.getSetCCResultType(Node->getOperand(0)))
Nate Begeman5922f562008-03-14 00:53:31 +00004055 && "SetCC type is not legal??");
Scott Michel5b8f82e2008-03-10 15:42:14 +00004056 Result = DAG.getNode(ISD::SETCC,
Nate Begeman5922f562008-03-14 00:53:31 +00004057 TLI.getSetCCResultType(Node->getOperand(0)),
4058 Node->getOperand(0), Node->getOperand(1),
4059 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004060 break;
Chris Lattnerfdfded52006-04-12 16:20:43 +00004061
Chris Lattner03c85462005-01-15 05:21:40 +00004062 case ISD::TRUNCATE:
4063 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4064 case Legal:
4065 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004066 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004067 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004068 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Chris Lattner03c85462005-01-15 05:21:40 +00004069 Result = DAG.getNode(ISD::TRUNCATE, NVT, Result);
4070 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004071 case Promote:
4072 // The truncation is not required, because we don't guarantee anything
4073 // about high bits anyway.
4074 Result = PromoteOp(Node->getOperand(0));
4075 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004076 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004077 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4078 // Truncate the low part of the expanded value to the result type
Chris Lattnere21c3052005-08-01 18:16:37 +00004079 Result = DAG.getNode(ISD::TRUNCATE, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004080 }
4081 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004082 case ISD::SIGN_EXTEND:
4083 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004084 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004085 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4086 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4087 case Legal:
4088 // Input is legal? Just do extend all the way to the larger type.
Chris Lattner456a93a2006-01-28 07:39:30 +00004089 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004090 break;
4091 case Promote:
4092 // Promote the reg if it's smaller.
4093 Result = PromoteOp(Node->getOperand(0));
4094 // The high bits are not guaranteed to be anything. Insert an extend.
4095 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Chris Lattner595dc542005-02-04 18:39:19 +00004096 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004097 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004098 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Chris Lattner23993562005-04-13 02:38:47 +00004099 Result = DAG.getZeroExtendInReg(Result,
4100 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004101 break;
4102 }
4103 break;
Chris Lattner35481892005-12-23 00:16:34 +00004104 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004105 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
4106 Node->getValueType(0));
Chris Lattner35481892005-12-23 00:16:34 +00004107 Result = PromoteOp(Result);
4108 break;
4109
Chris Lattner8b6fa222005-01-15 22:16:26 +00004110 case ISD::FP_EXTEND:
4111 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4112 case ISD::FP_ROUND:
4113 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4114 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4115 case Promote: assert(0 && "Unreachable with 2 FP types!");
4116 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004117 if (Node->getConstantOperandVal(1) == 0) {
4118 // Input is legal? Do an FP_ROUND_INREG.
4119 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Node->getOperand(0),
4120 DAG.getValueType(VT));
4121 } else {
4122 // Just remove the truncate, it isn't affecting the value.
4123 Result = DAG.getNode(ISD::FP_ROUND, NVT, Node->getOperand(0),
4124 Node->getOperand(1));
4125 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004126 break;
4127 }
4128 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004129 case ISD::SINT_TO_FP:
4130 case ISD::UINT_TO_FP:
4131 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4132 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004133 // No extra round required here.
Chris Lattner456a93a2006-01-28 07:39:30 +00004134 Result = DAG.getNode(Node->getOpcode(), NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004135 break;
4136
4137 case Promote:
4138 Result = PromoteOp(Node->getOperand(0));
4139 if (Node->getOpcode() == ISD::SINT_TO_FP)
4140 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004141 Result,
4142 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004143 else
Chris Lattner23993562005-04-13 02:38:47 +00004144 Result = DAG.getZeroExtendInReg(Result,
4145 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004146 // No extra round required here.
4147 Result = DAG.getNode(Node->getOpcode(), NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004148 break;
4149 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004150 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
4151 Node->getOperand(0));
Chris Lattner77e77a62005-01-21 06:05:23 +00004152 // Round if we cannot tolerate excess precision.
4153 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004154 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4155 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004156 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004157 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004158 break;
4159
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004160 case ISD::SIGN_EXTEND_INREG:
4161 Result = PromoteOp(Node->getOperand(0));
4162 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Result,
4163 Node->getOperand(1));
4164 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004165 case ISD::FP_TO_SINT:
4166 case ISD::FP_TO_UINT:
4167 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4168 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004169 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004170 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004171 break;
4172 case Promote:
4173 // The input result is prerounded, so we don't have to do anything
4174 // special.
4175 Tmp1 = PromoteOp(Node->getOperand(0));
4176 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004177 }
Nate Begemand2558e32005-08-14 01:20:53 +00004178 // If we're promoting a UINT to a larger size, check to see if the new node
4179 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4180 // we can use that instead. This allows us to generate better code for
4181 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4182 // legal, such as PowerPC.
4183 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Chris Lattnerc9c60f62005-08-24 16:35:28 +00004184 !TLI.isOperationLegal(ISD::FP_TO_UINT, NVT) &&
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004185 (TLI.isOperationLegal(ISD::FP_TO_SINT, NVT) ||
4186 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Nate Begemand2558e32005-08-14 01:20:53 +00004187 Result = DAG.getNode(ISD::FP_TO_SINT, NVT, Tmp1);
4188 } else {
4189 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4190 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004191 break;
4192
Chris Lattner2c8086f2005-04-02 05:00:07 +00004193 case ISD::FABS:
4194 case ISD::FNEG:
4195 Tmp1 = PromoteOp(Node->getOperand(0));
4196 assert(Tmp1.getValueType() == NVT);
4197 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
4198 // NOTE: we do not have to do any extra rounding here for
4199 // NoExcessFPPrecision, because we know the input will have the appropriate
4200 // precision, and these operations don't modify precision at all.
4201 break;
4202
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004203 case ISD::FLOG:
4204 case ISD::FLOG2:
4205 case ISD::FLOG10:
4206 case ISD::FEXP:
4207 case ISD::FEXP2:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004208 case ISD::FSQRT:
4209 case ISD::FSIN:
4210 case ISD::FCOS:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00004211 case ISD::FTRUNC:
4212 case ISD::FFLOOR:
4213 case ISD::FCEIL:
4214 case ISD::FRINT:
4215 case ISD::FNEARBYINT:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004216 Tmp1 = PromoteOp(Node->getOperand(0));
4217 assert(Tmp1.getValueType() == NVT);
4218 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004219 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004220 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4221 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004222 break;
4223
Evan Cheng9d24ac52008-09-09 23:35:53 +00004224 case ISD::FPOW:
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004225 case ISD::FPOWI: {
Evan Cheng9d24ac52008-09-09 23:35:53 +00004226 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004227 // directly as well, which may be better.
4228 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng9d24ac52008-09-09 23:35:53 +00004229 Tmp2 = Node->getOperand(1);
4230 if (Node->getOpcode() == ISD::FPOW)
4231 Tmp2 = PromoteOp(Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004232 assert(Tmp1.getValueType() == NVT);
Evan Cheng9d24ac52008-09-09 23:35:53 +00004233 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004234 if (NoExcessFPPrecision)
4235 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4236 DAG.getValueType(VT));
4237 break;
4238 }
4239
Dale Johannesene00a8a22008-08-28 02:44:49 +00004240 case ISD::ATOMIC_CMP_SWAP_8:
4241 case ISD::ATOMIC_CMP_SWAP_16:
4242 case ISD::ATOMIC_CMP_SWAP_32:
4243 case ISD::ATOMIC_CMP_SWAP_64: {
Mon P Wang28873102008-06-25 08:15:39 +00004244 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004245 Tmp2 = PromoteOp(Node->getOperand(2));
4246 Tmp3 = PromoteOp(Node->getOperand(3));
Mon P Wang28873102008-06-25 08:15:39 +00004247 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4248 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004249 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004250 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004251 // Remember that we legalized the chain.
4252 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4253 break;
4254 }
Dale Johannesene00a8a22008-08-28 02:44:49 +00004255 case ISD::ATOMIC_LOAD_ADD_8:
4256 case ISD::ATOMIC_LOAD_SUB_8:
4257 case ISD::ATOMIC_LOAD_AND_8:
4258 case ISD::ATOMIC_LOAD_OR_8:
4259 case ISD::ATOMIC_LOAD_XOR_8:
4260 case ISD::ATOMIC_LOAD_NAND_8:
4261 case ISD::ATOMIC_LOAD_MIN_8:
4262 case ISD::ATOMIC_LOAD_MAX_8:
4263 case ISD::ATOMIC_LOAD_UMIN_8:
4264 case ISD::ATOMIC_LOAD_UMAX_8:
4265 case ISD::ATOMIC_SWAP_8:
4266 case ISD::ATOMIC_LOAD_ADD_16:
4267 case ISD::ATOMIC_LOAD_SUB_16:
4268 case ISD::ATOMIC_LOAD_AND_16:
4269 case ISD::ATOMIC_LOAD_OR_16:
4270 case ISD::ATOMIC_LOAD_XOR_16:
4271 case ISD::ATOMIC_LOAD_NAND_16:
4272 case ISD::ATOMIC_LOAD_MIN_16:
4273 case ISD::ATOMIC_LOAD_MAX_16:
4274 case ISD::ATOMIC_LOAD_UMIN_16:
4275 case ISD::ATOMIC_LOAD_UMAX_16:
4276 case ISD::ATOMIC_SWAP_16:
4277 case ISD::ATOMIC_LOAD_ADD_32:
4278 case ISD::ATOMIC_LOAD_SUB_32:
4279 case ISD::ATOMIC_LOAD_AND_32:
4280 case ISD::ATOMIC_LOAD_OR_32:
4281 case ISD::ATOMIC_LOAD_XOR_32:
4282 case ISD::ATOMIC_LOAD_NAND_32:
4283 case ISD::ATOMIC_LOAD_MIN_32:
4284 case ISD::ATOMIC_LOAD_MAX_32:
4285 case ISD::ATOMIC_LOAD_UMIN_32:
4286 case ISD::ATOMIC_LOAD_UMAX_32:
4287 case ISD::ATOMIC_SWAP_32:
4288 case ISD::ATOMIC_LOAD_ADD_64:
4289 case ISD::ATOMIC_LOAD_SUB_64:
4290 case ISD::ATOMIC_LOAD_AND_64:
4291 case ISD::ATOMIC_LOAD_OR_64:
4292 case ISD::ATOMIC_LOAD_XOR_64:
4293 case ISD::ATOMIC_LOAD_NAND_64:
4294 case ISD::ATOMIC_LOAD_MIN_64:
4295 case ISD::ATOMIC_LOAD_MAX_64:
4296 case ISD::ATOMIC_LOAD_UMIN_64:
4297 case ISD::ATOMIC_LOAD_UMAX_64:
4298 case ISD::ATOMIC_SWAP_64: {
Mon P Wang28873102008-06-25 08:15:39 +00004299 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004300 Tmp2 = PromoteOp(Node->getOperand(2));
Mon P Wang28873102008-06-25 08:15:39 +00004301 Result = DAG.getAtomic(Node->getOpcode(), AtomNode->getChain(),
4302 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004303 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004304 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004305 // Remember that we legalized the chain.
4306 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4307 break;
4308 }
4309
Chris Lattner03c85462005-01-15 05:21:40 +00004310 case ISD::AND:
4311 case ISD::OR:
4312 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004313 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004314 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004315 case ISD::MUL:
4316 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004317 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004318 // that too is okay if they are integer operations.
4319 Tmp1 = PromoteOp(Node->getOperand(0));
4320 Tmp2 = PromoteOp(Node->getOperand(1));
4321 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4322 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004323 break;
4324 case ISD::FADD:
4325 case ISD::FSUB:
4326 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004327 Tmp1 = PromoteOp(Node->getOperand(0));
4328 Tmp2 = PromoteOp(Node->getOperand(1));
4329 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
4330 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4331
4332 // Floating point operations will give excess precision that we may not be
4333 // able to tolerate. If we DO allow excess precision, just leave it,
4334 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004335 // FIXME: Why would we need to round FP ops more than integer ones?
4336 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004337 if (NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004338 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4339 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004340 break;
4341
Chris Lattner8b6fa222005-01-15 22:16:26 +00004342 case ISD::SDIV:
4343 case ISD::SREM:
4344 // These operators require that their input be sign extended.
4345 Tmp1 = PromoteOp(Node->getOperand(0));
4346 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004347 if (NVT.isInteger()) {
Chris Lattner15e4b012005-07-10 00:07:11 +00004348 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4349 DAG.getValueType(VT));
4350 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4351 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004352 }
4353 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4354
4355 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004356 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Chris Lattner15e4b012005-07-10 00:07:11 +00004357 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4358 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004359 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004360 case ISD::FDIV:
4361 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004362 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004363 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004364 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004365 case Expand: assert(0 && "not implemented");
4366 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4367 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004368 }
4369 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004370 case Expand: assert(0 && "not implemented");
4371 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4372 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004373 }
Chris Lattner01b3d732005-09-28 22:28:18 +00004374 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4375
4376 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004377 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Chris Lattner01b3d732005-09-28 22:28:18 +00004378 Result = DAG.getNode(ISD::FP_ROUND_INREG, NVT, Result,
4379 DAG.getValueType(VT));
4380 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004381
4382 case ISD::UDIV:
4383 case ISD::UREM:
4384 // These operators require that their input be zero extended.
4385 Tmp1 = PromoteOp(Node->getOperand(0));
4386 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004387 assert(NVT.isInteger() && "Operators don't apply to FP!");
Chris Lattner23993562005-04-13 02:38:47 +00004388 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4389 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004390 Result = DAG.getNode(Node->getOpcode(), NVT, Tmp1, Tmp2);
4391 break;
4392
4393 case ISD::SHL:
4394 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner456a93a2006-01-28 07:39:30 +00004395 Result = DAG.getNode(ISD::SHL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004396 break;
4397 case ISD::SRA:
4398 // The input value must be properly sign extended.
4399 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner15e4b012005-07-10 00:07:11 +00004400 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4401 DAG.getValueType(VT));
Chris Lattner456a93a2006-01-28 07:39:30 +00004402 Result = DAG.getNode(ISD::SRA, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004403 break;
4404 case ISD::SRL:
4405 // The input value must be properly zero extended.
4406 Tmp1 = PromoteOp(Node->getOperand(0));
Chris Lattner23993562005-04-13 02:38:47 +00004407 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
Chris Lattner456a93a2006-01-28 07:39:30 +00004408 Result = DAG.getNode(ISD::SRL, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004409 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004410
4411 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004412 Tmp1 = Node->getOperand(0); // Get the chain.
4413 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004414 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
4415 Tmp3 = DAG.getVAArg(VT, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004416 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004417 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004418 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dan Gohman475871a2008-07-27 21:46:04 +00004419 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004420 // Increment the pointer, VAList, to the next vaarg
4421 Tmp3 = DAG.getNode(ISD::ADD, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004422 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004423 TLI.getPointerTy()));
4424 // Store the incremented VAList to the legalized pointer
Dan Gohman69de1932008-02-06 22:27:42 +00004425 Tmp3 = DAG.getStore(VAList.getValue(1), Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004426 // Load the actual argument out of the pointer VAList
Evan Cheng466685d2006-10-09 20:57:25 +00004427 Result = DAG.getExtLoad(ISD::EXTLOAD, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004428 }
4429 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004430 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004431 break;
4432
Evan Cheng466685d2006-10-09 20:57:25 +00004433 case ISD::LOAD: {
4434 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004435 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4436 ? ISD::EXTLOAD : LD->getExtensionType();
4437 Result = DAG.getExtLoad(ExtType, NVT,
4438 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004439 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004440 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004441 LD->isVolatile(),
4442 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004443 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004444 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004445 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004446 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004447 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004448 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4449 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004450
Duncan Sands83ec4b62008-06-06 12:08:01 +00004451 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004452 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004453 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4454 // Ensure that the resulting node is at least the same size as the operands'
4455 // value types, because we cannot assume that TLI.getSetCCValueType() is
4456 // constant.
4457 Result = DAG.getNode(ISD::SELECT, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004458 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004459 }
Nate Begeman9373a812005-08-10 20:51:12 +00004460 case ISD::SELECT_CC:
4461 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4462 Tmp3 = PromoteOp(Node->getOperand(3)); // False
4463 Result = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004464 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004465 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004466 case ISD::BSWAP:
4467 Tmp1 = Node->getOperand(0);
4468 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Tmp1);
4469 Tmp1 = DAG.getNode(ISD::BSWAP, NVT, Tmp1);
4470 Result = DAG.getNode(ISD::SRL, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004471 DAG.getConstant(NVT.getSizeInBits() -
4472 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004473 TLI.getShiftAmountTy()));
4474 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004475 case ISD::CTPOP:
4476 case ISD::CTTZ:
4477 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004478 // Zero extend the argument
4479 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004480 // Perform the larger operation, then subtract if needed.
4481 Tmp1 = DAG.getNode(Node->getOpcode(), NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004482 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004483 case ISD::CTPOP:
4484 Result = Tmp1;
4485 break;
4486 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004487 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Scott Michel5b8f82e2008-03-10 15:42:14 +00004488 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(Tmp1), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004489 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004490 ISD::SETEQ);
Jeff Cohen00b168892005-07-27 06:12:32 +00004491 Result = DAG.getNode(ISD::SELECT, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004492 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004493 break;
4494 case ISD::CTLZ:
4495 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Jeff Cohen00b168892005-07-27 06:12:32 +00004496 Result = DAG.getNode(ISD::SUB, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004497 DAG.getConstant(NVT.getSizeInBits() -
4498 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004499 break;
4500 }
4501 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004502 case ISD::EXTRACT_SUBVECTOR:
4503 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004504 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004505 case ISD::EXTRACT_VECTOR_ELT:
4506 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4507 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004508 }
4509
Gabor Greifba36cb52008-08-28 21:40:38 +00004510 assert(Result.getNode() && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004511
4512 // Make sure the result is itself legal.
4513 Result = LegalizeOp(Result);
4514
4515 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004516 AddPromotedOperand(Op, Result);
4517 return Result;
4518}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004519
Dan Gohman7f321562007-06-25 16:23:39 +00004520/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4521/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4522/// based on the vector type. The return type of this matches the element type
4523/// of the vector, which may not be legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00004524SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004525 // We know that operand #0 is the Vec vector. If the index is a constant
4526 // or if the invec is a supported hardware type, we can use it. Otherwise,
4527 // lower to a store then an indexed load.
Dan Gohman475871a2008-07-27 21:46:04 +00004528 SDValue Vec = Op.getOperand(0);
4529 SDValue Idx = Op.getOperand(1);
Chris Lattner15972212006-03-31 17:55:51 +00004530
Duncan Sands83ec4b62008-06-06 12:08:01 +00004531 MVT TVT = Vec.getValueType();
4532 unsigned NumElems = TVT.getVectorNumElements();
Chris Lattner15972212006-03-31 17:55:51 +00004533
Dan Gohman7f321562007-06-25 16:23:39 +00004534 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4535 default: assert(0 && "This action is not supported yet!");
4536 case TargetLowering::Custom: {
4537 Vec = LegalizeOp(Vec);
4538 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004539 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004540 if (Tmp3.getNode())
Dan Gohman7f321562007-06-25 16:23:39 +00004541 return Tmp3;
4542 break;
4543 }
4544 case TargetLowering::Legal:
4545 if (isTypeLegal(TVT)) {
4546 Vec = LegalizeOp(Vec);
4547 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004548 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004549 }
4550 break;
4551 case TargetLowering::Expand:
4552 break;
4553 }
4554
4555 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00004556 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004557 Op = ScalarizeVectorOp(Vec);
4558 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00004559 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00004560 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004561 SDValue Lo, Hi;
Chris Lattner15972212006-03-31 17:55:51 +00004562 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004563 if (CIdx->getZExtValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00004564 Vec = Lo;
4565 } else {
4566 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004567 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00004568 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00004569 }
Dan Gohman7f321562007-06-25 16:23:39 +00004570
Chris Lattner15972212006-03-31 17:55:51 +00004571 // It's now an extract from the appropriate high or low part. Recurse.
4572 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004573 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00004574 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00004575 // Store the value to a temporary stack slot, then LOAD the scalar
4576 // element back out.
Dan Gohman475871a2008-07-27 21:46:04 +00004577 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
4578 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Vec, StackPtr, NULL, 0);
Dan Gohman7f321562007-06-25 16:23:39 +00004579
4580 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004581 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dan Gohman7f321562007-06-25 16:23:39 +00004582 Idx = DAG.getNode(ISD::MUL, Idx.getValueType(), Idx,
4583 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004584
Duncan Sands8e4eb092008-06-08 20:54:56 +00004585 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Chris Lattnerf185e672007-10-19 16:47:35 +00004586 Idx = DAG.getNode(ISD::TRUNCATE, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004587 else
Chris Lattnerf185e672007-10-19 16:47:35 +00004588 Idx = DAG.getNode(ISD::ZERO_EXTEND, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00004589
Dan Gohman7f321562007-06-25 16:23:39 +00004590 StackPtr = DAG.getNode(ISD::ADD, Idx.getValueType(), Idx, StackPtr);
4591
4592 Op = DAG.getLoad(Op.getValueType(), Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00004593 }
Dan Gohman7f321562007-06-25 16:23:39 +00004594 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00004595}
4596
Dan Gohman7f321562007-06-25 16:23:39 +00004597/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00004598/// we assume the operation can be split if it is not already legal.
Dan Gohman475871a2008-07-27 21:46:04 +00004599SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohman65956352007-06-13 15:12:02 +00004600 // We know that operand #0 is the Vec vector. For now we assume the index
4601 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman475871a2008-07-27 21:46:04 +00004602 SDValue Vec = Op.getOperand(0);
4603 SDValue Idx = LegalizeOp(Op.getOperand(1));
Dan Gohman65956352007-06-13 15:12:02 +00004604
Duncan Sands83ec4b62008-06-06 12:08:01 +00004605 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Dan Gohman65956352007-06-13 15:12:02 +00004606
Duncan Sands83ec4b62008-06-06 12:08:01 +00004607 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00004608 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00004609 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00004610 }
4611
4612 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004613 SDValue Lo, Hi;
Dan Gohman65956352007-06-13 15:12:02 +00004614 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004615 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohman65956352007-06-13 15:12:02 +00004616 Vec = Lo;
4617 } else {
4618 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00004619 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
4620 Idx.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00004621 }
4622
4623 // It's now an extract from the appropriate high or low part. Recurse.
4624 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00004625 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00004626}
4627
Nate Begeman750ac1b2006-02-01 07:19:44 +00004628/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
4629/// with condition CC on the current target. This usually involves legalizing
4630/// or promoting the arguments. In the case where LHS and RHS must be expanded,
4631/// there may be no choice but to create a new SetCC node to represent the
4632/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman475871a2008-07-27 21:46:04 +00004633/// LHS, and the SDValue returned in RHS has a nil SDNode value.
4634void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
4635 SDValue &RHS,
4636 SDValue &CC) {
4637 SDValue Tmp1, Tmp2, Tmp3, Result;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004638
4639 switch (getTypeAction(LHS.getValueType())) {
4640 case Legal:
4641 Tmp1 = LegalizeOp(LHS); // LHS
4642 Tmp2 = LegalizeOp(RHS); // RHS
4643 break;
4644 case Promote:
4645 Tmp1 = PromoteOp(LHS); // LHS
4646 Tmp2 = PromoteOp(RHS); // RHS
4647
4648 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004649 if (LHS.getValueType().isInteger()) {
4650 MVT VT = LHS.getValueType();
4651 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00004652
4653 // Otherwise, we have to insert explicit sign or zero extends. Note
4654 // that we could insert sign extends for ALL conditions, but zero extend
4655 // is cheaper on many machines (an AND instead of two shifts), so prefer
4656 // it.
4657 switch (cast<CondCodeSDNode>(CC)->get()) {
4658 default: assert(0 && "Unknown integer comparison!");
4659 case ISD::SETEQ:
4660 case ISD::SETNE:
4661 case ISD::SETUGE:
4662 case ISD::SETUGT:
4663 case ISD::SETULE:
4664 case ISD::SETULT:
4665 // ALL of these operations will work if we either sign or zero extend
4666 // the operands (including the unsigned comparisons!). Zero extend is
4667 // usually a simpler/cheaper operation, so prefer it.
4668 Tmp1 = DAG.getZeroExtendInReg(Tmp1, VT);
4669 Tmp2 = DAG.getZeroExtendInReg(Tmp2, VT);
4670 break;
4671 case ISD::SETGE:
4672 case ISD::SETGT:
4673 case ISD::SETLT:
4674 case ISD::SETLE:
4675 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp1,
4676 DAG.getValueType(VT));
4677 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Tmp2,
4678 DAG.getValueType(VT));
Evan Chengefa53392008-10-13 18:46:18 +00004679 Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes.
4680 Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes.
Nate Begeman750ac1b2006-02-01 07:19:44 +00004681 break;
4682 }
4683 }
4684 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004685 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004686 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00004687 if (VT == MVT::f32 || VT == MVT::f64) {
4688 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00004689 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00004690 switch (cast<CondCodeSDNode>(CC)->get()) {
4691 case ISD::SETEQ:
4692 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00004693 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004694 break;
4695 case ISD::SETNE:
4696 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00004697 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004698 break;
4699 case ISD::SETGE:
4700 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00004701 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004702 break;
4703 case ISD::SETLT:
4704 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00004705 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004706 break;
4707 case ISD::SETLE:
4708 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00004709 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004710 break;
4711 case ISD::SETGT:
4712 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00004713 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004714 break;
4715 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00004716 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
4717 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004718 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00004719 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004720 break;
4721 default:
Evan Cheng56966222007-01-12 02:11:51 +00004722 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004723 switch (cast<CondCodeSDNode>(CC)->get()) {
4724 case ISD::SETONE:
4725 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00004726 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004727 // Fallthrough
4728 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00004729 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004730 break;
4731 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00004732 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004733 break;
4734 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00004735 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004736 break;
4737 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00004738 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00004739 break;
Evan Cheng56966222007-01-12 02:11:51 +00004740 case ISD::SETUEQ:
4741 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00004742 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00004743 default: assert(0 && "Unsupported FP setcc!");
4744 }
4745 }
Duncan Sandsf9516202008-06-30 10:19:09 +00004746
Dan Gohman475871a2008-07-27 21:46:04 +00004747 SDValue Dummy;
4748 SDValue Ops[2] = { LHS, RHS };
Gabor Greifba36cb52008-08-28 21:40:38 +00004749 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00004750 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00004751 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00004752 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00004753 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004754 Tmp1 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Tmp1), Tmp1, Tmp2,
Nate Begeman5922f562008-03-14 00:53:31 +00004755 CC);
Gabor Greifba36cb52008-08-28 21:40:38 +00004756 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00004757 false /*sign irrelevant*/, Dummy);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004758 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHS), LHS, Tmp2,
Evan Chengd385fd62007-01-31 09:29:11 +00004759 DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Evan Cheng2b49c502006-12-15 02:59:56 +00004760 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman475871a2008-07-27 21:46:04 +00004761 Tmp2 = SDValue();
Evan Cheng2b49c502006-12-15 02:59:56 +00004762 }
Evan Cheng21cacc42008-07-07 07:18:09 +00004763 LHS = LegalizeOp(Tmp1);
Evan Cheng2b49c502006-12-15 02:59:56 +00004764 RHS = Tmp2;
4765 return;
4766 }
4767
Dan Gohman475871a2008-07-27 21:46:04 +00004768 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Nate Begeman750ac1b2006-02-01 07:19:44 +00004769 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004770 ExpandOp(RHS, RHSLo, RHSHi);
4771 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4772
4773 if (VT==MVT::ppcf128) {
4774 // FIXME: This generated code sucks. We want to generate
Dale Johannesene2f20832008-09-12 00:30:56 +00004775 // FCMPU crN, hi1, hi2
Dale Johannesen638ccd52007-10-06 01:24:11 +00004776 // BNE crN, L:
Dale Johannesene2f20832008-09-12 00:30:56 +00004777 // FCMPU crN, lo1, lo2
Dale Johannesen638ccd52007-10-06 01:24:11 +00004778 // The following can be improved, but not that much.
Dale Johannesene2f20832008-09-12 00:30:56 +00004779 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
4780 ISD::SETOEQ);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004781 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004782 Tmp3 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
Dale Johannesene2f20832008-09-12 00:30:56 +00004783 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
4784 ISD::SETUNE);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004785 Tmp2 = DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi, CCCode);
Dale Johannesen638ccd52007-10-06 01:24:11 +00004786 Tmp1 = DAG.getNode(ISD::AND, Tmp1.getValueType(), Tmp1, Tmp2);
4787 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman475871a2008-07-27 21:46:04 +00004788 Tmp2 = SDValue();
Dale Johannesen638ccd52007-10-06 01:24:11 +00004789 break;
4790 }
4791
4792 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004793 case ISD::SETEQ:
4794 case ISD::SETNE:
4795 if (RHSLo == RHSHi)
4796 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
4797 if (RHSCST->isAllOnesValue()) {
4798 // Comparison to -1.
4799 Tmp1 = DAG.getNode(ISD::AND, LHSLo.getValueType(), LHSLo, LHSHi);
4800 Tmp2 = RHSLo;
4801 break;
4802 }
4803
4804 Tmp1 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSLo, RHSLo);
4805 Tmp2 = DAG.getNode(ISD::XOR, LHSLo.getValueType(), LHSHi, RHSHi);
4806 Tmp1 = DAG.getNode(ISD::OR, Tmp1.getValueType(), Tmp1, Tmp2);
4807 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
4808 break;
4809 default:
4810 // If this is a comparison of the sign bit, just look at the top part.
4811 // X > -1, x < 0
4812 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
4813 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00004814 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00004815 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
4816 CST->isAllOnesValue())) { // X > -1
4817 Tmp1 = LHSHi;
4818 Tmp2 = RHSHi;
4819 break;
4820 }
4821
4822 // FIXME: This generated code sucks.
4823 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00004824 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00004825 default: assert(0 && "Unknown integer setcc!");
4826 case ISD::SETLT:
4827 case ISD::SETULT: LowCC = ISD::SETULT; break;
4828 case ISD::SETGT:
4829 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
4830 case ISD::SETLE:
4831 case ISD::SETULE: LowCC = ISD::SETULE; break;
4832 case ISD::SETGE:
4833 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
4834 }
4835
4836 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
4837 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
4838 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
4839
4840 // NOTE: on targets without efficient SELECT of bools, we can always use
4841 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00004842 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Scott Michel5b8f82e2008-03-10 15:42:14 +00004843 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo,
Nate Begeman5922f562008-03-14 00:53:31 +00004844 LowCC, false, DagCombineInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00004845 if (!Tmp1.getNode())
Scott Michel5b8f82e2008-03-10 15:42:14 +00004846 Tmp1 = DAG.getSetCC(TLI.getSetCCResultType(LHSLo), LHSLo, RHSLo, LowCC);
4847 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004848 CCCode, false, DagCombineInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00004849 if (!Tmp2.getNode())
Scott Michel5b8f82e2008-03-10 15:42:14 +00004850 Tmp2 = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(LHSHi), LHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004851 RHSHi,CC);
Evan Cheng2e677812007-02-08 22:16:19 +00004852
Gabor Greifba36cb52008-08-28 21:40:38 +00004853 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
4854 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman002e5d02008-03-13 22:13:53 +00004855 if ((Tmp1C && Tmp1C->isNullValue()) ||
4856 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00004857 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
4858 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00004859 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00004860 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
4861 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
4862 // low part is known false, returns high part.
4863 // For LE / GE, if high part is known false, ignore the low part.
4864 // For LT / GT, if high part is known true, ignore the low part.
4865 Tmp1 = Tmp2;
Dan Gohman475871a2008-07-27 21:46:04 +00004866 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00004867 } else {
Scott Michel5b8f82e2008-03-10 15:42:14 +00004868 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Evan Cheng2e677812007-02-08 22:16:19 +00004869 ISD::SETEQ, false, DagCombineInfo);
Gabor Greifba36cb52008-08-28 21:40:38 +00004870 if (!Result.getNode())
Scott Michel5b8f82e2008-03-10 15:42:14 +00004871 Result=DAG.getSetCC(TLI.getSetCCResultType(LHSHi), LHSHi, RHSHi,
Nate Begeman5922f562008-03-14 00:53:31 +00004872 ISD::SETEQ);
Evan Cheng2e677812007-02-08 22:16:19 +00004873 Result = LegalizeOp(DAG.getNode(ISD::SELECT, Tmp1.getValueType(),
4874 Result, Tmp1, Tmp2));
4875 Tmp1 = Result;
Dan Gohman475871a2008-07-27 21:46:04 +00004876 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00004877 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004878 }
4879 }
Evan Cheng2b49c502006-12-15 02:59:56 +00004880 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00004881 LHS = Tmp1;
4882 RHS = Tmp2;
4883}
4884
Evan Cheng7f042682008-10-15 02:05:31 +00004885/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
4886/// condition code CC on the current target. This routine assumes LHS and rHS
4887/// have already been legalized by LegalizeSetCCOperands. It expands SETCC with
4888/// illegal condition code into AND / OR of multiple SETCC values.
4889void SelectionDAGLegalize::LegalizeSetCCCondCode(MVT VT,
4890 SDValue &LHS, SDValue &RHS,
4891 SDValue &CC) {
4892 MVT OpVT = LHS.getValueType();
4893 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
4894 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
4895 default: assert(0 && "Unknown condition code action!");
4896 case TargetLowering::Legal:
4897 // Nothing to do.
4898 break;
4899 case TargetLowering::Expand: {
4900 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
4901 unsigned Opc = 0;
4902 switch (CCCode) {
4903 default: assert(0 && "Don't know how to expand this condition!"); abort();
Dan Gohmane7d238e2008-10-21 03:12:54 +00004904 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
4905 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
4906 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
4907 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
4908 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
4909 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
4910 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
4911 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
4912 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
4913 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
4914 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
4915 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng7f042682008-10-15 02:05:31 +00004916 // FIXME: Implement more expansions.
4917 }
4918
4919 SDValue SetCC1 = DAG.getSetCC(VT, LHS, RHS, CC1);
4920 SDValue SetCC2 = DAG.getSetCC(VT, LHS, RHS, CC2);
4921 LHS = DAG.getNode(Opc, VT, SetCC1, SetCC2);
4922 RHS = SDValue();
4923 CC = SDValue();
4924 break;
4925 }
4926 }
4927}
4928
Chris Lattner1401d152008-01-16 07:45:30 +00004929/// EmitStackConvert - Emit a store/load combination to the stack. This stores
4930/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
4931/// a load from the stack slot to DestVT, extending it if needed.
4932/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00004933SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
4934 MVT SlotVT,
4935 MVT DestVT) {
Chris Lattner35481892005-12-23 00:16:34 +00004936 // Create the stack frame object.
Mon P Wang364d73d2008-07-05 20:40:31 +00004937 unsigned SrcAlign = TLI.getTargetData()->getPrefTypeAlignment(
4938 SrcOp.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00004939 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Mon P Wang364d73d2008-07-05 20:40:31 +00004940
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004941 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004942 int SPFI = StackPtrFI->getIndex();
Mon P Wang364d73d2008-07-05 20:40:31 +00004943
Duncan Sands83ec4b62008-06-06 12:08:01 +00004944 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
4945 unsigned SlotSize = SlotVT.getSizeInBits();
4946 unsigned DestSize = DestVT.getSizeInBits();
Mon P Wang364d73d2008-07-05 20:40:31 +00004947 unsigned DestAlign = TLI.getTargetData()->getPrefTypeAlignment(
4948 DestVT.getTypeForMVT());
Chris Lattner35481892005-12-23 00:16:34 +00004949
Chris Lattner1401d152008-01-16 07:45:30 +00004950 // Emit a store to the stack slot. Use a truncstore if the input value is
4951 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00004952 SDValue Store;
Mon P Wang364d73d2008-07-05 20:40:31 +00004953
Chris Lattner1401d152008-01-16 07:45:30 +00004954 if (SrcSize > SlotSize)
Dan Gohman69de1932008-02-06 22:27:42 +00004955 Store = DAG.getTruncStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004956 PseudoSourceValue::getFixedStack(SPFI), 0,
4957 SlotVT, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004958 else {
4959 assert(SrcSize == SlotSize && "Invalid store");
Dan Gohman69de1932008-02-06 22:27:42 +00004960 Store = DAG.getStore(DAG.getEntryNode(), SrcOp, FIPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004961 PseudoSourceValue::getFixedStack(SPFI), 0,
Mon P Wang364d73d2008-07-05 20:40:31 +00004962 false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004963 }
4964
Chris Lattner35481892005-12-23 00:16:34 +00004965 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00004966 if (SlotSize == DestSize)
Mon P Wang364d73d2008-07-05 20:40:31 +00004967 return DAG.getLoad(DestVT, Store, FIPtr, NULL, 0, false, DestAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00004968
4969 assert(SlotSize < DestSize && "Unknown extension!");
Mon P Wang364d73d2008-07-05 20:40:31 +00004970 return DAG.getExtLoad(ISD::EXTLOAD, DestVT, Store, FIPtr, NULL, 0, SlotVT,
4971 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00004972}
4973
Dan Gohman475871a2008-07-27 21:46:04 +00004974SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Chris Lattner4352cc92006-04-04 17:23:26 +00004975 // Create a vector sized/aligned stack slot, store the value to element #0,
4976 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00004977 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00004978
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00004979 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00004980 int SPFI = StackPtrFI->getIndex();
4981
Dan Gohman475871a2008-07-27 21:46:04 +00004982 SDValue Ch = DAG.getStore(DAG.getEntryNode(), Node->getOperand(0), StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004983 PseudoSourceValue::getFixedStack(SPFI), 0);
Dan Gohman69de1932008-02-06 22:27:42 +00004984 return DAG.getLoad(Node->getValueType(0), Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00004985 PseudoSourceValue::getFixedStack(SPFI), 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00004986}
4987
4988
Chris Lattnerce872152006-03-19 06:31:19 +00004989/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00004990/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00004991SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Chris Lattnerce872152006-03-19 06:31:19 +00004992
4993 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00004994 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Evan Cheng033e6812006-03-24 01:17:21 +00004995 unsigned NumElems = Node->getNumOperands();
Chris Lattnerce872152006-03-19 06:31:19 +00004996 bool isOnlyLowElement = true;
Dan Gohman475871a2008-07-27 21:46:04 +00004997 SDValue SplatValue = Node->getOperand(0);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00004998
Dan Gohman475871a2008-07-27 21:46:04 +00004999 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005000 // and use a bitmask instead of a list of elements.
Dan Gohman475871a2008-07-27 21:46:04 +00005001 std::map<SDValue, std::vector<unsigned> > Values;
Evan Cheng033e6812006-03-24 01:17:21 +00005002 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005003 bool isConstant = true;
5004 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
5005 SplatValue.getOpcode() != ISD::UNDEF)
5006 isConstant = false;
5007
Evan Cheng033e6812006-03-24 01:17:21 +00005008 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005009 SDValue V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00005010 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00005011 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00005012 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00005013 if (SplatValue != V)
Dan Gohman475871a2008-07-27 21:46:04 +00005014 SplatValue = SDValue(0,0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005015
5016 // If this isn't a constant element or an undef, we can't use a constant
5017 // pool load.
5018 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
5019 V.getOpcode() != ISD::UNDEF)
5020 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00005021 }
5022
5023 if (isOnlyLowElement) {
5024 // If the low element is an undef too, then this whole things is an undef.
5025 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
5026 return DAG.getNode(ISD::UNDEF, Node->getValueType(0));
5027 // Otherwise, turn this into a scalar_to_vector node.
5028 return DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0),
5029 Node->getOperand(0));
5030 }
5031
Chris Lattner2eb86532006-03-24 07:29:17 +00005032 // If all elements are constants, create a load from the constant pool.
5033 if (isConstant) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005034 MVT VT = Node->getValueType(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005035 std::vector<Constant*> CV;
5036 for (unsigned i = 0, e = NumElems; i != e; ++i) {
5037 if (ConstantFPSDNode *V =
5038 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005039 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00005040 } else if (ConstantSDNode *V =
Chris Lattner02a260a2008-04-20 00:41:09 +00005041 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005042 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00005043 } else {
5044 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Chris Lattner02a260a2008-04-20 00:41:09 +00005045 const Type *OpNTy =
Duncan Sands83ec4b62008-06-06 12:08:01 +00005046 Node->getOperand(0).getValueType().getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00005047 CV.push_back(UndefValue::get(OpNTy));
5048 }
5049 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00005050 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00005051 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00005052 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dan Gohman69de1932008-02-06 22:27:42 +00005053 return DAG.getLoad(VT, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005054 PseudoSourceValue::getConstantPool(), 0,
5055 false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00005056 }
5057
Gabor Greifba36cb52008-08-28 21:40:38 +00005058 if (SplatValue.getNode()) { // Splat of one value?
Chris Lattner87100e02006-03-20 01:52:29 +00005059 // Build the shuffle constant vector: <0, 0, 0, 0>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005060 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
Dan Gohman475871a2008-07-27 21:46:04 +00005061 SDValue Zero = DAG.getConstant(0, MaskVT.getVectorElementType());
5062 std::vector<SDValue> ZeroVec(NumElems, Zero);
5063 SDValue SplatMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005064 &ZeroVec[0], ZeroVec.size());
Chris Lattner87100e02006-03-20 01:52:29 +00005065
5066 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005067 if (isShuffleLegal(Node->getValueType(0), SplatMask)) {
Chris Lattner87100e02006-03-20 01:52:29 +00005068 // Get the splatted value into the low element of a vector register.
Dan Gohman475871a2008-07-27 21:46:04 +00005069 SDValue LowValVec =
Chris Lattner87100e02006-03-20 01:52:29 +00005070 DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), SplatValue);
5071
5072 // Return shuffle(LowValVec, undef, <0,0,0,0>)
5073 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), LowValVec,
5074 DAG.getNode(ISD::UNDEF, Node->getValueType(0)),
5075 SplatMask);
5076 }
5077 }
5078
Evan Cheng033e6812006-03-24 01:17:21 +00005079 // If there are only two unique elements, we may be able to turn this into a
5080 // vector shuffle.
5081 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005082 // Get the two values in deterministic order.
Dan Gohman475871a2008-07-27 21:46:04 +00005083 SDValue Val1 = Node->getOperand(1);
5084 SDValue Val2;
5085 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005086 if (MI->first != Val1)
5087 Val2 = MI->first;
5088 else
5089 Val2 = (++MI)->first;
5090
5091 // If Val1 is an undef, make sure end ends up as Val2, to ensure that our
5092 // vector shuffle has the undef vector on the RHS.
5093 if (Val1.getOpcode() == ISD::UNDEF)
5094 std::swap(Val1, Val2);
5095
Evan Cheng033e6812006-03-24 01:17:21 +00005096 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Duncan Sands83ec4b62008-06-06 12:08:01 +00005097 MVT MaskVT = MVT::getIntVectorWithNumElements(NumElems);
5098 MVT MaskEltVT = MaskVT.getVectorElementType();
Dan Gohman475871a2008-07-27 21:46:04 +00005099 std::vector<SDValue> MaskVec(NumElems);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005100
5101 // Set elements of the shuffle mask for Val1.
5102 std::vector<unsigned> &Val1Elts = Values[Val1];
5103 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
5104 MaskVec[Val1Elts[i]] = DAG.getConstant(0, MaskEltVT);
5105
5106 // Set elements of the shuffle mask for Val2.
5107 std::vector<unsigned> &Val2Elts = Values[Val2];
5108 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5109 if (Val2.getOpcode() != ISD::UNDEF)
5110 MaskVec[Val2Elts[i]] = DAG.getConstant(NumElems, MaskEltVT);
5111 else
5112 MaskVec[Val2Elts[i]] = DAG.getNode(ISD::UNDEF, MaskEltVT);
5113
Dan Gohman475871a2008-07-27 21:46:04 +00005114 SDValue ShuffleMask = DAG.getNode(ISD::BUILD_VECTOR, MaskVT,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005115 &MaskVec[0], MaskVec.size());
Evan Cheng033e6812006-03-24 01:17:21 +00005116
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005117 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Chris Lattner4352cc92006-04-04 17:23:26 +00005118 if (TLI.isOperationLegal(ISD::SCALAR_TO_VECTOR, Node->getValueType(0)) &&
5119 isShuffleLegal(Node->getValueType(0), ShuffleMask)) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005120 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val1);
5121 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, Node->getValueType(0), Val2);
Dan Gohman475871a2008-07-27 21:46:04 +00005122 SDValue Ops[] = { Val1, Val2, ShuffleMask };
Evan Cheng033e6812006-03-24 01:17:21 +00005123
5124 // Return shuffle(LoValVec, HiValVec, <0,1,0,1>)
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005125 return DAG.getNode(ISD::VECTOR_SHUFFLE, Node->getValueType(0), Ops, 3);
Evan Cheng033e6812006-03-24 01:17:21 +00005126 }
5127 }
Chris Lattnerce872152006-03-19 06:31:19 +00005128
5129 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5130 // aligned object on the stack, store each element into it, then load
5131 // the result as a vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005132 MVT VT = Node->getValueType(0);
Chris Lattnerce872152006-03-19 06:31:19 +00005133 // Create the stack frame object.
Dan Gohman475871a2008-07-27 21:46:04 +00005134 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005135
5136 // Emit a store of each element to the stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00005137 SmallVector<SDValue, 8> Stores;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005138 unsigned TypeByteSize = Node->getOperand(0).getValueType().getSizeInBits()/8;
Chris Lattnerce872152006-03-19 06:31:19 +00005139 // Store (in the right endianness) the elements to memory.
5140 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5141 // Ignore undef elements.
5142 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
5143
Chris Lattner841c8822006-03-22 01:46:54 +00005144 unsigned Offset = TypeByteSize*i;
Chris Lattnerce872152006-03-19 06:31:19 +00005145
Dan Gohman475871a2008-07-27 21:46:04 +00005146 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Chris Lattnerce872152006-03-19 06:31:19 +00005147 Idx = DAG.getNode(ISD::ADD, FIPtr.getValueType(), FIPtr, Idx);
5148
Evan Cheng786225a2006-10-05 23:01:46 +00005149 Stores.push_back(DAG.getStore(DAG.getEntryNode(), Node->getOperand(i), Idx,
Evan Cheng8b2794a2006-10-13 21:14:26 +00005150 NULL, 0));
Chris Lattnerce872152006-03-19 06:31:19 +00005151 }
5152
Dan Gohman475871a2008-07-27 21:46:04 +00005153 SDValue StoreChain;
Chris Lattnerce872152006-03-19 06:31:19 +00005154 if (!Stores.empty()) // Not all undef elements?
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005155 StoreChain = DAG.getNode(ISD::TokenFactor, MVT::Other,
5156 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005157 else
5158 StoreChain = DAG.getEntryNode();
5159
5160 // Result is a load from the stack slot.
Evan Cheng466685d2006-10-09 20:57:25 +00005161 return DAG.getLoad(VT, StoreChain, FIPtr, NULL, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005162}
5163
Chris Lattner5b359c62005-04-02 04:00:59 +00005164void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman475871a2008-07-27 21:46:04 +00005165 SDValue Op, SDValue Amt,
5166 SDValue &Lo, SDValue &Hi) {
Chris Lattner5b359c62005-04-02 04:00:59 +00005167 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00005168 SDValue LHSL, LHSH;
Chris Lattner5b359c62005-04-02 04:00:59 +00005169 ExpandOp(Op, LHSL, LHSH);
5170
Dan Gohman475871a2008-07-27 21:46:04 +00005171 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005172 MVT VT = LHSL.getValueType();
Chris Lattnerf9f37fc2006-08-14 23:53:35 +00005173 Lo = DAG.getNode(NodeOp, DAG.getNodeValueTypes(VT, VT), 2, Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005174 Hi = Lo.getValue(1);
5175}
5176
5177
Chris Lattnere34b3962005-01-19 04:19:40 +00005178/// ExpandShift - Try to find a clever way to expand this shift operation out to
5179/// smaller elements. If we can't find a way that is more efficient than a
5180/// libcall on this target, return false. Otherwise, return true with the
5181/// low-parts expanded into Lo and Hi.
Dan Gohman475871a2008-07-27 21:46:04 +00005182bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op,SDValue Amt,
5183 SDValue &Lo, SDValue &Hi) {
Chris Lattnere34b3962005-01-19 04:19:40 +00005184 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5185 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005186
Duncan Sands83ec4b62008-06-06 12:08:01 +00005187 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman475871a2008-07-27 21:46:04 +00005188 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005189 MVT ShTy = ShAmt.getValueType();
5190 unsigned ShBits = ShTy.getSizeInBits();
5191 unsigned VTBits = Op.getValueType().getSizeInBits();
5192 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005193
Chris Lattner7a3c8552007-10-14 20:35:12 +00005194 // Handle the case when Amt is an immediate.
Gabor Greifba36cb52008-08-28 21:40:38 +00005195 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005196 unsigned Cst = CN->getZExtValue();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005197 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005198 SDValue InL, InH;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005199 ExpandOp(Op, InL, InH);
5200 switch(Opc) {
5201 case ISD::SHL:
5202 if (Cst > VTBits) {
5203 Lo = DAG.getConstant(0, NVT);
5204 Hi = DAG.getConstant(0, NVT);
5205 } else if (Cst > NVTBits) {
5206 Lo = DAG.getConstant(0, NVT);
5207 Hi = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst-NVTBits,ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005208 } else if (Cst == NVTBits) {
5209 Lo = DAG.getConstant(0, NVT);
5210 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005211 } else {
5212 Lo = DAG.getNode(ISD::SHL, NVT, InL, DAG.getConstant(Cst, ShTy));
5213 Hi = DAG.getNode(ISD::OR, NVT,
5214 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(Cst, ShTy)),
5215 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(NVTBits-Cst, ShTy)));
5216 }
5217 return true;
5218 case ISD::SRL:
5219 if (Cst > VTBits) {
5220 Lo = DAG.getConstant(0, NVT);
5221 Hi = DAG.getConstant(0, NVT);
5222 } else if (Cst > NVTBits) {
5223 Lo = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst-NVTBits,ShTy));
5224 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005225 } else if (Cst == NVTBits) {
5226 Lo = InH;
5227 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005228 } else {
5229 Lo = DAG.getNode(ISD::OR, NVT,
5230 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5231 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5232 Hi = DAG.getNode(ISD::SRL, NVT, InH, DAG.getConstant(Cst, ShTy));
5233 }
5234 return true;
5235 case ISD::SRA:
5236 if (Cst > VTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005237 Hi = Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005238 DAG.getConstant(NVTBits-1, ShTy));
5239 } else if (Cst > NVTBits) {
Misha Brukmanedf128a2005-04-21 22:36:52 +00005240 Lo = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005241 DAG.getConstant(Cst-NVTBits, ShTy));
Misha Brukmanedf128a2005-04-21 22:36:52 +00005242 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005243 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005244 } else if (Cst == NVTBits) {
5245 Lo = InH;
Misha Brukmanedf128a2005-04-21 22:36:52 +00005246 Hi = DAG.getNode(ISD::SRA, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005247 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005248 } else {
5249 Lo = DAG.getNode(ISD::OR, NVT,
5250 DAG.getNode(ISD::SRL, NVT, InL, DAG.getConstant(Cst, ShTy)),
5251 DAG.getNode(ISD::SHL, NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5252 Hi = DAG.getNode(ISD::SRA, NVT, InH, DAG.getConstant(Cst, ShTy));
5253 }
5254 return true;
5255 }
5256 }
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005257
5258 // Okay, the shift amount isn't constant. However, if we can tell that it is
5259 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005260 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5261 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005262 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005263
Dan Gohman9e255b72008-02-22 01:12:31 +00005264 // If we know that if any of the high bits of the shift amount are one, then
5265 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005266 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005267 // Mask out the high bit, which we know is set.
5268 Amt = DAG.getNode(ISD::AND, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005269 DAG.getConstant(~Mask, Amt.getValueType()));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005270
5271 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005272 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005273 ExpandOp(Op, InL, InH);
5274 switch(Opc) {
5275 case ISD::SHL:
5276 Lo = DAG.getConstant(0, NVT); // Low part is zero.
5277 Hi = DAG.getNode(ISD::SHL, NVT, InL, Amt); // High part from Lo part.
5278 return true;
5279 case ISD::SRL:
5280 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
5281 Lo = DAG.getNode(ISD::SRL, NVT, InH, Amt); // Lo part from Hi part.
5282 return true;
5283 case ISD::SRA:
5284 Hi = DAG.getNode(ISD::SRA, NVT, InH, // Sign extend high part.
5285 DAG.getConstant(NVTBits-1, Amt.getValueType()));
5286 Lo = DAG.getNode(ISD::SRA, NVT, InH, Amt); // Lo part from Hi part.
5287 return true;
5288 }
5289 }
5290
Dan Gohman9e255b72008-02-22 01:12:31 +00005291 // If we know that the high bits of the shift amount are all zero, then we can
5292 // do this as a couple of simple shifts.
5293 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005294 // Compute 32-amt.
Dan Gohman475871a2008-07-27 21:46:04 +00005295 SDValue Amt2 = DAG.getNode(ISD::SUB, Amt.getValueType(),
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005296 DAG.getConstant(NVTBits, Amt.getValueType()),
5297 Amt);
5298
5299 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005300 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005301 ExpandOp(Op, InL, InH);
5302 switch(Opc) {
5303 case ISD::SHL:
5304 Lo = DAG.getNode(ISD::SHL, NVT, InL, Amt);
5305 Hi = DAG.getNode(ISD::OR, NVT,
5306 DAG.getNode(ISD::SHL, NVT, InH, Amt),
5307 DAG.getNode(ISD::SRL, NVT, InL, Amt2));
5308 return true;
5309 case ISD::SRL:
5310 Hi = DAG.getNode(ISD::SRL, NVT, InH, Amt);
5311 Lo = DAG.getNode(ISD::OR, NVT,
5312 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5313 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5314 return true;
5315 case ISD::SRA:
5316 Hi = DAG.getNode(ISD::SRA, NVT, InH, Amt);
5317 Lo = DAG.getNode(ISD::OR, NVT,
5318 DAG.getNode(ISD::SRL, NVT, InL, Amt),
5319 DAG.getNode(ISD::SHL, NVT, InH, Amt2));
5320 return true;
5321 }
5322 }
5323
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005324 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005325}
Chris Lattner77e77a62005-01-21 06:05:23 +00005326
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005327
Chris Lattner77e77a62005-01-21 06:05:23 +00005328// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5329// does not fit into a register, return the lo part and set the hi part to the
5330// by-reg argument. If it does fit into a single register, return the result
5331// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00005332SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5333 bool isSigned, SDValue &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005334 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
5335 // The input chain to this libcall is the entry node of the function.
5336 // Legalizing the call will automatically add the previous call to the
5337 // dependence.
Dan Gohman475871a2008-07-27 21:46:04 +00005338 SDValue InChain = DAG.getEntryNode();
Chris Lattner6831a812006-02-13 09:18:02 +00005339
Chris Lattner77e77a62005-01-21 06:05:23 +00005340 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005341 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005342 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005343 MVT ArgVT = Node->getOperand(i).getValueType();
5344 const Type *ArgTy = ArgVT.getTypeForMVT();
Reid Spencer47857812006-12-31 05:55:36 +00005345 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005346 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005347 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005348 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005349 }
Bill Wendling056292f2008-09-16 21:48:12 +00005350 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
5351 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005352
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005353 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005354 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Dan Gohman475871a2008-07-27 21:46:04 +00005355 std::pair<SDValue,SDValue> CallInfo =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005356 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
5357 CallingConv::C, false, Callee, Args, DAG);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005358
Chris Lattner6831a812006-02-13 09:18:02 +00005359 // Legalize the call sequence, starting with the chain. This will advance
5360 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5361 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5362 LegalizeOp(CallInfo.second);
Dan Gohman475871a2008-07-27 21:46:04 +00005363 SDValue Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005364 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005365 default: assert(0 && "Unknown thing");
5366 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005367 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005368 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005369 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005370 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005371 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005372 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005373 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005374}
5375
Dan Gohman7f8613e2008-08-14 20:04:46 +00005376/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5377///
5378SDValue SelectionDAGLegalize::
5379LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op) {
5380 bool isCustom = false;
5381 SDValue Tmp1;
5382 switch (getTypeAction(Op.getValueType())) {
5383 case Legal:
5384 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5385 Op.getValueType())) {
5386 default: assert(0 && "Unknown operation action!");
5387 case TargetLowering::Custom:
5388 isCustom = true;
5389 // FALLTHROUGH
5390 case TargetLowering::Legal:
5391 Tmp1 = LegalizeOp(Op);
Gabor Greifba36cb52008-08-28 21:40:38 +00005392 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005393 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5394 else
5395 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5396 DestTy, Tmp1);
5397 if (isCustom) {
5398 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005399 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005400 }
5401 break;
5402 case TargetLowering::Expand:
5403 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy);
5404 break;
5405 case TargetLowering::Promote:
5406 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned);
5407 break;
5408 }
5409 break;
5410 case Expand:
5411 Result = ExpandIntToFP(isSigned, DestTy, Op);
5412 break;
5413 case Promote:
5414 Tmp1 = PromoteOp(Op);
5415 if (isSigned) {
5416 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp1.getValueType(),
5417 Tmp1, DAG.getValueType(Op.getValueType()));
5418 } else {
5419 Tmp1 = DAG.getZeroExtendInReg(Tmp1,
5420 Op.getValueType());
5421 }
Gabor Greifba36cb52008-08-28 21:40:38 +00005422 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005423 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5424 else
5425 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5426 DestTy, Tmp1);
5427 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5428 break;
5429 }
5430 return Result;
5431}
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005432
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005433/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5434///
Dan Gohman475871a2008-07-27 21:46:04 +00005435SDValue SelectionDAGLegalize::
5436ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005437 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005438 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005439
Dan Gohman7f8613e2008-08-14 20:04:46 +00005440 // Expand unsupported int-to-fp vector casts by unrolling them.
5441 if (DestTy.isVector()) {
5442 if (!ExpandSource)
5443 return LegalizeOp(UnrollVectorOp(Source));
5444 MVT DestEltTy = DestTy.getVectorElementType();
5445 if (DestTy.getVectorNumElements() == 1) {
5446 SDValue Scalar = ScalarizeVectorOp(Source);
5447 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
5448 DestEltTy, Scalar);
5449 return DAG.getNode(ISD::BUILD_VECTOR, DestTy, Result);
5450 }
5451 SDValue Lo, Hi;
5452 SplitVectorOp(Source, Lo, Hi);
5453 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5454 DestTy.getVectorNumElements() / 2);
5455 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Lo);
5456 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy, Hi);
Evan Chengefa53392008-10-13 18:46:18 +00005457 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, DestTy, LoResult,
5458 HiResult));
Dan Gohman7f8613e2008-08-14 20:04:46 +00005459 }
5460
Evan Cheng9845eb52008-04-01 02:18:22 +00005461 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5462 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005463 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005464 // incoming integer is set. To handle this, we dynamically test to see if
5465 // it is set, and, if so, add a fudge factor.
Dan Gohman475871a2008-07-27 21:46:04 +00005466 SDValue Hi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005467 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005468 SDValue Lo;
Dan Gohman034f60e2008-03-11 01:59:03 +00005469 ExpandOp(Source, Lo, Hi);
5470 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, Lo, Hi);
5471 } else {
5472 // The comparison for the sign bit will use the entire operand.
5473 Hi = Source;
5474 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005475
Chris Lattner66de05b2005-05-13 04:45:13 +00005476 // If this is unsigned, and not supported, first perform the conversion to
5477 // signed, then adjust the result if the sign bit is set.
Dan Gohman475871a2008-07-27 21:46:04 +00005478 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source);
Chris Lattner66de05b2005-05-13 04:45:13 +00005479
Dan Gohman475871a2008-07-27 21:46:04 +00005480 SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Hi), Hi,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00005481 DAG.getConstant(0, Hi.getValueType()),
5482 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00005483 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5484 SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
Chris Lattnere9c35e72005-04-13 05:09:42 +00005485 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005486 uint64_t FF = 0x5f800000ULL;
5487 if (TLI.isLittleEndian()) FF <<= 32;
Dan Gohman34bc1782008-03-05 02:07:31 +00005488 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005489
Dan Gohman475871a2008-07-27 21:46:04 +00005490 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00005491 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattnere9c35e72005-04-13 05:09:42 +00005492 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00005493 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00005494 SDValue FudgeInReg;
Chris Lattnere9c35e72005-04-13 05:09:42 +00005495 if (DestTy == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005496 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005497 PseudoSourceValue::getConstantPool(), 0,
5498 false, Alignment);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005499 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005500 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005501 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005502 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005503 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00005504 MVT::f32, false, Alignment);
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005505 else
5506 assert(0 && "Unexpected conversion");
5507
Duncan Sands83ec4b62008-06-06 12:08:01 +00005508 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005509 if (SCVT != DestTy) {
5510 // Destination type needs to be expanded as well. The FADD now we are
5511 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005512 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5513 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dan Gohmand91446d2008-03-05 01:08:17 +00005514 SignedConv = DAG.getNode(ISD::BUILD_PAIR, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005515 SignedConv, SignedConv.getValue(1));
5516 }
5517 SignedConv = DAG.getNode(ISD::BIT_CONVERT, DestTy, SignedConv);
5518 }
Chris Lattner473a9902005-09-29 06:44:39 +00005519 return DAG.getNode(ISD::FADD, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005520 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005521
Chris Lattnera88a2602005-05-14 05:33:54 +00005522 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00005523 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00005524 default: assert(0 && "This action not implemented for this operation!");
5525 case TargetLowering::Legal:
5526 case TargetLowering::Expand:
5527 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00005528 case TargetLowering::Custom: {
Dan Gohman475871a2008-07-27 21:46:04 +00005529 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, DestTy,
Chris Lattner07dffd62005-08-26 00:14:16 +00005530 Source), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005531 if (NV.getNode())
Chris Lattner07dffd62005-08-26 00:14:16 +00005532 return LegalizeOp(NV);
5533 break; // The target decided this was legal after all
5534 }
Chris Lattnera88a2602005-05-14 05:33:54 +00005535 }
5536
Chris Lattner13689e22005-05-12 07:00:44 +00005537 // Expand the source, then glue it back together for the call. We must expand
5538 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00005539 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005540 SDValue SrcLo, SrcHi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005541 ExpandOp(Source, SrcLo, SrcHi);
5542 Source = DAG.getNode(ISD::BUILD_PAIR, SourceVT, SrcLo, SrcHi);
5543 }
Chris Lattner13689e22005-05-12 07:00:44 +00005544
Duncan Sandsb2ff8852008-07-17 02:36:29 +00005545 RTLIB::Libcall LC = isSigned ?
5546 RTLIB::getSINTTOFP(SourceVT, DestTy) :
5547 RTLIB::getUINTTOFP(SourceVT, DestTy);
5548 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
5549
Chris Lattner6831a812006-02-13 09:18:02 +00005550 Source = DAG.getNode(ISD::SINT_TO_FP, DestTy, Source);
Dan Gohman475871a2008-07-27 21:46:04 +00005551 SDValue HiPart;
Gabor Greifba36cb52008-08-28 21:40:38 +00005552 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
5553 if (Result.getValueType() != DestTy && HiPart.getNode())
Dan Gohmana2e94852008-03-10 23:03:31 +00005554 Result = DAG.getNode(ISD::BUILD_PAIR, DestTy, Result, HiPart);
5555 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005556}
Misha Brukmanedf128a2005-04-21 22:36:52 +00005557
Chris Lattner22cde6a2006-01-28 08:25:58 +00005558/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
5559/// INT_TO_FP operation of the specified operand when the target requests that
5560/// we expand it. At this point, we know that the result and operand types are
5561/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00005562SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
5563 SDValue Op0,
5564 MVT DestVT) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005565 if (Op0.getValueType() == MVT::i32) {
5566 // simple 32-bit [signed|unsigned] integer to float/double expansion
5567
Chris Lattner23594d42008-01-16 07:03:22 +00005568 // Get the stack frame index of a 8 byte buffer.
Dan Gohman475871a2008-07-27 21:46:04 +00005569 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Chris Lattner23594d42008-01-16 07:03:22 +00005570
Chris Lattner22cde6a2006-01-28 08:25:58 +00005571 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00005572 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00005573 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00005574 SDValue Hi = StackSlot;
5575 SDValue Lo = DAG.getNode(ISD::ADD, TLI.getPointerTy(), StackSlot,WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00005576 if (TLI.isLittleEndian())
5577 std::swap(Hi, Lo);
5578
Chris Lattner22cde6a2006-01-28 08:25:58 +00005579 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00005580 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005581 if (isSigned) {
5582 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman475871a2008-07-27 21:46:04 +00005583 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005584 Op0Mapped = DAG.getNode(ISD::XOR, MVT::i32, Op0, SignBit);
5585 } else {
5586 Op0Mapped = Op0;
5587 }
5588 // store the lo of the constructed double - based on integer input
Dan Gohman475871a2008-07-27 21:46:04 +00005589 SDValue Store1 = DAG.getStore(DAG.getEntryNode(),
Evan Cheng8b2794a2006-10-13 21:14:26 +00005590 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005591 // initial hi portion of constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00005592 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005593 // store the hi of the constructed double - biased exponent
Dan Gohman475871a2008-07-27 21:46:04 +00005594 SDValue Store2=DAG.getStore(Store1, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005595 // load the constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00005596 SDValue Load = DAG.getLoad(MVT::f64, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005597 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00005598 SDValue Bias = DAG.getConstantFP(isSigned ?
Chris Lattner22cde6a2006-01-28 08:25:58 +00005599 BitsToDouble(0x4330000080000000ULL)
5600 : BitsToDouble(0x4330000000000000ULL),
5601 MVT::f64);
5602 // subtract the bias
Dan Gohman475871a2008-07-27 21:46:04 +00005603 SDValue Sub = DAG.getNode(ISD::FSUB, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005604 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00005605 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005606 // handle final rounding
5607 if (DestVT == MVT::f64) {
5608 // do nothing
5609 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00005610 } else if (DestVT.bitsLT(MVT::f64)) {
Chris Lattner0bd48932008-01-17 07:00:52 +00005611 Result = DAG.getNode(ISD::FP_ROUND, DestVT, Sub,
5612 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00005613 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesen118cd9d2007-09-16 16:51:49 +00005614 Result = DAG.getNode(ISD::FP_EXTEND, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005615 }
5616 return Result;
5617 }
5618 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dan Gohman475871a2008-07-27 21:46:04 +00005619 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005620
Dan Gohman475871a2008-07-27 21:46:04 +00005621 SDValue SignSet = DAG.getSetCC(TLI.getSetCCResultType(Op0), Op0,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005622 DAG.getConstant(0, Op0.getValueType()),
5623 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00005624 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
5625 SDValue CstOffset = DAG.getNode(ISD::SELECT, Zero.getValueType(),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005626 SignSet, Four, Zero);
5627
5628 // If the sign bit of the integer is set, the large number will be treated
5629 // as a negative number. To counteract this, the dynamic code adds an
5630 // offset depending on the data type.
5631 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005632 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005633 default: assert(0 && "Unsupported integer type!");
5634 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
5635 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
5636 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
5637 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
5638 }
5639 if (TLI.isLittleEndian()) FF <<= 32;
Reid Spencer47857812006-12-31 05:55:36 +00005640 static Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005641
Dan Gohman475871a2008-07-27 21:46:04 +00005642 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Dan Gohman50284d82008-09-16 22:05:41 +00005643 unsigned Alignment = 1 << cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005644 CPIdx = DAG.getNode(ISD::ADD, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00005645 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00005646 SDValue FudgeInReg;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005647 if (DestVT == MVT::f32)
Dan Gohman69de1932008-02-06 22:27:42 +00005648 FudgeInReg = DAG.getLoad(MVT::f32, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005649 PseudoSourceValue::getConstantPool(), 0,
5650 false, Alignment);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005651 else {
Dan Gohman69de1932008-02-06 22:27:42 +00005652 FudgeInReg =
5653 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, DestVT,
5654 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005655 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00005656 MVT::f32, false, Alignment));
Chris Lattner22cde6a2006-01-28 08:25:58 +00005657 }
5658
5659 return DAG.getNode(ISD::FADD, DestVT, Tmp1, FudgeInReg);
5660}
5661
5662/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
5663/// *INT_TO_FP operation of the specified operand when the target requests that
5664/// we promote it. At this point, we know that the result and operand types are
5665/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
5666/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00005667SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
5668 MVT DestVT,
5669 bool isSigned) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005670 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005671 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005672
5673 unsigned OpToUse = 0;
5674
5675 // Scan for the appropriate larger type to use.
5676 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005677 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
5678 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005679
5680 // If the target supports SINT_TO_FP of this type, use it.
5681 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
5682 default: break;
5683 case TargetLowering::Legal:
5684 if (!TLI.isTypeLegal(NewInTy))
5685 break; // Can't use this datatype.
5686 // FALL THROUGH.
5687 case TargetLowering::Custom:
5688 OpToUse = ISD::SINT_TO_FP;
5689 break;
5690 }
5691 if (OpToUse) break;
5692 if (isSigned) continue;
5693
5694 // If the target supports UINT_TO_FP of this type, use it.
5695 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
5696 default: break;
5697 case TargetLowering::Legal:
5698 if (!TLI.isTypeLegal(NewInTy))
5699 break; // Can't use this datatype.
5700 // FALL THROUGH.
5701 case TargetLowering::Custom:
5702 OpToUse = ISD::UINT_TO_FP;
5703 break;
5704 }
5705 if (OpToUse) break;
5706
5707 // Otherwise, try a larger type.
5708 }
5709
5710 // Okay, we found the operation and type to use. Zero extend our input to the
5711 // desired type then run the operation on it.
5712 return DAG.getNode(OpToUse, DestVT,
5713 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
5714 NewInTy, LegalOp));
5715}
5716
5717/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
5718/// FP_TO_*INT operation of the specified operand when the target requests that
5719/// we promote it. At this point, we know that the result and operand types are
5720/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
5721/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00005722SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
5723 MVT DestVT,
5724 bool isSigned) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005725 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005726 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00005727
5728 unsigned OpToUse = 0;
5729
5730 // Scan for the appropriate larger type to use.
5731 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005732 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
5733 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00005734
5735 // If the target supports FP_TO_SINT returning this type, use it.
5736 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
5737 default: break;
5738 case TargetLowering::Legal:
5739 if (!TLI.isTypeLegal(NewOutTy))
5740 break; // Can't use this datatype.
5741 // FALL THROUGH.
5742 case TargetLowering::Custom:
5743 OpToUse = ISD::FP_TO_SINT;
5744 break;
5745 }
5746 if (OpToUse) break;
5747
5748 // If the target supports FP_TO_UINT of this type, use it.
5749 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
5750 default: break;
5751 case TargetLowering::Legal:
5752 if (!TLI.isTypeLegal(NewOutTy))
5753 break; // Can't use this datatype.
5754 // FALL THROUGH.
5755 case TargetLowering::Custom:
5756 OpToUse = ISD::FP_TO_UINT;
5757 break;
5758 }
5759 if (OpToUse) break;
5760
5761 // Otherwise, try a larger type.
5762 }
5763
Chris Lattner27a6c732007-11-24 07:07:01 +00005764
5765 // Okay, we found the operation and type to use.
Dan Gohman475871a2008-07-27 21:46:04 +00005766 SDValue Operation = DAG.getNode(OpToUse, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00005767
Chris Lattner27a6c732007-11-24 07:07:01 +00005768 // If the operation produces an invalid type, it must be custom lowered. Use
5769 // the target lowering hooks to expand it. Just keep the low part of the
5770 // expanded operation, we know that we're truncating anyway.
5771 if (getTypeAction(NewOutTy) == Expand) {
Gabor Greifba36cb52008-08-28 21:40:38 +00005772 Operation = SDValue(TLI.ReplaceNodeResults(Operation.getNode(), DAG), 0);
5773 assert(Operation.getNode() && "Didn't return anything");
Chris Lattner27a6c732007-11-24 07:07:01 +00005774 }
Duncan Sands126d9072008-07-04 11:47:58 +00005775
Chris Lattner27a6c732007-11-24 07:07:01 +00005776 // Truncate the result of the extended FP_TO_*INT operation to the desired
5777 // size.
5778 return DAG.getNode(ISD::TRUNCATE, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005779}
5780
5781/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
5782///
Dan Gohman475871a2008-07-27 21:46:04 +00005783SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005784 MVT VT = Op.getValueType();
5785 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman475871a2008-07-27 21:46:04 +00005786 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00005787 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005788 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
5789 case MVT::i16:
5790 Tmp2 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5791 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5792 return DAG.getNode(ISD::OR, VT, Tmp1, Tmp2);
5793 case MVT::i32:
5794 Tmp4 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5795 Tmp3 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5796 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5797 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5798 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
5799 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(0xFF00, VT));
5800 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5801 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5802 return DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5803 case MVT::i64:
5804 Tmp8 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(56, SHVT));
5805 Tmp7 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(40, SHVT));
5806 Tmp6 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(24, SHVT));
5807 Tmp5 = DAG.getNode(ISD::SHL, VT, Op, DAG.getConstant(8, SHVT));
5808 Tmp4 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(8, SHVT));
5809 Tmp3 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(24, SHVT));
5810 Tmp2 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(40, SHVT));
5811 Tmp1 = DAG.getNode(ISD::SRL, VT, Op, DAG.getConstant(56, SHVT));
5812 Tmp7 = DAG.getNode(ISD::AND, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
5813 Tmp6 = DAG.getNode(ISD::AND, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
5814 Tmp5 = DAG.getNode(ISD::AND, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
5815 Tmp4 = DAG.getNode(ISD::AND, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
5816 Tmp3 = DAG.getNode(ISD::AND, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
5817 Tmp2 = DAG.getNode(ISD::AND, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
5818 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp7);
5819 Tmp6 = DAG.getNode(ISD::OR, VT, Tmp6, Tmp5);
5820 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp3);
5821 Tmp2 = DAG.getNode(ISD::OR, VT, Tmp2, Tmp1);
5822 Tmp8 = DAG.getNode(ISD::OR, VT, Tmp8, Tmp6);
5823 Tmp4 = DAG.getNode(ISD::OR, VT, Tmp4, Tmp2);
5824 return DAG.getNode(ISD::OR, VT, Tmp8, Tmp4);
5825 }
5826}
5827
5828/// ExpandBitCount - Expand the specified bitcount instruction into operations.
5829///
Dan Gohman475871a2008-07-27 21:46:04 +00005830SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00005831 switch (Opc) {
5832 default: assert(0 && "Cannot expand this yet!");
5833 case ISD::CTPOP: {
5834 static const uint64_t mask[6] = {
5835 0x5555555555555555ULL, 0x3333333333333333ULL,
5836 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
5837 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
5838 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005839 MVT VT = Op.getValueType();
5840 MVT ShVT = TLI.getShiftAmountTy();
5841 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005842 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
5843 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Dan Gohman475871a2008-07-27 21:46:04 +00005844 SDValue Tmp2 = DAG.getConstant(mask[i], VT);
5845 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005846 Op = DAG.getNode(ISD::ADD, VT, DAG.getNode(ISD::AND, VT, Op, Tmp2),
5847 DAG.getNode(ISD::AND, VT,
5848 DAG.getNode(ISD::SRL, VT, Op, Tmp3),Tmp2));
5849 }
5850 return Op;
5851 }
5852 case ISD::CTLZ: {
5853 // for now, we do this:
5854 // x = x | (x >> 1);
5855 // x = x | (x >> 2);
5856 // ...
5857 // x = x | (x >>16);
5858 // x = x | (x >>32); // for 64-bit input
5859 // return popcount(~x);
5860 //
5861 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005862 MVT VT = Op.getValueType();
5863 MVT ShVT = TLI.getShiftAmountTy();
5864 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00005865 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005866 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Chris Lattner22cde6a2006-01-28 08:25:58 +00005867 Op = DAG.getNode(ISD::OR, VT, Op, DAG.getNode(ISD::SRL, VT, Op, Tmp3));
5868 }
5869 Op = DAG.getNode(ISD::XOR, VT, Op, DAG.getConstant(~0ULL, VT));
5870 return DAG.getNode(ISD::CTPOP, VT, Op);
5871 }
5872 case ISD::CTTZ: {
5873 // for now, we use: { return popcount(~x & (x - 1)); }
5874 // unless the target has ctlz but not ctpop, in which case we use:
5875 // { return 32 - nlz(~x & (x-1)); }
5876 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00005877 MVT VT = Op.getValueType();
Dan Gohman475871a2008-07-27 21:46:04 +00005878 SDValue Tmp2 = DAG.getConstant(~0ULL, VT);
5879 SDValue Tmp3 = DAG.getNode(ISD::AND, VT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00005880 DAG.getNode(ISD::XOR, VT, Op, Tmp2),
5881 DAG.getNode(ISD::SUB, VT, Op, DAG.getConstant(1, VT)));
5882 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
5883 if (!TLI.isOperationLegal(ISD::CTPOP, VT) &&
5884 TLI.isOperationLegal(ISD::CTLZ, VT))
5885 return DAG.getNode(ISD::SUB, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00005886 DAG.getConstant(VT.getSizeInBits(), VT),
Chris Lattner22cde6a2006-01-28 08:25:58 +00005887 DAG.getNode(ISD::CTLZ, VT, Tmp3));
5888 return DAG.getNode(ISD::CTPOP, VT, Tmp3);
5889 }
5890 }
5891}
Chris Lattnere34b3962005-01-19 04:19:40 +00005892
Dan Gohman475871a2008-07-27 21:46:04 +00005893/// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattner3e928bb2005-01-07 07:47:09 +00005894/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
Dan Gohman929d3eb2008-10-01 15:07:49 +00005895/// LegalizedNodes map is filled in for any results that are not expanded, the
Chris Lattner3e928bb2005-01-07 07:47:09 +00005896/// ExpandedNodes map is filled in for any results that are expanded, and the
5897/// Lo/Hi values are returned.
Dan Gohman475871a2008-07-27 21:46:04 +00005898void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00005899 MVT VT = Op.getValueType();
5900 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greifba36cb52008-08-28 21:40:38 +00005901 SDNode *Node = Op.getNode();
Chris Lattner3e928bb2005-01-07 07:47:09 +00005902 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00005903 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00005904 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00005905
Chris Lattner6fdcb252005-09-02 20:32:45 +00005906 // See if we already expanded it.
Dan Gohman475871a2008-07-27 21:46:04 +00005907 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00005908 = ExpandedNodes.find(Op);
5909 if (I != ExpandedNodes.end()) {
5910 Lo = I->second.first;
5911 Hi = I->second.second;
5912 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005913 }
5914
Chris Lattner3e928bb2005-01-07 07:47:09 +00005915 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00005916 case ISD::CopyFromReg:
5917 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005918 case ISD::FP_ROUND_INREG:
5919 if (VT == MVT::ppcf128 &&
5920 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
5921 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00005922 SDValue SrcLo, SrcHi, Src;
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005923 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
5924 Src = DAG.getNode(ISD::BUILD_PAIR, VT, SrcLo, SrcHi);
Dan Gohman475871a2008-07-27 21:46:04 +00005925 SDValue Result = TLI.LowerOperation(
Dale Johannesenfcf4d242007-10-11 23:32:15 +00005926 DAG.getNode(ISD::FP_ROUND_INREG, VT, Src, Op.getOperand(1)), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005927 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
5928 Lo = Result.getNode()->getOperand(0);
5929 Hi = Result.getNode()->getOperand(1);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00005930 break;
5931 }
5932 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00005933 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005934#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00005935 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00005936#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00005937 assert(0 && "Do not know how to expand this operator!");
5938 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00005939 case ISD::EXTRACT_ELEMENT:
5940 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005941 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman1953ecb2008-02-27 01:52:30 +00005942 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00005943 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00005944 case ISD::EXTRACT_VECTOR_ELT:
5945 assert(VT==MVT::i64 && "Do not know how to expand this operator!");
5946 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
5947 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
5948 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00005949 case ISD::UNDEF:
5950 Lo = DAG.getNode(ISD::UNDEF, NVT);
5951 Hi = DAG.getNode(ISD::UNDEF, NVT);
5952 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00005953 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005954 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00005955 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
5956 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
5957 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00005958 break;
5959 }
Evan Cheng00495212006-12-12 21:32:44 +00005960 case ISD::ConstantFP: {
5961 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00005962 if (CFP->getValueType(0) == MVT::ppcf128) {
Dale Johannesen7111b022008-10-09 18:53:47 +00005963 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesena471c2e2007-10-11 18:07:22 +00005964 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
5965 MVT::f64);
5966 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
5967 MVT::f64);
5968 break;
5969 }
Evan Cheng279101e2006-12-12 22:19:28 +00005970 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00005971 if (getTypeAction(Lo.getValueType()) == Expand)
5972 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00005973 break;
5974 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005975 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00005976 // Return the operands.
5977 Lo = Node->getOperand(0);
5978 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00005979 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00005980
5981 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00005982 if (Node->getNumValues() == 1) {
5983 ExpandOp(Op.getOperand(0), Lo, Hi);
5984 break;
5985 }
Chris Lattner27a6c732007-11-24 07:07:01 +00005986 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif99a6cb92008-08-26 22:36:50 +00005987 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattner27a6c732007-11-24 07:07:01 +00005988 Op.getValue(1).getValueType() == MVT::Other &&
5989 "unhandled MERGE_VALUES");
5990 ExpandOp(Op.getOperand(0), Lo, Hi);
5991 // Remember that we legalized the chain.
5992 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
5993 break;
Chris Lattner58f79632005-12-12 22:27:43 +00005994
5995 case ISD::SIGN_EXTEND_INREG:
5996 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00005997 // sext_inreg the low part if needed.
5998 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, NVT, Lo, Node->getOperand(1));
5999
6000 // The high part gets the sign extension from the lo-part. This handles
6001 // things like sextinreg V:i64 from i8.
Chris Lattner58f79632005-12-12 22:27:43 +00006002 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006003 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00006004 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00006005 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006006
Nate Begemand88fc032006-01-14 03:14:10 +00006007 case ISD::BSWAP: {
6008 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006009 SDValue TempLo = DAG.getNode(ISD::BSWAP, NVT, Hi);
Nate Begemand88fc032006-01-14 03:14:10 +00006010 Hi = DAG.getNode(ISD::BSWAP, NVT, Lo);
6011 Lo = TempLo;
6012 break;
6013 }
6014
Chris Lattneredb1add2005-05-11 04:51:16 +00006015 case ISD::CTPOP:
6016 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner9b583b42005-05-11 05:09:47 +00006017 Lo = DAG.getNode(ISD::ADD, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
6018 DAG.getNode(ISD::CTPOP, NVT, Lo),
6019 DAG.getNode(ISD::CTPOP, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00006020 Hi = DAG.getConstant(0, NVT);
6021 break;
6022
Chris Lattner39a8f332005-05-12 19:05:01 +00006023 case ISD::CTLZ: {
6024 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006025 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006026 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
6027 SDValue HLZ = DAG.getNode(ISD::CTLZ, NVT, Hi);
6028 SDValue TopNotZero = DAG.getSetCC(TLI.getSetCCResultType(HLZ), HLZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00006029 ISD::SETNE);
Dan Gohman475871a2008-07-27 21:46:04 +00006030 SDValue LowPart = DAG.getNode(ISD::CTLZ, NVT, Lo);
Chris Lattner39a8f332005-05-12 19:05:01 +00006031 LowPart = DAG.getNode(ISD::ADD, NVT, LowPart, BitsC);
6032
6033 Lo = DAG.getNode(ISD::SELECT, NVT, TopNotZero, HLZ, LowPart);
6034 Hi = DAG.getConstant(0, NVT);
6035 break;
6036 }
6037
6038 case ISD::CTTZ: {
6039 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006040 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006041 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
6042 SDValue LTZ = DAG.getNode(ISD::CTTZ, NVT, Lo);
6043 SDValue BotNotZero = DAG.getSetCC(TLI.getSetCCResultType(LTZ), LTZ, BitsC,
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00006044 ISD::SETNE);
Dan Gohman475871a2008-07-27 21:46:04 +00006045 SDValue HiPart = DAG.getNode(ISD::CTTZ, NVT, Hi);
Chris Lattner39a8f332005-05-12 19:05:01 +00006046 HiPart = DAG.getNode(ISD::ADD, NVT, HiPart, BitsC);
6047
6048 Lo = DAG.getNode(ISD::SELECT, NVT, BotNotZero, LTZ, HiPart);
6049 Hi = DAG.getConstant(0, NVT);
6050 break;
6051 }
Chris Lattneredb1add2005-05-11 04:51:16 +00006052
Nate Begemanacc398c2006-01-25 18:21:52 +00006053 case ISD::VAARG: {
Dan Gohman475871a2008-07-27 21:46:04 +00006054 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6055 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Nate Begemanacc398c2006-01-25 18:21:52 +00006056 Lo = DAG.getVAArg(NVT, Ch, Ptr, Node->getOperand(2));
6057 Hi = DAG.getVAArg(NVT, Lo.getValue(1), Ptr, Node->getOperand(2));
6058
6059 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00006060 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00006061 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00006062 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00006063 std::swap(Lo, Hi);
6064 break;
6065 }
6066
Chris Lattner3e928bb2005-01-07 07:47:09 +00006067 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00006068 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00006069 SDValue Ch = LD->getChain(); // Legalize the chain.
6070 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Evan Cheng466685d2006-10-09 20:57:25 +00006071 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f8613e2008-08-14 20:04:46 +00006072 const Value *SV = LD->getSrcValue();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006073 int SVOffset = LD->getSrcValueOffset();
6074 unsigned Alignment = LD->getAlignment();
6075 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006076
Evan Cheng466685d2006-10-09 20:57:25 +00006077 if (ExtType == ISD::NON_EXTLOAD) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00006078 Lo = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006079 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00006080 if (VT == MVT::f32 || VT == MVT::f64) {
6081 // f32->i32 or f64->i64 one to one expansion.
6082 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006083 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00006084 // Recursively expand the new load.
6085 if (getTypeAction(NVT) == Expand)
6086 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006087 break;
6088 }
Chris Lattnerec39a452005-01-19 18:02:17 +00006089
Evan Cheng466685d2006-10-09 20:57:25 +00006090 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006091 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Evan Cheng466685d2006-10-09 20:57:25 +00006092 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006093 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006094 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006095 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman7f8613e2008-08-14 20:04:46 +00006096 Hi = DAG.getLoad(NVT, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006097 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00006098
Evan Cheng466685d2006-10-09 20:57:25 +00006099 // Build a factor node to remember that this load is independent of the
6100 // other one.
Dan Gohman475871a2008-07-27 21:46:04 +00006101 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Evan Cheng466685d2006-10-09 20:57:25 +00006102 Hi.getValue(1));
6103
6104 // Remember that we legalized the chain.
6105 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00006106 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00006107 std::swap(Lo, Hi);
6108 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006109 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00006110
Dale Johannesenb6210fc2007-10-19 20:29:00 +00006111 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6112 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00006113 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dan Gohman7f8613e2008-08-14 20:04:46 +00006114 SDValue Load = DAG.getLoad(EVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006115 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00006116 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006117 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Evan Cheng548f6112006-12-13 03:19:57 +00006118 ExpandOp(DAG.getNode(ISD::FP_EXTEND, VT, Load), Lo, Hi);
6119 break;
6120 }
Evan Cheng466685d2006-10-09 20:57:25 +00006121
6122 if (EVT == NVT)
Dan Gohman7f8613e2008-08-14 20:04:46 +00006123 Lo = DAG.getLoad(NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006124 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006125 else
Dan Gohman7f8613e2008-08-14 20:04:46 +00006126 Lo = DAG.getExtLoad(ExtType, NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006127 SVOffset, EVT, isVolatile,
6128 Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006129
6130 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006131 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng466685d2006-10-09 20:57:25 +00006132
6133 if (ExtType == ISD::SEXTLOAD) {
6134 // The high part is obtained by SRA'ing all but one of the bits of the
6135 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006136 unsigned LoSize = Lo.getValueType().getSizeInBits();
Evan Cheng466685d2006-10-09 20:57:25 +00006137 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6138 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6139 } else if (ExtType == ISD::ZEXTLOAD) {
6140 // The high part is just a zero.
6141 Hi = DAG.getConstant(0, NVT);
6142 } else /* if (ExtType == ISD::EXTLOAD) */ {
6143 // The high part is undefined.
6144 Hi = DAG.getNode(ISD::UNDEF, NVT);
6145 }
6146 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006147 break;
6148 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006149 case ISD::AND:
6150 case ISD::OR:
6151 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman475871a2008-07-27 21:46:04 +00006152 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006153 ExpandOp(Node->getOperand(0), LL, LH);
6154 ExpandOp(Node->getOperand(1), RL, RH);
6155 Lo = DAG.getNode(Node->getOpcode(), NVT, LL, RL);
6156 Hi = DAG.getNode(Node->getOpcode(), NVT, LH, RH);
6157 break;
6158 }
6159 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006160 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006161 ExpandOp(Node->getOperand(1), LL, LH);
6162 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006163 if (getTypeAction(NVT) == Expand)
6164 NVT = TLI.getTypeToExpandTo(NVT);
Chris Lattner456a93a2006-01-28 07:39:30 +00006165 Lo = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006166 if (VT != MVT::f32)
6167 Hi = DAG.getNode(ISD::SELECT, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006168 break;
6169 }
Nate Begeman9373a812005-08-10 20:51:12 +00006170 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006171 SDValue TL, TH, FL, FH;
Nate Begeman9373a812005-08-10 20:51:12 +00006172 ExpandOp(Node->getOperand(2), TL, TH);
6173 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006174 if (getTypeAction(NVT) == Expand)
6175 NVT = TLI.getTypeToExpandTo(NVT);
Nate Begeman9373a812005-08-10 20:51:12 +00006176 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6177 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006178 if (VT != MVT::f32)
6179 Hi = DAG.getNode(ISD::SELECT_CC, NVT, Node->getOperand(0),
6180 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006181 break;
6182 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006183 case ISD::ANY_EXTEND:
6184 // The low part is any extension of the input (which degenerates to a copy).
6185 Lo = DAG.getNode(ISD::ANY_EXTEND, NVT, Node->getOperand(0));
6186 // The high part is undefined.
6187 Hi = DAG.getNode(ISD::UNDEF, NVT);
6188 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006189 case ISD::SIGN_EXTEND: {
6190 // The low part is just a sign extension of the input (which degenerates to
6191 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006192 Lo = DAG.getNode(ISD::SIGN_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006193
Chris Lattner3e928bb2005-01-07 07:47:09 +00006194 // The high part is obtained by SRA'ing all but one of the bits of the lo
6195 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006196 unsigned LoSize = Lo.getValueType().getSizeInBits();
Chris Lattner8137c9e2006-01-28 05:07:51 +00006197 Hi = DAG.getNode(ISD::SRA, NVT, Lo,
6198 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006199 break;
6200 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006201 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006202 // The low part is just a zero extension of the input (which degenerates to
6203 // a copy).
Chris Lattner8137c9e2006-01-28 05:07:51 +00006204 Lo = DAG.getNode(ISD::ZERO_EXTEND, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006205
Chris Lattner3e928bb2005-01-07 07:47:09 +00006206 // The high part is just a zero.
6207 Hi = DAG.getConstant(0, NVT);
6208 break;
Chris Lattner35481892005-12-23 00:16:34 +00006209
Chris Lattner4c948eb2007-02-13 23:55:16 +00006210 case ISD::TRUNCATE: {
6211 // The input value must be larger than this value. Expand *it*.
Dan Gohman475871a2008-07-27 21:46:04 +00006212 SDValue NewLo;
Chris Lattner4c948eb2007-02-13 23:55:16 +00006213 ExpandOp(Node->getOperand(0), NewLo, Hi);
6214
6215 // The low part is now either the right size, or it is closer. If not the
6216 // right size, make an illegal truncate so we recursively expand it.
6217 if (NewLo.getValueType() != Node->getValueType(0))
6218 NewLo = DAG.getNode(ISD::TRUNCATE, Node->getValueType(0), NewLo);
6219 ExpandOp(NewLo, Lo, Hi);
6220 break;
6221 }
6222
Chris Lattner35481892005-12-23 00:16:34 +00006223 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006224 SDValue Tmp;
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006225 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6226 // If the target wants to, allow it to lower this itself.
6227 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6228 case Expand: assert(0 && "cannot expand FP!");
6229 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6230 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6231 }
6232 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, VT, Tmp), DAG);
6233 }
6234
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006235 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006236 if (VT == MVT::f32 || VT == MVT::f64) {
6237 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006238 if (getTypeAction(NVT) == Expand)
6239 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006240 break;
6241 }
6242
6243 // If source operand will be expanded to the same type as VT, i.e.
6244 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006245 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006246 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6247 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006248 break;
6249 }
6250
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006251 // Turn this into a load/store pair by default.
Gabor Greifba36cb52008-08-28 21:40:38 +00006252 if (Tmp.getNode() == 0)
Chris Lattner1401d152008-01-16 07:45:30 +00006253 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006254
Chris Lattner35481892005-12-23 00:16:34 +00006255 ExpandOp(Tmp, Lo, Hi);
6256 break;
6257 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006258
Chris Lattner27a6c732007-11-24 07:07:01 +00006259 case ISD::READCYCLECOUNTER: {
Chris Lattner308575b2005-11-20 22:56:56 +00006260 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
6261 TargetLowering::Custom &&
6262 "Must custom expand ReadCycleCounter");
Dan Gohman475871a2008-07-27 21:46:04 +00006263 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006264 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattner27a6c732007-11-24 07:07:01 +00006265 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006266 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006267 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006268 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006269 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006270
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006271 case ISD::ATOMIC_CMP_SWAP_64: {
6272 // This operation does not need a loop.
6273 SDValue Tmp = TLI.LowerOperation(Op, DAG);
6274 assert(Tmp.getNode() && "Node must be custom expanded!");
6275 ExpandOp(Tmp.getValue(0), Lo, Hi);
6276 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
6277 LegalizeOp(Tmp.getValue(1)));
6278 break;
6279 }
6280
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006281 case ISD::ATOMIC_LOAD_ADD_64:
6282 case ISD::ATOMIC_LOAD_SUB_64:
6283 case ISD::ATOMIC_LOAD_AND_64:
6284 case ISD::ATOMIC_LOAD_OR_64:
6285 case ISD::ATOMIC_LOAD_XOR_64:
6286 case ISD::ATOMIC_LOAD_NAND_64:
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006287 case ISD::ATOMIC_SWAP_64: {
6288 // These operations require a loop to be generated. We can't do that yet,
6289 // so substitute a target-dependent pseudo and expand that later.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006290 SDValue In2Lo, In2Hi, In2;
6291 ExpandOp(Op.getOperand(2), In2Lo, In2Hi);
6292 In2 = DAG.getNode(ISD::BUILD_PAIR, VT, In2Lo, In2Hi);
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006293 AtomicSDNode* Anode = cast<AtomicSDNode>(Node);
6294 SDValue Replace =
6295 DAG.getAtomic(Op.getOpcode(), Op.getOperand(0), Op.getOperand(1), In2,
6296 Anode->getSrcValue(), Anode->getAlignment());
6297 SDValue Result = TLI.LowerOperation(Replace, DAG);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006298 ExpandOp(Result.getValue(0), Lo, Hi);
6299 // Remember that we legalized the chain.
6300 AddLegalizedOperand(SDValue(Node,1), LegalizeOp(Result.getValue(1)));
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006301 break;
6302 }
6303
Chris Lattner4e6c7462005-01-08 19:27:05 +00006304 // These operators cannot be expanded directly, emit them as calls to
6305 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006306 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006307 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006308 SDValue Op;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006309 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6310 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006311 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6312 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006313 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006314
Chris Lattnerf20d1832005-07-30 01:40:57 +00006315 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, VT, Op), DAG);
6316
Chris Lattner80a3e942005-07-29 00:33:32 +00006317 // Now that the custom expander is done, expand the result, which is still
6318 // VT.
Gabor Greifba36cb52008-08-28 21:40:38 +00006319 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006320 ExpandOp(Op, Lo, Hi);
6321 break;
6322 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006323 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006324
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006325 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6326 VT);
6327 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6328 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006329 break;
Evan Cheng56966222007-01-12 02:11:51 +00006330 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006331
Evan Cheng56966222007-01-12 02:11:51 +00006332 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006333 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006334 SDValue Op;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006335 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6336 case Expand: assert(0 && "cannot expand FP!");
6337 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6338 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6339 }
6340
6341 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, VT, Op), DAG);
6342
6343 // Now that the custom expander is done, expand the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00006344 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006345 ExpandOp(Op, Lo, Hi);
6346 break;
6347 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006348 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006349
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006350 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6351 VT);
6352 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6353 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006354 break;
Evan Cheng56966222007-01-12 02:11:51 +00006355 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006356
Evan Cheng05a2d562006-01-09 18:31:59 +00006357 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006358 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006359 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006360 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006361 SDValue Op = DAG.getNode(ISD::SHL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006362 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006363 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006364 // Now that the custom expander is done, expand the result, which is
6365 // still VT.
6366 ExpandOp(Op, Lo, Hi);
6367 break;
6368 }
6369 }
6370
Chris Lattner79980b02006-09-13 03:50:39 +00006371 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
6372 // this X << 1 as X+X.
6373 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohman002e5d02008-03-13 22:13:53 +00006374 if (ShAmt->getAPIntValue() == 1 && TLI.isOperationLegal(ISD::ADDC, NVT) &&
Chris Lattner79980b02006-09-13 03:50:39 +00006375 TLI.isOperationLegal(ISD::ADDE, NVT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006376 SDValue LoOps[2], HiOps[3];
Chris Lattner79980b02006-09-13 03:50:39 +00006377 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6378 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6379 LoOps[1] = LoOps[0];
6380 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6381
6382 HiOps[1] = HiOps[0];
6383 HiOps[2] = Lo.getValue(1);
6384 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6385 break;
6386 }
6387 }
6388
Chris Lattnere34b3962005-01-19 04:19:40 +00006389 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006390 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006391 break;
Chris Lattner47599822005-04-02 03:38:53 +00006392
6393 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006394 TargetLowering::LegalizeAction Action =
6395 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6396 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6397 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006398 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006399 break;
6400 }
6401
Chris Lattnere34b3962005-01-19 04:19:40 +00006402 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006403 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006404 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006405 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006406
Evan Cheng05a2d562006-01-09 18:31:59 +00006407 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006408 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006409 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006410 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006411 SDValue Op = DAG.getNode(ISD::SRA, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006412 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006413 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006414 // Now that the custom expander is done, expand the result, which is
6415 // still VT.
6416 ExpandOp(Op, Lo, Hi);
6417 break;
6418 }
6419 }
6420
Chris Lattnere34b3962005-01-19 04:19:40 +00006421 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006422 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006423 break;
Chris Lattner47599822005-04-02 03:38:53 +00006424
6425 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006426 TargetLowering::LegalizeAction Action =
6427 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6428 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6429 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006430 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006431 break;
6432 }
6433
Chris Lattnere34b3962005-01-19 04:19:40 +00006434 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006435 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006436 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006437 }
6438
6439 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006440 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006441 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006442 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006443 SDValue Op = DAG.getNode(ISD::SRL, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006444 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006445 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006446 // Now that the custom expander is done, expand the result, which is
6447 // still VT.
6448 ExpandOp(Op, Lo, Hi);
6449 break;
6450 }
6451 }
6452
Chris Lattnere34b3962005-01-19 04:19:40 +00006453 // If we can emit an efficient shift operation, do so now.
Chris Lattner348e93c2006-01-21 04:27:00 +00006454 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi))
Chris Lattnere34b3962005-01-19 04:19:40 +00006455 break;
Chris Lattner47599822005-04-02 03:38:53 +00006456
6457 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006458 TargetLowering::LegalizeAction Action =
6459 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6460 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6461 Action == TargetLowering::Custom) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006462 ExpandShiftParts(ISD::SRL_PARTS, Node->getOperand(0), ShiftAmt, Lo, Hi);
Chris Lattner47599822005-04-02 03:38:53 +00006463 break;
6464 }
6465
Chris Lattnere34b3962005-01-19 04:19:40 +00006466 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006467 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006468 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006469 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006470
Misha Brukmanedf128a2005-04-21 22:36:52 +00006471 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006472 case ISD::SUB: {
6473 // If the target wants to custom expand this, let them.
6474 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6475 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006476 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006477 if (Result.getNode()) {
Duncan Sands69bfb152008-06-22 09:42:16 +00006478 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006479 break;
6480 }
6481 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006482 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006483 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006484 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6485 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Chris Lattner79980b02006-09-13 03:50:39 +00006486 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006487 SDValue LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006488 LoOps[0] = LHSL;
6489 LoOps[1] = RHSL;
6490 HiOps[0] = LHSH;
6491 HiOps[1] = RHSH;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006492
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00006493 //cascaded check to see if any smaller size has a a carry flag.
6494 unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
6495 bool hasCarry = false;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006496 for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) {
6497 MVT AVT = MVT::getIntegerVT(BitSize);
6498 if (TLI.isOperationLegal(OpV, AVT)) {
6499 hasCarry = true;
6500 break;
6501 }
6502 }
6503
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00006504 if(hasCarry) {
Andrew Lenharth40d51392008-10-07 14:15:42 +00006505 if (Node->getOpcode() == ISD::ADD) {
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 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006515 } else {
Andrew Lenharth40d51392008-10-07 14:15:42 +00006516 if (Node->getOpcode() == ISD::ADD) {
6517 Lo = DAG.getNode(ISD::ADD, VTList, LoOps, 2);
6518 Hi = DAG.getNode(ISD::ADD, VTList, HiOps, 2);
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00006519 SDValue Cmp1 = DAG.getSetCC(TLI.getSetCCResultType(Lo),
6520 Lo, LoOps[0], ISD::SETULT);
Andrew Lenharth40d51392008-10-07 14:15:42 +00006521 SDValue Carry1 = DAG.getNode(ISD::SELECT, NVT, Cmp1,
6522 DAG.getConstant(1, NVT),
6523 DAG.getConstant(0, NVT));
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00006524 SDValue Cmp2 = DAG.getSetCC(TLI.getSetCCResultType(Lo),
6525 Lo, LoOps[1], ISD::SETULT);
Andrew Lenharth40d51392008-10-07 14:15:42 +00006526 SDValue Carry2 = DAG.getNode(ISD::SELECT, NVT, Cmp2,
6527 DAG.getConstant(1, NVT),
6528 Carry1);
6529 Hi = DAG.getNode(ISD::ADD, NVT, Hi, Carry2);
6530 } else {
6531 Lo = DAG.getNode(ISD::SUB, VTList, LoOps, 2);
6532 Hi = DAG.getNode(ISD::SUB, VTList, HiOps, 2);
6533 SDValue Cmp = DAG.getSetCC(NVT, LoOps[0], LoOps[1], ISD::SETULT);
6534 SDValue Borrow = DAG.getNode(ISD::SELECT, NVT, Cmp,
6535 DAG.getConstant(1, NVT),
6536 DAG.getConstant(0, NVT));
6537 Hi = DAG.getNode(ISD::SUB, NVT, Hi, Borrow);
6538 }
6539 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00006540 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006541 }
Chris Lattnerb429f732007-05-17 18:15:41 +00006542
6543 case ISD::ADDC:
6544 case ISD::SUBC: {
6545 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006546 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00006547 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6548 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6549 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006550 SDValue LoOps[2] = { LHSL, RHSL };
6551 SDValue HiOps[3] = { LHSH, RHSH };
Chris Lattnerb429f732007-05-17 18:15:41 +00006552
6553 if (Node->getOpcode() == ISD::ADDC) {
6554 Lo = DAG.getNode(ISD::ADDC, VTList, LoOps, 2);
6555 HiOps[2] = Lo.getValue(1);
6556 Hi = DAG.getNode(ISD::ADDE, VTList, HiOps, 3);
6557 } else {
6558 Lo = DAG.getNode(ISD::SUBC, VTList, LoOps, 2);
6559 HiOps[2] = Lo.getValue(1);
6560 Hi = DAG.getNode(ISD::SUBE, VTList, HiOps, 3);
6561 }
6562 // Remember that we legalized the flag.
6563 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6564 break;
6565 }
6566 case ISD::ADDE:
6567 case ISD::SUBE: {
6568 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006569 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00006570 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6571 ExpandOp(Node->getOperand(1), RHSL, RHSH);
6572 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00006573 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
6574 SDValue HiOps[3] = { LHSH, RHSH };
Chris Lattnerb429f732007-05-17 18:15:41 +00006575
6576 Lo = DAG.getNode(Node->getOpcode(), VTList, LoOps, 3);
6577 HiOps[2] = Lo.getValue(1);
6578 Hi = DAG.getNode(Node->getOpcode(), VTList, HiOps, 3);
6579
6580 // Remember that we legalized the flag.
6581 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
6582 break;
6583 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006584 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006585 // If the target wants to custom expand this, let them.
6586 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006587 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006588 if (New.getNode()) {
Chris Lattner8829dc82006-09-16 05:08:34 +00006589 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00006590 break;
6591 }
6592 }
6593
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006594 bool HasMULHS = TLI.isOperationLegal(ISD::MULHS, NVT);
6595 bool HasMULHU = TLI.isOperationLegal(ISD::MULHU, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00006596 bool HasSMUL_LOHI = TLI.isOperationLegal(ISD::SMUL_LOHI, NVT);
6597 bool HasUMUL_LOHI = TLI.isOperationLegal(ISD::UMUL_LOHI, NVT);
6598 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman475871a2008-07-27 21:46:04 +00006599 SDValue LL, LH, RL, RH;
Nate Begemanc7c16572005-04-11 03:01:51 +00006600 ExpandOp(Node->getOperand(0), LL, LH);
6601 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006602 unsigned OuterBitSize = Op.getValueSizeInBits();
6603 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00006604 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
6605 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00006606 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
6607 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
6608 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00006609 // The inputs are both zero-extended.
6610 if (HasUMUL_LOHI) {
6611 // We can emit a umul_lohi.
6612 Lo = DAG.getNode(ISD::UMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00006613 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00006614 break;
6615 }
6616 if (HasMULHU) {
6617 // We can emit a mulhu+mul.
6618 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6619 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6620 break;
6621 }
Dan Gohman525178c2007-10-08 18:33:35 +00006622 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00006623 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00006624 // The input values are both sign-extended.
6625 if (HasSMUL_LOHI) {
6626 // We can emit a smul_lohi.
6627 Lo = DAG.getNode(ISD::SMUL_LOHI, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00006628 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00006629 break;
6630 }
6631 if (HasMULHS) {
6632 // We can emit a mulhs+mul.
6633 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6634 Hi = DAG.getNode(ISD::MULHS, NVT, LL, RL);
6635 break;
6636 }
6637 }
6638 if (HasUMUL_LOHI) {
6639 // Lo,Hi = umul LHS, RHS.
Dan Gohman475871a2008-07-27 21:46:04 +00006640 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI,
Dan Gohman525178c2007-10-08 18:33:35 +00006641 DAG.getVTList(NVT, NVT), LL, RL);
6642 Lo = UMulLOHI;
6643 Hi = UMulLOHI.getValue(1);
Nate Begeman56eb8682005-08-30 02:44:00 +00006644 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6645 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6646 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6647 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00006648 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00006649 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00006650 if (HasMULHU) {
6651 Lo = DAG.getNode(ISD::MUL, NVT, LL, RL);
6652 Hi = DAG.getNode(ISD::MULHU, NVT, LL, RL);
6653 RH = DAG.getNode(ISD::MUL, NVT, LL, RH);
6654 LH = DAG.getNode(ISD::MUL, NVT, LH, RL);
6655 Hi = DAG.getNode(ISD::ADD, NVT, Hi, RH);
6656 Hi = DAG.getNode(ISD::ADD, NVT, Hi, LH);
6657 break;
6658 }
Nate Begemanc7c16572005-04-11 03:01:51 +00006659 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00006660
Dan Gohman525178c2007-10-08 18:33:35 +00006661 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006662 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00006663 break;
6664 }
Evan Cheng56966222007-01-12 02:11:51 +00006665 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006666 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006667 break;
6668 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006669 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006670 break;
6671 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006672 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006673 break;
6674 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00006675 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00006676 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00006677
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006678 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00006679 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
6680 RTLIB::ADD_F64,
6681 RTLIB::ADD_F80,
6682 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006683 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006684 break;
6685 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00006686 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
6687 RTLIB::SUB_F64,
6688 RTLIB::SUB_F80,
6689 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006690 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006691 break;
6692 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00006693 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
6694 RTLIB::MUL_F64,
6695 RTLIB::MUL_F80,
6696 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006697 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006698 break;
6699 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00006700 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
6701 RTLIB::DIV_F64,
6702 RTLIB::DIV_F80,
6703 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00006704 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006705 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006706 case ISD::FP_EXTEND: {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006707 if (VT == MVT::ppcf128) {
6708 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
6709 Node->getOperand(0).getValueType()==MVT::f64);
6710 const uint64_t zero = 0;
6711 if (Node->getOperand(0).getValueType()==MVT::f32)
6712 Hi = DAG.getNode(ISD::FP_EXTEND, MVT::f64, Node->getOperand(0));
6713 else
6714 Hi = Node->getOperand(0);
6715 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6716 break;
6717 }
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006718 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
6719 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
6720 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006721 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006722 }
6723 case ISD::FP_ROUND: {
6724 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
6725 VT);
6726 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
6727 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006728 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006729 }
Evan Cheng4b887022008-09-09 23:02:14 +00006730 case ISD::FSQRT:
6731 case ISD::FSIN:
6732 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00006733 case ISD::FLOG:
6734 case ISD::FLOG2:
6735 case ISD::FLOG10:
6736 case ISD::FEXP:
6737 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00006738 case ISD::FTRUNC:
6739 case ISD::FFLOOR:
6740 case ISD::FCEIL:
6741 case ISD::FRINT:
6742 case ISD::FNEARBYINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00006743 case ISD::FPOW:
6744 case ISD::FPOWI: {
Evan Cheng56966222007-01-12 02:11:51 +00006745 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006746 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00006747 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00006748 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
6749 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006750 break;
6751 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00006752 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
6753 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006754 break;
6755 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00006756 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
6757 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00006758 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00006759 case ISD::FLOG:
6760 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
6761 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
6762 break;
6763 case ISD::FLOG2:
6764 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
6765 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
6766 break;
6767 case ISD::FLOG10:
6768 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
6769 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
6770 break;
6771 case ISD::FEXP:
6772 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
6773 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
6774 break;
6775 case ISD::FEXP2:
6776 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
6777 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
6778 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00006779 case ISD::FTRUNC:
6780 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
6781 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
6782 break;
6783 case ISD::FFLOOR:
6784 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
6785 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
6786 break;
6787 case ISD::FCEIL:
6788 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
6789 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
6790 break;
6791 case ISD::FRINT:
6792 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
6793 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
6794 break;
6795 case ISD::FNEARBYINT:
6796 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
6797 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
6798 break;
Evan Cheng4b887022008-09-09 23:02:14 +00006799 case ISD::FPOW:
6800 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
6801 RTLIB::POW_PPCF128);
6802 break;
6803 case ISD::FPOWI:
6804 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
6805 RTLIB::POWI_PPCF128);
6806 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00006807 default: assert(0 && "Unreachable!");
6808 }
Duncan Sands460a14e2008-04-12 17:14:18 +00006809 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00006810 break;
6811 }
Evan Cheng966bf242006-12-16 00:52:40 +00006812 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006813 if (VT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00006814 SDValue Tmp;
Dale Johannesenf6467742007-10-12 19:02:17 +00006815 ExpandOp(Node->getOperand(0), Lo, Tmp);
6816 Hi = DAG.getNode(ISD::FABS, NVT, Tmp);
6817 // lo = hi==fabs(hi) ? lo : -lo;
6818 Lo = DAG.getNode(ISD::SELECT_CC, NVT, Hi, Tmp,
6819 Lo, DAG.getNode(ISD::FNEG, NVT, Lo),
6820 DAG.getCondCode(ISD::SETEQ));
6821 break;
6822 }
Dan Gohman475871a2008-07-27 21:46:04 +00006823 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00006824 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
6825 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
6826 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6827 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6828 Lo = DAG.getNode(ISD::AND, NVT, Lo, Mask);
6829 if (getTypeAction(NVT) == Expand)
6830 ExpandOp(Lo, Lo, Hi);
6831 break;
6832 }
6833 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00006834 if (VT == MVT::ppcf128) {
6835 ExpandOp(Node->getOperand(0), Lo, Hi);
6836 Lo = DAG.getNode(ISD::FNEG, MVT::f64, Lo);
6837 Hi = DAG.getNode(ISD::FNEG, MVT::f64, Hi);
6838 break;
6839 }
Dan Gohman475871a2008-07-27 21:46:04 +00006840 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00006841 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
6842 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
6843 Mask = DAG.getNode(ISD::BIT_CONVERT, NVT, Mask);
6844 Lo = DAG.getNode(ISD::BIT_CONVERT, NVT, Node->getOperand(0));
6845 Lo = DAG.getNode(ISD::XOR, NVT, Lo, Mask);
6846 if (getTypeAction(NVT) == Expand)
6847 ExpandOp(Lo, Lo, Hi);
6848 break;
6849 }
Evan Cheng912095b2007-01-04 21:56:39 +00006850 case ISD::FCOPYSIGN: {
6851 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
6852 if (getTypeAction(NVT) == Expand)
6853 ExpandOp(Lo, Lo, Hi);
6854 break;
6855 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006856 case ISD::SINT_TO_FP:
6857 case ISD::UINT_TO_FP: {
6858 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006859 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00006860
6861 // Promote the operand if needed. Do this before checking for
6862 // ppcf128 so conversions of i16 and i8 work.
6863 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman475871a2008-07-27 21:46:04 +00006864 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesencf498192008-03-18 17:28:38 +00006865 Tmp = isSigned
6866 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, Tmp.getValueType(), Tmp,
6867 DAG.getValueType(SrcVT))
6868 : DAG.getZeroExtendInReg(Tmp, SrcVT);
Gabor Greifba36cb52008-08-28 21:40:38 +00006869 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesencf498192008-03-18 17:28:38 +00006870 SrcVT = Node->getOperand(0).getValueType();
6871 }
6872
Dan Gohmana2e94852008-03-10 23:03:31 +00006873 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006874 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006875 if (isSigned) {
6876 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6877 Node->getOperand(0)));
6878 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6879 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006880 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006881 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, MVT::f64,
6882 Node->getOperand(0)));
6883 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
6884 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00006885 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesenca68aaa2007-10-12 01:37:08 +00006886 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6887 DAG.getConstant(0, MVT::i32),
6888 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6889 DAG.getConstantFP(
6890 APFloat(APInt(128, 2, TwoE32)),
6891 MVT::ppcf128)),
6892 Hi,
6893 DAG.getCondCode(ISD::SETLT)),
6894 Lo, Hi);
6895 }
6896 break;
6897 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00006898 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
6899 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00006900 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen6e63e092007-10-12 17:52:03 +00006901 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, MVT::ppcf128, Node->getOperand(0)),
6902 Lo, Hi);
6903 Hi = DAG.getNode(ISD::BUILD_PAIR, VT, Lo, Hi);
6904 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
6905 ExpandOp(DAG.getNode(ISD::SELECT_CC, MVT::ppcf128, Node->getOperand(0),
6906 DAG.getConstant(0, MVT::i64),
6907 DAG.getNode(ISD::FADD, MVT::ppcf128, Hi,
6908 DAG.getConstantFP(
6909 APFloat(APInt(128, 2, TwoE64)),
6910 MVT::ppcf128)),
6911 Hi,
6912 DAG.getCondCode(ISD::SETLT)),
6913 Lo, Hi);
6914 break;
6915 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00006916
Dan Gohmana2e94852008-03-10 23:03:31 +00006917 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
6918 Node->getOperand(0));
Evan Cheng110cf482008-04-01 01:50:16 +00006919 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00006920 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00006921 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00006922 break;
6923 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00006924 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006925
Chris Lattner83397362005-12-21 18:02:52 +00006926 // Make sure the resultant values have been legalized themselves, unless this
6927 // is a type that requires multi-step expansion.
6928 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
6929 Lo = LegalizeOp(Lo);
Gabor Greifba36cb52008-08-28 21:40:38 +00006930 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00006931 // Don't legalize the high part if it is expanded to a single node.
6932 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00006933 }
Evan Cheng05a2d562006-01-09 18:31:59 +00006934
6935 // Remember in a map if the values will be reused later.
Dan Gohman6b345ee2008-07-07 17:46:23 +00006936 bool isNew =
6937 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng05a2d562006-01-09 18:31:59 +00006938 assert(isNew && "Value already expanded?!?");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006939}
6940
Dan Gohman7f321562007-06-25 16:23:39 +00006941/// SplitVectorOp - Given an operand of vector type, break it down into
6942/// two smaller values, still of vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00006943void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
6944 SDValue &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006945 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greifba36cb52008-08-28 21:40:38 +00006946 SDNode *Node = Op.getNode();
Duncan Sands83ec4b62008-06-06 12:08:01 +00006947 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00006948 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00006949
Duncan Sands83ec4b62008-06-06 12:08:01 +00006950 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00006951
6952 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
6953 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
6954
Duncan Sands83ec4b62008-06-06 12:08:01 +00006955 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
6956 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00006957
Chris Lattnerc7029802006-03-18 01:44:44 +00006958 // See if we already split it.
Dan Gohman475871a2008-07-27 21:46:04 +00006959 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattnerc7029802006-03-18 01:44:44 +00006960 = SplitNodes.find(Op);
6961 if (I != SplitNodes.end()) {
6962 Lo = I->second.first;
6963 Hi = I->second.second;
6964 return;
6965 }
6966
6967 switch (Node->getOpcode()) {
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006968 default:
6969#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006970 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006971#endif
6972 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00006973 case ISD::UNDEF:
6974 Lo = DAG.getNode(ISD::UNDEF, NewVT_Lo);
6975 Hi = DAG.getNode(ISD::UNDEF, NewVT_Hi);
6976 break;
Dan Gohman7f321562007-06-25 16:23:39 +00006977 case ISD::BUILD_PAIR:
6978 Lo = Node->getOperand(0);
6979 Hi = Node->getOperand(1);
6980 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00006981 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00006982 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
6983 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006984 unsigned Index = Idx->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00006985 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman68679912008-04-25 18:07:40 +00006986 if (Index < NewNumElts_Lo)
6987 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Lo, Lo, ScalarOp,
6988 DAG.getIntPtrConstant(Index));
6989 else
6990 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, NewVT_Hi, Hi, ScalarOp,
6991 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
6992 break;
6993 }
Dan Gohman475871a2008-07-27 21:46:04 +00006994 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Nate Begeman68679912008-04-25 18:07:40 +00006995 Node->getOperand(1),
6996 Node->getOperand(2));
6997 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00006998 break;
6999 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00007000 case ISD::VECTOR_SHUFFLE: {
7001 // Build the low part.
Dan Gohman475871a2008-07-27 21:46:04 +00007002 SDValue Mask = Node->getOperand(2);
7003 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007004 MVT PtrVT = TLI.getPointerTy();
Chris Lattner6c9c6802007-11-19 21:16:54 +00007005
7006 // Insert all of the elements from the input that are needed. We use
7007 // buildvector of extractelement here because the input vectors will have
7008 // to be legalized, so this makes the code simpler.
7009 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007010 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007011 if (IdxNode.getOpcode() == ISD::UNDEF) {
7012 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
7013 continue;
7014 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007015 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007016 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007017 if (Idx >= NumElements) {
7018 InVec = Node->getOperand(1);
7019 Idx -= NumElements;
7020 }
7021 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
7022 DAG.getConstant(Idx, PtrVT)));
7023 }
7024 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &Ops[0], Ops.size());
7025 Ops.clear();
7026
7027 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007028 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007029 if (IdxNode.getOpcode() == ISD::UNDEF) {
7030 Ops.push_back(DAG.getNode(ISD::UNDEF, NewEltVT));
7031 continue;
7032 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007033 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007034 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007035 if (Idx >= NumElements) {
7036 InVec = Node->getOperand(1);
7037 Idx -= NumElements;
7038 }
7039 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, NewEltVT, InVec,
7040 DAG.getConstant(Idx, PtrVT)));
7041 }
Mon P Wang92879f32008-07-25 01:30:26 +00007042 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007043 break;
7044 }
Dan Gohman7f321562007-06-25 16:23:39 +00007045 case ISD::BUILD_VECTOR: {
Dan Gohman475871a2008-07-27 21:46:04 +00007046 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Nate Begeman5db1afb2007-11-15 21:15:26 +00007047 Node->op_begin()+NewNumElts_Lo);
7048 Lo = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007049
Dan Gohman475871a2008-07-27 21:46:04 +00007050 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Dan Gohman7f321562007-06-25 16:23:39 +00007051 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00007052 Hi = DAG.getNode(ISD::BUILD_VECTOR, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007053 break;
7054 }
Dan Gohman7f321562007-06-25 16:23:39 +00007055 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00007056 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00007057 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
7058 if (NewNumSubvectors == 1) {
7059 Lo = Node->getOperand(0);
7060 Hi = Node->getOperand(1);
7061 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00007062 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Dan Gohman7f321562007-06-25 16:23:39 +00007063 Node->op_begin()+NewNumSubvectors);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007064 Lo = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Lo, &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00007065
Dan Gohman475871a2008-07-27 21:46:04 +00007066 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Dan Gohman7f321562007-06-25 16:23:39 +00007067 Node->op_end());
Nate Begeman5db1afb2007-11-15 21:15:26 +00007068 Hi = DAG.getNode(ISD::CONCAT_VECTORS, NewVT_Hi, &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00007069 }
Dan Gohman65956352007-06-13 15:12:02 +00007070 break;
7071 }
Dan Gohmanc6230962007-10-17 14:48:28 +00007072 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007073 SDValue Cond = Node->getOperand(0);
Dan Gohmanc6230962007-10-17 14:48:28 +00007074
Dan Gohman475871a2008-07-27 21:46:04 +00007075 SDValue LL, LH, RL, RH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007076 SplitVectorOp(Node->getOperand(1), LL, LH);
7077 SplitVectorOp(Node->getOperand(2), RL, RH);
7078
Duncan Sands83ec4b62008-06-06 12:08:01 +00007079 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00007080 // Handle a vector merge.
Dan Gohman475871a2008-07-27 21:46:04 +00007081 SDValue CL, CH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007082 SplitVectorOp(Cond, CL, CH);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007083 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, CL, LL, RL);
7084 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007085 } else {
7086 // Handle a simple select with vector operands.
Nate Begeman5db1afb2007-11-15 21:15:26 +00007087 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, Cond, LL, RL);
7088 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007089 }
7090 break;
7091 }
Chris Lattner80c1a562008-06-30 02:43:01 +00007092 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007093 SDValue CondLHS = Node->getOperand(0);
7094 SDValue CondRHS = Node->getOperand(1);
7095 SDValue CondCode = Node->getOperand(4);
Chris Lattner80c1a562008-06-30 02:43:01 +00007096
Dan Gohman475871a2008-07-27 21:46:04 +00007097 SDValue LL, LH, RL, RH;
Chris Lattner80c1a562008-06-30 02:43:01 +00007098 SplitVectorOp(Node->getOperand(2), LL, LH);
7099 SplitVectorOp(Node->getOperand(3), RL, RH);
7100
7101 // Handle a simple select with vector operands.
7102 Lo = DAG.getNode(ISD::SELECT_CC, NewVT_Lo, CondLHS, CondRHS,
7103 LL, RL, CondCode);
7104 Hi = DAG.getNode(ISD::SELECT_CC, NewVT_Hi, CondLHS, CondRHS,
7105 LH, RH, CondCode);
7106 break;
7107 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00007108 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007109 SDValue LL, LH, RL, RH;
Nate Begemanb43e9c12008-05-12 19:40:03 +00007110 SplitVectorOp(Node->getOperand(0), LL, LH);
7111 SplitVectorOp(Node->getOperand(1), RL, RH);
7112 Lo = DAG.getNode(ISD::VSETCC, NewVT_Lo, LL, RL, Node->getOperand(2));
7113 Hi = DAG.getNode(ISD::VSETCC, NewVT_Hi, LH, RH, Node->getOperand(2));
7114 break;
7115 }
Dan Gohman7f321562007-06-25 16:23:39 +00007116 case ISD::ADD:
7117 case ISD::SUB:
7118 case ISD::MUL:
7119 case ISD::FADD:
7120 case ISD::FSUB:
7121 case ISD::FMUL:
7122 case ISD::SDIV:
7123 case ISD::UDIV:
7124 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00007125 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007126 case ISD::AND:
7127 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00007128 case ISD::XOR:
7129 case ISD::UREM:
7130 case ISD::SREM:
7131 case ISD::FREM: {
Dan Gohman475871a2008-07-27 21:46:04 +00007132 SDValue LL, LH, RL, RH;
Chris Lattnerc7029802006-03-18 01:44:44 +00007133 SplitVectorOp(Node->getOperand(0), LL, LH);
7134 SplitVectorOp(Node->getOperand(1), RL, RH);
7135
Nate Begeman5db1afb2007-11-15 21:15:26 +00007136 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, LL, RL);
7137 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00007138 break;
7139 }
Dan Gohman7f8613e2008-08-14 20:04:46 +00007140 case ISD::FP_ROUND:
Dan Gohman82669522007-10-11 23:57:53 +00007141 case ISD::FPOWI: {
Dan Gohman475871a2008-07-27 21:46:04 +00007142 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007143 SplitVectorOp(Node->getOperand(0), L, H);
7144
Nate Begeman5db1afb2007-11-15 21:15:26 +00007145 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L, Node->getOperand(1));
7146 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00007147 break;
7148 }
7149 case ISD::CTTZ:
7150 case ISD::CTLZ:
7151 case ISD::CTPOP:
7152 case ISD::FNEG:
7153 case ISD::FABS:
7154 case ISD::FSQRT:
7155 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00007156 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007157 case ISD::FLOG:
7158 case ISD::FLOG2:
7159 case ISD::FLOG10:
7160 case ISD::FEXP:
7161 case ISD::FEXP2:
Nate Begemanb348d182007-11-17 03:58:34 +00007162 case ISD::FP_TO_SINT:
7163 case ISD::FP_TO_UINT:
7164 case ISD::SINT_TO_FP:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007165 case ISD::UINT_TO_FP:
7166 case ISD::TRUNCATE:
7167 case ISD::ANY_EXTEND:
7168 case ISD::SIGN_EXTEND:
7169 case ISD::ZERO_EXTEND:
7170 case ISD::FP_EXTEND: {
Dan Gohman475871a2008-07-27 21:46:04 +00007171 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007172 SplitVectorOp(Node->getOperand(0), L, H);
7173
Nate Begeman5db1afb2007-11-15 21:15:26 +00007174 Lo = DAG.getNode(Node->getOpcode(), NewVT_Lo, L);
7175 Hi = DAG.getNode(Node->getOpcode(), NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00007176 break;
7177 }
Dan Gohman7f321562007-06-25 16:23:39 +00007178 case ISD::LOAD: {
7179 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007180 SDValue Ch = LD->getChain();
7181 SDValue Ptr = LD->getBasePtr();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007182 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007183 const Value *SV = LD->getSrcValue();
7184 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007185 MVT MemoryVT = LD->getMemoryVT();
Dan Gohman7f321562007-06-25 16:23:39 +00007186 unsigned Alignment = LD->getAlignment();
7187 bool isVolatile = LD->isVolatile();
7188
Dan Gohman7f8613e2008-08-14 20:04:46 +00007189 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
7190 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
7191
7192 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7193 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7194 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7195
7196 Lo = DAG.getLoad(ISD::UNINDEXED, ExtType,
7197 NewVT_Lo, Ch, Ptr, Offset,
7198 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7199 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Chris Lattnerc7029802006-03-18 01:44:44 +00007200 Ptr = DAG.getNode(ISD::ADD, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00007201 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00007202 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00007203 Alignment = MinAlign(Alignment, IncrementSize);
Dan Gohman7f8613e2008-08-14 20:04:46 +00007204 Hi = DAG.getLoad(ISD::UNINDEXED, ExtType,
7205 NewVT_Hi, Ch, Ptr, Offset,
7206 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Chris Lattnerc7029802006-03-18 01:44:44 +00007207
7208 // Build a factor node to remember that this load is independent of the
7209 // other one.
Dan Gohman475871a2008-07-27 21:46:04 +00007210 SDValue TF = DAG.getNode(ISD::TokenFactor, MVT::Other, Lo.getValue(1),
Chris Lattnerc7029802006-03-18 01:44:44 +00007211 Hi.getValue(1));
7212
7213 // Remember that we legalized the chain.
7214 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00007215 break;
7216 }
Dan Gohman7f321562007-06-25 16:23:39 +00007217 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00007218 // We know the result is a vector. The input may be either a vector or a
7219 // scalar value.
Dan Gohman475871a2008-07-27 21:46:04 +00007220 SDValue InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007221 if (!InOp.getValueType().isVector() ||
7222 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00007223 // The input is a scalar or single-element vector.
7224 // Lower to a store/load so that it can be split.
7225 // FIXME: this could be improved probably.
Mon P Wang2920d2b2008-07-15 05:28:34 +00007226 unsigned LdAlign = TLI.getTargetData()->getPrefTypeAlignment(
7227 Op.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00007228 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greifba36cb52008-08-28 21:40:38 +00007229 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Chris Lattner7692eb42006-03-23 21:16:34 +00007230
Dan Gohman475871a2008-07-27 21:46:04 +00007231 SDValue St = DAG.getStore(DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00007232 InOp, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007233 PseudoSourceValue::getFixedStack(FI), 0);
Dan Gohman69de1932008-02-06 22:27:42 +00007234 InOp = DAG.getLoad(Op.getValueType(), St, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007235 PseudoSourceValue::getFixedStack(FI), 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00007236 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007237 // Split the vector and convert each of the pieces now.
7238 SplitVectorOp(InOp, Lo, Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007239 Lo = DAG.getNode(ISD::BIT_CONVERT, NewVT_Lo, Lo);
7240 Hi = DAG.getNode(ISD::BIT_CONVERT, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007241 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007242 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007243 }
7244
7245 // Remember in a map if the values will be reused later.
Chris Lattner40030bf2007-02-04 01:17:38 +00007246 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007247 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007248 assert(isNew && "Value already split?!?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007249}
7250
7251
Dan Gohman89b20c02007-06-27 14:06:22 +00007252/// ScalarizeVectorOp - Given an operand of single-element vector type
7253/// (e.g. v1f32), convert it into the equivalent operation that returns a
7254/// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +00007255SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007256 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007257 SDNode *Node = Op.getNode();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007258 MVT NewVT = Op.getValueType().getVectorElementType();
7259 assert(Op.getValueType().getVectorNumElements() == 1);
Chris Lattnerc7029802006-03-18 01:44:44 +00007260
Dan Gohman7f321562007-06-25 16:23:39 +00007261 // See if we already scalarized it.
Dan Gohman475871a2008-07-27 21:46:04 +00007262 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohman7f321562007-06-25 16:23:39 +00007263 if (I != ScalarizedNodes.end()) return I->second;
Chris Lattnerc7029802006-03-18 01:44:44 +00007264
Dan Gohman475871a2008-07-27 21:46:04 +00007265 SDValue Result;
Chris Lattnerc7029802006-03-18 01:44:44 +00007266 switch (Node->getOpcode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00007267 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007268#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007269 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007270#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007271 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7272 case ISD::ADD:
7273 case ISD::FADD:
7274 case ISD::SUB:
7275 case ISD::FSUB:
7276 case ISD::MUL:
7277 case ISD::FMUL:
7278 case ISD::SDIV:
7279 case ISD::UDIV:
7280 case ISD::FDIV:
7281 case ISD::SREM:
7282 case ISD::UREM:
7283 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007284 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007285 case ISD::AND:
7286 case ISD::OR:
7287 case ISD::XOR:
7288 Result = DAG.getNode(Node->getOpcode(),
Chris Lattnerc7029802006-03-18 01:44:44 +00007289 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007290 ScalarizeVectorOp(Node->getOperand(0)),
7291 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007292 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007293 case ISD::FNEG:
7294 case ISD::FABS:
7295 case ISD::FSQRT:
7296 case ISD::FSIN:
7297 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007298 case ISD::FLOG:
7299 case ISD::FLOG2:
7300 case ISD::FLOG10:
7301 case ISD::FEXP:
7302 case ISD::FEXP2:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007303 case ISD::FP_TO_SINT:
7304 case ISD::FP_TO_UINT:
7305 case ISD::SINT_TO_FP:
7306 case ISD::UINT_TO_FP:
7307 case ISD::SIGN_EXTEND:
7308 case ISD::ZERO_EXTEND:
7309 case ISD::ANY_EXTEND:
7310 case ISD::TRUNCATE:
7311 case ISD::FP_EXTEND:
Dan Gohman7f321562007-06-25 16:23:39 +00007312 Result = DAG.getNode(Node->getOpcode(),
7313 NewVT,
7314 ScalarizeVectorOp(Node->getOperand(0)));
7315 break;
Dan Gohman9e04c822007-10-12 14:13:46 +00007316 case ISD::FPOWI:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007317 case ISD::FP_ROUND:
Dan Gohman9e04c822007-10-12 14:13:46 +00007318 Result = DAG.getNode(Node->getOpcode(),
7319 NewVT,
7320 ScalarizeVectorOp(Node->getOperand(0)),
7321 Node->getOperand(1));
7322 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007323 case ISD::LOAD: {
7324 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007325 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7326 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman7f8613e2008-08-14 20:04:46 +00007327 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007328 const Value *SV = LD->getSrcValue();
7329 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007330 MVT MemoryVT = LD->getMemoryVT();
7331 unsigned Alignment = LD->getAlignment();
7332 bool isVolatile = LD->isVolatile();
7333
7334 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
7335 SDValue Offset = DAG.getNode(ISD::UNDEF, Ptr.getValueType());
7336
7337 Result = DAG.getLoad(ISD::UNINDEXED, ExtType,
7338 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7339 MemoryVT.getVectorElementType(),
7340 isVolatile, Alignment);
Dan Gohman7f321562007-06-25 16:23:39 +00007341
Chris Lattnerc7029802006-03-18 01:44:44 +00007342 // Remember that we legalized the chain.
7343 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7344 break;
7345 }
Dan Gohman7f321562007-06-25 16:23:39 +00007346 case ISD::BUILD_VECTOR:
7347 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007348 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007349 case ISD::INSERT_VECTOR_ELT:
7350 // Returning the inserted scalar element.
7351 Result = Node->getOperand(1);
7352 break;
7353 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007354 assert(Node->getOperand(0).getValueType() == NewVT &&
7355 "Concat of non-legal vectors not yet supported!");
7356 Result = Node->getOperand(0);
7357 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007358 case ISD::VECTOR_SHUFFLE: {
7359 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman475871a2008-07-27 21:46:04 +00007360 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007361 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohman7f321562007-06-25 16:23:39 +00007362 Result = ScalarizeVectorOp(Node->getOperand(1));
7363 else
7364 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007365 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007366 }
7367 case ISD::EXTRACT_SUBVECTOR:
7368 Result = Node->getOperand(0);
Dan Gohman65956352007-06-13 15:12:02 +00007369 assert(Result.getValueType() == NewVT);
7370 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007371 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007372 SDValue Op0 = Op.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007373 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007374 Op0 = ScalarizeVectorOp(Op0);
7375 Result = DAG.getNode(ISD::BIT_CONVERT, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007376 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007377 }
Dan Gohman7f321562007-06-25 16:23:39 +00007378 case ISD::SELECT:
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007379 Result = DAG.getNode(ISD::SELECT, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007380 ScalarizeVectorOp(Op.getOperand(1)),
7381 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007382 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007383 case ISD::SELECT_CC:
7384 Result = DAG.getNode(ISD::SELECT_CC, NewVT, Node->getOperand(0),
7385 Node->getOperand(1),
7386 ScalarizeVectorOp(Op.getOperand(2)),
7387 ScalarizeVectorOp(Op.getOperand(3)),
7388 Node->getOperand(4));
7389 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007390 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007391 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7392 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Nate Begeman0d1704b2008-05-12 23:09:43 +00007393 Result = DAG.getNode(ISD::SETCC, TLI.getSetCCResultType(Op0), Op0, Op1,
7394 Op.getOperand(2));
7395 Result = DAG.getNode(ISD::SELECT, NewVT, Result,
7396 DAG.getConstant(-1ULL, NewVT),
7397 DAG.getConstant(0ULL, NewVT));
7398 break;
7399 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007400 }
7401
7402 if (TLI.isTypeLegal(NewVT))
7403 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007404 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7405 assert(isNew && "Value already scalarized?");
Chris Lattnerc7029802006-03-18 01:44:44 +00007406 return Result;
7407}
7408
Chris Lattner3e928bb2005-01-07 07:47:09 +00007409
7410// SelectionDAG::Legalize - This is the entry point for the file.
7411//
Chris Lattner9c32d3b2005-01-23 04:42:50 +00007412void SelectionDAG::Legalize() {
Chris Lattner3e928bb2005-01-07 07:47:09 +00007413 /// run - This is the main entry point to this class.
7414 ///
Chris Lattner456a93a2006-01-28 07:39:30 +00007415 SelectionDAGLegalize(*this).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00007416}
7417