blob: f772f163267d5869a8b806b93ea0cc2ef5deedb8 [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"
Devang Patel83489bb2009-01-13 00:35:13 +000019#include "llvm/CodeGen/DwarfWriter.h"
20#include "llvm/Analysis/DebugInfo.h"
Dan Gohman69de1932008-02-06 22:27:42 +000021#include "llvm/CodeGen/PseudoSourceValue.h"
Evan Cheng61bbbab2007-08-16 23:50:06 +000022#include "llvm/Target/TargetFrameInfo.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000023#include "llvm/Target/TargetLowering.h"
Chris Lattnere1bd8222005-01-11 05:57:22 +000024#include "llvm/Target/TargetData.h"
Evan Cheng3d4ce112006-10-30 08:00:44 +000025#include "llvm/Target/TargetMachine.h"
Chris Lattner0f69b292005-01-15 06:18:18 +000026#include "llvm/Target/TargetOptions.h"
Dan Gohman707e0182008-04-12 04:36:06 +000027#include "llvm/Target/TargetSubtarget.h"
Chris Lattneradf6a962005-05-13 18:50:42 +000028#include "llvm/CallingConv.h"
Chris Lattner3e928bb2005-01-07 07:47:09 +000029#include "llvm/Constants.h"
Reid Spencerc1030572007-01-19 21:13:56 +000030#include "llvm/DerivedTypes.h"
Bill Wendling86e6cb92009-02-17 01:04:54 +000031#include "llvm/Function.h"
Devang Patel83489bb2009-01-13 00:35:13 +000032#include "llvm/GlobalVariable.h"
Chris Lattner5e46a192006-04-02 03:07:27 +000033#include "llvm/Support/CommandLine.h"
Chris Lattnera4f0b3a2006-08-27 12:54:02 +000034#include "llvm/Support/Compiler.h"
Duncan Sandsdc846502007-10-28 12:59:45 +000035#include "llvm/Support/MathExtras.h"
Chris Lattner79715142007-02-03 01:12:36 +000036#include "llvm/ADT/DenseMap.h"
Chris Lattnerf06f35e2006-08-08 01:09:31 +000037#include "llvm/ADT/SmallVector.h"
Chris Lattner00755df2007-02-04 00:27:56 +000038#include "llvm/ADT/SmallPtrSet.h"
Evan Cheng033e6812006-03-24 01:17:21 +000039#include <map>
Chris Lattner3e928bb2005-01-07 07:47:09 +000040using namespace llvm;
41
42//===----------------------------------------------------------------------===//
43/// SelectionDAGLegalize - This takes an arbitrary SelectionDAG as input and
44/// hacks on it until the target machine can handle it. This involves
45/// eliminating value sizes the machine cannot handle (promoting small sizes to
46/// large sizes or splitting up large values into small values) as well as
47/// eliminating operations the machine cannot handle.
48///
49/// This code also does a small amount of optimization and recognition of idioms
50/// as part of its processing. For example, if a target does not support a
51/// 'setcc' instruction efficiently, but does support 'brcc' instruction, this
52/// will attempt merge setcc and brc instructions into brcc's.
53///
54namespace {
Chris Lattner360e8202006-06-28 21:58:30 +000055class VISIBILITY_HIDDEN SelectionDAGLegalize {
Chris Lattner3e928bb2005-01-07 07:47:09 +000056 TargetLowering &TLI;
57 SelectionDAG &DAG;
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +000058 unsigned OptLevel;
Duncan Sandsb6862bb2008-12-14 09:43:15 +000059 bool TypesNeedLegalizing;
Chris Lattner3e928bb2005-01-07 07:47:09 +000060
Chris Lattner6831a812006-02-13 09:18:02 +000061 // Libcall insertion helpers.
Scott Michelfdc40a02009-02-17 22:15:04 +000062
Chris Lattner6831a812006-02-13 09:18:02 +000063 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
64 /// legalized. We use this to ensure that calls are properly serialized
65 /// against each other, including inserted libcalls.
Dan Gohman475871a2008-07-27 21:46:04 +000066 SDValue LastCALLSEQ_END;
Scott Michelfdc40a02009-02-17 22:15:04 +000067
Chris Lattner6831a812006-02-13 09:18:02 +000068 /// IsLegalizingCall - This member is used *only* for purposes of providing
Scott Michelfdc40a02009-02-17 22:15:04 +000069 /// helpful assertions that a libcall isn't created while another call is
Chris Lattner6831a812006-02-13 09:18:02 +000070 /// being legalized (which could lead to non-serialized call sequences).
71 bool IsLegalizingCall;
Scott Michelfdc40a02009-02-17 22:15:04 +000072
Mon P Wange5ab34e2009-02-04 19:38:14 +000073 /// IsLegalizingCallArguments - This member is used only for the purpose
74 /// of providing assert to check for LegalizeTypes because legalizing an
75 /// operation might introduce call nodes that might need type legalization.
76 bool IsLegalizingCallArgs;
77
Chris Lattner3e928bb2005-01-07 07:47:09 +000078 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000079 Legal, // The target natively supports this operation.
80 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000081 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000082 };
Scott Michelfdc40a02009-02-17 22:15:04 +000083
Chris Lattner3e928bb2005-01-07 07:47:09 +000084 /// ValueTypeActions - This is a bitvector that contains two bits for each
85 /// value type, where the two bits correspond to the LegalizeAction enum.
86 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000087 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000088
Chris Lattner3e928bb2005-01-07 07:47:09 +000089 /// LegalizedNodes - For nodes that are of legal width, and that have more
90 /// than one use, this map indicates what regularized operand to use. This
91 /// allows us to avoid legalizing the same thing more than once.
Dan Gohman475871a2008-07-27 21:46:04 +000092 DenseMap<SDValue, SDValue> LegalizedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000093
Chris Lattner03c85462005-01-15 05:21:40 +000094 /// PromotedNodes - For nodes that are below legal width, and that have more
95 /// than one use, this map indicates what promoted value to use. This allows
96 /// us to avoid promoting the same thing more than once.
Dan Gohman475871a2008-07-27 21:46:04 +000097 DenseMap<SDValue, SDValue> PromotedNodes;
Chris Lattner03c85462005-01-15 05:21:40 +000098
Chris Lattnerc7029802006-03-18 01:44:44 +000099 /// ExpandedNodes - For nodes that need to be expanded this map indicates
Mon P Wang0c397192008-10-30 08:01:45 +0000100 /// which operands are the expanded version of the input. This allows
Chris Lattnerc7029802006-03-18 01:44:44 +0000101 /// us to avoid expanding the same node more than once.
Dan Gohman475871a2008-07-27 21:46:04 +0000102 DenseMap<SDValue, std::pair<SDValue, SDValue> > ExpandedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000103
Chris Lattnerc7029802006-03-18 01:44:44 +0000104 /// SplitNodes - For vector nodes that need to be split, this map indicates
Mon P Wang0c397192008-10-30 08:01:45 +0000105 /// which operands are the split version of the input. This allows us
Chris Lattnerc7029802006-03-18 01:44:44 +0000106 /// to avoid splitting the same node more than once.
Dan Gohman475871a2008-07-27 21:46:04 +0000107 std::map<SDValue, std::pair<SDValue, SDValue> > SplitNodes;
Scott Michelfdc40a02009-02-17 22:15:04 +0000108
Dan Gohman7f321562007-06-25 16:23:39 +0000109 /// ScalarizedNodes - For nodes that need to be converted from vector types to
110 /// scalar types, this contains the mapping of ones we have already
Chris Lattnerc7029802006-03-18 01:44:44 +0000111 /// processed to the result.
Dan Gohman475871a2008-07-27 21:46:04 +0000112 std::map<SDValue, SDValue> ScalarizedNodes;
Scott Michelfdc40a02009-02-17 22:15:04 +0000113
Mon P Wangf007a8b2008-11-06 05:31:54 +0000114 /// WidenNodes - For nodes that need to be widened from one vector type to
115 /// another, this contains the mapping of those that we have already widen.
116 /// This allows us to avoid widening more than once.
Mon P Wang0c397192008-10-30 08:01:45 +0000117 std::map<SDValue, SDValue> WidenNodes;
118
Dan Gohman475871a2008-07-27 21:46:04 +0000119 void AddLegalizedOperand(SDValue From, SDValue To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000120 LegalizedNodes.insert(std::make_pair(From, To));
121 // If someone requests legalization of the new node, return itself.
122 if (From != To)
123 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000124 }
Dan Gohman475871a2008-07-27 21:46:04 +0000125 void AddPromotedOperand(SDValue From, SDValue To) {
Dan Gohman6b345ee2008-07-07 17:46:23 +0000126 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
Chris Lattner03c85462005-01-15 05:21:40 +0000127 assert(isNew && "Got into the map somehow?");
Evan Cheng24ac4082008-11-24 07:09:49 +0000128 isNew = isNew;
Chris Lattner69a889e2005-12-20 00:53:54 +0000129 // If someone requests legalization of the new node, return itself.
130 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000131 }
Mon P Wangf007a8b2008-11-06 05:31:54 +0000132 void AddWidenedOperand(SDValue From, SDValue To) {
Mon P Wang0c397192008-10-30 08:01:45 +0000133 bool isNew = WidenNodes.insert(std::make_pair(From, To)).second;
134 assert(isNew && "Got into the map somehow?");
Evan Cheng24ac4082008-11-24 07:09:49 +0000135 isNew = isNew;
Mon P Wang0c397192008-10-30 08:01:45 +0000136 // If someone requests legalization of the new node, return itself.
137 LegalizedNodes.insert(std::make_pair(To, To));
138 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000139
Chris Lattner3e928bb2005-01-07 07:47:09 +0000140public:
Bill Wendling5aa49772009-02-24 02:35:30 +0000141 explicit SelectionDAGLegalize(SelectionDAG &DAG, bool TypesNeedLegalizing,
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000142 unsigned ol);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000143
Chris Lattner3e928bb2005-01-07 07:47:09 +0000144 /// getTypeAction - Return how we should legalize values of this type, either
145 /// it is already legal or we need to expand it into multiple registers of
146 /// smaller integer type, or we need to promote it to a larger type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000147 LegalizeAction getTypeAction(MVT VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000148 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000149 }
150
151 /// isTypeLegal - Return true if this type is legal on this target.
152 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000153 bool isTypeLegal(MVT VT) const {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000154 return getTypeAction(VT) == Legal;
155 }
156
Chris Lattner3e928bb2005-01-07 07:47:09 +0000157 void LegalizeDAG();
158
Chris Lattner456a93a2006-01-28 07:39:30 +0000159private:
Dan Gohman7f321562007-06-25 16:23:39 +0000160 /// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000161 /// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000162 void HandleOp(SDValue Op);
Scott Michelfdc40a02009-02-17 22:15:04 +0000163
Chris Lattnerc7029802006-03-18 01:44:44 +0000164 /// LegalizeOp - We know that the specified value has a legal type.
165 /// Recursively ensure that the operands have legal types, then return the
166 /// result.
Dan Gohman475871a2008-07-27 21:46:04 +0000167 SDValue LegalizeOp(SDValue O);
Scott Michelfdc40a02009-02-17 22:15:04 +0000168
Dan Gohman82669522007-10-11 23:57:53 +0000169 /// UnrollVectorOp - We know that the given vector has a legal type, however
170 /// the operation it performs is not legal and is an operation that we have
171 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
172 /// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000173 SDValue UnrollVectorOp(SDValue O);
Scott Michelfdc40a02009-02-17 22:15:04 +0000174
Nate Begeman68679912008-04-25 18:07:40 +0000175 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
176 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
177 /// is necessary to spill the vector being inserted into to memory, perform
178 /// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000179 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Dale Johannesenbb5da912009-02-02 20:41:04 +0000180 SDValue Idx, DebugLoc dl);
Dan Gohman82669522007-10-11 23:57:53 +0000181
Chris Lattnerc7029802006-03-18 01:44:44 +0000182 /// PromoteOp - Given an operation that produces a value in an invalid type,
183 /// promote it to compute the value into a larger type. The produced value
184 /// will have the correct bits for the low portion of the register, but no
185 /// guarantee is made about the top bits: it may be zero, sign-extended, or
186 /// garbage.
Dan Gohman475871a2008-07-27 21:46:04 +0000187 SDValue PromoteOp(SDValue O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000188
Dan Gohman475871a2008-07-27 21:46:04 +0000189 /// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattnerc7029802006-03-18 01:44:44 +0000190 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
Dan Gohman929d3eb2008-10-01 15:07:49 +0000191 /// the LegalizedNodes map is filled in for any results that are not expanded,
Chris Lattnerc7029802006-03-18 01:44:44 +0000192 /// the ExpandedNodes map is filled in for any results that are expanded, and
193 /// the Lo/Hi values are returned. This applies to integer types and Vector
194 /// types.
Dan Gohman475871a2008-07-27 21:46:04 +0000195 void ExpandOp(SDValue O, SDValue &Lo, SDValue &Hi);
Chris Lattnerc7029802006-03-18 01:44:44 +0000196
Scott Michelfdc40a02009-02-17 22:15:04 +0000197 /// WidenVectorOp - Widen a vector operation to a wider type given by WidenVT
Mon P Wangf007a8b2008-11-06 05:31:54 +0000198 /// (e.g., v3i32 to v4i32). The produced value will have the correct value
199 /// for the existing elements but no guarantee is made about the new elements
200 /// at the end of the vector: it may be zero, ones, or garbage. This is useful
201 /// when we have an instruction operating on an illegal vector type and we
202 /// want to widen it to do the computation on a legal wider vector type.
Mon P Wang0c397192008-10-30 08:01:45 +0000203 SDValue WidenVectorOp(SDValue Op, MVT WidenVT);
204
Dan Gohman7f321562007-06-25 16:23:39 +0000205 /// SplitVectorOp - Given an operand of vector type, break it down into
206 /// two smaller values.
Dan Gohman475871a2008-07-27 21:46:04 +0000207 void SplitVectorOp(SDValue O, SDValue &Lo, SDValue &Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +0000208
Dan Gohman89b20c02007-06-27 14:06:22 +0000209 /// ScalarizeVectorOp - Given an operand of single-element vector type
210 /// (e.g. v1f32), convert it into the equivalent operation that returns a
211 /// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +0000212 SDValue ScalarizeVectorOp(SDValue O);
Scott Michelfdc40a02009-02-17 22:15:04 +0000213
Mon P Wangf007a8b2008-11-06 05:31:54 +0000214 /// Useful 16 element vector type that is used to pass operands for widening.
Scott Michelfdc40a02009-02-17 22:15:04 +0000215 typedef SmallVector<SDValue, 16> SDValueVector;
216
Mon P Wang0c397192008-10-30 08:01:45 +0000217 /// LoadWidenVectorOp - Load a vector for a wider type. Returns true if
218 /// the LdChain contains a single load and false if it contains a token
219 /// factor for multiple loads. It takes
220 /// Result: location to return the result
221 /// LdChain: location to return the load chain
222 /// Op: load operation to widen
223 /// NVT: widen vector result type we want for the load
Scott Michelfdc40a02009-02-17 22:15:04 +0000224 bool LoadWidenVectorOp(SDValue& Result, SDValue& LdChain,
Mon P Wang0c397192008-10-30 08:01:45 +0000225 SDValue Op, MVT NVT);
Scott Michelfdc40a02009-02-17 22:15:04 +0000226
Mon P Wang0c397192008-10-30 08:01:45 +0000227 /// Helper genWidenVectorLoads - Helper function to generate a set of
228 /// loads to load a vector with a resulting wider type. It takes
229 /// LdChain: list of chains for the load we have generated
230 /// Chain: incoming chain for the ld vector
231 /// BasePtr: base pointer to load from
232 /// SV: memory disambiguation source value
233 /// SVOffset: memory disambiugation offset
234 /// Alignment: alignment of the memory
235 /// isVolatile: volatile load
Scott Michelfdc40a02009-02-17 22:15:04 +0000236 /// LdWidth: width of memory that we want to load
Mon P Wang0c397192008-10-30 08:01:45 +0000237 /// ResType: the wider result result type for the resulting loaded vector
238 SDValue genWidenVectorLoads(SDValueVector& LdChain, SDValue Chain,
239 SDValue BasePtr, const Value *SV,
240 int SVOffset, unsigned Alignment,
241 bool isVolatile, unsigned LdWidth,
Dale Johannesenc6be1102009-02-02 22:49:46 +0000242 MVT ResType, DebugLoc dl);
Scott Michelfdc40a02009-02-17 22:15:04 +0000243
Mon P Wang0c397192008-10-30 08:01:45 +0000244 /// StoreWidenVectorOp - Stores a widen vector into non widen memory
245 /// location. It takes
246 /// ST: store node that we want to replace
247 /// Chain: incoming store chain
248 /// BasePtr: base address of where we want to store into
Scott Michelfdc40a02009-02-17 22:15:04 +0000249 SDValue StoreWidenVectorOp(StoreSDNode *ST, SDValue Chain,
Mon P Wang0c397192008-10-30 08:01:45 +0000250 SDValue BasePtr);
Scott Michelfdc40a02009-02-17 22:15:04 +0000251
Mon P Wang0c397192008-10-30 08:01:45 +0000252 /// Helper genWidenVectorStores - Helper function to generate a set of
253 /// stores to store a widen vector into non widen memory
254 // It takes
255 // StChain: list of chains for the stores we have generated
256 // Chain: incoming chain for the ld vector
257 // BasePtr: base pointer to load from
258 // SV: memory disambiguation source value
259 // SVOffset: memory disambiugation offset
260 // Alignment: alignment of the memory
261 // isVolatile: volatile lod
Scott Michelfdc40a02009-02-17 22:15:04 +0000262 // ValOp: value to store
263 // StWidth: width of memory that we want to store
Mon P Wang0c397192008-10-30 08:01:45 +0000264 void genWidenVectorStores(SDValueVector& StChain, SDValue Chain,
265 SDValue BasePtr, const Value *SV,
266 int SVOffset, unsigned Alignment,
267 bool isVolatile, SDValue ValOp,
Dale Johannesenc6be1102009-02-02 22:49:46 +0000268 unsigned StWidth, DebugLoc dl);
Scott Michelfdc40a02009-02-17 22:15:04 +0000269
Nate Begeman5a5ca152009-04-29 05:20:52 +0000270 /// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
271 /// performs the same shuffe in terms of order or result bytes, but on a type
272 /// whose vector element type is narrower than the original shuffle type.
273 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
274 SDValue ShuffleWithNarrowerEltType(MVT NVT, MVT VT, DebugLoc dl,
275 SDValue N1, SDValue N2,
276 SmallVectorImpl<int> &Mask) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000277
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000278 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000279 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000280
Dale Johannesenbb5da912009-02-02 20:41:04 +0000281 void LegalizeSetCCOperands(SDValue &LHS, SDValue &RHS, SDValue &CC,
282 DebugLoc dl);
283 void LegalizeSetCCCondCode(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
284 DebugLoc dl);
285 void LegalizeSetCC(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
286 DebugLoc dl) {
287 LegalizeSetCCOperands(LHS, RHS, CC, dl);
288 LegalizeSetCCCondCode(VT, LHS, RHS, CC, dl);
Evan Cheng7f042682008-10-15 02:05:31 +0000289 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000290
Dan Gohman475871a2008-07-27 21:46:04 +0000291 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
292 SDValue &Hi);
Dale Johannesenaf435272009-02-02 19:03:57 +0000293 SDValue ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl);
Chris Lattnercad063f2005-07-16 00:19:57 +0000294
Dale Johannesen8a782a22009-02-02 22:12:50 +0000295 SDValue EmitStackConvert(SDValue SrcOp, MVT SlotVT, MVT DestVT, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000296 SDValue ExpandBUILD_VECTOR(SDNode *Node);
297 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Scott Michelfdc40a02009-02-17 22:15:04 +0000298 SDValue LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +0000299 SDValue Op, DebugLoc dl);
300 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, MVT DestVT,
301 DebugLoc dl);
302 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, MVT DestVT, bool isSigned,
303 DebugLoc dl);
304 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, MVT DestVT, bool isSigned,
305 DebugLoc dl);
Jeff Cohen00b168892005-07-27 06:12:32 +0000306
Dale Johannesen8a782a22009-02-02 22:12:50 +0000307 SDValue ExpandBSWAP(SDValue Op, DebugLoc dl);
308 SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000309 bool ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +0000310 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000311 void ExpandShiftParts(unsigned NodeOp, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +0000312 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000313
Dan Gohman475871a2008-07-27 21:46:04 +0000314 SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op);
315 SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000316};
317}
318
Nate Begeman5a5ca152009-04-29 05:20:52 +0000319/// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
320/// performs the same shuffe in terms of order or result bytes, but on a type
321/// whose vector element type is narrower than the original shuffle type.
Nate Begeman9008ca62009-04-27 18:41:29 +0000322/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Nate Begeman5a5ca152009-04-29 05:20:52 +0000323SDValue
324SelectionDAGLegalize::ShuffleWithNarrowerEltType(MVT NVT, MVT VT, DebugLoc dl,
325 SDValue N1, SDValue N2,
Nate Begeman9008ca62009-04-27 18:41:29 +0000326 SmallVectorImpl<int> &Mask) const {
327 MVT EltVT = NVT.getVectorElementType();
Nate Begeman5a5ca152009-04-29 05:20:52 +0000328 unsigned NumMaskElts = VT.getVectorNumElements();
329 unsigned NumDestElts = NVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +0000330 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Chris Lattner4352cc92006-04-04 17:23:26 +0000331
Nate Begeman9008ca62009-04-27 18:41:29 +0000332 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
333
334 if (NumEltsGrowth == 1)
335 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
336
337 SmallVector<int, 8> NewMask;
Nate Begeman5a5ca152009-04-29 05:20:52 +0000338 for (unsigned i = 0; i != NumMaskElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000339 int Idx = Mask[i];
340 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
341 if (Idx < 0)
342 NewMask.push_back(-1);
343 else
344 NewMask.push_back(Idx * NumEltsGrowth + j);
Chris Lattner4352cc92006-04-04 17:23:26 +0000345 }
Chris Lattner4352cc92006-04-04 17:23:26 +0000346 }
Nate Begeman5a5ca152009-04-29 05:20:52 +0000347 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
Nate Begeman9008ca62009-04-27 18:41:29 +0000348 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
349 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Chris Lattner4352cc92006-04-04 17:23:26 +0000350}
351
Bill Wendling5aa49772009-02-24 02:35:30 +0000352SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag,
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000353 bool types, unsigned ol)
354 : TLI(dag.getTargetLoweringInfo()), DAG(dag), OptLevel(ol),
355 TypesNeedLegalizing(types), ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000356 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000357 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000358}
359
Chris Lattner3e928bb2005-01-07 07:47:09 +0000360void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000361 LastCALLSEQ_END = DAG.getEntryNode();
362 IsLegalizingCall = false;
Mon P Wange5ab34e2009-02-04 19:38:14 +0000363 IsLegalizingCallArgs = false;
364
Chris Lattnerab510a72005-10-02 17:49:46 +0000365 // The legalize process is inherently a bottom-up recursive process (users
366 // legalize their uses before themselves). Given infinite stack space, we
367 // could just start legalizing on the root and traverse the whole graph. In
368 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000369 // blocks. To avoid this problem, compute an ordering of the nodes where each
370 // node is only legalized after all of its operands are legalized.
Dan Gohmanf06c8352008-09-30 18:30:35 +0000371 DAG.AssignTopologicalOrder();
372 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
373 E = prior(DAG.allnodes_end()); I != next(E); ++I)
374 HandleOp(SDValue(I, 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000375
376 // Finally, it's possible the root changed. Get the new root.
Dan Gohman475871a2008-07-27 21:46:04 +0000377 SDValue OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000378 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
379 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000380
381 ExpandedNodes.clear();
382 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000383 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000384 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000385 ScalarizedNodes.clear();
Mon P Wang0c397192008-10-30 08:01:45 +0000386 WidenNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000387
388 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000389 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000390}
391
Chris Lattner6831a812006-02-13 09:18:02 +0000392
393/// FindCallEndFromCallStart - Given a chained node that is part of a call
394/// sequence, find the CALLSEQ_END node that terminates the call sequence.
395static SDNode *FindCallEndFromCallStart(SDNode *Node) {
396 if (Node->getOpcode() == ISD::CALLSEQ_END)
397 return Node;
398 if (Node->use_empty())
399 return 0; // No CallSeqEnd
Scott Michelfdc40a02009-02-17 22:15:04 +0000400
Chris Lattner6831a812006-02-13 09:18:02 +0000401 // The chain is usually at the end.
Dan Gohman475871a2008-07-27 21:46:04 +0000402 SDValue TheChain(Node, Node->getNumValues()-1);
Chris Lattner6831a812006-02-13 09:18:02 +0000403 if (TheChain.getValueType() != MVT::Other) {
404 // Sometimes it's at the beginning.
Dan Gohman475871a2008-07-27 21:46:04 +0000405 TheChain = SDValue(Node, 0);
Chris Lattner6831a812006-02-13 09:18:02 +0000406 if (TheChain.getValueType() != MVT::Other) {
407 // Otherwise, hunt for it.
408 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
409 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman475871a2008-07-27 21:46:04 +0000410 TheChain = SDValue(Node, i);
Chris Lattner6831a812006-02-13 09:18:02 +0000411 break;
412 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000413
414 // Otherwise, we walked into a node without a chain.
Chris Lattner6831a812006-02-13 09:18:02 +0000415 if (TheChain.getValueType() != MVT::Other)
416 return 0;
417 }
418 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000419
Chris Lattner6831a812006-02-13 09:18:02 +0000420 for (SDNode::use_iterator UI = Node->use_begin(),
421 E = Node->use_end(); UI != E; ++UI) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000422
Chris Lattner6831a812006-02-13 09:18:02 +0000423 // Make sure to only follow users of our token chain.
Dan Gohman89684502008-07-27 20:43:25 +0000424 SDNode *User = *UI;
Chris Lattner6831a812006-02-13 09:18:02 +0000425 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
426 if (User->getOperand(i) == TheChain)
427 if (SDNode *Result = FindCallEndFromCallStart(User))
428 return Result;
429 }
430 return 0;
431}
432
Scott Michelfdc40a02009-02-17 22:15:04 +0000433/// FindCallStartFromCallEnd - Given a chained node that is part of a call
Chris Lattner6831a812006-02-13 09:18:02 +0000434/// sequence, find the CALLSEQ_START node that initiates the call sequence.
435static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
436 assert(Node && "Didn't find callseq_start for a call??");
437 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Scott Michelfdc40a02009-02-17 22:15:04 +0000438
Chris Lattner6831a812006-02-13 09:18:02 +0000439 assert(Node->getOperand(0).getValueType() == MVT::Other &&
440 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000441 return FindCallStartFromCallEnd(Node->getOperand(0).getNode());
Chris Lattner6831a812006-02-13 09:18:02 +0000442}
443
444/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
Scott Michelfdc40a02009-02-17 22:15:04 +0000445/// see if any uses can reach Dest. If no dest operands can get to dest,
Chris Lattner6831a812006-02-13 09:18:02 +0000446/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000447///
448/// Keep track of the nodes we fine that actually do lead to Dest in
449/// NodesLeadingTo. This avoids retraversing them exponential number of times.
450///
451bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000452 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000453 if (N == Dest) return true; // N certainly leads to Dest :)
Scott Michelfdc40a02009-02-17 22:15:04 +0000454
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000455 // If we've already processed this node and it does lead to Dest, there is no
456 // need to reprocess it.
457 if (NodesLeadingTo.count(N)) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +0000458
Chris Lattner6831a812006-02-13 09:18:02 +0000459 // If the first result of this node has been already legalized, then it cannot
460 // reach N.
461 switch (getTypeAction(N->getValueType(0))) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000462 case Legal:
Dan Gohman475871a2008-07-27 21:46:04 +0000463 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000464 break;
465 case Promote:
Dan Gohman475871a2008-07-27 21:46:04 +0000466 if (PromotedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000467 break;
468 case Expand:
Dan Gohman475871a2008-07-27 21:46:04 +0000469 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000470 break;
471 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000472
Chris Lattner6831a812006-02-13 09:18:02 +0000473 // Okay, this node has not already been legalized. Check and legalize all
474 // operands. If none lead to Dest, then we can legalize this node.
475 bool OperandsLeadToDest = false;
476 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
477 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Gabor Greifba36cb52008-08-28 21:40:38 +0000478 LegalizeAllNodesNotLeadingTo(N->getOperand(i).getNode(), Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000479
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000480 if (OperandsLeadToDest) {
481 NodesLeadingTo.insert(N);
482 return true;
483 }
Chris Lattner6831a812006-02-13 09:18:02 +0000484
485 // Okay, this node looks safe, legalize it and return false.
Dan Gohman475871a2008-07-27 21:46:04 +0000486 HandleOp(SDValue(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000487 return false;
488}
489
Mon P Wang0c397192008-10-30 08:01:45 +0000490/// HandleOp - Legalize, Promote, Widen, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000491/// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000492void SelectionDAGLegalize::HandleOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000493 MVT VT = Op.getValueType();
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000494 // If the type legalizer was run then we should never see any illegal result
495 // types here except for target constants (the type legalizer does not touch
Mon P Wang87c8a8f2008-12-18 20:03:17 +0000496 // those) or for build vector used as a mask for a vector shuffle.
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000497 assert((TypesNeedLegalizing || getTypeAction(VT) == Legal ||
Duncan Sands9771b912009-04-27 19:33:03 +0000498 IsLegalizingCallArgs || Op.getOpcode() == ISD::TargetConstant) &&
Duncan Sandsb6862bb2008-12-14 09:43:15 +0000499 "Illegal type introduced after type legalization?");
Dan Gohman7f321562007-06-25 16:23:39 +0000500 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000501 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000502 case Legal: (void)LegalizeOp(Op); break;
Mon P Wang0c397192008-10-30 08:01:45 +0000503 case Promote:
504 if (!VT.isVector()) {
505 (void)PromoteOp(Op);
506 break;
507 }
508 else {
509 // See if we can widen otherwise use Expand to either scalarize or split
510 MVT WidenVT = TLI.getWidenVectorType(VT);
511 if (WidenVT != MVT::Other) {
512 (void) WidenVectorOp(Op, WidenVT);
513 break;
514 }
515 // else fall thru to expand since we can't widen the vector
516 }
Chris Lattnerc7029802006-03-18 01:44:44 +0000517 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000518 if (!VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +0000519 // If this is an illegal scalar, expand it into its two component
520 // pieces.
Dan Gohman475871a2008-07-27 21:46:04 +0000521 SDValue X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000522 if (Op.getOpcode() == ISD::TargetConstant)
523 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000524 ExpandOp(Op, X, Y);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000525 } else if (VT.getVectorNumElements() == 1) {
Dan Gohman7f321562007-06-25 16:23:39 +0000526 // If this is an illegal single element vector, convert it to a
527 // scalar operation.
528 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000529 } else {
Mon P Wang0c397192008-10-30 08:01:45 +0000530 // This is an illegal multiple element vector.
Dan Gohman7f321562007-06-25 16:23:39 +0000531 // Split it in half and legalize both parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000532 SDValue X, Y;
Dan Gohman7f321562007-06-25 16:23:39 +0000533 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000534 }
535 break;
536 }
537}
Chris Lattner6831a812006-02-13 09:18:02 +0000538
Evan Cheng9f877882006-12-13 20:57:08 +0000539/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
540/// a load from the constant pool.
Dan Gohman475871a2008-07-27 21:46:04 +0000541static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Dan Gohman0d137d72009-01-15 16:43:02 +0000542 SelectionDAG &DAG, const TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000543 bool Extend = false;
Dale Johannesen33c960f2009-02-04 20:06:27 +0000544 DebugLoc dl = CFP->getDebugLoc();
Evan Cheng00495212006-12-12 21:32:44 +0000545
546 // If a FP immediate is precise when represented as a float and if the
547 // target can do an extending load from float to double, we put it into
548 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000549 // double. This shrinks FP constants and canonicalizes them for targets where
550 // an FP extending load is the same cost as a normal load (such as on the x87
551 // fp stack or PPC FP unit).
Duncan Sands83ec4b62008-06-06 12:08:01 +0000552 MVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000553 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000554 if (!UseCP) {
Chris Lattnerd2e936a2009-03-08 01:47:41 +0000555 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000556 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Evan Chengef120572008-03-04 08:05:30 +0000557 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000558 }
559
Duncan Sands83ec4b62008-06-06 12:08:01 +0000560 MVT OrigVT = VT;
561 MVT SVT = VT;
Evan Chengef120572008-03-04 08:05:30 +0000562 while (SVT != MVT::f32) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000563 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Chengef120572008-03-04 08:05:30 +0000564 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
565 // Only do this if the target has a native EXTLOAD instruction from
566 // smaller type.
Evan Cheng03294662008-10-14 21:26:46 +0000567 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000568 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000569 const Type *SType = SVT.getTypeForMVT();
Evan Chengef120572008-03-04 08:05:30 +0000570 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
571 VT = SVT;
572 Extend = true;
573 }
Evan Cheng00495212006-12-12 21:32:44 +0000574 }
575
Dan Gohman475871a2008-07-27 21:46:04 +0000576 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +0000577 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Evan Chengef120572008-03-04 08:05:30 +0000578 if (Extend)
Dale Johannesen33c960f2009-02-04 20:06:27 +0000579 return DAG.getExtLoad(ISD::EXTLOAD, dl,
Dale Johannesen39355f92009-02-04 02:34:38 +0000580 OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000581 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman50284d82008-09-16 22:05:41 +0000582 0, VT, false, Alignment);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000583 return DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +0000584 PseudoSourceValue::getConstantPool(), 0, false, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +0000585}
586
Chris Lattner6831a812006-02-13 09:18:02 +0000587
Evan Cheng912095b2007-01-04 21:56:39 +0000588/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
589/// operations.
590static
Dan Gohman475871a2008-07-27 21:46:04 +0000591SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
Dan Gohman0d137d72009-01-15 16:43:02 +0000592 SelectionDAG &DAG,
593 const TargetLowering &TLI) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000594 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000595 MVT VT = Node->getValueType(0);
596 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000597 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
598 "fcopysign expansion only supported for f32 and f64");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000599 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000600
Evan Cheng912095b2007-01-04 21:56:39 +0000601 // First get the sign bit of second operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000602 SDValue Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000603 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
604 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000605 Mask1 = DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT, Mask1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000606 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT,
Dale Johannesenbb5da912009-02-02 20:41:04 +0000607 Node->getOperand(1));
608 SignBit = DAG.getNode(ISD::AND, dl, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000609 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000610 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Evan Cheng912095b2007-01-04 21:56:39 +0000611 if (SizeDiff > 0) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000612 SignBit = DAG.getNode(ISD::SRL, dl, SrcNVT, SignBit,
Evan Cheng912095b2007-01-04 21:56:39 +0000613 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000614 SignBit = DAG.getNode(ISD::TRUNCATE, dl, NVT, SignBit);
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000615 } else if (SizeDiff < 0) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000616 SignBit = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, SignBit);
617 SignBit = DAG.getNode(ISD::SHL, dl, NVT, SignBit,
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000618 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
619 }
Evan Cheng068c5f42007-01-05 21:31:51 +0000620
621 // Clear the sign bit of first operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000622 SDValue Mask2 = (VT == MVT::f64)
Evan Cheng068c5f42007-01-05 21:31:51 +0000623 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
624 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000625 Mask2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask2);
626 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
627 Result = DAG.getNode(ISD::AND, dl, NVT, Result, Mask2);
Evan Cheng068c5f42007-01-05 21:31:51 +0000628
629 // Or the value with the sign bit.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000630 Result = DAG.getNode(ISD::OR, dl, NVT, Result, SignBit);
Evan Cheng912095b2007-01-04 21:56:39 +0000631 return Result;
632}
633
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000634/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
635static
Dan Gohman475871a2008-07-27 21:46:04 +0000636SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
Dan Gohman0d137d72009-01-15 16:43:02 +0000637 const TargetLowering &TLI) {
Dan Gohman475871a2008-07-27 21:46:04 +0000638 SDValue Chain = ST->getChain();
639 SDValue Ptr = ST->getBasePtr();
640 SDValue Val = ST->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000641 MVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000642 int Alignment = ST->getAlignment();
643 int SVOffset = ST->getSrcValueOffset();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000644 DebugLoc dl = ST->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000645 if (ST->getMemoryVT().isFloatingPoint() ||
646 ST->getMemoryVT().isVector()) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000647 MVT intVT = MVT::getIntegerVT(VT.getSizeInBits());
648 if (TLI.isTypeLegal(intVT)) {
649 // Expand to a bitconvert of the value to the integer type of the
650 // same size, then a (misaligned) int store.
651 // FIXME: Does not handle truncating floating point stores!
Dale Johannesenbb5da912009-02-02 20:41:04 +0000652 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, intVT, Val);
653 return DAG.getStore(Chain, dl, Result, Ptr, ST->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000654 SVOffset, ST->isVolatile(), Alignment);
655 } else {
656 // Do a (aligned) store to a stack slot, then copy from the stack slot
657 // to the final destination using (unaligned) integer loads and stores.
658 MVT StoredVT = ST->getMemoryVT();
659 MVT RegVT =
660 TLI.getRegisterType(MVT::getIntegerVT(StoredVT.getSizeInBits()));
661 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
662 unsigned RegBytes = RegVT.getSizeInBits() / 8;
663 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000664
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000665 // Make sure the stack slot is also aligned for the register type.
666 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
667
668 // Perform the original store, only redirected to the stack slot.
Scott Michelfdc40a02009-02-17 22:15:04 +0000669 SDValue Store = DAG.getTruncStore(Chain, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +0000670 Val, StackPtr, NULL, 0, StoredVT);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000671 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
672 SmallVector<SDValue, 8> Stores;
673 unsigned Offset = 0;
674
675 // Do all but one copies using the full register width.
676 for (unsigned i = 1; i < NumRegs; i++) {
677 // Load one integer register's worth from the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000678 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr, NULL, 0);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000679 // Store it to the final location. Remember the store.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000680 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000681 ST->getSrcValue(), SVOffset + Offset,
682 ST->isVolatile(),
683 MinAlign(ST->getAlignment(), Offset)));
684 // Increment the pointers.
685 Offset += RegBytes;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000686 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000687 Increment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000688 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000689 }
690
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000691 // The last store may be partial. Do a truncating store. On big-endian
692 // machines this requires an extending load from the stack slot to ensure
693 // that the bits are in the right place.
694 MVT MemVT = MVT::getIntegerVT(8 * (StoredBytes - Offset));
Duncan Sands05e11fa2008-12-12 21:47:02 +0000695
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000696 // Load from the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000697 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000698 NULL, 0, MemVT);
699
Dale Johannesenbb5da912009-02-02 20:41:04 +0000700 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000701 ST->getSrcValue(), SVOffset + Offset,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000702 MemVT, ST->isVolatile(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000703 MinAlign(ST->getAlignment(), Offset)));
704 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000705 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sands05e11fa2008-12-12 21:47:02 +0000706 Stores.size());
707 }
Dale Johannesen907f28c2007-09-08 19:29:23 +0000708 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000709 assert(ST->getMemoryVT().isInteger() &&
710 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000711 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000712 // Get the half-size VT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000713 MVT NewStoredVT =
714 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
715 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000716 int IncrementSize = NumBits / 8;
717
718 // Divide the stored value in two parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000719 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
720 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000721 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000722
723 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000724 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000725 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000726 ST->getSrcValue(), SVOffset, NewStoredVT,
727 ST->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000728 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000729 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000730 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000731 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000732 ST->getSrcValue(), SVOffset + IncrementSize,
733 NewStoredVT, ST->isVolatile(), Alignment);
734
Dale Johannesenbb5da912009-02-02 20:41:04 +0000735 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000736}
737
738/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
739static
Dan Gohman475871a2008-07-27 21:46:04 +0000740SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
Dan Gohmane9530ec2009-01-15 16:58:17 +0000741 const TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000742 int SVOffset = LD->getSrcValueOffset();
Dan Gohman475871a2008-07-27 21:46:04 +0000743 SDValue Chain = LD->getChain();
744 SDValue Ptr = LD->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000745 MVT VT = LD->getValueType(0);
746 MVT LoadedVT = LD->getMemoryVT();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000747 DebugLoc dl = LD->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000748 if (VT.isFloatingPoint() || VT.isVector()) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000749 MVT intVT = MVT::getIntegerVT(LoadedVT.getSizeInBits());
750 if (TLI.isTypeLegal(intVT)) {
751 // Expand to a (misaligned) integer load of the same size,
752 // then bitconvert to floating point or vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000753 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000754 SVOffset, LD->isVolatile(),
Dale Johannesen907f28c2007-09-08 19:29:23 +0000755 LD->getAlignment());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000756 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, LoadedVT, newLoad);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000757 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesenbb5da912009-02-02 20:41:04 +0000758 Result = DAG.getNode(ISD::FP_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000759
Duncan Sands05e11fa2008-12-12 21:47:02 +0000760 SDValue Ops[] = { Result, Chain };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000761 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000762 } else {
763 // Copy the value to a (aligned) stack slot using (unaligned) integer
764 // loads and stores, then do a (aligned) load from the stack slot.
765 MVT RegVT = TLI.getRegisterType(intVT);
766 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
767 unsigned RegBytes = RegVT.getSizeInBits() / 8;
768 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
769
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000770 // Make sure the stack slot is also aligned for the register type.
771 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
772
Duncan Sands05e11fa2008-12-12 21:47:02 +0000773 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
774 SmallVector<SDValue, 8> Stores;
775 SDValue StackPtr = StackBase;
776 unsigned Offset = 0;
777
778 // Do all but one copies using the full register width.
779 for (unsigned i = 1; i < NumRegs; i++) {
780 // Load one integer register's worth from the original location.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000781 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000782 SVOffset + Offset, LD->isVolatile(),
783 MinAlign(LD->getAlignment(), Offset));
784 // Follow the load with a store to the stack slot. Remember the store.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000785 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000786 NULL, 0));
787 // Increment the pointers.
788 Offset += RegBytes;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000789 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
790 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000791 Increment);
792 }
793
794 // The last copy may be partial. Do an extending load.
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000795 MVT MemVT = MVT::getIntegerVT(8 * (LoadedBytes - Offset));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000796 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000797 LD->getSrcValue(), SVOffset + Offset,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000798 MemVT, LD->isVolatile(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000799 MinAlign(LD->getAlignment(), Offset));
800 // Follow the load with a store to the stack slot. Remember the store.
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000801 // On big-endian machines this requires a truncating store to ensure
802 // that the bits end up in the right place.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000803 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000804 NULL, 0, MemVT));
Duncan Sands05e11fa2008-12-12 21:47:02 +0000805
806 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000807 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sands05e11fa2008-12-12 21:47:02 +0000808 Stores.size());
809
810 // Finally, perform the original load only redirected to the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000811 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000812 NULL, 0, LoadedVT);
813
814 // Callers expect a MERGE_VALUES node.
815 SDValue Ops[] = { Load, TF };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000816 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000817 }
Dale Johannesen907f28c2007-09-08 19:29:23 +0000818 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000819 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000820 "Unaligned load of unsupported type.");
821
Dale Johannesen8155d642008-02-27 22:36:00 +0000822 // Compute the new VT that is half the size of the old one. This is an
823 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000824 unsigned NumBits = LoadedVT.getSizeInBits();
825 MVT NewLoadedVT;
826 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000827 NumBits >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000828
Chris Lattnere400af82007-11-19 21:38:03 +0000829 unsigned Alignment = LD->getAlignment();
830 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000831 ISD::LoadExtType HiExtType = LD->getExtensionType();
832
833 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
834 if (HiExtType == ISD::NON_EXTLOAD)
835 HiExtType = ISD::ZEXTLOAD;
836
837 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000838 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000839 if (TLI.isLittleEndian()) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000840 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000841 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000842 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000843 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000844 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000845 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000846 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000847 } else {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000848 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +0000849 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000850 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000851 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000852 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000853 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000854 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000855 }
856
857 // aggregate the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000858 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000859 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
860 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000861
Dale Johannesenbb5da912009-02-02 20:41:04 +0000862 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000863 Hi.getValue(1));
864
Dan Gohman475871a2008-07-27 21:46:04 +0000865 SDValue Ops[] = { Result, TF };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000866 return DAG.getMergeValues(Ops, 2, dl);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000867}
Evan Cheng912095b2007-01-04 21:56:39 +0000868
Dan Gohman82669522007-10-11 23:57:53 +0000869/// UnrollVectorOp - We know that the given vector has a legal type, however
870/// the operation it performs is not legal and is an operation that we have
871/// no way of lowering. "Unroll" the vector, splitting out the scalars and
872/// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000873SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000874 MVT VT = Op.getValueType();
Dan Gohman82669522007-10-11 23:57:53 +0000875 assert(isTypeLegal(VT) &&
876 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000877 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman82669522007-10-11 23:57:53 +0000878 "Can't unroll a vector with multiple results!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000879 unsigned NE = VT.getVectorNumElements();
880 MVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000881 DebugLoc dl = Op.getDebugLoc();
Dan Gohman82669522007-10-11 23:57:53 +0000882
Dan Gohman475871a2008-07-27 21:46:04 +0000883 SmallVector<SDValue, 8> Scalars;
884 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman82669522007-10-11 23:57:53 +0000885 for (unsigned i = 0; i != NE; ++i) {
886 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +0000887 SDValue Operand = Op.getOperand(j);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000888 MVT OperandVT = Operand.getValueType();
889 if (OperandVT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +0000890 // A vector operand; extract a single element.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000891 MVT OperandEltVT = OperandVT.getVectorElementType();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000892 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dan Gohman82669522007-10-11 23:57:53 +0000893 OperandEltVT,
894 Operand,
895 DAG.getConstant(i, MVT::i32));
896 } else {
897 // A scalar operand; just use it as is.
898 Operands[j] = Operand;
899 }
900 }
Mon P Wange9f10152008-12-09 05:46:39 +0000901
902 switch (Op.getOpcode()) {
903 default:
Dale Johannesenbb5da912009-02-02 20:41:04 +0000904 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT,
Mon P Wange9f10152008-12-09 05:46:39 +0000905 &Operands[0], Operands.size()));
906 break;
907 case ISD::SHL:
908 case ISD::SRA:
909 case ISD::SRL:
Duncan Sands92abc622009-01-31 15:50:11 +0000910 case ISD::ROTL:
911 case ISD::ROTR:
Dale Johannesenbb5da912009-02-02 20:41:04 +0000912 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT, Operands[0],
Duncan Sands92abc622009-01-31 15:50:11 +0000913 DAG.getShiftAmountOperand(Operands[1])));
Mon P Wange9f10152008-12-09 05:46:39 +0000914 break;
915 }
Dan Gohman82669522007-10-11 23:57:53 +0000916 }
917
Evan Chenga87008d2009-02-25 22:49:59 +0000918 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Scalars[0], Scalars.size());
Dan Gohman82669522007-10-11 23:57:53 +0000919}
920
Duncan Sands007f9842008-01-10 10:28:30 +0000921/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000922static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands007f9842008-01-10 10:28:30 +0000923 RTLIB::Libcall Call_F32,
924 RTLIB::Libcall Call_F64,
925 RTLIB::Libcall Call_F80,
926 RTLIB::Libcall Call_PPCF128) {
927 return
928 VT == MVT::f32 ? Call_F32 :
929 VT == MVT::f64 ? Call_F64 :
930 VT == MVT::f80 ? Call_F80 :
931 VT == MVT::ppcf128 ? Call_PPCF128 :
932 RTLIB::UNKNOWN_LIBCALL;
933}
934
Nate Begeman68679912008-04-25 18:07:40 +0000935/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
936/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
937/// is necessary to spill the vector being inserted into to memory, perform
938/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000939SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000940PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
941 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000942 SDValue Tmp1 = Vec;
943 SDValue Tmp2 = Val;
944 SDValue Tmp3 = Idx;
Scott Michelfdc40a02009-02-17 22:15:04 +0000945
Nate Begeman68679912008-04-25 18:07:40 +0000946 // If the target doesn't support this, we have to spill the input vector
947 // to a temporary stack slot, update the element, then reload it. This is
948 // badness. We could also load the value into a vector register (either
949 // with a "move to register" or "extload into register" instruction, then
950 // permute it into place, if the idx is a constant and if the idx is
951 // supported by the target.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000952 MVT VT = Tmp1.getValueType();
953 MVT EltVT = VT.getVectorElementType();
954 MVT IdxVT = Tmp3.getValueType();
955 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000956 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000957
Gabor Greifba36cb52008-08-28 21:40:38 +0000958 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman68679912008-04-25 18:07:40 +0000959
960 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000961 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Mon P Wang0c397192008-10-30 08:01:45 +0000962 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000963
964 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000965 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000966 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000967 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000968 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000969 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
970 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000971 // Store the scalar value.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000972 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2,
Dan Gohmana54cf172008-07-11 22:44:52 +0000973 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman68679912008-04-25 18:07:40 +0000974 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000975 return DAG.getLoad(VT, dl, Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +0000976 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000977}
978
Mon P Wange9f10152008-12-09 05:46:39 +0000979
Dan Gohmana3466152007-07-13 20:14:11 +0000980/// LegalizeOp - We know that the specified value has a legal type, and
981/// that its operands are legal. Now ensure that the operation itself
982/// is legal, recursively ensuring that the operands' operations remain
983/// legal.
Dan Gohman475871a2008-07-27 21:46:04 +0000984SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000985 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
986 return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +0000987
Chris Lattnerc9c60f62005-08-24 16:35:28 +0000988 assert(isTypeLegal(Op.getValueType()) &&
Chris Lattnere3304a32005-01-08 20:35:13 +0000989 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000990 SDNode *Node = Op.getNode();
Dale Johannesen7d2ad622009-01-30 23:10:59 +0000991 DebugLoc dl = Node->getDebugLoc();
Chris Lattnere3304a32005-01-08 20:35:13 +0000992
Chris Lattner3e928bb2005-01-07 07:47:09 +0000993 // If this operation defines any values that cannot be represented in a
Chris Lattnere3304a32005-01-08 20:35:13 +0000994 // register on this target, make sure to expand or promote them.
Chris Lattner45982da2005-05-12 16:53:42 +0000995 if (Node->getNumValues() > 1) {
996 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Chris Lattnerc7029802006-03-18 01:44:44 +0000997 if (getTypeAction(Node->getValueType(i)) != Legal) {
998 HandleOp(Op.getValue(i));
Chris Lattner3e928bb2005-01-07 07:47:09 +0000999 assert(LegalizedNodes.count(Op) &&
Chris Lattnerc7029802006-03-18 01:44:44 +00001000 "Handling didn't add legal operands!");
Chris Lattner03c85462005-01-15 05:21:40 +00001001 return LegalizedNodes[Op];
Chris Lattner3e928bb2005-01-07 07:47:09 +00001002 }
1003 }
1004
Chris Lattner45982da2005-05-12 16:53:42 +00001005 // Note that LegalizeOp may be reentered even from single-use nodes, which
1006 // means that we always must cache transformed nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00001007 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +00001008 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001009
Dan Gohman475871a2008-07-27 21:46:04 +00001010 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
1011 SDValue Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +00001012 bool isCustom = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001013
Chris Lattner3e928bb2005-01-07 07:47:09 +00001014 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +00001015 case ISD::FrameIndex:
1016 case ISD::EntryToken:
1017 case ISD::Register:
1018 case ISD::BasicBlock:
1019 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +00001020 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +00001021 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +00001022 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +00001023 case ISD::TargetConstantPool:
1024 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001025 case ISD::TargetGlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +00001026 case ISD::TargetExternalSymbol:
Chris Lattner948c1b12006-01-28 08:31:04 +00001027 case ISD::VALUETYPE:
1028 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +00001029 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +00001030 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +00001031 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +00001032 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00001033 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +00001034 "This must be legal!");
1035 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001036 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001037 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
1038 // If this is a target node, legalize it by legalizing the operands then
1039 // passing it through.
Dan Gohman475871a2008-07-27 21:46:04 +00001040 SmallVector<SDValue, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001041 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001042 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001043
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001044 Result = DAG.UpdateNodeOperands(Result.getValue(0), &Ops[0], Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001045
1046 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1047 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001048 return Result.getValue(Op.getResNo());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001049 }
1050 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001051#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00001052 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001053#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00001054 assert(0 && "Do not know how to legalize this operator!");
1055 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +00001056 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +00001057 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001058 case ISD::GlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +00001059 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +00001060 case ISD::ConstantPool:
1061 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001062 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1063 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +00001064 case TargetLowering::Custom:
1065 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001066 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner948c1b12006-01-28 08:31:04 +00001067 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001068 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001069 break;
1070 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001071 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +00001072 case ISD::FRAMEADDR:
1073 case ISD::RETURNADDR:
1074 // The only option for these nodes is to custom lower them. If the target
1075 // does not custom lower them, then return zero.
1076 Tmp1 = TLI.LowerOperation(Op, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00001077 if (Tmp1.getNode())
Nate Begemanbcc5f362007-01-29 22:58:52 +00001078 Result = Tmp1;
1079 else
1080 Result = DAG.getConstant(0, TLI.getPointerTy());
1081 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +00001082 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001083 MVT VT = Node->getValueType(0);
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001084 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1085 default: assert(0 && "This action is not supported yet!");
1086 case TargetLowering::Custom:
1087 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001088 if (Result.getNode()) break;
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001089 // Fall Thru
1090 case TargetLowering::Legal:
1091 Result = DAG.getConstant(0, VT);
1092 break;
1093 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +00001094 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001095 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +00001096 case ISD::EXCEPTIONADDR: {
1097 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001098 MVT VT = Node->getValueType(0);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001099 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1100 default: assert(0 && "This action is not supported yet!");
1101 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +00001102 unsigned Reg = TLI.getExceptionAddressRegister();
Dale Johannesenc460ae92009-02-04 00:13:36 +00001103 Result = DAG.getCopyFromReg(Tmp1, dl, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001104 }
1105 break;
1106 case TargetLowering::Custom:
1107 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001108 if (Result.getNode()) break;
Jim Laskey2bc210d2007-02-22 15:37:19 +00001109 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001110 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001111 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Dale Johannesenca57b842009-02-02 23:46:53 +00001112 Result = DAG.getMergeValues(Ops, 2, dl);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001113 break;
1114 }
1115 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001116 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001117 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +00001118
Gabor Greifba36cb52008-08-28 21:40:38 +00001119 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +00001120 "Cannot return more than two values!");
1121
1122 // Since we produced two values, make sure to remember that we
1123 // legalized both of them.
1124 Tmp1 = LegalizeOp(Result);
1125 Tmp2 = LegalizeOp(Result.getValue(1));
1126 AddLegalizedOperand(Op.getValue(0), Tmp1);
1127 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001128 return Op.getResNo() ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +00001129 case ISD::EHSELECTION: {
1130 Tmp1 = LegalizeOp(Node->getOperand(0));
1131 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001132 MVT VT = Node->getValueType(0);
Jim Laskey8782d482007-02-28 20:43:58 +00001133 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1134 default: assert(0 && "This action is not supported yet!");
1135 case TargetLowering::Expand: {
1136 unsigned Reg = TLI.getExceptionSelectorRegister();
Dale Johannesenc460ae92009-02-04 00:13:36 +00001137 Result = DAG.getCopyFromReg(Tmp2, dl, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +00001138 }
1139 break;
1140 case TargetLowering::Custom:
1141 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001142 if (Result.getNode()) break;
Jim Laskey8782d482007-02-28 20:43:58 +00001143 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001144 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001145 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Dale Johannesenca57b842009-02-02 23:46:53 +00001146 Result = DAG.getMergeValues(Ops, 2, dl);
Jim Laskey8782d482007-02-28 20:43:58 +00001147 break;
1148 }
1149 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001150 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001151 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +00001152
Gabor Greifba36cb52008-08-28 21:40:38 +00001153 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +00001154 "Cannot return more than two values!");
1155
1156 // Since we produced two values, make sure to remember that we
1157 // legalized both of them.
1158 Tmp1 = LegalizeOp(Result);
1159 Tmp2 = LegalizeOp(Result.getValue(1));
1160 AddLegalizedOperand(Op.getValue(0), Tmp1);
1161 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001162 return Op.getResNo() ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001163 case ISD::EH_RETURN: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001164 MVT VT = Node->getValueType(0);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001165 // The only "good" option for this node is to custom lower it.
1166 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1167 default: assert(0 && "This action is not supported at all!");
1168 case TargetLowering::Custom:
1169 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001170 if (Result.getNode()) break;
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001171 // Fall Thru
1172 case TargetLowering::Legal:
1173 // Target does not know, how to lower this, lower to noop
1174 Result = LegalizeOp(Node->getOperand(0));
1175 break;
1176 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001177 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001178 break;
Chris Lattner08951a32005-09-02 01:15:01 +00001179 case ISD::AssertSext:
1180 case ISD::AssertZext:
1181 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001182 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +00001183 break;
Chris Lattner308575b2005-11-20 22:56:56 +00001184 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001185 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif99a6cb92008-08-26 22:36:50 +00001186 Result = Node->getOperand(Op.getResNo());
Chris Lattner456a93a2006-01-28 07:39:30 +00001187 break;
Chris Lattner69a52152005-01-14 22:38:01 +00001188 case ISD::CopyFromReg:
1189 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001190 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001191 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001192 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +00001193 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001194 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001195 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001196 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001197 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1198 } else {
1199 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1200 }
Chris Lattner7310fb12005-12-18 15:27:43 +00001201 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1202 }
Chris Lattner13c184d2005-01-28 06:27:38 +00001203 // Since CopyFromReg produces two values, make sure to remember that we
1204 // legalized both of them.
1205 AddLegalizedOperand(Op.getValue(0), Result);
1206 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001207 return Result.getValue(Op.getResNo());
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001208 case ISD::UNDEF: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001209 MVT VT = Op.getValueType();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001210 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +00001211 default: assert(0 && "This action is not supported yet!");
1212 case TargetLowering::Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001213 if (VT.isInteger())
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001214 Result = DAG.getConstant(0, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001215 else if (VT.isFloatingPoint())
1216 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf41db212007-09-26 17:26:49 +00001217 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001218 else
1219 assert(0 && "Unknown value type!");
1220 break;
Nate Begemanea19cd52005-04-02 00:41:14 +00001221 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001222 break;
1223 }
1224 break;
1225 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001226
Chris Lattner48b61a72006-03-28 00:40:33 +00001227 case ISD::INTRINSIC_W_CHAIN:
1228 case ISD::INTRINSIC_WO_CHAIN:
1229 case ISD::INTRINSIC_VOID: {
Dan Gohman475871a2008-07-27 21:46:04 +00001230 SmallVector<SDValue, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001231 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1232 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001233 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001234
Chris Lattner10d7fa62006-03-26 09:12:51 +00001235 // Allow the target to custom lower its intrinsics if it wants to.
Scott Michelfdc40a02009-02-17 22:15:04 +00001236 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001237 TargetLowering::Custom) {
1238 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001239 if (Tmp3.getNode()) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001240 }
1241
Gabor Greifba36cb52008-08-28 21:40:38 +00001242 if (Result.getNode()->getNumValues() == 1) break;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001243
1244 // Must have return value and chain result.
Gabor Greifba36cb52008-08-28 21:40:38 +00001245 assert(Result.getNode()->getNumValues() == 2 &&
Chris Lattner13fc2f12006-03-27 20:28:29 +00001246 "Cannot return more than two values!");
1247
Scott Michelfdc40a02009-02-17 22:15:04 +00001248 // Since loads produce two values, make sure to remember that we
Chris Lattner13fc2f12006-03-27 20:28:29 +00001249 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001250 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1251 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001252 return Result.getValue(Op.getResNo());
Scott Michelfdc40a02009-02-17 22:15:04 +00001253 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001254
Dan Gohman7f460202008-06-30 20:59:49 +00001255 case ISD::DBG_STOPPOINT:
1256 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Chris Lattner36ce6912005-11-29 06:21:05 +00001257 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00001258
Dan Gohman7f460202008-06-30 20:59:49 +00001259 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Chris Lattner36ce6912005-11-29 06:21:05 +00001260 case TargetLowering::Promote:
1261 default: assert(0 && "This action is not supported yet!");
Bill Wendling92c1e122009-02-13 02:16:35 +00001262 case TargetLowering::Expand: {
1263 DwarfWriter *DW = DAG.getDwarfWriter();
1264 bool useDEBUG_LOC = TLI.isOperationLegalOrCustom(ISD::DEBUG_LOC,
1265 MVT::Other);
1266 bool useLABEL = TLI.isOperationLegalOrCustom(ISD::DBG_LABEL, MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00001267
Bill Wendling92c1e122009-02-13 02:16:35 +00001268 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
1269 GlobalVariable *CU_GV = cast<GlobalVariable>(DSP->getCompileUnit());
1270 if (DW && (useDEBUG_LOC || useLABEL) && !CU_GV->isDeclaration()) {
1271 DICompileUnit CU(cast<GlobalVariable>(DSP->getCompileUnit()));
Bill Wendling0582ae92009-03-13 04:39:26 +00001272 std::string Dir, FN;
1273 unsigned SrcFile = DW->getOrCreateSourceID(CU.getDirectory(Dir),
1274 CU.getFilename(FN));
Scott Michelfdc40a02009-02-17 22:15:04 +00001275
Bill Wendling92c1e122009-02-13 02:16:35 +00001276 unsigned Line = DSP->getLine();
1277 unsigned Col = DSP->getColumn();
Bill Wendling86e6cb92009-02-17 01:04:54 +00001278
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00001279 if (OptLevel == 0) {
Bill Wendling86e6cb92009-02-17 01:04:54 +00001280 // A bit self-referential to have DebugLoc on Debug_Loc nodes, but it
1281 // won't hurt anything.
1282 if (useDEBUG_LOC) {
1283 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Bill Wendling92c1e122009-02-13 02:16:35 +00001284 DAG.getConstant(Col, MVT::i32),
1285 DAG.getConstant(SrcFile, MVT::i32) };
Bill Wendling86e6cb92009-02-17 01:04:54 +00001286 Result = DAG.getNode(ISD::DEBUG_LOC, dl, MVT::Other, Ops, 4);
1287 } else {
1288 unsigned ID = DW->RecordSourceLine(Line, Col, SrcFile);
1289 Result = DAG.getLabel(ISD::DBG_LABEL, dl, Tmp1, ID);
1290 }
Bill Wendling92c1e122009-02-13 02:16:35 +00001291 } else {
Bill Wendling86e6cb92009-02-17 01:04:54 +00001292 Result = Tmp1; // chain
Bill Wendling92c1e122009-02-13 02:16:35 +00001293 }
1294 } else {
1295 Result = Tmp1; // chain
1296 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001297 break;
Bill Wendling92c1e122009-02-13 02:16:35 +00001298 }
Sanjiv Gupta5274a4a2009-04-02 18:03:10 +00001299 case TargetLowering::Custom:
1300 Result = TLI.LowerOperation(Op, DAG);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001301 if (Result.getNode())
Sanjiv Gupta5274a4a2009-04-02 18:03:10 +00001302 break;
Evan Cheng71e86852008-07-08 20:06:39 +00001303 case TargetLowering::Legal: {
1304 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1305 if (Action == Legal && Tmp1 == Node->getOperand(0))
1306 break;
1307
Dan Gohman475871a2008-07-27 21:46:04 +00001308 SmallVector<SDValue, 8> Ops;
Evan Cheng71e86852008-07-08 20:06:39 +00001309 Ops.push_back(Tmp1);
1310 if (Action == Legal) {
1311 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1312 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1313 } else {
1314 // Otherwise promote them.
1315 Ops.push_back(PromoteOp(Node->getOperand(1)));
1316 Ops.push_back(PromoteOp(Node->getOperand(2)));
Chris Lattner36ce6912005-11-29 06:21:05 +00001317 }
Evan Cheng71e86852008-07-08 20:06:39 +00001318 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1319 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1320 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001321 break;
1322 }
Evan Cheng71e86852008-07-08 20:06:39 +00001323 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001324 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001325
1326 case ISD::DECLARE:
1327 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1328 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1329 default: assert(0 && "This action is not supported yet!");
1330 case TargetLowering::Legal:
1331 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1332 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1333 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1334 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1335 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001336 case TargetLowering::Expand:
1337 Result = LegalizeOp(Node->getOperand(0));
1338 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001339 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001340 break;
1341
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001342 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001343 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001344 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001345 default: assert(0 && "This action is not supported yet!");
Evan Cheng71e86852008-07-08 20:06:39 +00001346 case TargetLowering::Legal: {
1347 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001348 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Cheng71e86852008-07-08 20:06:39 +00001349 if (Action == Legal && Tmp1 == Node->getOperand(0))
1350 break;
1351 if (Action == Legal) {
1352 Tmp2 = Node->getOperand(1);
1353 Tmp3 = Node->getOperand(2);
1354 Tmp4 = Node->getOperand(3);
1355 } else {
1356 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1357 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1358 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1359 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001360 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001361 break;
1362 }
Evan Cheng71e86852008-07-08 20:06:39 +00001363 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001364 break;
Jim Laskeyabf6d172006-01-05 01:25:28 +00001365
Dan Gohman44066042008-07-01 00:05:16 +00001366 case ISD::DBG_LABEL:
1367 case ISD::EH_LABEL:
1368 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1369 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001370 default: assert(0 && "This action is not supported yet!");
1371 case TargetLowering::Legal:
1372 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001373 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001374 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001375 case TargetLowering::Expand:
1376 Result = LegalizeOp(Node->getOperand(0));
1377 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001378 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001379 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001380
Evan Cheng27b7db52008-03-08 00:58:38 +00001381 case ISD::PREFETCH:
1382 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1383 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1384 default: assert(0 && "This action is not supported yet!");
1385 case TargetLowering::Legal:
1386 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1387 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1388 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1389 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1390 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1391 break;
1392 case TargetLowering::Expand:
1393 // It's a noop.
1394 Result = LegalizeOp(Node->getOperand(0));
1395 break;
1396 }
1397 break;
1398
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001399 case ISD::MEMBARRIER: {
1400 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001401 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1402 default: assert(0 && "This action is not supported yet!");
1403 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001404 SDValue Ops[6];
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001405 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001406 for (int x = 1; x < 6; ++x) {
1407 Ops[x] = Node->getOperand(x);
1408 if (!isTypeLegal(Ops[x].getValueType()))
1409 Ops[x] = PromoteOp(Ops[x]);
1410 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001411 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1412 break;
1413 }
1414 case TargetLowering::Expand:
1415 //There is no libgcc call for this op
1416 Result = Node->getOperand(0); // Noop
1417 break;
1418 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001419 break;
1420 }
1421
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001422 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001423 unsigned int num_operands = 4;
1424 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001425 SDValue Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001426 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001427 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001428 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Scott Michelfdc40a02009-02-17 22:15:04 +00001429
Mon P Wang63307c32008-05-05 19:05:59 +00001430 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1431 default: assert(0 && "This action is not supported yet!");
1432 case TargetLowering::Custom:
1433 Result = TLI.LowerOperation(Result, DAG);
1434 break;
1435 case TargetLowering::Legal:
1436 break;
1437 }
Dan Gohman475871a2008-07-27 21:46:04 +00001438 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1439 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001440 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001441 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001442 case ISD::ATOMIC_LOAD_ADD:
1443 case ISD::ATOMIC_LOAD_SUB:
1444 case ISD::ATOMIC_LOAD_AND:
1445 case ISD::ATOMIC_LOAD_OR:
1446 case ISD::ATOMIC_LOAD_XOR:
1447 case ISD::ATOMIC_LOAD_NAND:
1448 case ISD::ATOMIC_LOAD_MIN:
1449 case ISD::ATOMIC_LOAD_MAX:
1450 case ISD::ATOMIC_LOAD_UMIN:
1451 case ISD::ATOMIC_LOAD_UMAX:
1452 case ISD::ATOMIC_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001453 unsigned int num_operands = 3;
1454 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001455 SDValue Ops[3];
Mon P Wang63307c32008-05-05 19:05:59 +00001456 for (unsigned int x = 0; x < num_operands; ++x)
1457 Ops[x] = LegalizeOp(Node->getOperand(x));
1458 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001459
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001460 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001461 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001462 case TargetLowering::Custom:
1463 Result = TLI.LowerOperation(Result, DAG);
1464 break;
1465 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001466 break;
1467 }
Dan Gohman475871a2008-07-27 21:46:04 +00001468 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1469 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001470 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001471 }
Scott Michelc1513d22007-08-08 23:23:31 +00001472 case ISD::Constant: {
1473 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1474 unsigned opAction =
1475 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1476
Chris Lattner3e928bb2005-01-07 07:47:09 +00001477 // We know we don't need to expand constants here, constants only have one
1478 // value and we check that it is fine above.
1479
Scott Michelc1513d22007-08-08 23:23:31 +00001480 if (opAction == TargetLowering::Custom) {
1481 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001482 if (Tmp1.getNode())
Scott Michelc1513d22007-08-08 23:23:31 +00001483 Result = Tmp1;
1484 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001485 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001486 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001487 case ISD::ConstantFP: {
1488 // Spill FP immediates to the constant pool if the target cannot directly
1489 // codegen them. Targets often have some immediate values that can be
1490 // efficiently generated into an FP register without a load. We explicitly
1491 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001492 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1493
Chris Lattner3181a772006-01-29 06:26:56 +00001494 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1495 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001496 case TargetLowering::Legal:
1497 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001498 case TargetLowering::Custom:
1499 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001500 if (Tmp3.getNode()) {
Chris Lattner3181a772006-01-29 06:26:56 +00001501 Result = Tmp3;
1502 break;
1503 }
1504 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001505 case TargetLowering::Expand: {
1506 // Check to see if this FP immediate is already legal.
1507 bool isLegal = false;
1508 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1509 E = TLI.legal_fpimm_end(); I != E; ++I) {
1510 if (CFP->isExactlyValue(*I)) {
1511 isLegal = true;
1512 break;
1513 }
1514 }
1515 // If this is a legal constant, turn it into a TargetConstantFP node.
1516 if (isLegal)
1517 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001518 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001519 }
Nate Begemane1795842008-02-14 08:57:00 +00001520 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001521 break;
1522 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001523 case ISD::TokenFactor:
1524 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001525 Tmp1 = LegalizeOp(Node->getOperand(0));
1526 Tmp2 = LegalizeOp(Node->getOperand(1));
1527 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1528 } else if (Node->getNumOperands() == 3) {
1529 Tmp1 = LegalizeOp(Node->getOperand(0));
1530 Tmp2 = LegalizeOp(Node->getOperand(1));
1531 Tmp3 = LegalizeOp(Node->getOperand(2));
1532 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001533 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00001534 SmallVector<SDValue, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001535 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001536 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1537 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001538 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001539 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001540 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001541
Chris Lattnerfdfded52006-04-12 16:20:43 +00001542 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001543 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001544 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001545 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001546 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001547 // A call within a calling sequence must be legalized to something
1548 // other than the normal CALLSEQ_END. Violating this gets Legalize
1549 // into an infinite loop.
1550 assert ((!IsLegalizingCall ||
1551 Node->getOpcode() != ISD::CALL ||
Gabor Greifba36cb52008-08-28 21:40:38 +00001552 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesen0ea03562008-03-05 19:14:03 +00001553 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001554
1555 // The number of incoming and outgoing values should match; unless the final
1556 // outgoing value is a flag.
Gabor Greifba36cb52008-08-28 21:40:38 +00001557 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1558 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1559 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001560 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001561 "Lowering call/formal_arguments produced unexpected # results!");
Scott Michelfdc40a02009-02-17 22:15:04 +00001562
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001563 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001564 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greifba36cb52008-08-28 21:40:38 +00001565 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1566 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001567 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001568 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001569 if (Op.getResNo() == i)
Chris Lattnere2e41732006-05-16 05:49:56 +00001570 Tmp2 = Tmp1;
Dan Gohman475871a2008-07-27 21:46:04 +00001571 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Chris Lattnere2e41732006-05-16 05:49:56 +00001572 }
1573 return Tmp2;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001574 case ISD::BUILD_VECTOR:
1575 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001576 default: assert(0 && "This action is not supported yet!");
1577 case TargetLowering::Custom:
1578 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001579 if (Tmp3.getNode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001580 Result = Tmp3;
1581 break;
1582 }
1583 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001584 case TargetLowering::Expand:
Gabor Greifba36cb52008-08-28 21:40:38 +00001585 Result = ExpandBUILD_VECTOR(Result.getNode());
Chris Lattnerb2827b02006-03-19 00:52:58 +00001586 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001587 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001588 break;
1589 case ISD::INSERT_VECTOR_ELT:
1590 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001591 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001592
1593 // The type of the value to insert may not be legal, even though the vector
1594 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1595 // here.
1596 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1597 default: assert(0 && "Cannot expand insert element operand");
1598 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1599 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Mon P Wang0c397192008-10-30 08:01:45 +00001600 case Expand:
1601 // FIXME: An alternative would be to check to see if the target is not
Scott Michelfdc40a02009-02-17 22:15:04 +00001602 // going to custom lower this operation, we could bitcast to half elt
Mon P Wang0c397192008-10-30 08:01:45 +00001603 // width and perform two inserts at that width, if that is legal.
1604 Tmp2 = Node->getOperand(1);
1605 break;
Nate Begeman0325d902008-02-13 06:43:04 +00001606 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001607 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00001608
Chris Lattner2332b9f2006-03-19 01:17:20 +00001609 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1610 Node->getValueType(0))) {
1611 default: assert(0 && "This action is not supported yet!");
1612 case TargetLowering::Legal:
1613 break;
1614 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001615 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001616 if (Tmp4.getNode()) {
Nate Begeman2281a992008-01-05 20:47:37 +00001617 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001618 break;
1619 }
1620 // FALLTHROUGH
Mon P Wang0c397192008-10-30 08:01:45 +00001621 case TargetLowering::Promote:
1622 // Fall thru for vector case
Chris Lattner2332b9f2006-03-19 01:17:20 +00001623 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001624 // If the insert index is a constant, codegen this as a scalar_to_vector,
1625 // then a shuffle that inserts it into the right position in the vector.
1626 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001627 // SCALAR_TO_VECTOR requires that the type of the value being inserted
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00001628 // match the element type of the vector being created, except for
1629 // integers in which case the inserted value can be over width.
1630 MVT EltVT = Op.getValueType().getVectorElementType();
1631 if (Tmp2.getValueType() == EltVT ||
1632 (EltVT.isInteger() && Tmp2.getValueType().bitsGE(EltVT))) {
Dale Johannesenca57b842009-02-02 23:46:53 +00001633 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001634 Tmp1.getValueType(), Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00001635
Duncan Sands83ec4b62008-06-06 12:08:01 +00001636 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
Nate Begeman0325d902008-02-13 06:43:04 +00001637 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1638 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1639 // elt 0 of the RHS.
Nate Begeman9008ca62009-04-27 18:41:29 +00001640 SmallVector<int, 8> ShufOps;
1641 for (unsigned i = 0; i != NumElts; ++i)
1642 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
1643
1644 Result = DAG.getVectorShuffle(Tmp1.getValueType(), dl, Tmp1, ScVec,
1645 &ShufOps[0]);
Nate Begeman0325d902008-02-13 06:43:04 +00001646 Result = LegalizeOp(Result);
1647 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001648 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001649 }
Dale Johannesenbb5da912009-02-02 20:41:04 +00001650 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3, dl);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001651 break;
1652 }
1653 }
1654 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001655 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001656 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1657 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1658 break;
1659 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001660
Chris Lattnerce872152006-03-19 06:31:19 +00001661 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1662 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1663 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1664 Node->getValueType(0))) {
1665 default: assert(0 && "This action is not supported yet!");
1666 case TargetLowering::Legal:
1667 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001668 case TargetLowering::Custom:
1669 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001670 if (Tmp3.getNode()) {
Chris Lattner4d3abee2006-03-19 06:47:21 +00001671 Result = Tmp3;
1672 break;
1673 }
1674 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001675 case TargetLowering::Expand:
1676 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001677 break;
1678 }
Chris Lattnerce872152006-03-19 06:31:19 +00001679 break;
Nate Begeman9008ca62009-04-27 18:41:29 +00001680 case ISD::VECTOR_SHUFFLE: {
Chris Lattner87100e02006-03-20 01:52:29 +00001681 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1682 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00001683 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1684 MVT VT = Result.getValueType();
1685
Nate Begeman5a5ca152009-04-29 05:20:52 +00001686 // Copy the Mask to a local SmallVector for use with isShuffleMaskLegal.
Nate Begeman9008ca62009-04-27 18:41:29 +00001687 SmallVector<int, 8> Mask;
1688 cast<ShuffleVectorSDNode>(Result)->getMask(Mask);
Chris Lattner87100e02006-03-20 01:52:29 +00001689
1690 // Allow targets to custom lower the SHUFFLEs they support.
Nate Begeman9008ca62009-04-27 18:41:29 +00001691 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
Chris Lattner4352cc92006-04-04 17:23:26 +00001692 default: assert(0 && "Unknown operation action!");
1693 case TargetLowering::Legal:
Nate Begeman9008ca62009-04-27 18:41:29 +00001694 assert(TLI.isShuffleMaskLegal(Mask, VT) &&
Chris Lattner4352cc92006-04-04 17:23:26 +00001695 "vector shuffle should not be created if not legal!");
1696 break;
1697 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001698 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001699 if (Tmp3.getNode()) {
Evan Cheng18dd6d02006-04-05 06:07:11 +00001700 Result = Tmp3;
1701 break;
1702 }
1703 // FALLTHROUGH
1704 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001705 MVT EltVT = VT.getVectorElementType();
Nate Begeman5a5ca152009-04-29 05:20:52 +00001706 unsigned NumElems = VT.getVectorNumElements();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001707 SmallVector<SDValue, 8> Ops;
Nate Begeman5a5ca152009-04-29 05:20:52 +00001708 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00001709 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00001710 Ops.push_back(DAG.getUNDEF(EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00001711 continue;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001712 }
Nate Begeman5a5ca152009-04-29 05:20:52 +00001713 unsigned Idx = Mask[i];
Nate Begeman9008ca62009-04-27 18:41:29 +00001714 if (Idx < NumElems)
1715 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp1,
1716 DAG.getIntPtrConstant(Idx)));
1717 else
1718 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp2,
1719 DAG.getIntPtrConstant(Idx - NumElems)));
Evan Cheng18dd6d02006-04-05 06:07:11 +00001720 }
Evan Chenga87008d2009-02-25 22:49:59 +00001721 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001722 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001723 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001724 case TargetLowering::Promote: {
1725 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001726 MVT OVT = Node->getValueType(0);
1727 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001728
1729 // Cast the two input vectors.
Dale Johannesenca57b842009-02-02 23:46:53 +00001730 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
1731 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00001732
Chris Lattner4352cc92006-04-04 17:23:26 +00001733 // Convert the shuffle mask to the right # elements.
Nate Begeman5a5ca152009-04-29 05:20:52 +00001734 Result = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Dale Johannesenca57b842009-02-02 23:46:53 +00001735 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Chris Lattner4352cc92006-04-04 17:23:26 +00001736 break;
1737 }
Chris Lattner87100e02006-03-20 01:52:29 +00001738 }
1739 break;
Nate Begeman9008ca62009-04-27 18:41:29 +00001740 }
Chris Lattner384504c2006-03-21 20:44:12 +00001741 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001742 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001743 Tmp2 = LegalizeOp(Node->getOperand(1));
1744 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001745 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001746 break;
1747
Scott Michelfdc40a02009-02-17 22:15:04 +00001748 case ISD::EXTRACT_SUBVECTOR:
Dan Gohman7f321562007-06-25 16:23:39 +00001749 Tmp1 = Node->getOperand(0);
1750 Tmp2 = LegalizeOp(Node->getOperand(1));
1751 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1752 Result = ExpandEXTRACT_SUBVECTOR(Result);
Dan Gohman65956352007-06-13 15:12:02 +00001753 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001754
Mon P Wang0c397192008-10-30 08:01:45 +00001755 case ISD::CONCAT_VECTORS: {
1756 // Use extract/insert/build vector for now. We might try to be
1757 // more clever later.
1758 MVT PtrVT = TLI.getPointerTy();
1759 SmallVector<SDValue, 8> Ops;
1760 unsigned NumOperands = Node->getNumOperands();
1761 for (unsigned i=0; i < NumOperands; ++i) {
1762 SDValue SubOp = Node->getOperand(i);
1763 MVT VVT = SubOp.getNode()->getValueType(0);
1764 MVT EltVT = VVT.getVectorElementType();
1765 unsigned NumSubElem = VVT.getVectorNumElements();
1766 for (unsigned j=0; j < NumSubElem; ++j) {
Dale Johannesenca57b842009-02-02 23:46:53 +00001767 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, SubOp,
Mon P Wang0c397192008-10-30 08:01:45 +00001768 DAG.getConstant(j, PtrVT)));
1769 }
1770 }
Evan Chenga87008d2009-02-25 22:49:59 +00001771 return LegalizeOp(DAG.getNode(ISD::BUILD_VECTOR, dl, Node->getValueType(0),
1772 &Ops[0], Ops.size()));
Mon P Wang0c397192008-10-30 08:01:45 +00001773 }
1774
Chris Lattner6831a812006-02-13 09:18:02 +00001775 case ISD::CALLSEQ_START: {
1776 SDNode *CallEnd = FindCallEndFromCallStart(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00001777
Chris Lattner6831a812006-02-13 09:18:02 +00001778 // Recursively Legalize all of the inputs of the call end that do not lead
1779 // to this call start. This ensures that any libcalls that need be inserted
1780 // are inserted *before* the CALLSEQ_START.
Mon P Wange5ab34e2009-02-04 19:38:14 +00001781 IsLegalizingCallArgs = true;
Chris Lattner00755df2007-02-04 00:27:56 +00001782 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001783 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00001784 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001785 NodesLeadingTo);
1786 }
Mon P Wange5ab34e2009-02-04 19:38:14 +00001787 IsLegalizingCallArgs = false;
Chris Lattner6831a812006-02-13 09:18:02 +00001788
1789 // Now that we legalized all of the inputs (which may have inserted
1790 // libcalls) create the new CALLSEQ_START node.
1791 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1792
1793 // Merge in the last call, to ensure that this call start after the last
1794 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001795 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001796 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00001797 Tmp1, LastCALLSEQ_END);
Chris Lattnerb248e162006-05-17 17:55:45 +00001798 Tmp1 = LegalizeOp(Tmp1);
1799 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001800
Chris Lattner6831a812006-02-13 09:18:02 +00001801 // Do not try to legalize the target-specific arguments (#1+).
1802 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001803 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001804 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001805 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001806 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001807
Chris Lattner6831a812006-02-13 09:18:02 +00001808 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001809 AddLegalizedOperand(Op.getValue(0), Result);
1810 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1811 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001812
Chris Lattner6831a812006-02-13 09:18:02 +00001813 // Now that the callseq_start and all of the non-call nodes above this call
Scott Michelfdc40a02009-02-17 22:15:04 +00001814 // sequence have been legalized, legalize the call itself. During this
Chris Lattner6831a812006-02-13 09:18:02 +00001815 // process, no libcalls can/will be inserted, guaranteeing that no calls
1816 // can overlap.
1817 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001818 // Note that we are selecting this call!
Dan Gohman475871a2008-07-27 21:46:04 +00001819 LastCALLSEQ_END = SDValue(CallEnd, 0);
Chris Lattner6831a812006-02-13 09:18:02 +00001820 IsLegalizingCall = true;
Scott Michelfdc40a02009-02-17 22:15:04 +00001821
Chris Lattner6831a812006-02-13 09:18:02 +00001822 // Legalize the call, starting from the CALLSEQ_END.
1823 LegalizeOp(LastCALLSEQ_END);
1824 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1825 return Result;
1826 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001827 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001828 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1829 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greifba36cb52008-08-28 21:40:38 +00001830 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman475871a2008-07-27 21:46:04 +00001831 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1832 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001833 assert(I != LegalizedNodes.end() &&
1834 "Legalizing the call start should have legalized this node!");
1835 return I->second;
1836 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001837
1838 // Otherwise, the call start has been legalized and everything is going
Chris Lattner6831a812006-02-13 09:18:02 +00001839 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001840 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001841 // Do not try to legalize the target-specific arguments (#1+), except for
1842 // an optional flag input.
1843 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1844 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001845 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001846 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001847 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001848 }
1849 } else {
1850 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1851 if (Tmp1 != Node->getOperand(0) ||
1852 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001853 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001854 Ops[0] = Tmp1;
1855 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001856 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001857 }
Chris Lattner6a542892006-01-24 05:48:21 +00001858 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001859 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001860 // This finishes up call legalization.
1861 IsLegalizingCall = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001862
Chris Lattner4b653a02006-02-14 00:55:02 +00001863 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman475871a2008-07-27 21:46:04 +00001864 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Chris Lattner4b653a02006-02-14 00:55:02 +00001865 if (Node->getNumValues() == 2)
Dan Gohman475871a2008-07-27 21:46:04 +00001866 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001867 return Result.getValue(Op.getResNo());
Evan Chenga7dce3c2006-01-11 22:14:47 +00001868 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001869 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001870 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1871 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1872 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001873 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001874
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001875 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001876 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001877 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001878 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001879 case TargetLowering::Expand: {
1880 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1881 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1882 " not tell us which reg is the stack pointer!");
Dan Gohman475871a2008-07-27 21:46:04 +00001883 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001884
1885 // Chain the dynamic stack allocation so that it doesn't modify the stack
1886 // pointer when other instructions are using the stack.
Chris Lattnere563bbc2008-10-11 22:08:30 +00001887 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001888
Dan Gohman475871a2008-07-27 21:46:04 +00001889 SDValue Size = Tmp2.getOperand(1);
Dale Johannesenc460ae92009-02-04 00:13:36 +00001890 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001891 Chain = SP.getValue(1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001892 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Cheng61bbbab2007-08-16 23:50:06 +00001893 unsigned StackAlign =
1894 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1895 if (Align > StackAlign)
Dale Johannesenca57b842009-02-02 23:46:53 +00001896 SP = DAG.getNode(ISD::AND, dl, VT, SP,
Evan Cheng3e20bba2007-08-17 18:02:22 +00001897 DAG.getConstant(-(uint64_t)Align, VT));
Dale Johannesenca57b842009-02-02 23:46:53 +00001898 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Dale Johannesenc460ae92009-02-04 00:13:36 +00001899 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001900
Dale Johannesenca57b842009-02-02 23:46:53 +00001901 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Chris Lattnere563bbc2008-10-11 22:08:30 +00001902 DAG.getIntPtrConstant(0, true), SDValue());
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001903
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001904 Tmp1 = LegalizeOp(Tmp1);
1905 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001906 break;
1907 }
1908 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001909 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001910 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001911 Tmp1 = LegalizeOp(Tmp3);
1912 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001913 }
Chris Lattner903d2782006-01-15 08:54:32 +00001914 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001915 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001916 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001917 }
Chris Lattner903d2782006-01-15 08:54:32 +00001918 // Since this op produce two values, make sure to remember that we
1919 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001920 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1921 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001922 return Op.getResNo() ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001923 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001924 case ISD::INLINEASM: {
Dan Gohman475871a2008-07-27 21:46:04 +00001925 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001926 bool Changed = false;
1927 // Legalize all of the operands of the inline asm, in case they are nodes
1928 // that need to be expanded or something. Note we skip the asm string and
1929 // all of the TargetConstant flags.
Dan Gohman475871a2008-07-27 21:46:04 +00001930 SDValue Op = LegalizeOp(Ops[0]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001931 Changed = Op != Ops[0];
1932 Ops[0] = Op;
1933
1934 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1935 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Evan Cheng697cbbf2009-03-20 18:03:34 +00001936 unsigned NumVals = InlineAsm::
1937 getNumOperandRegisters(cast<ConstantSDNode>(Ops[i])->getZExtValue());
Chris Lattner25a022c2006-07-11 01:40:09 +00001938 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman475871a2008-07-27 21:46:04 +00001939 SDValue Op = LegalizeOp(Ops[i]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001940 if (Op != Ops[i]) {
1941 Changed = true;
1942 Ops[i] = Op;
1943 }
1944 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001945 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001946
1947 if (HasInFlag) {
1948 Op = LegalizeOp(Ops.back());
1949 Changed |= Op != Ops.back();
1950 Ops.back() = Op;
1951 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001952
Chris Lattner25a022c2006-07-11 01:40:09 +00001953 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001954 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001955
Chris Lattnerce7518c2006-01-26 22:24:51 +00001956 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman475871a2008-07-27 21:46:04 +00001957 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1958 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001959 return Result.getValue(Op.getResNo());
Chris Lattner25a022c2006-07-11 01:40:09 +00001960 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001961 case ISD::BR:
1962 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001963 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00001964 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00001965 Tmp1 = LegalizeOp(Tmp1);
1966 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00001967
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001968 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001969 break;
Nate Begeman37efe672006-04-22 18:53:45 +00001970 case ISD::BRIND:
1971 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1972 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00001973 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Nate Begeman37efe672006-04-22 18:53:45 +00001974 Tmp1 = LegalizeOp(Tmp1);
1975 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00001976
Nate Begeman37efe672006-04-22 18:53:45 +00001977 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1978 default: assert(0 && "Indirect target must be legal type (pointer)!");
1979 case Legal:
1980 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
1981 break;
1982 }
1983 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1984 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00001985 case ISD::BR_JT:
1986 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1987 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00001988 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Evan Cheng3d4ce112006-10-30 08:00:44 +00001989 Tmp1 = LegalizeOp(Tmp1);
1990 LastCALLSEQ_END = DAG.getEntryNode();
1991
1992 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
1993 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
1994
Scott Michelfdc40a02009-02-17 22:15:04 +00001995 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00001996 default: assert(0 && "This action is not supported yet!");
1997 case TargetLowering::Legal: break;
1998 case TargetLowering::Custom:
1999 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002000 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng3d4ce112006-10-30 08:00:44 +00002001 break;
2002 case TargetLowering::Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002003 SDValue Chain = Result.getOperand(0);
2004 SDValue Table = Result.getOperand(1);
2005 SDValue Index = Result.getOperand(2);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002006
Duncan Sands83ec4b62008-06-06 12:08:01 +00002007 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002008 MachineFunction &MF = DAG.getMachineFunction();
2009 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Scott Michelfdc40a02009-02-17 22:15:04 +00002010 Index= DAG.getNode(ISD::MUL, dl, PTy,
Dale Johannesenca57b842009-02-02 23:46:53 +00002011 Index, DAG.getConstant(EntrySize, PTy));
2012 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002013
Duncan Sands712f7b32008-12-12 08:13:38 +00002014 MVT MemVT = MVT::getIntegerVT(EntrySize * 8);
Dale Johannesenca57b842009-02-02 23:46:53 +00002015 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Duncan Sands712f7b32008-12-12 08:13:38 +00002016 PseudoSourceValue::getJumpTable(), 0, MemVT);
Evan Chengcc415862007-11-09 01:32:10 +00002017 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002018 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00002019 // For PIC, the sequence is:
2020 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00002021 // RelocBase can be JumpTable, GOT or some sort of global base.
Dale Johannesenca57b842009-02-02 23:46:53 +00002022 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
Evan Chengcc415862007-11-09 01:32:10 +00002023 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00002024 }
Dale Johannesenca57b842009-02-02 23:46:53 +00002025 Result = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002026 }
2027 }
2028 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002029 case ISD::BRCOND:
2030 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002031 // Ensure that libcalls are emitted before a return.
Dale Johannesenca57b842009-02-02 23:46:53 +00002032 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002033 Tmp1 = LegalizeOp(Tmp1);
2034 LastCALLSEQ_END = DAG.getEntryNode();
2035
Chris Lattner47e92232005-01-18 19:27:06 +00002036 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2037 case Expand: assert(0 && "It's impossible to expand bools");
2038 case Legal:
2039 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2040 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002041 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002042 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Scott Michelfdc40a02009-02-17 22:15:04 +00002043
Chris Lattnerf9908172006-11-27 04:39:56 +00002044 // The top bits of the promoted condition are not necessarily zero, ensure
2045 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002046 unsigned BitWidth = Tmp2.getValueSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002047 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002048 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenca57b842009-02-02 23:46:53 +00002049 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002050 break;
2051 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002052 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002053
2054 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002055 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00002056
2057 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
Nate Begeman7cbd5252005-08-16 19:49:35 +00002058 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002059 case TargetLowering::Legal: break;
2060 case TargetLowering::Custom:
2061 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002062 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002063 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002064 case TargetLowering::Expand:
2065 // Expand brcond's setcc into its constituent parts and create a BR_CC
2066 // Node.
2067 if (Tmp2.getOpcode() == ISD::SETCC) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002068 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00002069 Tmp1, Tmp2.getOperand(2),
Nate Begeman7cbd5252005-08-16 19:49:35 +00002070 Tmp2.getOperand(0), Tmp2.getOperand(1),
2071 Node->getOperand(2));
2072 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00002073 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Nate Begeman7cbd5252005-08-16 19:49:35 +00002074 DAG.getCondCode(ISD::SETNE), Tmp2,
2075 DAG.getConstant(0, Tmp2.getValueType()),
2076 Node->getOperand(2));
2077 }
2078 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002079 }
2080 break;
2081 case ISD::BR_CC:
2082 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002083 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002084 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002085 Tmp1 = LegalizeOp(Tmp1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002086 Tmp2 = Node->getOperand(2); // LHS
Nate Begeman750ac1b2006-02-01 07:19:44 +00002087 Tmp3 = Node->getOperand(3); // RHS
2088 Tmp4 = Node->getOperand(1); // CC
2089
Scott Michelfdc40a02009-02-17 22:15:04 +00002090 LegalizeSetCC(TLI.getSetCCResultType(Tmp2.getValueType()),
Dale Johannesenbb5da912009-02-02 20:41:04 +00002091 Tmp2, Tmp3, Tmp4, dl);
Evan Cheng722cb362006-12-18 22:55:34 +00002092 LastCALLSEQ_END = DAG.getEntryNode();
2093
Evan Cheng7f042682008-10-15 02:05:31 +00002094 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002095 // the LHS is a legal SETCC itself. In this case, we need to compare
2096 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00002097 if (Tmp3.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002098 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
2099 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00002100 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002101
2102 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002103 Node->getOperand(4));
Scott Michelfdc40a02009-02-17 22:15:04 +00002104
Chris Lattner181b7a32005-12-17 23:46:46 +00002105 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
2106 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002107 case TargetLowering::Legal: break;
2108 case TargetLowering::Custom:
2109 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002110 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00002111 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002112 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002113 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002114 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00002115 LoadSDNode *LD = cast<LoadSDNode>(Node);
2116 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
2117 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002118
Evan Cheng466685d2006-10-09 20:57:25 +00002119 ISD::LoadExtType ExtType = LD->getExtensionType();
2120 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002121 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00002122 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2123 Tmp3 = Result.getValue(0);
2124 Tmp4 = Result.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002125
Evan Cheng466685d2006-10-09 20:57:25 +00002126 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
2127 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002128 case TargetLowering::Legal:
2129 // If this is an unaligned load and the target doesn't support it,
2130 // expand it.
2131 if (!TLI.allowsUnalignedMemoryAccesses()) {
2132 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002133 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002134 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002135 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002136 TLI);
2137 Tmp3 = Result.getOperand(0);
2138 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00002139 Tmp3 = LegalizeOp(Tmp3);
2140 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002141 }
2142 }
2143 break;
Evan Cheng466685d2006-10-09 20:57:25 +00002144 case TargetLowering::Custom:
2145 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002146 if (Tmp1.getNode()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002147 Tmp3 = LegalizeOp(Tmp1);
2148 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00002149 }
Evan Cheng466685d2006-10-09 20:57:25 +00002150 break;
2151 case TargetLowering::Promote: {
2152 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002153 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00002154 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002155 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00002156
Dale Johannesenca57b842009-02-02 23:46:53 +00002157 Tmp1 = DAG.getLoad(NVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002158 LD->getSrcValueOffset(),
2159 LD->isVolatile(), LD->getAlignment());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00002160 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp1));
Evan Cheng466685d2006-10-09 20:57:25 +00002161 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002162 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00002163 }
Evan Cheng466685d2006-10-09 20:57:25 +00002164 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002165 // Since loads produce two values, make sure to remember that we
Evan Cheng466685d2006-10-09 20:57:25 +00002166 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002167 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
2168 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002169 return Op.getResNo() ? Tmp4 : Tmp3;
Evan Cheng466685d2006-10-09 20:57:25 +00002170 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002171 MVT SrcVT = LD->getMemoryVT();
2172 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002173 int SVOffset = LD->getSrcValueOffset();
2174 unsigned Alignment = LD->getAlignment();
2175 bool isVolatile = LD->isVolatile();
2176
Duncan Sands83ec4b62008-06-06 12:08:01 +00002177 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002178 // Some targets pretend to have an i1 loading operation, and actually
2179 // load an i8. This trick is correct for ZEXTLOAD because the top 7
2180 // bits are guaranteed to be zero; it helps the optimizers understand
2181 // that these bits are zero. It is also useful for EXTLOAD, since it
2182 // tells the optimizers that those bits are undefined. It would be
2183 // nice to have an effective generic way of getting these benefits...
2184 // Until such a way is found, don't insist on promoting i1 here.
2185 (SrcVT != MVT::i1 ||
Evan Cheng03294662008-10-14 21:26:46 +00002186 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002187 // Promote to a byte-sized load if not loading an integral number of
2188 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002189 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2190 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002191 SDValue Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002192
2193 // The extra bits are guaranteed to be zero, since we stored them that
2194 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2195
2196 ISD::LoadExtType NewExtType =
2197 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2198
Dale Johannesenca57b842009-02-02 23:46:53 +00002199 Result = DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002200 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2201 NVT, isVolatile, Alignment);
2202
2203 Ch = Result.getValue(1); // The chain.
2204
2205 if (ExtType == ISD::SEXTLOAD)
2206 // Having the top bits zero doesn't help when sign extending.
Scott Michelfdc40a02009-02-17 22:15:04 +00002207 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002208 Result.getValueType(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002209 Result, DAG.getValueType(SrcVT));
2210 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2211 // All the top bits are guaranteed to be zero - inform the optimizers.
Scott Michelfdc40a02009-02-17 22:15:04 +00002212 Result = DAG.getNode(ISD::AssertZext, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002213 Result.getValueType(), Result,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002214 DAG.getValueType(SrcVT));
2215
2216 Tmp1 = LegalizeOp(Result);
2217 Tmp2 = LegalizeOp(Ch);
2218 } else if (SrcWidth & (SrcWidth - 1)) {
2219 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002220 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002221 "Unsupported extload!");
2222 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2223 assert(RoundWidth < SrcWidth);
2224 unsigned ExtraWidth = SrcWidth - RoundWidth;
2225 assert(ExtraWidth < RoundWidth);
2226 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2227 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002228 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2229 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002230 SDValue Lo, Hi, Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002231 unsigned IncrementSize;
2232
2233 if (TLI.isLittleEndian()) {
2234 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2235 // Load the bottom RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002236 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
2237 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002238 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2239 Alignment);
2240
2241 // Load the remaining ExtraWidth bits.
2242 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002243 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002244 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002245 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002246 LD->getSrcValue(), SVOffset + IncrementSize,
2247 ExtraVT, isVolatile,
2248 MinAlign(Alignment, IncrementSize));
2249
2250 // Build a factor node to remember that this load is independent of the
2251 // other one.
Dale Johannesenca57b842009-02-02 23:46:53 +00002252 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002253 Hi.getValue(1));
2254
2255 // Move the top bits to the right place.
Dale Johannesenca57b842009-02-02 23:46:53 +00002256 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002257 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2258
2259 // Join the hi and lo parts.
Dale Johannesenca57b842009-02-02 23:46:53 +00002260 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002261 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002262 // Big endian - avoid unaligned loads.
2263 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2264 // Load the top RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002265 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002266 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2267 Alignment);
2268
2269 // Load the remaining ExtraWidth bits.
2270 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002271 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002272 DAG.getIntPtrConstant(IncrementSize));
Scott Michelfdc40a02009-02-17 22:15:04 +00002273 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002274 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002275 LD->getSrcValue(), SVOffset + IncrementSize,
2276 ExtraVT, isVolatile,
2277 MinAlign(Alignment, IncrementSize));
2278
2279 // Build a factor node to remember that this load is independent of the
2280 // other one.
Dale Johannesenca57b842009-02-02 23:46:53 +00002281 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002282 Hi.getValue(1));
2283
2284 // Move the top bits to the right place.
Dale Johannesenca57b842009-02-02 23:46:53 +00002285 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002286 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2287
2288 // Join the hi and lo parts.
Dale Johannesenca57b842009-02-02 23:46:53 +00002289 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002290 }
2291
2292 Tmp1 = LegalizeOp(Result);
2293 Tmp2 = LegalizeOp(Ch);
2294 } else {
Evan Cheng03294662008-10-14 21:26:46 +00002295 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002296 default: assert(0 && "This action is not supported yet!");
2297 case TargetLowering::Custom:
2298 isCustom = true;
2299 // FALLTHROUGH
2300 case TargetLowering::Legal:
2301 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2302 Tmp1 = Result.getValue(0);
2303 Tmp2 = Result.getValue(1);
2304
2305 if (isCustom) {
2306 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002307 if (Tmp3.getNode()) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002308 Tmp1 = LegalizeOp(Tmp3);
2309 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2310 }
2311 } else {
2312 // If this is an unaligned load and the target doesn't support it,
2313 // expand it.
2314 if (!TLI.allowsUnalignedMemoryAccesses()) {
2315 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002316 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002317 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002318 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002319 TLI);
2320 Tmp1 = Result.getOperand(0);
2321 Tmp2 = Result.getOperand(1);
2322 Tmp1 = LegalizeOp(Tmp1);
2323 Tmp2 = LegalizeOp(Tmp2);
2324 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002325 }
2326 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002327 break;
2328 case TargetLowering::Expand:
2329 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2330 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dale Johannesenca57b842009-02-02 23:46:53 +00002331 SDValue Load = DAG.getLoad(SrcVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002332 LD->getSrcValueOffset(),
2333 LD->isVolatile(), LD->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00002334 Result = DAG.getNode(ISD::FP_EXTEND, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002335 Node->getValueType(0), Load);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002336 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2337 Tmp2 = LegalizeOp(Load.getValue(1));
2338 break;
2339 }
2340 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2341 // Turn the unsupported load into an EXTLOAD followed by an explicit
2342 // zero/sign extend inreg.
Dale Johannesenca57b842009-02-02 23:46:53 +00002343 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002344 Tmp1, Tmp2, LD->getSrcValue(),
2345 LD->getSrcValueOffset(), SrcVT,
2346 LD->isVolatile(), LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00002347 SDValue ValRes;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002348 if (ExtType == ISD::SEXTLOAD)
Dale Johannesenca57b842009-02-02 23:46:53 +00002349 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
2350 Result.getValueType(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002351 Result, DAG.getValueType(SrcVT));
2352 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002353 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002354 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2355 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002356 break;
2357 }
Evan Cheng466685d2006-10-09 20:57:25 +00002358 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002359
Evan Cheng466685d2006-10-09 20:57:25 +00002360 // Since loads produce two values, make sure to remember that we legalized
2361 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002362 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2363 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002364 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002365 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002366 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002367 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002368 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002369 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002370 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002371 case Legal:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002372 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Nate Begeman5dc897b2005-10-19 00:06:56 +00002373 // 1 -> Hi
Dale Johannesenca57b842009-02-02 23:46:53 +00002374 Result = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002375 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002376 TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002377 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Result);
Nate Begeman5dc897b2005-10-19 00:06:56 +00002378 } else {
2379 // 0 -> Lo
Scott Michelfdc40a02009-02-17 22:15:04 +00002380 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
Nate Begeman5dc897b2005-10-19 00:06:56 +00002381 Node->getOperand(0));
2382 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002383 break;
2384 case Expand:
2385 // Get both the low and high parts.
2386 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002387 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Nate Begeman5dc897b2005-10-19 00:06:56 +00002388 Result = Tmp2; // 1 -> Hi
2389 else
2390 Result = Tmp1; // 0 -> Lo
2391 break;
2392 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002393 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002394 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002395
2396 case ISD::CopyToReg:
2397 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002398
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002399 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002400 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002401 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002402 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002403 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002404 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002405 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002406 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002407 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002408 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002409 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2410 Tmp3);
2411 } else {
2412 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002413 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002414
Chris Lattner7310fb12005-12-18 15:27:43 +00002415 // Since this produces two values, make sure to remember that we legalized
2416 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002417 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2418 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002419 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002420 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002421 break;
2422
2423 case ISD::RET:
2424 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002425
2426 // Ensure that libcalls are emitted before a return.
Dale Johannesenca57b842009-02-02 23:46:53 +00002427 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002428 Tmp1 = LegalizeOp(Tmp1);
2429 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00002430
Chris Lattner3e928bb2005-01-07 07:47:09 +00002431 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002432 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002433 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002434 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002435 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002436 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002437 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002438 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002439 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002440 if (!Tmp2.getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002441 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002442 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002443
2444 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002445 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002446 std::swap(Lo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00002447
Gabor Greifba36cb52008-08-28 21:40:38 +00002448 if (Hi.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00002449 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002450 Tmp1, Lo, Tmp3, Hi, Tmp3);
Evan Cheng13acce32006-12-11 19:27:14 +00002451 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002452 Result = DAG.getNode(ISD::RET, dl, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002453 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002454 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00002455 SDNode *InVal = Tmp2.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002456 int InIx = Tmp2.getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002457 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2458 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00002459
Dan Gohman7f321562007-06-25 16:23:39 +00002460 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002461 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002462 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002463 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002464 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002465 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002466 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002467 } else if (NumElems == 1) {
2468 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002469 Tmp2 = ScalarizeVectorOp(Tmp2);
2470 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002471 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00002472
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002473 // FIXME: Returns of gcc generic vectors smaller than a legal type
2474 // should be returned in integer registers!
Scott Michelfdc40a02009-02-17 22:15:04 +00002475
Chris Lattnerf87324e2006-04-11 01:31:51 +00002476 // The scalarized value type may not be legal, e.g. it might require
2477 // promotion or expansion. Relegalize the return.
2478 Result = LegalizeOp(Result);
2479 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002480 // FIXME: Returns of gcc generic vectors larger than a legal vector
2481 // type should be returned by reference!
Dan Gohman475871a2008-07-27 21:46:04 +00002482 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002483 SplitVectorOp(Tmp2, Lo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00002484 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002485 Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002486 Result = LegalizeOp(Result);
2487 }
2488 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002489 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002490 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002491 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002492 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002493 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002494 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002495 }
2496 break;
2497 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002498 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002499 break;
2500 default: { // ret <values>
Dan Gohman475871a2008-07-27 21:46:04 +00002501 SmallVector<SDValue, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002502 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002503 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002504 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2505 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002506 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002507 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002508 break;
2509 case Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002510 SDValue Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002511 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002512 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002513 ExpandOp(Node->getOperand(i), Lo, Hi);
2514 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002515 NewValues.push_back(Node->getOperand(i+1));
Gabor Greifba36cb52008-08-28 21:40:38 +00002516 if (Hi.getNode()) {
Evan Cheng13acce32006-12-11 19:27:14 +00002517 NewValues.push_back(Hi);
2518 NewValues.push_back(Node->getOperand(i+1));
2519 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002520 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002521 }
2522 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002523 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002524 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002525
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002526 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002527 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002528 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002529 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002530 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002531 break;
2532 }
2533 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002534
Chris Lattner6862dbc2006-01-29 21:02:23 +00002535 if (Result.getOpcode() == ISD::RET) {
2536 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2537 default: assert(0 && "This action is not supported yet!");
2538 case TargetLowering::Legal: break;
2539 case TargetLowering::Custom:
2540 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002541 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner6862dbc2006-01-29 21:02:23 +00002542 break;
2543 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002544 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002545 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002546 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002547 StoreSDNode *ST = cast<StoreSDNode>(Node);
2548 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2549 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002550 int SVOffset = ST->getSrcValueOffset();
2551 unsigned Alignment = ST->getAlignment();
2552 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002553
Evan Cheng8b2794a2006-10-13 21:14:26 +00002554 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002555 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2556 // FIXME: We shouldn't do this for TargetConstantFP's.
2557 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2558 // to phase ordering between legalized code and the dag combiner. This
2559 // probably means that we need to integrate dag combiner and legalizer
2560 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002561 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002562 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002563 if (CFP->getValueType(0) == MVT::f32 &&
Chris Lattner3cb93512007-10-15 05:46:06 +00002564 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002565 Tmp3 = DAG.getConstant(CFP->getValueAPF().
Dale Johannesen7111b022008-10-09 18:53:47 +00002566 bitcastToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002567 MVT::i32);
Dale Johannesenca57b842009-02-02 23:46:53 +00002568 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002569 SVOffset, isVolatile, Alignment);
2570 break;
2571 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002572 // If this target supports 64-bit registers, do a single 64-bit store.
2573 if (getTypeAction(MVT::i64) == Legal) {
Dale Johannesen7111b022008-10-09 18:53:47 +00002574 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002575 zextOrTrunc(64), MVT::i64);
Dale Johannesenca57b842009-02-02 23:46:53 +00002576 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner3cb93512007-10-15 05:46:06 +00002577 SVOffset, isVolatile, Alignment);
2578 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002579 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002580 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2581 // stores. If the target supports neither 32- nor 64-bits, this
2582 // xform is certainly not worth it.
Dale Johannesen7111b022008-10-09 18:53:47 +00002583 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Dan Gohman475871a2008-07-27 21:46:04 +00002584 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2585 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002586 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002587
Dale Johannesenca57b842009-02-02 23:46:53 +00002588 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Chris Lattner3cb93512007-10-15 05:46:06 +00002589 SVOffset, isVolatile, Alignment);
Dale Johannesenca57b842009-02-02 23:46:53 +00002590 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002591 DAG.getIntPtrConstant(4));
Dale Johannesenca57b842009-02-02 23:46:53 +00002592 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002593 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002594
Dale Johannesenca57b842009-02-02 23:46:53 +00002595 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002596 break;
2597 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002598 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002599 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002600
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002601 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002602 case Legal: {
2603 Tmp3 = LegalizeOp(ST->getValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00002604 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002605 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002606
Duncan Sands83ec4b62008-06-06 12:08:01 +00002607 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002608 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2609 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002610 case TargetLowering::Legal:
2611 // If this is an unaligned store and the target doesn't support it,
2612 // expand it.
2613 if (!TLI.allowsUnalignedMemoryAccesses()) {
2614 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002615 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002616 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002617 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002618 TLI);
2619 }
2620 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002621 case TargetLowering::Custom:
2622 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002623 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002624 break;
2625 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002626 assert(VT.isVector() && "Unknown legal promote case!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002627 Tmp3 = DAG.getNode(ISD::BIT_CONVERT, dl,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002628 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
Dale Johannesenca57b842009-02-02 23:46:53 +00002629 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002630 ST->getSrcValue(), SVOffset, isVolatile,
2631 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002632 break;
2633 }
2634 break;
2635 }
2636 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002637 if (!ST->getMemoryVT().isVector()) {
2638 // Truncate the value and store the result.
2639 Tmp3 = PromoteOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002640 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Mon P Wang0c397192008-10-30 08:01:45 +00002641 SVOffset, ST->getMemoryVT(),
2642 isVolatile, Alignment);
2643 break;
2644 }
2645 // Fall thru to expand for vector
2646 case Expand: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002647 unsigned IncrementSize = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002648 SDValue Lo, Hi;
Scott Michelfdc40a02009-02-17 22:15:04 +00002649
Evan Cheng8b2794a2006-10-13 21:14:26 +00002650 // If this is a vector type, then we have to calculate the increment as
2651 // the product of the element size in bytes, and the number of elements
2652 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002653 if (ST->getValue().getValueType().isVector()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002654 SDNode *InVal = ST->getValue().getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002655 int InIx = ST->getValue().getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002656 MVT InVT = InVal->getValueType(InIx);
2657 unsigned NumElems = InVT.getVectorNumElements();
2658 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002659
Dan Gohman7f321562007-06-25 16:23:39 +00002660 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002661 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002662 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002663 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002664 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002665 Tmp3 = LegalizeOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002666 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002667 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002668 Result = LegalizeOp(Result);
2669 break;
2670 } else if (NumElems == 1) {
2671 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002672 Tmp3 = ScalarizeVectorOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002673 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002674 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002675 // The scalarized value type may not be legal, e.g. it might require
2676 // promotion or expansion. Relegalize the scalar store.
2677 Result = LegalizeOp(Result);
2678 break;
2679 } else {
Mon P Wang0c397192008-10-30 08:01:45 +00002680 // Check if we have widen this node with another value
2681 std::map<SDValue, SDValue>::iterator I =
2682 WidenNodes.find(ST->getValue());
2683 if (I != WidenNodes.end()) {
2684 Result = StoreWidenVectorOp(ST, Tmp1, Tmp2);
2685 break;
2686 }
2687 else {
2688 SplitVectorOp(ST->getValue(), Lo, Hi);
2689 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
2690 EVT.getSizeInBits()/8;
2691 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002692 }
2693 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002694 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greifba36cb52008-08-28 21:40:38 +00002695 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002696
Richard Pennington4b052dc2008-09-25 16:15:10 +00002697 if (Hi.getNode() && TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002698 std::swap(Lo, Hi);
2699 }
2700
Dale Johannesenca57b842009-02-02 23:46:53 +00002701 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002702 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002703
Gabor Greifba36cb52008-08-28 21:40:38 +00002704 if (Hi.getNode() == NULL) {
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002705 // Must be int <-> float one-to-one expansion.
2706 Result = Lo;
2707 break;
2708 }
2709
Dale Johannesenca57b842009-02-02 23:46:53 +00002710 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002711 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002712 assert(isTypeLegal(Tmp2.getValueType()) &&
2713 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002714 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002715 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenca57b842009-02-02 23:46:53 +00002716 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002717 SVOffset, isVolatile, Alignment);
Dale Johannesenca57b842009-02-02 23:46:53 +00002718 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002719 break;
Mon P Wang0c397192008-10-30 08:01:45 +00002720 } // case Expand
Evan Cheng8b2794a2006-10-13 21:14:26 +00002721 }
2722 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002723 switch (getTypeAction(ST->getValue().getValueType())) {
2724 case Legal:
2725 Tmp3 = LegalizeOp(ST->getValue());
2726 break;
2727 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002728 if (!ST->getValue().getValueType().isVector()) {
2729 // We can promote the value, the truncstore will still take care of it.
2730 Tmp3 = PromoteOp(ST->getValue());
2731 break;
2732 }
2733 // Vector case falls through to expand
Chris Lattnerddf89562008-01-17 19:59:44 +00002734 case Expand:
2735 // Just store the low part. This may become a non-trunc store, so make
2736 // sure to use getTruncStore, not UpdateNodeOperands below.
2737 ExpandOp(ST->getValue(), Tmp3, Tmp4);
Dale Johannesenca57b842009-02-02 23:46:53 +00002738 return DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattnerddf89562008-01-17 19:59:44 +00002739 SVOffset, MVT::i8, isVolatile, Alignment);
2740 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002741
Duncan Sands83ec4b62008-06-06 12:08:01 +00002742 MVT StVT = ST->getMemoryVT();
2743 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002744
Duncan Sands83ec4b62008-06-06 12:08:01 +00002745 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002746 // Promote to a byte-sized store with upper bits zero if not
2747 // storing an integral number of bytes. For example, promote
2748 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002749 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Dale Johannesenca57b842009-02-02 23:46:53 +00002750 Tmp3 = DAG.getZeroExtendInReg(Tmp3, dl, StVT);
2751 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002752 SVOffset, NVT, isVolatile, Alignment);
2753 } else if (StWidth & (StWidth - 1)) {
2754 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002755 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002756 "Unsupported truncstore!");
2757 unsigned RoundWidth = 1 << Log2_32(StWidth);
2758 assert(RoundWidth < StWidth);
2759 unsigned ExtraWidth = StWidth - RoundWidth;
2760 assert(ExtraWidth < RoundWidth);
2761 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2762 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002763 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2764 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002765 SDValue Lo, Hi;
Duncan Sands7e857202008-01-22 07:17:34 +00002766 unsigned IncrementSize;
2767
2768 if (TLI.isLittleEndian()) {
2769 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2770 // Store the bottom RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002771 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002772 SVOffset, RoundVT,
2773 isVolatile, Alignment);
2774
2775 // Store the remaining ExtraWidth bits.
2776 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002777 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00002778 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002779 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands7e857202008-01-22 07:17:34 +00002780 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002781 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002782 SVOffset + IncrementSize, ExtraVT, isVolatile,
2783 MinAlign(Alignment, IncrementSize));
2784 } else {
2785 // Big endian - avoid unaligned stores.
2786 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2787 // Store the top RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002788 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands7e857202008-01-22 07:17:34 +00002789 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002790 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
2791 SVOffset, RoundVT, isVolatile, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00002792
2793 // Store the remaining ExtraWidth bits.
2794 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002795 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00002796 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002797 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002798 SVOffset + IncrementSize, ExtraVT, isVolatile,
2799 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002800 }
Duncan Sands7e857202008-01-22 07:17:34 +00002801
2802 // The order of the stores doesn't matter.
Dale Johannesenca57b842009-02-02 23:46:53 +00002803 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Duncan Sands7e857202008-01-22 07:17:34 +00002804 } else {
2805 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2806 Tmp2 != ST->getBasePtr())
2807 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2808 ST->getOffset());
2809
2810 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2811 default: assert(0 && "This action is not supported yet!");
2812 case TargetLowering::Legal:
2813 // If this is an unaligned store and the target doesn't support it,
2814 // expand it.
2815 if (!TLI.allowsUnalignedMemoryAccesses()) {
2816 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002817 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002818 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002819 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands7e857202008-01-22 07:17:34 +00002820 TLI);
2821 }
2822 break;
2823 case TargetLowering::Custom:
2824 Result = TLI.LowerOperation(Result, DAG);
2825 break;
2826 case Expand:
2827 // TRUNCSTORE:i16 i32 -> STORE i16
2828 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
Dale Johannesenca57b842009-02-02 23:46:53 +00002829 Tmp3 = DAG.getNode(ISD::TRUNCATE, dl, StVT, Tmp3);
2830 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
2831 SVOffset, isVolatile, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00002832 break;
2833 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002834 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002835 }
2836 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002837 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002838 case ISD::PCMARKER:
2839 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002840 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002841 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002842 case ISD::STACKSAVE:
2843 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002844 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2845 Tmp1 = Result.getValue(0);
2846 Tmp2 = Result.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002847
Chris Lattner140d53c2006-01-13 02:50:02 +00002848 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2849 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002850 case TargetLowering::Legal: break;
2851 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002852 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002853 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002854 Tmp1 = LegalizeOp(Tmp3);
2855 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002856 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002857 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002858 case TargetLowering::Expand:
Scott Michelfdc40a02009-02-17 22:15:04 +00002859 // Expand to CopyFromReg if the target set
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002860 // StackPointerRegisterToSaveRestore.
2861 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00002862 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), dl, SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002863 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002864 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002865 } else {
Dale Johannesene8d72302009-02-06 23:05:02 +00002866 Tmp1 = DAG.getUNDEF(Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002867 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002868 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002869 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002870 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002871
2872 // Since stacksave produce two values, make sure to remember that we
2873 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002874 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2875 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002876 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002877
Chris Lattner140d53c2006-01-13 02:50:02 +00002878 case ISD::STACKRESTORE:
2879 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2880 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002881 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00002882
Chris Lattner140d53c2006-01-13 02:50:02 +00002883 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2884 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002885 case TargetLowering::Legal: break;
2886 case TargetLowering::Custom:
2887 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002888 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002889 break;
2890 case TargetLowering::Expand:
Scott Michelfdc40a02009-02-17 22:15:04 +00002891 // Expand to CopyToReg if the target set
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002892 // StackPointerRegisterToSaveRestore.
2893 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00002894 Result = DAG.getCopyToReg(Tmp1, dl, SP, Tmp2);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002895 } else {
2896 Result = Tmp1;
2897 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002898 break;
2899 }
2900 break;
2901
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002902 case ISD::READCYCLECOUNTER:
2903 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002904 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002905 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2906 Node->getValueType(0))) {
2907 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002908 case TargetLowering::Legal:
2909 Tmp1 = Result.getValue(0);
2910 Tmp2 = Result.getValue(1);
2911 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002912 case TargetLowering::Custom:
2913 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002914 Tmp1 = LegalizeOp(Result.getValue(0));
2915 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002916 break;
2917 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002918
2919 // Since rdcc produce two values, make sure to remember that we legalized
2920 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002921 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2922 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002923 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002924
Chris Lattner2ee743f2005-01-14 22:08:15 +00002925 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002926 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2927 case Expand: assert(0 && "It's impossible to expand bools");
2928 case Legal:
2929 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2930 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002931 case Promote: {
Mon P Wang0c397192008-10-30 08:01:45 +00002932 assert(!Node->getOperand(0).getValueType().isVector() && "not possible");
Chris Lattner47e92232005-01-18 19:27:06 +00002933 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002934 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002935 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002936 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002937 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenca57b842009-02-02 23:46:53 +00002938 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002939 break;
2940 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002941 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002942 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002943 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002944
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002945 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00002946
Nate Begemanb942a3d2005-08-23 04:29:48 +00002947 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002948 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002949 case TargetLowering::Legal: break;
2950 case TargetLowering::Custom: {
2951 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002952 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002953 break;
2954 }
Nate Begeman9373a812005-08-10 20:51:12 +00002955 case TargetLowering::Expand:
2956 if (Tmp1.getOpcode() == ISD::SETCC) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002957 Result = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
Nate Begeman9373a812005-08-10 20:51:12 +00002958 Tmp2, Tmp3,
2959 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2960 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00002961 Result = DAG.getSelectCC(dl, Tmp1,
Nate Begeman9373a812005-08-10 20:51:12 +00002962 DAG.getConstant(0, Tmp1.getValueType()),
2963 Tmp2, Tmp3, ISD::SETNE);
2964 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002965 break;
2966 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002967 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002968 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2969 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002970 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00002971 ExtOp = ISD::BIT_CONVERT;
2972 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002973 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00002974 ExtOp = ISD::ANY_EXTEND;
2975 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002976 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00002977 ExtOp = ISD::FP_EXTEND;
2978 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002979 }
2980 // Promote each of the values to the new type.
Dale Johannesenca57b842009-02-02 23:46:53 +00002981 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Tmp2);
2982 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Tmp3);
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002983 // Perform the larger operation, then round down.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002984 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2, Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00002985 if (TruncOp != ISD::FP_ROUND)
Dale Johannesenca57b842009-02-02 23:46:53 +00002986 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00002987 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002988 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result,
Chris Lattner0bd48932008-01-17 07:00:52 +00002989 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002990 break;
2991 }
2992 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002993 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00002994 case ISD::SELECT_CC: {
2995 Tmp1 = Node->getOperand(0); // LHS
2996 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00002997 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
2998 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman475871a2008-07-27 21:46:04 +00002999 SDValue CC = Node->getOperand(4);
Scott Michelfdc40a02009-02-17 22:15:04 +00003000
3001 LegalizeSetCC(TLI.getSetCCResultType(Tmp1.getValueType()),
Dale Johannesenbb5da912009-02-02 20:41:04 +00003002 Tmp1, Tmp2, CC, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003003
Evan Cheng7f042682008-10-15 02:05:31 +00003004 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00003005 // the LHS is a legal SETCC itself. In this case, we need to compare
3006 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00003007 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003008 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3009 CC = DAG.getCondCode(ISD::SETNE);
3010 }
3011 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
3012
3013 // Everything is legal, see if we should expand this op or something.
3014 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
3015 default: assert(0 && "This action is not supported yet!");
3016 case TargetLowering::Legal: break;
3017 case TargetLowering::Custom:
3018 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003019 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00003020 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003021 }
3022 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00003023 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003024 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00003025 Tmp1 = Node->getOperand(0);
3026 Tmp2 = Node->getOperand(1);
3027 Tmp3 = Node->getOperand(2);
Dale Johannesenbb5da912009-02-02 20:41:04 +00003028 LegalizeSetCC(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003029
3030 // If we had to Expand the SetCC operands into a SELECT node, then it may
3031 // not always be possible to return a true LHS & RHS. In this case, just
Nate Begeman750ac1b2006-02-01 07:19:44 +00003032 // return the value we legalized, returned in the LHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003033 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003034 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003035 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003036 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003037
Chris Lattner73e142f2006-01-30 22:43:50 +00003038 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003039 default: assert(0 && "Cannot handle this action for SETCC yet!");
3040 case TargetLowering::Custom:
3041 isCustom = true;
3042 // FALLTHROUGH.
3043 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00003044 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00003045 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00003046 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003047 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00003048 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003049 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003050 case TargetLowering::Promote: {
3051 // First step, figure out the appropriate operation to use.
3052 // Allow SETCC to not be supported for all legal data types
3053 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00003054 MVT NewInTy = Node->getOperand(0).getValueType();
3055 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00003056
3057 // Scan for the appropriate larger type to use.
3058 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003059 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00003060
Duncan Sands83ec4b62008-06-06 12:08:01 +00003061 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003062 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003063 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003064 "Fell off of the edge of the floating point world");
Scott Michelfdc40a02009-02-17 22:15:04 +00003065
Andrew Lenharthae355752005-11-30 17:12:26 +00003066 // If the target supports SETCC of this type, use it.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003067 if (TLI.isOperationLegalOrCustom(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00003068 break;
3069 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00003070 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00003071 assert(0 && "Cannot promote Legal Integer SETCC yet");
3072 else {
Dale Johannesenca57b842009-02-02 23:46:53 +00003073 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp1);
3074 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp2);
Andrew Lenharthae355752005-11-30 17:12:26 +00003075 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003076 Tmp1 = LegalizeOp(Tmp1);
3077 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00003078 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00003079 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00003080 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003081 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003082 case TargetLowering::Expand:
3083 // Expand a setcc node into a select_cc of the same condition, lhs, and
3084 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003085 MVT VT = Node->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003086 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Nate Begemanb942a3d2005-08-23 04:29:48 +00003087 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00003088 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00003089 break;
3090 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003091 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003092 case ISD::VSETCC: {
3093 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3094 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman475871a2008-07-27 21:46:04 +00003095 SDValue CC = Node->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00003096
Nate Begemanb43e9c12008-05-12 19:40:03 +00003097 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
3098
3099 // Everything is legal, see if we should expand this op or something.
3100 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
3101 default: assert(0 && "This action is not supported yet!");
3102 case TargetLowering::Legal: break;
3103 case TargetLowering::Custom:
3104 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003105 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003106 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003107 case TargetLowering::Expand: {
3108 // Unroll into a nasty set of scalar code for now.
3109 MVT VT = Node->getValueType(0);
3110 unsigned NumElems = VT.getVectorNumElements();
3111 MVT EltVT = VT.getVectorElementType();
3112 MVT TmpEltVT = Tmp1.getValueType().getVectorElementType();
3113 SmallVector<SDValue, 8> Ops(NumElems);
3114 for (unsigned i = 0; i < NumElems; ++i) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003115 SDValue In1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT,
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003116 Tmp1, DAG.getIntPtrConstant(i));
Dale Johannesenca57b842009-02-02 23:46:53 +00003117 Ops[i] = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(TmpEltVT),
3118 In1, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3119 TmpEltVT, Tmp2,
3120 DAG.getIntPtrConstant(i)),
Mon P Wang84aff842008-12-17 08:49:47 +00003121 CC);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00003122 Ops[i] = DAG.getNode(ISD::SELECT, dl, EltVT, Ops[i],
3123 DAG.getConstant(APInt::getAllOnesValue
3124 (EltVT.getSizeInBits()), EltVT),
3125 DAG.getConstant(0, EltVT));
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003126 }
Evan Chenga87008d2009-02-25 22:49:59 +00003127 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElems);
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003128 break;
3129 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00003130 }
3131 break;
3132 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00003133
Chris Lattner5b359c62005-04-02 04:00:59 +00003134 case ISD::SHL_PARTS:
3135 case ISD::SRA_PARTS:
3136 case ISD::SRL_PARTS: {
Dan Gohman475871a2008-07-27 21:46:04 +00003137 SmallVector<SDValue, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00003138 bool Changed = false;
Duncan Sands92abc622009-01-31 15:50:11 +00003139 unsigned N = Node->getNumOperands();
3140 for (unsigned i = 0; i + 1 < N; ++i) {
Chris Lattner84f67882005-01-20 18:52:28 +00003141 Ops.push_back(LegalizeOp(Node->getOperand(i)));
3142 Changed |= Ops.back() != Node->getOperand(i);
3143 }
Duncan Sands92abc622009-01-31 15:50:11 +00003144 Ops.push_back(LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(N-1))));
3145 Changed |= Ops.back() != Node->getOperand(N-1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003146 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003147 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00003148
Evan Cheng05a2d562006-01-09 18:31:59 +00003149 switch (TLI.getOperationAction(Node->getOpcode(),
3150 Node->getValueType(0))) {
3151 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003152 case TargetLowering::Legal: break;
3153 case TargetLowering::Custom:
3154 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003155 if (Tmp1.getNode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003156 SDValue Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00003157 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003158 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman475871a2008-07-27 21:46:04 +00003159 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003160 if (i == Op.getResNo())
Evan Cheng12f22742006-01-19 04:54:52 +00003161 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00003162 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003163 assert(RetVal.getNode() && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00003164 return RetVal;
3165 }
Evan Cheng05a2d562006-01-09 18:31:59 +00003166 break;
3167 }
3168
Chris Lattner2c8086f2005-04-02 05:00:07 +00003169 // Since these produce multiple values, make sure to remember that we
3170 // legalized all of them.
3171 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00003172 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00003173 return Result.getValue(Op.getResNo());
Chris Lattner84f67882005-01-20 18:52:28 +00003174 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003175
3176 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00003177 case ISD::ADD:
3178 case ISD::SUB:
3179 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00003180 case ISD::MULHS:
3181 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003182 case ISD::UDIV:
3183 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003184 case ISD::AND:
3185 case ISD::OR:
3186 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00003187 case ISD::SHL:
3188 case ISD::SRL:
3189 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00003190 case ISD::FADD:
3191 case ISD::FSUB:
3192 case ISD::FMUL:
3193 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00003194 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003195 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003196 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003197
3198 if ((Node->getOpcode() == ISD::SHL ||
3199 Node->getOpcode() == ISD::SRL ||
3200 Node->getOpcode() == ISD::SRA) &&
Duncan Sands92abc622009-01-31 15:50:11 +00003201 !Node->getValueType(0).isVector())
3202 Tmp2 = DAG.getShiftAmountOperand(Tmp2);
3203
3204 switch (getTypeAction(Tmp2.getValueType())) {
3205 case Expand: assert(0 && "Not possible");
3206 case Legal:
3207 Tmp2 = LegalizeOp(Tmp2); // Legalize the RHS.
3208 break;
3209 case Promote:
3210 Tmp2 = PromoteOp(Tmp2); // Promote the RHS.
3211 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003212 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003213
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003214 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Mon P Wangaeb06d22008-11-10 04:46:22 +00003215
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003216 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003217 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00003218 case TargetLowering::Legal: break;
3219 case TargetLowering::Custom:
3220 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003221 if (Tmp1.getNode()) {
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003222 Result = Tmp1;
3223 break;
Nate Begeman24dc3462008-07-29 19:07:27 +00003224 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003225 // Fall through if the custom lower can't deal with the operation
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003226 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003227 MVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003228
Dan Gohman525178c2007-10-08 18:33:35 +00003229 // See if multiply or divide can be lowered using two-result operations.
3230 SDVTList VTs = DAG.getVTList(VT, VT);
3231 if (Node->getOpcode() == ISD::MUL) {
3232 // We just need the low half of the multiply; try both the signed
3233 // and unsigned forms. If the target supports both SMUL_LOHI and
3234 // UMUL_LOHI, form a preference by checking which forms of plain
3235 // MULH it supports.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003236 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3237 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3238 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3239 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
Dan Gohman525178c2007-10-08 18:33:35 +00003240 unsigned OpToUse = 0;
3241 if (HasSMUL_LOHI && !HasMULHS) {
3242 OpToUse = ISD::SMUL_LOHI;
3243 } else if (HasUMUL_LOHI && !HasMULHU) {
3244 OpToUse = ISD::UMUL_LOHI;
3245 } else if (HasSMUL_LOHI) {
3246 OpToUse = ISD::SMUL_LOHI;
3247 } else if (HasUMUL_LOHI) {
3248 OpToUse = ISD::UMUL_LOHI;
3249 }
3250 if (OpToUse) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003251 Result = SDValue(DAG.getNode(OpToUse, dl, VTs, Tmp1, Tmp2).getNode(),
3252 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003253 break;
3254 }
3255 }
3256 if (Node->getOpcode() == ISD::MULHS &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003257 TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003258 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003259 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003260 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003261 break;
3262 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003263 if (Node->getOpcode() == ISD::MULHU &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003264 TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003265 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, dl,
3266 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003267 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003268 break;
3269 }
3270 if (Node->getOpcode() == ISD::SDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003271 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003272 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003273 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003274 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003275 break;
3276 }
3277 if (Node->getOpcode() == ISD::UDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003278 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003279 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3280 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003281 0);
Dan Gohman525178c2007-10-08 18:33:35 +00003282 break;
3283 }
Mon P Wang87c8a8f2008-12-18 20:03:17 +00003284
Dan Gohman82669522007-10-11 23:57:53 +00003285 // Check to see if we have a libcall for this operator.
3286 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3287 bool isSigned = false;
3288 switch (Node->getOpcode()) {
3289 case ISD::UDIV:
3290 case ISD::SDIV:
3291 if (VT == MVT::i32) {
3292 LC = Node->getOpcode() == ISD::UDIV
Mon P Wang0c397192008-10-30 08:01:45 +00003293 ? RTLIB::UDIV_I32 : RTLIB::SDIV_I32;
Dan Gohman82669522007-10-11 23:57:53 +00003294 isSigned = Node->getOpcode() == ISD::SDIV;
3295 }
3296 break;
Chris Lattner31d71612008-10-04 21:27:46 +00003297 case ISD::MUL:
3298 if (VT == MVT::i32)
3299 LC = RTLIB::MUL_I32;
Nate Begeman9b994852009-01-24 22:12:48 +00003300 else if (VT == MVT::i64)
Scott Michel845145f2008-12-29 03:21:37 +00003301 LC = RTLIB::MUL_I64;
Chris Lattner31d71612008-10-04 21:27:46 +00003302 break;
Dan Gohman82669522007-10-11 23:57:53 +00003303 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003304 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3305 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003306 break;
Scott Micheld1e8d9c2009-01-21 04:58:48 +00003307 case ISD::FDIV:
3308 LC = GetFPLibCall(VT, RTLIB::DIV_F32, RTLIB::DIV_F64, RTLIB::DIV_F80,
3309 RTLIB::DIV_PPCF128);
3310 break;
Dan Gohman82669522007-10-11 23:57:53 +00003311 default: break;
3312 }
3313 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +00003314 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003315 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003316 break;
3317 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003318
Duncan Sands83ec4b62008-06-06 12:08:01 +00003319 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003320 "Cannot expand this binary operator!");
3321 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003322 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003323 break;
3324 }
Evan Chengcc987612006-04-12 21:20:24 +00003325 case TargetLowering::Promote: {
3326 switch (Node->getOpcode()) {
3327 default: assert(0 && "Do not know how to promote this BinOp!");
3328 case ISD::AND:
3329 case ISD::OR:
3330 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003331 MVT OVT = Node->getValueType(0);
3332 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3333 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003334 // Bit convert each of the values to the new type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003335 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
3336 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
3337 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Evan Chengcc987612006-04-12 21:20:24 +00003338 // Bit convert the result back the original type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003339 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Evan Chengcc987612006-04-12 21:20:24 +00003340 break;
3341 }
3342 }
3343 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003344 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003345 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003346
Dan Gohmane14ea862007-10-05 14:17:22 +00003347 case ISD::SMUL_LOHI:
3348 case ISD::UMUL_LOHI:
3349 case ISD::SDIVREM:
3350 case ISD::UDIVREM:
3351 // These nodes will only be produced by target-specific lowering, so
3352 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003353 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003354 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003355
3356 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3357 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3358 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003359 break;
3360
Chris Lattnera09f8482006-03-05 05:09:38 +00003361 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3362 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3363 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3364 case Expand: assert(0 && "Not possible");
3365 case Legal:
3366 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3367 break;
3368 case Promote:
3369 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3370 break;
3371 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003372
Chris Lattnera09f8482006-03-05 05:09:38 +00003373 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00003374
Chris Lattnera09f8482006-03-05 05:09:38 +00003375 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3376 default: assert(0 && "Operation not supported");
3377 case TargetLowering::Custom:
3378 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003379 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003380 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003381 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003382 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003383 // If this target supports fabs/fneg natively and select is cheap,
3384 // do this efficiently.
3385 if (!TLI.isSelectExpensive() &&
3386 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3387 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003388 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003389 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003390 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003391 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003392 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dale Johannesenca57b842009-02-02 23:46:53 +00003393 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, IVT, Tmp2);
3394 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(IVT),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003395 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3396 // Get the absolute value of the result.
Dale Johannesenca57b842009-02-02 23:46:53 +00003397 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
Chris Lattner8f4191d2006-03-13 06:08:38 +00003398 // Select between the nabs and abs value based on the sign bit of
3399 // the input.
Dale Johannesenca57b842009-02-02 23:46:53 +00003400 Result = DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
Scott Michelfdc40a02009-02-17 22:15:04 +00003401 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003402 AbsVal),
3403 AbsVal);
3404 Result = LegalizeOp(Result);
3405 break;
3406 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003407
Chris Lattner8f4191d2006-03-13 06:08:38 +00003408 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003409 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003410 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3411 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
Dale Johannesenca57b842009-02-02 23:46:53 +00003412 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0), Result);
Evan Cheng912095b2007-01-04 21:56:39 +00003413 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003414 break;
3415 }
Evan Cheng912095b2007-01-04 21:56:39 +00003416 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003417 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003418
Nate Begeman551bf3f2006-02-17 05:43:56 +00003419 case ISD::ADDC:
3420 case ISD::SUBC:
3421 Tmp1 = LegalizeOp(Node->getOperand(0));
3422 Tmp2 = LegalizeOp(Node->getOperand(1));
3423 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003424 Tmp3 = Result.getValue(0);
3425 Tmp4 = Result.getValue(1);
3426
3427 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3428 default: assert(0 && "This action is not supported yet!");
3429 case TargetLowering::Legal:
3430 break;
3431 case TargetLowering::Custom:
3432 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3433 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003434 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003435 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3436 }
3437 break;
3438 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003439 // Since this produces two values, make sure to remember that we legalized
3440 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003441 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3442 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3443 return Op.getResNo() ? Tmp4 : Tmp3;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003444
Nate Begeman551bf3f2006-02-17 05:43:56 +00003445 case ISD::ADDE:
3446 case ISD::SUBE:
3447 Tmp1 = LegalizeOp(Node->getOperand(0));
3448 Tmp2 = LegalizeOp(Node->getOperand(1));
3449 Tmp3 = LegalizeOp(Node->getOperand(2));
3450 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003451 Tmp3 = Result.getValue(0);
3452 Tmp4 = Result.getValue(1);
3453
3454 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3455 default: assert(0 && "This action is not supported yet!");
3456 case TargetLowering::Legal:
3457 break;
3458 case TargetLowering::Custom:
3459 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3460 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003461 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003462 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3463 }
3464 break;
3465 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003466 // Since this produces two values, make sure to remember that we legalized
3467 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003468 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3469 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3470 return Op.getResNo() ? Tmp4 : Tmp3;
Scott Michelfdc40a02009-02-17 22:15:04 +00003471
Nate Begeman419f8b62005-10-18 00:27:41 +00003472 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003473 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003474 // TODO: handle the case where the Lo and Hi operands are not of legal type
3475 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3476 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3477 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003478 case TargetLowering::Promote:
3479 case TargetLowering::Custom:
3480 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003481 case TargetLowering::Legal:
3482 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
Dale Johannesenca57b842009-02-02 23:46:53 +00003483 Result = DAG.getNode(ISD::BUILD_PAIR, dl, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003484 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003485 case TargetLowering::Expand:
Dale Johannesenca57b842009-02-02 23:46:53 +00003486 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Tmp1);
3487 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Tmp2);
3488 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003489 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003490 TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00003491 Result = DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003492 break;
3493 }
3494 break;
3495 }
3496
Nate Begemanc105e192005-04-06 00:23:54 +00003497 case ISD::UREM:
3498 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003499 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003500 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3501 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003502
Nate Begemanc105e192005-04-06 00:23:54 +00003503 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003504 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3505 case TargetLowering::Custom:
3506 isCustom = true;
3507 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003508 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003509 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003510 if (isCustom) {
3511 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003512 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003513 }
Nate Begemanc105e192005-04-06 00:23:54 +00003514 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003515 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003516 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003517 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003518 MVT VT = Node->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003519
Dan Gohman525178c2007-10-08 18:33:35 +00003520 // See if remainder can be lowered using two-result operations.
3521 SDVTList VTs = DAG.getVTList(VT, VT);
3522 if (Node->getOpcode() == ISD::SREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003523 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003524 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003525 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003526 break;
3527 }
3528 if (Node->getOpcode() == ISD::UREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003529 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003530 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3531 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003532 break;
3533 }
3534
Duncan Sands83ec4b62008-06-06 12:08:01 +00003535 if (VT.isInteger()) {
Dan Gohman525178c2007-10-08 18:33:35 +00003536 if (TLI.getOperationAction(DivOpc, VT) ==
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003537 TargetLowering::Legal) {
3538 // X % Y -> X-X/Y*Y
Dale Johannesenca57b842009-02-02 23:46:53 +00003539 Result = DAG.getNode(DivOpc, dl, VT, Tmp1, Tmp2);
3540 Result = DAG.getNode(ISD::MUL, dl, VT, Result, Tmp2);
3541 Result = DAG.getNode(ISD::SUB, dl, VT, Tmp1, Result);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003542 } else if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003543 Result = LegalizeOp(UnrollVectorOp(Op));
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003544 } else {
Dan Gohman525178c2007-10-08 18:33:35 +00003545 assert(VT == MVT::i32 &&
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003546 "Cannot expand this binary operator!");
Evan Cheng56966222007-01-12 02:11:51 +00003547 RTLIB::Libcall LC = Node->getOpcode() == ISD::UREM
3548 ? RTLIB::UREM_I32 : RTLIB::SREM_I32;
Dan Gohman475871a2008-07-27 21:46:04 +00003549 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003550 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003551 }
Dan Gohman0d974262007-11-06 22:11:54 +00003552 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003553 assert(VT.isFloatingPoint() &&
Dan Gohman0d974262007-11-06 22:11:54 +00003554 "remainder op must have integer or floating-point type");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003555 if (VT.isVector()) {
Dan Gohman80176312007-11-05 23:35:22 +00003556 Result = LegalizeOp(UnrollVectorOp(Op));
3557 } else {
3558 // Floating point mod -> fmod libcall.
Duncan Sands007f9842008-01-10 10:28:30 +00003559 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3560 RTLIB::REM_F80, RTLIB::REM_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003561 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003562 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Dan Gohman80176312007-11-05 23:35:22 +00003563 }
Nate Begemanc105e192005-04-06 00:23:54 +00003564 }
3565 break;
3566 }
Dan Gohman525178c2007-10-08 18:33:35 +00003567 }
Nate Begemanc105e192005-04-06 00:23:54 +00003568 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003569 case ISD::VAARG: {
3570 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3571 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3572
Duncan Sands83ec4b62008-06-06 12:08:01 +00003573 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003574 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3575 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003576 case TargetLowering::Custom:
3577 isCustom = true;
3578 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003579 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003580 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3581 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003582 Tmp1 = Result.getValue(1);
3583
3584 if (isCustom) {
3585 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003586 if (Tmp2.getNode()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003587 Result = LegalizeOp(Tmp2);
3588 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3589 }
3590 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003591 break;
3592 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003593 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenca57b842009-02-02 23:46:53 +00003594 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003595 // Increment the pointer, VAList, to the next vaarg
Dale Johannesenca57b842009-02-02 23:46:53 +00003596 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00003597 DAG.getConstant(TLI.getTargetData()->
3598 getTypePaddedSize(VT.getTypeForMVT()),
3599 TLI.getPointerTy()));
Nate Begemanacc398c2006-01-25 18:21:52 +00003600 // Store the incremented VAList to the legalized pointer
Dale Johannesenca57b842009-02-02 23:46:53 +00003601 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003602 // Load the actual argument out of the pointer VAList
Dale Johannesenca57b842009-02-02 23:46:53 +00003603 Result = DAG.getLoad(VT, dl, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003604 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003605 Result = LegalizeOp(Result);
3606 break;
3607 }
3608 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003609 // Since VAARG produces two values, make sure to remember that we
Nate Begemanacc398c2006-01-25 18:21:52 +00003610 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003611 AddLegalizedOperand(SDValue(Node, 0), Result);
3612 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003613 return Op.getResNo() ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003614 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003615
3616 case ISD::VACOPY:
Nate Begemanacc398c2006-01-25 18:21:52 +00003617 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3618 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3619 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3620
3621 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3622 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003623 case TargetLowering::Custom:
3624 isCustom = true;
3625 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003626 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003627 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3628 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003629 if (isCustom) {
3630 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003631 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003632 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003633 break;
3634 case TargetLowering::Expand:
3635 // This defaults to loading a pointer from the input and storing it to the
3636 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003637 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3638 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dale Johannesenca57b842009-02-02 23:46:53 +00003639 Tmp4 = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp3, VS, 0);
3640 Result = DAG.getStore(Tmp4.getValue(1), dl, Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003641 break;
3642 }
3643 break;
3644
Scott Michelfdc40a02009-02-17 22:15:04 +00003645 case ISD::VAEND:
Nate Begemanacc398c2006-01-25 18:21:52 +00003646 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3647 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3648
3649 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3650 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003651 case TargetLowering::Custom:
3652 isCustom = true;
3653 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003654 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003655 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003656 if (isCustom) {
3657 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003658 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003659 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003660 break;
3661 case TargetLowering::Expand:
3662 Result = Tmp1; // Default to a no-op, return the chain
3663 break;
3664 }
3665 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003666
3667 case ISD::VASTART:
Nate Begemanacc398c2006-01-25 18:21:52 +00003668 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3669 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3670
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003671 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00003672
Nate Begemanacc398c2006-01-25 18:21:52 +00003673 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3674 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003675 case TargetLowering::Legal: break;
3676 case TargetLowering::Custom:
3677 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003678 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003679 break;
3680 }
3681 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003682
Nate Begeman35ef9132006-01-11 21:21:00 +00003683 case ISD::ROTL:
3684 case ISD::ROTR:
3685 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003686 Tmp2 = LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(1))); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003687 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003688 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3689 default:
3690 assert(0 && "ROTL/ROTR legalize operation not supported");
3691 break;
3692 case TargetLowering::Legal:
3693 break;
3694 case TargetLowering::Custom:
3695 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003696 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelc9dc1142007-04-02 21:36:32 +00003697 break;
3698 case TargetLowering::Promote:
3699 assert(0 && "Do not know how to promote ROTL/ROTR");
3700 break;
3701 case TargetLowering::Expand:
3702 assert(0 && "Do not know how to expand ROTL/ROTR");
3703 break;
3704 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003705 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003706
Nate Begemand88fc032006-01-14 03:14:10 +00003707 case ISD::BSWAP:
3708 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3709 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003710 case TargetLowering::Custom:
3711 assert(0 && "Cannot custom legalize this yet!");
3712 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003713 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003714 break;
3715 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003716 MVT OVT = Tmp1.getValueType();
3717 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3718 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003719
Dale Johannesenca57b842009-02-02 23:46:53 +00003720 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
3721 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3722 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Chris Lattner456a93a2006-01-28 07:39:30 +00003723 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3724 break;
3725 }
3726 case TargetLowering::Expand:
Dale Johannesen8a782a22009-02-02 22:12:50 +00003727 Result = ExpandBSWAP(Tmp1, dl);
Chris Lattner456a93a2006-01-28 07:39:30 +00003728 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003729 }
3730 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003731
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003732 case ISD::CTPOP:
3733 case ISD::CTTZ:
3734 case ISD::CTLZ:
3735 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3736 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003737 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003738 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003739 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003740 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003741 TargetLowering::Custom) {
3742 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003743 if (Tmp1.getNode()) {
Scott Michel335f4f72007-08-02 02:22:46 +00003744 Result = Tmp1;
3745 }
Scott Michel910b66d2007-07-30 21:00:31 +00003746 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003747 break;
3748 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003749 MVT OVT = Tmp1.getValueType();
3750 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003751
3752 // Zero extend the argument.
Dale Johannesenca57b842009-02-02 23:46:53 +00003753 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003754 // Perform the larger operation, then subtract if needed.
Dale Johannesenca57b842009-02-02 23:46:53 +00003755 Tmp1 = DAG.getNode(Node->getOpcode(), dl, Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003756 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003757 case ISD::CTPOP:
3758 Result = Tmp1;
3759 break;
3760 case ISD::CTTZ:
3761 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesenca57b842009-02-02 23:46:53 +00003762 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
3763 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003764 ISD::SETEQ);
Dale Johannesenca57b842009-02-02 23:46:53 +00003765 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003766 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003767 break;
3768 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003769 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesenca57b842009-02-02 23:46:53 +00003770 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003771 DAG.getConstant(NVT.getSizeInBits() -
3772 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003773 break;
3774 }
3775 break;
3776 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003777 case TargetLowering::Expand:
Dale Johannesen8a782a22009-02-02 22:12:50 +00003778 Result = ExpandBitCount(Node->getOpcode(), Tmp1, dl);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003779 break;
3780 }
3781 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003782
Chris Lattner2c8086f2005-04-02 05:00:07 +00003783 // Unary operators
3784 case ISD::FABS:
3785 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003786 case ISD::FSQRT:
3787 case ISD::FSIN:
3788 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003789 case ISD::FLOG:
3790 case ISD::FLOG2:
3791 case ISD::FLOG10:
3792 case ISD::FEXP:
3793 case ISD::FEXP2:
Dan Gohman509e84f2008-08-21 17:55:02 +00003794 case ISD::FTRUNC:
3795 case ISD::FFLOOR:
3796 case ISD::FCEIL:
3797 case ISD::FRINT:
3798 case ISD::FNEARBYINT:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003799 Tmp1 = LegalizeOp(Node->getOperand(0));
3800 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003801 case TargetLowering::Promote:
3802 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003803 isCustom = true;
3804 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003805 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003806 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003807 if (isCustom) {
3808 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003809 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng59ad7812006-01-31 18:14:25 +00003810 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003811 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003812 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003813 switch (Node->getOpcode()) {
3814 default: assert(0 && "Unreachable!");
3815 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003816 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3817 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00003818 Result = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003819 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003820 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003821 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003822 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003823 Tmp2 = DAG.getConstantFP(0.0, VT);
Dale Johannesenca57b842009-02-02 23:46:53 +00003824 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00003825 Tmp1, Tmp2, ISD::SETUGT);
Dale Johannesenca57b842009-02-02 23:46:53 +00003826 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3827 Result = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003828 break;
3829 }
Evan Cheng9d24ac52008-09-09 23:35:53 +00003830 case ISD::FSQRT:
3831 case ISD::FSIN:
Scott Michelfdc40a02009-02-17 22:15:04 +00003832 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003833 case ISD::FLOG:
3834 case ISD::FLOG2:
3835 case ISD::FLOG10:
3836 case ISD::FEXP:
3837 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003838 case ISD::FTRUNC:
3839 case ISD::FFLOOR:
3840 case ISD::FCEIL:
3841 case ISD::FRINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00003842 case ISD::FNEARBYINT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003843 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003844
3845 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003846 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003847 Result = LegalizeOp(UnrollVectorOp(Op));
3848 break;
3849 }
3850
Evan Cheng56966222007-01-12 02:11:51 +00003851 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003852 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003853 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003854 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3855 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003856 break;
3857 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003858 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3859 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003860 break;
3861 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003862 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3863 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003864 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003865 case ISD::FLOG:
3866 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3867 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3868 break;
3869 case ISD::FLOG2:
3870 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3871 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3872 break;
3873 case ISD::FLOG10:
3874 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3875 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3876 break;
3877 case ISD::FEXP:
3878 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3879 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3880 break;
3881 case ISD::FEXP2:
3882 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3883 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3884 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003885 case ISD::FTRUNC:
3886 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3887 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3888 break;
3889 case ISD::FFLOOR:
3890 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3891 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3892 break;
3893 case ISD::FCEIL:
3894 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3895 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3896 break;
3897 case ISD::FRINT:
3898 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3899 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3900 break;
3901 case ISD::FNEARBYINT:
3902 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3903 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3904 break;
Evan Cheng9d24ac52008-09-09 23:35:53 +00003905 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003906 default: assert(0 && "Unreachable!");
3907 }
Dan Gohman475871a2008-07-27 21:46:04 +00003908 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003909 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003910 break;
3911 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003912 }
3913 break;
3914 }
3915 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003916 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003917 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003918
3919 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003920 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003921 Result = LegalizeOp(UnrollVectorOp(Op));
3922 break;
3923 }
3924
3925 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003926 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3927 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003928 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003929 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003930 break;
3931 }
Chris Lattner35481892005-12-23 00:16:34 +00003932 case ISD::BIT_CONVERT:
Chris Lattner67993f72006-01-23 07:30:46 +00003933 if (!isTypeLegal(Node->getOperand(0).getValueType())) {
Chris Lattner1401d152008-01-16 07:45:30 +00003934 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00003935 Node->getValueType(0), dl);
Duncan Sands83ec4b62008-06-06 12:08:01 +00003936 } else if (Op.getOperand(0).getValueType().isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +00003937 // The input has to be a vector type, we have to either scalarize it, pack
3938 // it, or convert it based on whether the input vector type is legal.
Gabor Greifba36cb52008-08-28 21:40:38 +00003939 SDNode *InVal = Node->getOperand(0).getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00003940 int InIx = Node->getOperand(0).getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00003941 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
3942 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003943
Dan Gohman7f321562007-06-25 16:23:39 +00003944 // Figure out if there is a simple type corresponding to this Vector
3945 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003946 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00003947 if (TLI.isTypeLegal(TVT)) {
Dan Gohman07a96762007-07-16 14:29:03 +00003948 // Turn this into a bit convert of the vector input.
Scott Michelfdc40a02009-02-17 22:15:04 +00003949 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohman7f321562007-06-25 16:23:39 +00003950 LegalizeOp(Node->getOperand(0)));
3951 break;
3952 } else if (NumElems == 1) {
3953 // Turn this into a bit convert of the scalar input.
Scott Michelfdc40a02009-02-17 22:15:04 +00003954 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0),
Dan Gohman7f321562007-06-25 16:23:39 +00003955 ScalarizeVectorOp(Node->getOperand(0)));
3956 break;
3957 } else {
3958 // FIXME: UNIMP! Store then reload
3959 assert(0 && "Cast from unsupported vector type not implemented yet!");
3960 }
Chris Lattner67993f72006-01-23 07:30:46 +00003961 } else {
Chris Lattner35481892005-12-23 00:16:34 +00003962 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3963 Node->getOperand(0).getValueType())) {
3964 default: assert(0 && "Unknown operation action!");
3965 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003966 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00003967 Node->getValueType(0), dl);
Chris Lattner35481892005-12-23 00:16:34 +00003968 break;
3969 case TargetLowering::Legal:
3970 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003971 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner35481892005-12-23 00:16:34 +00003972 break;
3973 }
3974 }
3975 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00003976 case ISD::CONVERT_RNDSAT: {
3977 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
3978 switch (CvtCode) {
3979 default: assert(0 && "Unknown cvt code!");
3980 case ISD::CVT_SF:
3981 case ISD::CVT_UF:
Mon P Wang77cdf302008-11-10 20:54:11 +00003982 case ISD::CVT_FF:
Mon P Wang1cd46bb2008-12-09 07:27:39 +00003983 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00003984 case ISD::CVT_FS:
3985 case ISD::CVT_FU:
3986 case ISD::CVT_SS:
3987 case ISD::CVT_SU:
3988 case ISD::CVT_US:
3989 case ISD::CVT_UU: {
3990 SDValue DTyOp = Node->getOperand(1);
3991 SDValue STyOp = Node->getOperand(2);
3992 SDValue RndOp = Node->getOperand(3);
3993 SDValue SatOp = Node->getOperand(4);
3994 switch (getTypeAction(Node->getOperand(0).getValueType())) {
3995 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
3996 case Legal:
3997 Tmp1 = LegalizeOp(Node->getOperand(0));
3998 Result = DAG.UpdateNodeOperands(Result, Tmp1, DTyOp, STyOp,
3999 RndOp, SatOp);
4000 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4001 TargetLowering::Custom) {
4002 Tmp1 = TLI.LowerOperation(Result, DAG);
4003 if (Tmp1.getNode()) Result = Tmp1;
4004 }
4005 break;
4006 case Promote:
4007 Result = PromoteOp(Node->getOperand(0));
4008 // For FP, make Op1 a i32
Scott Michelfdc40a02009-02-17 22:15:04 +00004009
Dale Johannesenc460ae92009-02-04 00:13:36 +00004010 Result = DAG.getConvertRndSat(Op.getValueType(), dl, Result,
Mon P Wang77cdf302008-11-10 20:54:11 +00004011 DTyOp, STyOp, RndOp, SatOp, CvtCode);
4012 break;
4013 }
4014 break;
4015 }
4016 } // end switch CvtCode
4017 break;
4018 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00004019 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00004020 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004021 case ISD::UINT_TO_FP: {
4022 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman7f8613e2008-08-14 20:04:46 +00004023 Result = LegalizeINT_TO_FP(Result, isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00004024 Node->getValueType(0), Node->getOperand(0), dl);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004025 break;
4026 }
4027 case ISD::TRUNCATE:
4028 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4029 case Legal:
4030 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel546d7b52008-12-02 19:55:08 +00004031 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
4032 default: assert(0 && "Unknown TRUNCATE legalization operation action!");
4033 case TargetLowering::Custom:
Mon P Wangf67303d2008-12-11 00:44:22 +00004034 isCustom = true;
4035 // FALLTHROUGH
Scott Michel546d7b52008-12-02 19:55:08 +00004036 case TargetLowering::Legal:
Mon P Wangf67303d2008-12-11 00:44:22 +00004037 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4038 if (isCustom) {
4039 Tmp1 = TLI.LowerOperation(Result, DAG);
4040 if (Tmp1.getNode()) Result = Tmp1;
4041 }
4042 break;
Mon P Wang9e5ecb82008-12-12 01:25:51 +00004043 case TargetLowering::Expand:
4044 assert(Result.getValueType().isVector() && "must be vector type");
4045 // Unroll the truncate. We should do better.
4046 Result = LegalizeOp(UnrollVectorOp(Result));
Tilmann Schellerb0a5cdd2008-12-02 12:12:25 +00004047 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004048 break;
4049 case Expand:
4050 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4051
4052 // Since the result is legal, we should just be able to truncate the low
4053 // part of the source.
Dale Johannesenca57b842009-02-02 23:46:53 +00004054 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004055 break;
4056 case Promote:
4057 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004058 Result = DAG.getNode(ISD::TRUNCATE, dl, Op.getValueType(), Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004059 break;
4060 }
4061 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004062
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004063 case ISD::FP_TO_SINT:
4064 case ISD::FP_TO_UINT:
4065 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4066 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00004067 Tmp1 = LegalizeOp(Node->getOperand(0));
4068
Chris Lattner1618beb2005-07-29 00:11:56 +00004069 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
4070 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004071 case TargetLowering::Custom:
4072 isCustom = true;
4073 // FALLTHROUGH
4074 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004075 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004076 if (isCustom) {
4077 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004078 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00004079 }
4080 break;
4081 case TargetLowering::Promote:
4082 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00004083 Node->getOpcode() == ISD::FP_TO_SINT,
Dale Johannesenaf435272009-02-02 19:03:57 +00004084 dl);
Chris Lattner456a93a2006-01-28 07:39:30 +00004085 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00004086 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00004087 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman475871a2008-07-27 21:46:04 +00004088 SDValue True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004089 MVT VT = Node->getOperand(0).getValueType();
4090 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00004091 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00004092 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
4093 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004094 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00004095 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004096 Tmp3 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
Dale Johannesenaf435272009-02-02 19:03:57 +00004097 Node->getOperand(0),
Duncan Sands5480c042009-01-01 15:52:00 +00004098 Tmp2, ISD::SETLT);
Dale Johannesenaf435272009-02-02 19:03:57 +00004099 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
4100 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004101 DAG.getNode(ISD::FSUB, dl, VT,
Dale Johannesenaf435272009-02-02 19:03:57 +00004102 Node->getOperand(0), Tmp2));
4103 False = DAG.getNode(ISD::XOR, dl, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004104 DAG.getConstant(x, NVT));
Dale Johannesenaf435272009-02-02 19:03:57 +00004105 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp3, True, False);
Chris Lattner456a93a2006-01-28 07:39:30 +00004106 break;
Nate Begemand2558e32005-08-14 01:20:53 +00004107 } else {
4108 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
4109 }
4110 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00004111 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004112 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00004113 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004114 MVT VT = Op.getValueType();
4115 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004116 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004117 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004118 if (Node->getOpcode() == ISD::FP_TO_SINT) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004119 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, MVT::ppcf128,
Chris Lattner0bd48932008-01-17 07:00:52 +00004120 Node->getOperand(0), DAG.getValueType(MVT::f64));
Scott Michelfdc40a02009-02-17 22:15:04 +00004121 Result = DAG.getNode(ISD::FP_ROUND, dl, MVT::f64, Result,
Chris Lattner0bd48932008-01-17 07:00:52 +00004122 DAG.getIntPtrConstant(1));
Dale Johannesenaf435272009-02-02 19:03:57 +00004123 Result = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00004124 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004125 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
4126 APFloat apf = APFloat(APInt(128, 2, TwoE31));
4127 Tmp2 = DAG.getConstantFP(apf, OVT);
4128 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
4129 // FIXME: generated code sucks.
Scott Michelfdc40a02009-02-17 22:15:04 +00004130 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Node->getOperand(0),
Dale Johannesenaf435272009-02-02 19:03:57 +00004131 Tmp2,
4132 DAG.getNode(ISD::ADD, dl, MVT::i32,
4133 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
4134 DAG.getNode(ISD::FSUB, dl, OVT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004135 Node->getOperand(0), Tmp2)),
4136 DAG.getConstant(0x80000000, MVT::i32)),
Scott Michelfdc40a02009-02-17 22:15:04 +00004137 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004138 Node->getOperand(0)),
4139 DAG.getCondCode(ISD::SETGE));
4140 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004141 break;
4142 }
Dan Gohmana2e94852008-03-10 23:03:31 +00004143 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsb2ff8852008-07-17 02:36:29 +00004144 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
4145 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
4146 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman475871a2008-07-27 21:46:04 +00004147 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00004148 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00004149 break;
4150 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004151 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004152 Tmp1 = PromoteOp(Node->getOperand(0));
4153 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
4154 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004155 break;
4156 }
4157 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004158
Chris Lattnerf2670a82008-01-16 06:57:07 +00004159 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004160 MVT DstVT = Op.getValueType();
4161 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00004162 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4163 // The only other way we can lower this is to turn it into a STORE,
4164 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen8a782a22009-02-02 22:12:50 +00004165 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT, dl);
Chris Lattner0bd48932008-01-17 07:00:52 +00004166 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00004167 }
4168 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4169 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4170 case Legal:
4171 Tmp1 = LegalizeOp(Node->getOperand(0));
4172 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4173 break;
4174 case Promote:
4175 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004176 Result = DAG.getNode(ISD::FP_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattnerf2670a82008-01-16 06:57:07 +00004177 break;
4178 }
4179 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004180 }
Dale Johannesen5411a392007-08-09 01:04:01 +00004181 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004182 MVT DstVT = Op.getValueType();
4183 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00004184 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4185 if (SrcVT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00004186 SDValue Lo;
Dale Johannesen713ed3f2008-01-20 01:18:38 +00004187 ExpandOp(Node->getOperand(0), Lo, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00004188 // Round it the rest of the way (e.g. to f32) if needed.
Dale Johannesen713ed3f2008-01-20 01:18:38 +00004189 if (DstVT!=MVT::f64)
Dale Johannesenca57b842009-02-02 23:46:53 +00004190 Result = DAG.getNode(ISD::FP_ROUND, dl,
4191 DstVT, Result, Op.getOperand(1));
Chris Lattner0bd48932008-01-17 07:00:52 +00004192 break;
Dale Johannesen5411a392007-08-09 01:04:01 +00004193 }
Chris Lattner0bd48932008-01-17 07:00:52 +00004194 // The only other way we can lower this is to turn it into a STORE,
4195 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen8a782a22009-02-02 22:12:50 +00004196 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT, dl);
Chris Lattner0bd48932008-01-17 07:00:52 +00004197 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00004198 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00004199 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4200 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4201 case Legal:
4202 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00004203 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004204 break;
4205 case Promote:
4206 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004207 Result = DAG.getNode(ISD::FP_ROUND, dl, Op.getValueType(), Tmp1,
Chris Lattner0bd48932008-01-17 07:00:52 +00004208 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004209 break;
4210 }
4211 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004212 }
Chris Lattner13c78e22005-09-02 00:18:10 +00004213 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004214 case ISD::ZERO_EXTEND:
4215 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004216 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00004217 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004218 case Legal:
4219 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00004220 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00004221 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4222 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00004223 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004224 if (Tmp1.getNode()) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00004225 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004226 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004227 case Promote:
4228 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00004229 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004230 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004231 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00004232 break;
Chris Lattner1713e732005-01-16 00:38:00 +00004233 case ISD::ZERO_EXTEND:
4234 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004235 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4236 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004237 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00004238 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004239 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00004240 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004241 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4242 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004243 Result,
4244 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00004245 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004246 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004247 }
4248 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00004249 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00004250 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00004251 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004252 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00004253
4254 // If this operation is not supported, convert it to a shl/shr or load/store
4255 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004256 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
4257 default: assert(0 && "This action not supported for this op yet!");
4258 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004259 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004260 break;
4261 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00004262 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00004263 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00004264 // NOTE: we could fall back on load/store here too for targets without
4265 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004266 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
4267 ExtraVT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00004268 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Dale Johannesenca57b842009-02-02 23:46:53 +00004269 Result = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
Chris Lattner45b8caf2005-01-15 07:15:18 +00004270 Node->getOperand(0), ShiftCst);
Dale Johannesenca57b842009-02-02 23:46:53 +00004271 Result = DAG.getNode(ISD::SRA, dl, Node->getValueType(0),
Chris Lattner45b8caf2005-01-15 07:15:18 +00004272 Result, ShiftCst);
4273 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00004274 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00004275 // EXTLOAD pair, targetting a temporary location (a stack slot).
4276
4277 // NOTE: there is a choice here between constantly creating new stack
4278 // slots and always reusing the same one. We currently always create
4279 // new ones, as reuse may inhibit scheduling.
Scott Michelfdc40a02009-02-17 22:15:04 +00004280 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00004281 Node->getValueType(0), dl);
Chris Lattner45b8caf2005-01-15 07:15:18 +00004282 } else {
4283 assert(0 && "Unknown op");
4284 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004285 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00004286 }
Chris Lattner0f69b292005-01-15 06:18:18 +00004287 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004288 }
Duncan Sands36397f52007-07-27 12:58:54 +00004289 case ISD::TRAMPOLINE: {
Dan Gohman475871a2008-07-27 21:46:04 +00004290 SDValue Ops[6];
Duncan Sands36397f52007-07-27 12:58:54 +00004291 for (unsigned i = 0; i != 6; ++i)
4292 Ops[i] = LegalizeOp(Node->getOperand(i));
4293 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
4294 // The only option for this node is to custom lower it.
4295 Result = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004296 assert(Result.getNode() && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00004297
4298 // Since trampoline produces two values, make sure to remember that we
4299 // legalized both of them.
4300 Tmp1 = LegalizeOp(Result.getValue(1));
4301 Result = LegalizeOp(Result);
Dan Gohman475871a2008-07-27 21:46:04 +00004302 AddLegalizedOperand(SDValue(Node, 0), Result);
4303 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00004304 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00004305 }
Dan Gohman9c78a392008-05-14 00:43:10 +00004306 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004307 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004308 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4309 default: assert(0 && "This action not supported for this op yet!");
4310 case TargetLowering::Custom:
4311 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004312 if (Result.getNode()) break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004313 // Fall Thru
4314 case TargetLowering::Legal:
4315 // If this operation is not supported, lower it to constant 1
4316 Result = DAG.getConstant(1, VT);
4317 break;
4318 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00004319 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004320 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004321 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004322 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004323 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4324 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00004325 case TargetLowering::Legal:
4326 Tmp1 = LegalizeOp(Node->getOperand(0));
4327 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4328 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004329 case TargetLowering::Custom:
4330 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004331 if (Result.getNode()) break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004332 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00004333 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004334 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00004335 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004336 TargetLowering::ArgListTy Args;
Bob Wilsonec15bbf2009-04-10 18:48:47 +00004337 std::pair<SDValue, SDValue> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00004338 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00004339 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00004340 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Dale Johannesen7d2ad622009-01-30 23:10:59 +00004341 Args, DAG, dl);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004342 Result = CallResult.second;
4343 break;
4344 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004345 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004346 }
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004347
Bill Wendling74c37652008-12-09 22:08:41 +00004348 case ISD::SADDO:
4349 case ISD::SSUBO: {
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004350 MVT VT = Node->getValueType(0);
4351 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4352 default: assert(0 && "This action not supported for this op yet!");
4353 case TargetLowering::Custom:
4354 Result = TLI.LowerOperation(Op, DAG);
4355 if (Result.getNode()) break;
4356 // FALLTHROUGH
4357 case TargetLowering::Legal: {
4358 SDValue LHS = LegalizeOp(Node->getOperand(0));
4359 SDValue RHS = LegalizeOp(Node->getOperand(1));
4360
Scott Michelfdc40a02009-02-17 22:15:04 +00004361 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
Dale Johannesenca57b842009-02-02 23:46:53 +00004362 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling74c37652008-12-09 22:08:41 +00004363 LHS, RHS);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004364 MVT OType = Node->getValueType(1);
4365
Bill Wendlinga6af91a2008-11-25 08:19:22 +00004366 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004367
Bill Wendling740464e2008-11-25 19:40:17 +00004368 // LHSSign -> LHS >= 0
4369 // RHSSign -> RHS >= 0
4370 // SumSign -> Sum >= 0
4371 //
Bill Wendling74c37652008-12-09 22:08:41 +00004372 // Add:
Bill Wendling740464e2008-11-25 19:40:17 +00004373 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
Bill Wendling74c37652008-12-09 22:08:41 +00004374 // Sub:
4375 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
Bill Wendling740464e2008-11-25 19:40:17 +00004376 //
Dale Johannesenca57b842009-02-02 23:46:53 +00004377 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
4378 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
Scott Michelfdc40a02009-02-17 22:15:04 +00004379 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
4380 Node->getOpcode() == ISD::SADDO ?
Bill Wendling74c37652008-12-09 22:08:41 +00004381 ISD::SETEQ : ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004382
Dale Johannesenca57b842009-02-02 23:46:53 +00004383 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
4384 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004385
Dale Johannesenca57b842009-02-02 23:46:53 +00004386 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004387
4388 MVT ValueVTs[] = { LHS.getValueType(), OType };
4389 SDValue Ops[] = { Sum, Cmp };
4390
Scott Michelfdc40a02009-02-17 22:15:04 +00004391 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00004392 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sandsaaffa052008-12-01 11:41:29 +00004393 &Ops[0], 2);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004394 SDNode *RNode = Result.getNode();
Dan Gohmanc23e4962009-04-15 20:06:30 +00004395 DAG.ReplaceAllUsesWith(Node, RNode);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004396 break;
4397 }
4398 }
4399
4400 break;
4401 }
Bill Wendling74c37652008-12-09 22:08:41 +00004402 case ISD::UADDO:
4403 case ISD::USUBO: {
Bill Wendling41ea7e72008-11-24 19:21:46 +00004404 MVT VT = Node->getValueType(0);
4405 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4406 default: assert(0 && "This action not supported for this op yet!");
4407 case TargetLowering::Custom:
4408 Result = TLI.LowerOperation(Op, DAG);
4409 if (Result.getNode()) break;
4410 // FALLTHROUGH
4411 case TargetLowering::Legal: {
4412 SDValue LHS = LegalizeOp(Node->getOperand(0));
4413 SDValue RHS = LegalizeOp(Node->getOperand(1));
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004414
Bill Wendling74c37652008-12-09 22:08:41 +00004415 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
Dale Johannesenca57b842009-02-02 23:46:53 +00004416 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling74c37652008-12-09 22:08:41 +00004417 LHS, RHS);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004418 MVT OType = Node->getValueType(1);
Dale Johannesenca57b842009-02-02 23:46:53 +00004419 SDValue Cmp = DAG.getSetCC(dl, OType, Sum, LHS,
Scott Michelfdc40a02009-02-17 22:15:04 +00004420 Node->getOpcode () == ISD::UADDO ?
Bill Wendling74c37652008-12-09 22:08:41 +00004421 ISD::SETULT : ISD::SETUGT);
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004422
Bill Wendling41ea7e72008-11-24 19:21:46 +00004423 MVT ValueVTs[] = { LHS.getValueType(), OType };
4424 SDValue Ops[] = { Sum, Cmp };
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004425
Scott Michelfdc40a02009-02-17 22:15:04 +00004426 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00004427 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sandsaaffa052008-12-01 11:41:29 +00004428 &Ops[0], 2);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004429 SDNode *RNode = Result.getNode();
Dan Gohmanc23e4962009-04-15 20:06:30 +00004430 DAG.ReplaceAllUsesWith(Node, RNode);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004431 break;
4432 }
4433 }
4434
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004435 break;
4436 }
Bill Wendling74c37652008-12-09 22:08:41 +00004437 case ISD::SMULO:
4438 case ISD::UMULO: {
4439 MVT VT = Node->getValueType(0);
4440 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4441 default: assert(0 && "This action is not supported at all!");
4442 case TargetLowering::Custom:
4443 Result = TLI.LowerOperation(Op, DAG);
4444 if (Result.getNode()) break;
4445 // Fall Thru
4446 case TargetLowering::Legal:
4447 // FIXME: According to Hacker's Delight, this can be implemented in
4448 // target independent lowering, but it would be inefficient, since it
Bill Wendlingbc5e15e2008-12-10 02:01:32 +00004449 // requires a division + a branch.
Scott Michelfdc40a02009-02-17 22:15:04 +00004450 assert(0 && "Target independent lowering is not supported for SMULO/UMULO!");
Bill Wendling74c37652008-12-09 22:08:41 +00004451 break;
4452 }
4453 break;
4454 }
4455
Chris Lattner45b8caf2005-01-15 07:15:18 +00004456 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004457
Chris Lattner4ddd2832006-04-08 04:13:17 +00004458 assert(Result.getValueType() == Op.getValueType() &&
4459 "Bad legalization!");
Scott Michelfdc40a02009-02-17 22:15:04 +00004460
Chris Lattner456a93a2006-01-28 07:39:30 +00004461 // Make sure that the generated code is itself legal.
4462 if (Result != Op)
4463 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004464
Chris Lattner45982da2005-05-12 16:53:42 +00004465 // Note that LegalizeOp may be reentered even from single-use nodes, which
4466 // means that we always must cache transformed nodes.
4467 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004468 return Result;
4469}
4470
Chris Lattner8b6fa222005-01-15 22:16:26 +00004471/// PromoteOp - Given an operation that produces a value in an invalid type,
4472/// promote it to compute the value into a larger type. The produced value will
4473/// have the correct bits for the low portion of the register, but no guarantee
4474/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman475871a2008-07-27 21:46:04 +00004475SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004476 MVT VT = Op.getValueType();
4477 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004478 assert(getTypeAction(VT) == Promote &&
4479 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004480 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00004481 "Cannot promote to smaller type!");
4482
Dan Gohman475871a2008-07-27 21:46:04 +00004483 SDValue Tmp1, Tmp2, Tmp3;
4484 SDValue Result;
Gabor Greifba36cb52008-08-28 21:40:38 +00004485 SDNode *Node = Op.getNode();
Dale Johannesen8a782a22009-02-02 22:12:50 +00004486 DebugLoc dl = Node->getDebugLoc();
Chris Lattner03c85462005-01-15 05:21:40 +00004487
Dan Gohman475871a2008-07-27 21:46:04 +00004488 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004489 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004490
Chris Lattner03c85462005-01-15 05:21:40 +00004491 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004492 case ISD::CopyFromReg:
4493 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004494 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004495#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004496 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004497#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004498 assert(0 && "Do not know how to promote this operator!");
4499 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004500 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00004501 Result = DAG.getUNDEF(NVT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004502 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004503 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004504 if (VT != MVT::i1)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004505 Result = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Op);
Chris Lattnerec176e32005-08-30 16:56:19 +00004506 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00004507 Result = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004508 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4509 break;
4510 case ISD::ConstantFP:
Dale Johannesen8a782a22009-02-02 22:12:50 +00004511 Result = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004512 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4513 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004514
Duncan Sands5480c042009-01-01 15:52:00 +00004515 case ISD::SETCC: {
4516 MVT VT0 = Node->getOperand(0).getValueType();
4517 assert(isTypeLegal(TLI.getSetCCResultType(VT0))
Nate Begeman5922f562008-03-14 00:53:31 +00004518 && "SetCC type is not legal??");
Dale Johannesen8a782a22009-02-02 22:12:50 +00004519 Result = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(VT0),
Nate Begeman5922f562008-03-14 00:53:31 +00004520 Node->getOperand(0), Node->getOperand(1),
4521 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004522 break;
Duncan Sands5480c042009-01-01 15:52:00 +00004523 }
Chris Lattner03c85462005-01-15 05:21:40 +00004524 case ISD::TRUNCATE:
4525 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4526 case Legal:
4527 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004528 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004529 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004530 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Dale Johannesen8a782a22009-02-02 22:12:50 +00004531 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Result);
Chris Lattner03c85462005-01-15 05:21:40 +00004532 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004533 case Promote:
4534 // The truncation is not required, because we don't guarantee anything
4535 // about high bits anyway.
4536 Result = PromoteOp(Node->getOperand(0));
4537 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004538 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004539 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4540 // Truncate the low part of the expanded value to the result type
Dale Johannesen8a782a22009-02-02 22:12:50 +00004541 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004542 }
4543 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004544 case ISD::SIGN_EXTEND:
4545 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004546 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004547 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4548 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4549 case Legal:
4550 // Input is legal? Just do extend all the way to the larger type.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004551 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004552 break;
4553 case Promote:
4554 // Promote the reg if it's smaller.
4555 Result = PromoteOp(Node->getOperand(0));
4556 // The high bits are not guaranteed to be anything. Insert an extend.
4557 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004558 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004559 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004560 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004561 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004562 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004563 break;
4564 }
4565 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004566 case ISD::CONVERT_RNDSAT: {
4567 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4568 assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
4569 CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
4570 CvtCode == ISD::CVT_SF || CvtCode == ISD::CVT_UF) &&
4571 "can only promote integers");
Dale Johannesenc460ae92009-02-04 00:13:36 +00004572 Result = DAG.getConvertRndSat(NVT, dl, Node->getOperand(0),
Mon P Wang77cdf302008-11-10 20:54:11 +00004573 Node->getOperand(1), Node->getOperand(2),
4574 Node->getOperand(3), Node->getOperand(4),
4575 CvtCode);
4576 break;
4577
4578 }
Chris Lattner35481892005-12-23 00:16:34 +00004579 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004580 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00004581 Node->getValueType(0), dl);
Chris Lattner35481892005-12-23 00:16:34 +00004582 Result = PromoteOp(Result);
4583 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00004584
Chris Lattner8b6fa222005-01-15 22:16:26 +00004585 case ISD::FP_EXTEND:
4586 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4587 case ISD::FP_ROUND:
4588 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4589 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4590 case Promote: assert(0 && "Unreachable with 2 FP types!");
4591 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004592 if (Node->getConstantOperandVal(1) == 0) {
4593 // Input is legal? Do an FP_ROUND_INREG.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004594 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Node->getOperand(0),
Chris Lattner0bd48932008-01-17 07:00:52 +00004595 DAG.getValueType(VT));
4596 } else {
4597 // Just remove the truncate, it isn't affecting the value.
Scott Michelfdc40a02009-02-17 22:15:04 +00004598 Result = DAG.getNode(ISD::FP_ROUND, dl, NVT, Node->getOperand(0),
Chris Lattner0bd48932008-01-17 07:00:52 +00004599 Node->getOperand(1));
4600 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004601 break;
4602 }
4603 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004604 case ISD::SINT_TO_FP:
4605 case ISD::UINT_TO_FP:
4606 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4607 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004608 // No extra round required here.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004609 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004610 break;
4611
4612 case Promote:
4613 Result = PromoteOp(Node->getOperand(0));
4614 if (Node->getOpcode() == ISD::SINT_TO_FP)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004615 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004616 Result,
4617 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004618 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00004619 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004620 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004621 // No extra round required here.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004622 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004623 break;
4624 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004625 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00004626 Node->getOperand(0), dl);
Chris Lattner77e77a62005-01-21 06:05:23 +00004627 // Round if we cannot tolerate excess precision.
4628 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004629 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004630 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004631 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004632 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004633 break;
4634
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004635 case ISD::SIGN_EXTEND_INREG:
4636 Result = PromoteOp(Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004637 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004638 Node->getOperand(1));
4639 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004640 case ISD::FP_TO_SINT:
4641 case ISD::FP_TO_UINT:
4642 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4643 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004644 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004645 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004646 break;
4647 case Promote:
4648 // The input result is prerounded, so we don't have to do anything
4649 // special.
4650 Tmp1 = PromoteOp(Node->getOperand(0));
4651 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004652 }
Nate Begemand2558e32005-08-14 01:20:53 +00004653 // If we're promoting a UINT to a larger size, check to see if the new node
4654 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4655 // we can use that instead. This allows us to generate better code for
4656 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4657 // legal, such as PowerPC.
Scott Michelfdc40a02009-02-17 22:15:04 +00004658 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00004659 !TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NVT) &&
4660 (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NVT) ||
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004661 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Dale Johannesen8a782a22009-02-02 22:12:50 +00004662 Result = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Tmp1);
Nate Begemand2558e32005-08-14 01:20:53 +00004663 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00004664 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Nate Begemand2558e32005-08-14 01:20:53 +00004665 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004666 break;
4667
Chris Lattner2c8086f2005-04-02 05:00:07 +00004668 case ISD::FABS:
4669 case ISD::FNEG:
4670 Tmp1 = PromoteOp(Node->getOperand(0));
4671 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004672 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner2c8086f2005-04-02 05:00:07 +00004673 // NOTE: we do not have to do any extra rounding here for
4674 // NoExcessFPPrecision, because we know the input will have the appropriate
4675 // precision, and these operations don't modify precision at all.
4676 break;
4677
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004678 case ISD::FLOG:
4679 case ISD::FLOG2:
4680 case ISD::FLOG10:
4681 case ISD::FEXP:
4682 case ISD::FEXP2:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004683 case ISD::FSQRT:
4684 case ISD::FSIN:
4685 case ISD::FCOS:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00004686 case ISD::FTRUNC:
4687 case ISD::FFLOOR:
4688 case ISD::FCEIL:
4689 case ISD::FRINT:
4690 case ISD::FNEARBYINT:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004691 Tmp1 = PromoteOp(Node->getOperand(0));
4692 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004693 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004694 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004695 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004696 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004697 break;
4698
Evan Cheng9d24ac52008-09-09 23:35:53 +00004699 case ISD::FPOW:
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004700 case ISD::FPOWI: {
Evan Cheng9d24ac52008-09-09 23:35:53 +00004701 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004702 // directly as well, which may be better.
4703 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng9d24ac52008-09-09 23:35:53 +00004704 Tmp2 = Node->getOperand(1);
4705 if (Node->getOpcode() == ISD::FPOW)
4706 Tmp2 = PromoteOp(Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004707 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004708 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004709 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004710 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004711 DAG.getValueType(VT));
4712 break;
4713 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004714
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004715 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004716 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004717 Tmp2 = PromoteOp(Node->getOperand(2));
4718 Tmp3 = PromoteOp(Node->getOperand(3));
Scott Michelfdc40a02009-02-17 22:15:04 +00004719 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
4720 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004721 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004722 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004723 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004724 // Remember that we legalized the chain.
4725 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4726 break;
4727 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004728 case ISD::ATOMIC_LOAD_ADD:
4729 case ISD::ATOMIC_LOAD_SUB:
4730 case ISD::ATOMIC_LOAD_AND:
4731 case ISD::ATOMIC_LOAD_OR:
4732 case ISD::ATOMIC_LOAD_XOR:
4733 case ISD::ATOMIC_LOAD_NAND:
4734 case ISD::ATOMIC_LOAD_MIN:
4735 case ISD::ATOMIC_LOAD_MAX:
4736 case ISD::ATOMIC_LOAD_UMIN:
4737 case ISD::ATOMIC_LOAD_UMAX:
4738 case ISD::ATOMIC_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004739 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004740 Tmp2 = PromoteOp(Node->getOperand(2));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004741 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00004742 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004743 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004744 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004745 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004746 // Remember that we legalized the chain.
4747 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4748 break;
4749 }
4750
Chris Lattner03c85462005-01-15 05:21:40 +00004751 case ISD::AND:
4752 case ISD::OR:
4753 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004754 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004755 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004756 case ISD::MUL:
4757 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004758 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004759 // that too is okay if they are integer operations.
4760 Tmp1 = PromoteOp(Node->getOperand(0));
4761 Tmp2 = PromoteOp(Node->getOperand(1));
4762 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004763 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004764 break;
4765 case ISD::FADD:
4766 case ISD::FSUB:
4767 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004768 Tmp1 = PromoteOp(Node->getOperand(0));
4769 Tmp2 = PromoteOp(Node->getOperand(1));
4770 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004771 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00004772
Chris Lattner01b3d732005-09-28 22:28:18 +00004773 // Floating point operations will give excess precision that we may not be
4774 // able to tolerate. If we DO allow excess precision, just leave it,
4775 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004776 // FIXME: Why would we need to round FP ops more than integer ones?
4777 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004778 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004779 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004780 DAG.getValueType(VT));
Chris Lattner0f69b292005-01-15 06:18:18 +00004781 break;
4782
Chris Lattner8b6fa222005-01-15 22:16:26 +00004783 case ISD::SDIV:
4784 case ISD::SREM:
4785 // These operators require that their input be sign extended.
4786 Tmp1 = PromoteOp(Node->getOperand(0));
4787 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004788 if (NVT.isInteger()) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00004789 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Chris Lattner15e4b012005-07-10 00:07:11 +00004790 DAG.getValueType(VT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004791 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Chris Lattner15e4b012005-07-10 00:07:11 +00004792 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004793 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00004794 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004795
4796 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004797 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004798 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004799 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004800 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004801 case ISD::FDIV:
4802 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004803 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004804 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004805 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004806 case Expand: assert(0 && "not implemented");
4807 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4808 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004809 }
4810 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004811 case Expand: assert(0 && "not implemented");
4812 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4813 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004814 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00004815 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00004816
Chris Lattner01b3d732005-09-28 22:28:18 +00004817 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004818 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004819 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner01b3d732005-09-28 22:28:18 +00004820 DAG.getValueType(VT));
4821 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004822
4823 case ISD::UDIV:
4824 case ISD::UREM:
4825 // These operators require that their input be zero extended.
4826 Tmp1 = PromoteOp(Node->getOperand(0));
4827 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004828 assert(NVT.isInteger() && "Operators don't apply to FP!");
Dale Johannesen8a782a22009-02-02 22:12:50 +00004829 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4830 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
4831 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004832 break;
4833
4834 case ISD::SHL:
4835 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004836 Result = DAG.getNode(ISD::SHL, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004837 break;
4838 case ISD::SRA:
4839 // The input value must be properly sign extended.
4840 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004841 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Chris Lattner15e4b012005-07-10 00:07:11 +00004842 DAG.getValueType(VT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004843 Result = DAG.getNode(ISD::SRA, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004844 break;
4845 case ISD::SRL:
4846 // The input value must be properly zero extended.
4847 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004848 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4849 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004850 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004851
4852 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004853 Tmp1 = Node->getOperand(0); // Get the chain.
4854 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004855 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00004856 Tmp3 = DAG.getVAArg(VT, dl, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004857 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004858 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004859 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenc460ae92009-02-04 00:13:36 +00004860 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004861 // Increment the pointer, VAList, to the next vaarg
Scott Michelfdc40a02009-02-17 22:15:04 +00004862 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004863 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004864 TLI.getPointerTy()));
4865 // Store the incremented VAList to the legalized pointer
Dale Johannesen8a782a22009-02-02 22:12:50 +00004866 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004867 // Load the actual argument out of the pointer VAList
Dale Johannesen8a782a22009-02-02 22:12:50 +00004868 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004869 }
4870 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004871 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004872 break;
4873
Evan Cheng466685d2006-10-09 20:57:25 +00004874 case ISD::LOAD: {
4875 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004876 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4877 ? ISD::EXTLOAD : LD->getExtensionType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00004878 Result = DAG.getExtLoad(ExtType, dl, NVT,
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004879 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004880 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004881 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004882 LD->isVolatile(),
4883 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004884 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004885 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004886 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004887 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004888 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004889 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4890 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004891
Duncan Sands83ec4b62008-06-06 12:08:01 +00004892 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004893 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004894 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4895 // Ensure that the resulting node is at least the same size as the operands'
4896 // value types, because we cannot assume that TLI.getSetCCValueType() is
4897 // constant.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004898 Result = DAG.getNode(ISD::SELECT, dl, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004899 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004900 }
Nate Begeman9373a812005-08-10 20:51:12 +00004901 case ISD::SELECT_CC:
4902 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4903 Tmp3 = PromoteOp(Node->getOperand(3)); // False
Dale Johannesen8a782a22009-02-02 22:12:50 +00004904 Result = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004905 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004906 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004907 case ISD::BSWAP:
4908 Tmp1 = Node->getOperand(0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004909 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
4910 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4911 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004912 DAG.getConstant(NVT.getSizeInBits() -
4913 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004914 TLI.getShiftAmountTy()));
4915 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004916 case ISD::CTPOP:
4917 case ISD::CTTZ:
4918 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004919 // Zero extend the argument
Dale Johannesen8a782a22009-02-02 22:12:50 +00004920 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004921 // Perform the larger operation, then subtract if needed.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004922 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004923 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004924 case ISD::CTPOP:
4925 Result = Tmp1;
4926 break;
4927 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004928 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004929 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004930 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004931 ISD::SETEQ);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004932 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004933 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004934 break;
4935 case ISD::CTLZ:
4936 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00004937 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004938 DAG.getConstant(NVT.getSizeInBits() -
4939 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004940 break;
4941 }
4942 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004943 case ISD::EXTRACT_SUBVECTOR:
4944 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004945 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004946 case ISD::EXTRACT_VECTOR_ELT:
4947 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4948 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004949 }
4950
Gabor Greifba36cb52008-08-28 21:40:38 +00004951 assert(Result.getNode() && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004952
4953 // Make sure the result is itself legal.
4954 Result = LegalizeOp(Result);
Scott Michelfdc40a02009-02-17 22:15:04 +00004955
Chris Lattner456a93a2006-01-28 07:39:30 +00004956 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004957 AddPromotedOperand(Op, Result);
4958 return Result;
4959}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004960
Dan Gohman7f321562007-06-25 16:23:39 +00004961/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4962/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4963/// based on the vector type. The return type of this matches the element type
4964/// of the vector, which may not be legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00004965SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004966 // We know that operand #0 is the Vec vector. If the index is a constant
4967 // or if the invec is a supported hardware type, we can use it. Otherwise,
4968 // lower to a store then an indexed load.
Dan Gohman475871a2008-07-27 21:46:04 +00004969 SDValue Vec = Op.getOperand(0);
4970 SDValue Idx = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004971 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00004972
Duncan Sands83ec4b62008-06-06 12:08:01 +00004973 MVT TVT = Vec.getValueType();
4974 unsigned NumElems = TVT.getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00004975
Dan Gohman7f321562007-06-25 16:23:39 +00004976 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4977 default: assert(0 && "This action is not supported yet!");
4978 case TargetLowering::Custom: {
4979 Vec = LegalizeOp(Vec);
4980 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00004981 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004982 if (Tmp3.getNode())
Dan Gohman7f321562007-06-25 16:23:39 +00004983 return Tmp3;
4984 break;
4985 }
4986 case TargetLowering::Legal:
4987 if (isTypeLegal(TVT)) {
4988 Vec = LegalizeOp(Vec);
4989 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00004990 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00004991 }
4992 break;
Mon P Wang0c397192008-10-30 08:01:45 +00004993 case TargetLowering::Promote:
4994 assert(TVT.isVector() && "not vector type");
4995 // fall thru to expand since vectors are by default are promote
Dan Gohman7f321562007-06-25 16:23:39 +00004996 case TargetLowering::Expand:
4997 break;
4998 }
4999
5000 if (NumElems == 1) {
Chris Lattner15972212006-03-31 17:55:51 +00005001 // This must be an access of the only element. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00005002 Op = ScalarizeVectorOp(Vec);
5003 } else if (!TLI.isTypeLegal(TVT) && isa<ConstantSDNode>(Idx)) {
Nate Begeman55030dc2008-01-29 02:24:00 +00005004 unsigned NumLoElts = 1 << Log2_32(NumElems-1);
Dan Gohman7f321562007-06-25 16:23:39 +00005005 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005006 SDValue Lo, Hi;
Chris Lattner15972212006-03-31 17:55:51 +00005007 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005008 if (CIdx->getZExtValue() < NumLoElts) {
Chris Lattner15972212006-03-31 17:55:51 +00005009 Vec = Lo;
5010 } else {
5011 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005012 Idx = DAG.getConstant(CIdx->getZExtValue() - NumLoElts,
Dan Gohman7f321562007-06-25 16:23:39 +00005013 Idx.getValueType());
Chris Lattner15972212006-03-31 17:55:51 +00005014 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005015
Chris Lattner15972212006-03-31 17:55:51 +00005016 // It's now an extract from the appropriate high or low part. Recurse.
5017 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00005018 Op = ExpandEXTRACT_VECTOR_ELT(Op);
Chris Lattner15972212006-03-31 17:55:51 +00005019 } else {
Dan Gohman7f321562007-06-25 16:23:39 +00005020 // Store the value to a temporary stack slot, then LOAD the scalar
5021 // element back out.
Dan Gohman475871a2008-07-27 21:46:04 +00005022 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
Dale Johannesenbb5da912009-02-02 20:41:04 +00005023 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, NULL, 0);
Dan Gohman7f321562007-06-25 16:23:39 +00005024
5025 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005026 unsigned EltSize = Op.getValueType().getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +00005027 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
Dan Gohman7f321562007-06-25 16:23:39 +00005028 DAG.getConstant(EltSize, Idx.getValueType()));
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005029
Duncan Sands8e4eb092008-06-08 20:54:56 +00005030 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
Dale Johannesenbb5da912009-02-02 20:41:04 +00005031 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005032 else
Dale Johannesenbb5da912009-02-02 20:41:04 +00005033 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
Bill Wendling90bfc2d2007-10-18 08:32:37 +00005034
Dale Johannesenbb5da912009-02-02 20:41:04 +00005035 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
Dan Gohman7f321562007-06-25 16:23:39 +00005036
Dale Johannesenbb5da912009-02-02 20:41:04 +00005037 Op = DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, NULL, 0);
Chris Lattner15972212006-03-31 17:55:51 +00005038 }
Dan Gohman7f321562007-06-25 16:23:39 +00005039 return Op;
Chris Lattner15972212006-03-31 17:55:51 +00005040}
5041
Dan Gohman7f321562007-06-25 16:23:39 +00005042/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00005043/// we assume the operation can be split if it is not already legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005044SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohman65956352007-06-13 15:12:02 +00005045 // We know that operand #0 is the Vec vector. For now we assume the index
5046 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman475871a2008-07-27 21:46:04 +00005047 SDValue Vec = Op.getOperand(0);
5048 SDValue Idx = LegalizeOp(Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005049
Duncan Sands83ec4b62008-06-06 12:08:01 +00005050 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00005051
Duncan Sands83ec4b62008-06-06 12:08:01 +00005052 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00005053 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00005054 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00005055 }
5056
5057 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005058 SDValue Lo, Hi;
Dan Gohman65956352007-06-13 15:12:02 +00005059 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005060 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohman65956352007-06-13 15:12:02 +00005061 Vec = Lo;
5062 } else {
5063 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005064 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
5065 Idx.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00005066 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005067
Dan Gohman65956352007-06-13 15:12:02 +00005068 // It's now an extract from the appropriate high or low part. Recurse.
5069 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00005070 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00005071}
5072
Nate Begeman750ac1b2006-02-01 07:19:44 +00005073/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
5074/// with condition CC on the current target. This usually involves legalizing
5075/// or promoting the arguments. In the case where LHS and RHS must be expanded,
5076/// there may be no choice but to create a new SetCC node to represent the
5077/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman475871a2008-07-27 21:46:04 +00005078/// LHS, and the SDValue returned in RHS has a nil SDNode value.
5079void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
5080 SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005081 SDValue &CC,
5082 DebugLoc dl) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005083 SDValue Tmp1, Tmp2, Tmp3, Result;
5084
Nate Begeman750ac1b2006-02-01 07:19:44 +00005085 switch (getTypeAction(LHS.getValueType())) {
5086 case Legal:
5087 Tmp1 = LegalizeOp(LHS); // LHS
5088 Tmp2 = LegalizeOp(RHS); // RHS
5089 break;
5090 case Promote:
5091 Tmp1 = PromoteOp(LHS); // LHS
5092 Tmp2 = PromoteOp(RHS); // RHS
5093
5094 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005095 if (LHS.getValueType().isInteger()) {
5096 MVT VT = LHS.getValueType();
5097 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005098
5099 // Otherwise, we have to insert explicit sign or zero extends. Note
5100 // that we could insert sign extends for ALL conditions, but zero extend
5101 // is cheaper on many machines (an AND instead of two shifts), so prefer
5102 // it.
5103 switch (cast<CondCodeSDNode>(CC)->get()) {
5104 default: assert(0 && "Unknown integer comparison!");
5105 case ISD::SETEQ:
5106 case ISD::SETNE:
5107 case ISD::SETUGE:
5108 case ISD::SETUGT:
5109 case ISD::SETULE:
5110 case ISD::SETULT:
5111 // ALL of these operations will work if we either sign or zero extend
5112 // the operands (including the unsigned comparisons!). Zero extend is
5113 // usually a simpler/cheaper operation, so prefer it.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005114 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
5115 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005116 break;
5117 case ISD::SETGE:
5118 case ISD::SETGT:
5119 case ISD::SETLT:
5120 case ISD::SETLE:
Dale Johannesenbb5da912009-02-02 20:41:04 +00005121 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005122 DAG.getValueType(VT));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005123 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005124 DAG.getValueType(VT));
Evan Chengefa53392008-10-13 18:46:18 +00005125 Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes.
5126 Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes.
Nate Begeman750ac1b2006-02-01 07:19:44 +00005127 break;
5128 }
5129 }
5130 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005131 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005132 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00005133 if (VT == MVT::f32 || VT == MVT::f64) {
5134 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00005135 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00005136 switch (cast<CondCodeSDNode>(CC)->get()) {
5137 case ISD::SETEQ:
5138 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00005139 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005140 break;
5141 case ISD::SETNE:
5142 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00005143 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005144 break;
5145 case ISD::SETGE:
5146 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00005147 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005148 break;
5149 case ISD::SETLT:
5150 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00005151 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005152 break;
5153 case ISD::SETLE:
5154 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00005155 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005156 break;
5157 case ISD::SETGT:
5158 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00005159 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005160 break;
5161 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00005162 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5163 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005164 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00005165 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005166 break;
5167 default:
Evan Cheng56966222007-01-12 02:11:51 +00005168 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005169 switch (cast<CondCodeSDNode>(CC)->get()) {
5170 case ISD::SETONE:
5171 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00005172 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005173 // Fallthrough
5174 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00005175 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005176 break;
5177 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00005178 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005179 break;
5180 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00005181 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005182 break;
5183 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00005184 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005185 break;
Evan Cheng56966222007-01-12 02:11:51 +00005186 case ISD::SETUEQ:
5187 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00005188 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005189 default: assert(0 && "Unsupported FP setcc!");
5190 }
5191 }
Duncan Sandsf9516202008-06-30 10:19:09 +00005192
Dan Gohman475871a2008-07-27 21:46:04 +00005193 SDValue Dummy;
5194 SDValue Ops[2] = { LHS, RHS };
Dale Johannesenbb5da912009-02-02 20:41:04 +00005195 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005196 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00005197 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00005198 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00005199 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Dale Johannesenbb5da912009-02-02 20:41:04 +00005200 Tmp1 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005201 TLI.getSetCCResultType(Tmp1.getValueType()),
5202 Tmp1, Tmp2, CC);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005203 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005204 false /*sign irrelevant*/, Dummy);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005205 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005206 TLI.getSetCCResultType(LHS.getValueType()), LHS,
5207 Tmp2, DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005208 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman475871a2008-07-27 21:46:04 +00005209 Tmp2 = SDValue();
Evan Cheng2b49c502006-12-15 02:59:56 +00005210 }
Evan Cheng21cacc42008-07-07 07:18:09 +00005211 LHS = LegalizeOp(Tmp1);
Evan Cheng2b49c502006-12-15 02:59:56 +00005212 RHS = Tmp2;
5213 return;
5214 }
5215
Dan Gohman475871a2008-07-27 21:46:04 +00005216 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Nate Begeman750ac1b2006-02-01 07:19:44 +00005217 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00005218 ExpandOp(RHS, RHSLo, RHSHi);
5219 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5220
5221 if (VT==MVT::ppcf128) {
5222 // FIXME: This generated code sucks. We want to generate
Dale Johannesene2f20832008-09-12 00:30:56 +00005223 // FCMPU crN, hi1, hi2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005224 // BNE crN, L:
Dale Johannesene2f20832008-09-12 00:30:56 +00005225 // FCMPU crN, lo1, lo2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005226 // The following can be improved, but not that much.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005227 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005228 LHSHi, RHSHi, ISD::SETOEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005229 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005230 LHSLo, RHSLo, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005231 Tmp3 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5232 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005233 LHSHi, RHSHi, ISD::SETUNE);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005234 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005235 LHSHi, RHSHi, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005236 Tmp1 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5237 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman475871a2008-07-27 21:46:04 +00005238 Tmp2 = SDValue();
Dale Johannesen638ccd52007-10-06 01:24:11 +00005239 break;
5240 }
5241
5242 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005243 case ISD::SETEQ:
5244 case ISD::SETNE:
5245 if (RHSLo == RHSHi)
5246 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
5247 if (RHSCST->isAllOnesValue()) {
5248 // Comparison to -1.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005249 Tmp1 = DAG.getNode(ISD::AND, dl,LHSLo.getValueType(), LHSLo, LHSHi);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005250 Tmp2 = RHSLo;
5251 break;
5252 }
5253
Dale Johannesenbb5da912009-02-02 20:41:04 +00005254 Tmp1 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo);
5255 Tmp2 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi);
5256 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005257 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
5258 break;
5259 default:
5260 // If this is a comparison of the sign bit, just look at the top part.
5261 // X > -1, x < 0
5262 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
Scott Michelfdc40a02009-02-17 22:15:04 +00005263 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00005264 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00005265 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
5266 CST->isAllOnesValue())) { // X > -1
5267 Tmp1 = LHSHi;
5268 Tmp2 = RHSHi;
5269 break;
5270 }
5271
5272 // FIXME: This generated code sucks.
5273 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00005274 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005275 default: assert(0 && "Unknown integer setcc!");
5276 case ISD::SETLT:
5277 case ISD::SETULT: LowCC = ISD::SETULT; break;
5278 case ISD::SETGT:
5279 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
5280 case ISD::SETLE:
5281 case ISD::SETULE: LowCC = ISD::SETULE; break;
5282 case ISD::SETGE:
5283 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
5284 }
5285
5286 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
5287 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
5288 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
5289
5290 // NOTE: on targets without efficient SELECT of bools, we can always use
5291 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00005292 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Duncan Sands5480c042009-01-01 15:52:00 +00005293 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005294 LHSLo, RHSLo, LowCC, false, DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005295 if (!Tmp1.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005296 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005297 LHSLo, RHSLo, LowCC);
5298 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005299 LHSHi, RHSHi, CCCode, false, DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005300 if (!Tmp2.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005301 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005302 TLI.getSetCCResultType(LHSHi.getValueType()),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005303 LHSHi, RHSHi, CC);
Scott Michelfdc40a02009-02-17 22:15:04 +00005304
Gabor Greifba36cb52008-08-28 21:40:38 +00005305 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
5306 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman002e5d02008-03-13 22:13:53 +00005307 if ((Tmp1C && Tmp1C->isNullValue()) ||
5308 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00005309 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
5310 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00005311 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00005312 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
5313 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
5314 // low part is known false, returns high part.
5315 // For LE / GE, if high part is known false, ignore the low part.
5316 // For LT / GT, if high part is known true, ignore the low part.
5317 Tmp1 = Tmp2;
Dan Gohman475871a2008-07-27 21:46:04 +00005318 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005319 } else {
Duncan Sands5480c042009-01-01 15:52:00 +00005320 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
5321 LHSHi, RHSHi, ISD::SETEQ, false,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005322 DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005323 if (!Result.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005324 Result=DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005325 LHSHi, RHSHi, ISD::SETEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005326 Result = LegalizeOp(DAG.getNode(ISD::SELECT, dl, Tmp1.getValueType(),
Evan Cheng2e677812007-02-08 22:16:19 +00005327 Result, Tmp1, Tmp2));
5328 Tmp1 = Result;
Dan Gohman475871a2008-07-27 21:46:04 +00005329 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005330 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005331 }
5332 }
Evan Cheng2b49c502006-12-15 02:59:56 +00005333 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005334 LHS = Tmp1;
5335 RHS = Tmp2;
5336}
5337
Evan Cheng7f042682008-10-15 02:05:31 +00005338/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
5339/// condition code CC on the current target. This routine assumes LHS and rHS
5340/// have already been legalized by LegalizeSetCCOperands. It expands SETCC with
5341/// illegal condition code into AND / OR of multiple SETCC values.
5342void SelectionDAGLegalize::LegalizeSetCCCondCode(MVT VT,
5343 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005344 SDValue &CC,
5345 DebugLoc dl) {
Evan Cheng7f042682008-10-15 02:05:31 +00005346 MVT OpVT = LHS.getValueType();
5347 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5348 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
5349 default: assert(0 && "Unknown condition code action!");
5350 case TargetLowering::Legal:
5351 // Nothing to do.
5352 break;
5353 case TargetLowering::Expand: {
5354 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
5355 unsigned Opc = 0;
5356 switch (CCCode) {
5357 default: assert(0 && "Don't know how to expand this condition!"); abort();
Dan Gohmane7d238e2008-10-21 03:12:54 +00005358 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
5359 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5360 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5361 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5362 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5363 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5364 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5365 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5366 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5367 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5368 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5369 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng7f042682008-10-15 02:05:31 +00005370 // FIXME: Implement more expansions.
5371 }
5372
Dale Johannesenbb5da912009-02-02 20:41:04 +00005373 SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
5374 SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
5375 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00005376 RHS = SDValue();
5377 CC = SDValue();
5378 break;
5379 }
5380 }
5381}
5382
Chris Lattner1401d152008-01-16 07:45:30 +00005383/// EmitStackConvert - Emit a store/load combination to the stack. This stores
5384/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
5385/// a load from the stack slot to DestVT, extending it if needed.
5386/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005387SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
5388 MVT SlotVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005389 MVT DestVT,
5390 DebugLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00005391 // Create the stack frame object.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005392 unsigned SrcAlign =
5393 TLI.getTargetData()->getPrefTypeAlignment(SrcOp.getValueType().
5394 getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00005395 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00005396
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005397 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005398 int SPFI = StackPtrFI->getIndex();
Dan Gohman15b38302009-01-29 21:02:43 +00005399 const Value *SV = PseudoSourceValue::getFixedStack(SPFI);
5400
Duncan Sands83ec4b62008-06-06 12:08:01 +00005401 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
5402 unsigned SlotSize = SlotVT.getSizeInBits();
5403 unsigned DestSize = DestVT.getSizeInBits();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005404 unsigned DestAlign =
5405 TLI.getTargetData()->getPrefTypeAlignment(DestVT.getTypeForMVT());
Scott Michelfdc40a02009-02-17 22:15:04 +00005406
Chris Lattner1401d152008-01-16 07:45:30 +00005407 // Emit a store to the stack slot. Use a truncstore if the input value is
5408 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00005409 SDValue Store;
Scott Michelfdc40a02009-02-17 22:15:04 +00005410
Chris Lattner1401d152008-01-16 07:45:30 +00005411 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005412 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005413 SV, 0, SlotVT, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005414 else {
5415 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00005416 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005417 SV, 0, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005418 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005419
Chris Lattner35481892005-12-23 00:16:34 +00005420 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00005421 if (SlotSize == DestSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005422 return DAG.getLoad(DestVT, dl, Store, FIPtr, SV, 0, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00005423
Chris Lattner1401d152008-01-16 07:45:30 +00005424 assert(SlotSize < DestSize && "Unknown extension!");
Dale Johannesen8a782a22009-02-02 22:12:50 +00005425 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr, SV, 0, SlotVT,
Mon P Wang364d73d2008-07-05 20:40:31 +00005426 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00005427}
5428
Dan Gohman475871a2008-07-27 21:46:04 +00005429SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005430 DebugLoc dl = Node->getDebugLoc();
Chris Lattner4352cc92006-04-04 17:23:26 +00005431 // Create a vector sized/aligned stack slot, store the value to element #0,
5432 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00005433 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00005434
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005435 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005436 int SPFI = StackPtrFI->getIndex();
5437
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00005438 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
5439 StackPtr,
5440 PseudoSourceValue::getFixedStack(SPFI), 0,
5441 Node->getValueType(0).getVectorElementType());
Dale Johannesen8a782a22009-02-02 22:12:50 +00005442 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00005443 PseudoSourceValue::getFixedStack(SPFI), 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00005444}
5445
5446
Chris Lattnerce872152006-03-19 06:31:19 +00005447/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00005448/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00005449SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005450 unsigned NumElems = Node->getNumOperands();
5451 SDValue SplatValue = Node->getOperand(0);
5452 DebugLoc dl = Node->getDebugLoc();
5453 MVT VT = Node->getValueType(0);
5454 MVT OpVT = SplatValue.getValueType();
5455 MVT EltVT = VT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005456
5457 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00005458 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattnerce872152006-03-19 06:31:19 +00005459 bool isOnlyLowElement = true;
Scott Michelfdc40a02009-02-17 22:15:04 +00005460
Dan Gohman475871a2008-07-27 21:46:04 +00005461 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005462 // and use a bitmask instead of a list of elements.
Nate Begeman9008ca62009-04-27 18:41:29 +00005463 // FIXME: this doesn't treat <0, u, 0, u> for example, as a splat.
Dan Gohman475871a2008-07-27 21:46:04 +00005464 std::map<SDValue, std::vector<unsigned> > Values;
Evan Cheng033e6812006-03-24 01:17:21 +00005465 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005466 bool isConstant = true;
5467 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
5468 SplatValue.getOpcode() != ISD::UNDEF)
5469 isConstant = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005470
Evan Cheng033e6812006-03-24 01:17:21 +00005471 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005472 SDValue V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00005473 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00005474 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00005475 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00005476 if (SplatValue != V)
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005477 SplatValue = SDValue(0, 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005478
5479 // If this isn't a constant element or an undef, we can't use a constant
5480 // pool load.
5481 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
5482 V.getOpcode() != ISD::UNDEF)
5483 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00005484 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005485
Chris Lattnerce872152006-03-19 06:31:19 +00005486 if (isOnlyLowElement) {
5487 // If the low element is an undef too, then this whole things is an undef.
5488 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005489 return DAG.getUNDEF(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005490 // Otherwise, turn this into a scalar_to_vector node.
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005491 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Chris Lattnerce872152006-03-19 06:31:19 +00005492 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005493
Chris Lattner2eb86532006-03-24 07:29:17 +00005494 // If all elements are constants, create a load from the constant pool.
5495 if (isConstant) {
Chris Lattner2eb86532006-03-24 07:29:17 +00005496 std::vector<Constant*> CV;
5497 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005498 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00005499 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005500 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00005501 } else if (ConstantSDNode *V =
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005502 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005503 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00005504 } else {
5505 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005506 const Type *OpNTy = OpVT.getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00005507 CV.push_back(UndefValue::get(OpNTy));
5508 }
5509 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00005510 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00005511 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00005512 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00005513 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005514 PseudoSourceValue::getConstantPool(), 0,
5515 false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00005516 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005517
Gabor Greifba36cb52008-08-28 21:40:38 +00005518 if (SplatValue.getNode()) { // Splat of one value?
Chris Lattner87100e02006-03-20 01:52:29 +00005519 // Build the shuffle constant vector: <0, 0, 0, 0>
Nate Begeman9008ca62009-04-27 18:41:29 +00005520 SmallVector<int, 8> ZeroVec(NumElems, 0);
Chris Lattner87100e02006-03-20 01:52:29 +00005521
5522 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Nate Begeman9008ca62009-04-27 18:41:29 +00005523 if (TLI.isShuffleMaskLegal(ZeroVec, Node->getValueType(0))) {
Chris Lattner87100e02006-03-20 01:52:29 +00005524 // Get the splatted value into the low element of a vector register.
Scott Michelfdc40a02009-02-17 22:15:04 +00005525 SDValue LowValVec =
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005526 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, SplatValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00005527
Chris Lattner87100e02006-03-20 01:52:29 +00005528 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Nate Begeman9008ca62009-04-27 18:41:29 +00005529 return DAG.getVectorShuffle(VT, dl, LowValVec, DAG.getUNDEF(VT),
5530 &ZeroVec[0]);
Chris Lattner87100e02006-03-20 01:52:29 +00005531 }
5532 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005533
Evan Cheng033e6812006-03-24 01:17:21 +00005534 // If there are only two unique elements, we may be able to turn this into a
5535 // vector shuffle.
5536 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005537 // Get the two values in deterministic order.
Dan Gohman475871a2008-07-27 21:46:04 +00005538 SDValue Val1 = Node->getOperand(1);
5539 SDValue Val2;
5540 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005541 if (MI->first != Val1)
5542 Val2 = MI->first;
5543 else
5544 Val2 = (++MI)->first;
Scott Michelfdc40a02009-02-17 22:15:04 +00005545
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005546 // If Val1 is an undef, make sure it ends up as Val2, to ensure that our
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005547 // vector shuffle has the undef vector on the RHS.
5548 if (Val1.getOpcode() == ISD::UNDEF)
5549 std::swap(Val1, Val2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005550
Evan Cheng033e6812006-03-24 01:17:21 +00005551 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Nate Begeman9008ca62009-04-27 18:41:29 +00005552 SmallVector<int, 8> ShuffleMask(NumElems, -1);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005553
5554 // Set elements of the shuffle mask for Val1.
5555 std::vector<unsigned> &Val1Elts = Values[Val1];
5556 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005557 ShuffleMask[Val1Elts[i]] = 0;
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005558
5559 // Set elements of the shuffle mask for Val2.
5560 std::vector<unsigned> &Val2Elts = Values[Val2];
5561 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5562 if (Val2.getOpcode() != ISD::UNDEF)
Nate Begeman9008ca62009-04-27 18:41:29 +00005563 ShuffleMask[Val2Elts[i]] = NumElems;
Evan Cheng033e6812006-03-24 01:17:21 +00005564
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005565 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005566 if (TLI.isOperationLegalOrCustom(ISD::SCALAR_TO_VECTOR, VT) &&
Nate Begeman9008ca62009-04-27 18:41:29 +00005567 TLI.isShuffleMaskLegal(ShuffleMask, VT)) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005568 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Val1);
5569 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Val2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005570 return DAG.getVectorShuffle(VT, dl, Val1, Val2, &ShuffleMask[0]);
Evan Cheng033e6812006-03-24 01:17:21 +00005571 }
5572 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005573
Chris Lattnerce872152006-03-19 06:31:19 +00005574 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5575 // aligned object on the stack, store each element into it, then load
5576 // the result as a vector.
Chris Lattnerce872152006-03-19 06:31:19 +00005577 // Create the stack frame object.
Dan Gohman475871a2008-07-27 21:46:04 +00005578 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Dan Gohman15b38302009-01-29 21:02:43 +00005579 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
5580 const Value *SV = PseudoSourceValue::getFixedStack(FI);
5581
Chris Lattnerce872152006-03-19 06:31:19 +00005582 // Emit a store of each element to the stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00005583 SmallVector<SDValue, 8> Stores;
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005584 unsigned TypeByteSize = OpVT.getSizeInBits() / 8;
Chris Lattnerce872152006-03-19 06:31:19 +00005585 // Store (in the right endianness) the elements to memory.
5586 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5587 // Ignore undef elements.
5588 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00005589
Chris Lattner841c8822006-03-22 01:46:54 +00005590 unsigned Offset = TypeByteSize*i;
Scott Michelfdc40a02009-02-17 22:15:04 +00005591
Dan Gohman475871a2008-07-27 21:46:04 +00005592 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Dale Johannesen8a782a22009-02-02 22:12:50 +00005593 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005594
Dale Johannesen8a782a22009-02-02 22:12:50 +00005595 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(i),
5596 Idx, SV, Offset));
Chris Lattnerce872152006-03-19 06:31:19 +00005597 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005598
Dan Gohman475871a2008-07-27 21:46:04 +00005599 SDValue StoreChain;
Chris Lattnerce872152006-03-19 06:31:19 +00005600 if (!Stores.empty()) // Not all undef elements?
Dale Johannesen8a782a22009-02-02 22:12:50 +00005601 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005602 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005603 else
5604 StoreChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005605
Chris Lattnerce872152006-03-19 06:31:19 +00005606 // Result is a load from the stack slot.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005607 return DAG.getLoad(VT, dl, StoreChain, FIPtr, SV, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005608}
5609
Chris Lattner5b359c62005-04-02 04:00:59 +00005610void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman475871a2008-07-27 21:46:04 +00005611 SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005612 SDValue &Lo, SDValue &Hi,
5613 DebugLoc dl) {
Chris Lattner5b359c62005-04-02 04:00:59 +00005614 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00005615 SDValue LHSL, LHSH;
Chris Lattner5b359c62005-04-02 04:00:59 +00005616 ExpandOp(Op, LHSL, LHSH);
5617
Dan Gohman475871a2008-07-27 21:46:04 +00005618 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005619 MVT VT = LHSL.getValueType();
Dan Gohmanfc166572009-04-09 23:54:40 +00005620 Lo = DAG.getNode(NodeOp, dl, DAG.getVTList(VT, VT), Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005621 Hi = Lo.getValue(1);
5622}
5623
5624
Chris Lattnere34b3962005-01-19 04:19:40 +00005625/// ExpandShift - Try to find a clever way to expand this shift operation out to
5626/// smaller elements. If we can't find a way that is more efficient than a
5627/// libcall on this target, return false. Otherwise, return true with the
5628/// low-parts expanded into Lo and Hi.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005629bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005630 SDValue &Lo, SDValue &Hi,
5631 DebugLoc dl) {
Chris Lattnere34b3962005-01-19 04:19:40 +00005632 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5633 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005634
Duncan Sands83ec4b62008-06-06 12:08:01 +00005635 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman475871a2008-07-27 21:46:04 +00005636 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005637 MVT ShTy = ShAmt.getValueType();
5638 unsigned ShBits = ShTy.getSizeInBits();
5639 unsigned VTBits = Op.getValueType().getSizeInBits();
5640 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005641
Chris Lattner7a3c8552007-10-14 20:35:12 +00005642 // Handle the case when Amt is an immediate.
Gabor Greifba36cb52008-08-28 21:40:38 +00005643 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005644 unsigned Cst = CN->getZExtValue();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005645 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005646 SDValue InL, InH;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005647 ExpandOp(Op, InL, InH);
5648 switch(Opc) {
5649 case ISD::SHL:
5650 if (Cst > VTBits) {
5651 Lo = DAG.getConstant(0, NVT);
5652 Hi = DAG.getConstant(0, NVT);
5653 } else if (Cst > NVTBits) {
5654 Lo = DAG.getConstant(0, NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00005655 Hi = DAG.getNode(ISD::SHL, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005656 NVT, InL, DAG.getConstant(Cst-NVTBits, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005657 } else if (Cst == NVTBits) {
5658 Lo = DAG.getConstant(0, NVT);
5659 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005660 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005661 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, DAG.getConstant(Cst, ShTy));
5662 Hi = DAG.getNode(ISD::OR, dl, NVT,
5663 DAG.getNode(ISD::SHL, dl, NVT, InH, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005664 DAG.getNode(ISD::SRL, dl, NVT, InL,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005665 DAG.getConstant(NVTBits-Cst, ShTy)));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005666 }
5667 return true;
5668 case ISD::SRL:
5669 if (Cst > VTBits) {
5670 Lo = DAG.getConstant(0, NVT);
5671 Hi = DAG.getConstant(0, NVT);
5672 } else if (Cst > NVTBits) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005673 Lo = DAG.getNode(ISD::SRL, dl, NVT,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005674 InH, DAG.getConstant(Cst-NVTBits, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005675 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005676 } else if (Cst == NVTBits) {
5677 Lo = InH;
5678 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005679 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005680 Lo = DAG.getNode(ISD::OR, dl, NVT,
5681 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005682 DAG.getNode(ISD::SHL, dl, NVT, InH,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005683 DAG.getConstant(NVTBits-Cst, ShTy)));
5684 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005685 }
5686 return true;
5687 case ISD::SRA:
5688 if (Cst > VTBits) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005689 Hi = Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005690 DAG.getConstant(NVTBits-1, ShTy));
5691 } else if (Cst > NVTBits) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005692 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005693 DAG.getConstant(Cst-NVTBits, ShTy));
Dale Johannesen8a782a22009-02-02 22:12:50 +00005694 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005695 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005696 } else if (Cst == NVTBits) {
5697 Lo = InH;
Dale Johannesen8a782a22009-02-02 22:12:50 +00005698 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005699 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005700 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005701 Lo = DAG.getNode(ISD::OR, dl, NVT,
5702 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005703 DAG.getNode(ISD::SHL, dl,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005704 NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5705 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005706 }
5707 return true;
5708 }
5709 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005710
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005711 // Okay, the shift amount isn't constant. However, if we can tell that it is
5712 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005713 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5714 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005715 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00005716
Dan Gohman9e255b72008-02-22 01:12:31 +00005717 // If we know that if any of the high bits of the shift amount are one, then
5718 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005719 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005720 // Mask out the high bit, which we know is set.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005721 Amt = DAG.getNode(ISD::AND, dl, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005722 DAG.getConstant(~Mask, Amt.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00005723
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005724 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005725 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005726 ExpandOp(Op, InL, InH);
5727 switch(Opc) {
5728 case ISD::SHL:
5729 Lo = DAG.getConstant(0, NVT); // Low part is zero.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005730 Hi = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); // High part from Lo part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005731 return true;
5732 case ISD::SRL:
5733 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005734 Lo = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt); // Lo part from Hi part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005735 return true;
5736 case ISD::SRA:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005737 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, // Sign extend high part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005738 DAG.getConstant(NVTBits-1, Amt.getValueType()));
Dale Johannesen8a782a22009-02-02 22:12:50 +00005739 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt); // Lo part from Hi part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005740 return true;
5741 }
5742 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005743
Dan Gohman9e255b72008-02-22 01:12:31 +00005744 // If we know that the high bits of the shift amount are all zero, then we can
5745 // do this as a couple of simple shifts.
5746 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005747 // Compute 32-amt.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005748 SDValue Amt2 = DAG.getNode(ISD::SUB, dl, Amt.getValueType(),
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005749 DAG.getConstant(NVTBits, Amt.getValueType()),
5750 Amt);
Scott Michelfdc40a02009-02-17 22:15:04 +00005751
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005752 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005753 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005754 ExpandOp(Op, InL, InH);
5755 switch(Opc) {
5756 case ISD::SHL:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005757 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt);
5758 Hi = DAG.getNode(ISD::OR, dl, NVT,
5759 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt),
5760 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005761 return true;
5762 case ISD::SRL:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005763 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt);
5764 Lo = DAG.getNode(ISD::OR, dl, NVT,
5765 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5766 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005767 return true;
5768 case ISD::SRA:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005769 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt);
5770 Lo = DAG.getNode(ISD::OR, dl, NVT,
5771 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5772 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005773 return true;
5774 }
5775 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005776
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005777 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005778}
Chris Lattner77e77a62005-01-21 06:05:23 +00005779
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005780
Chris Lattner77e77a62005-01-21 06:05:23 +00005781// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5782// does not fit into a register, return the lo part and set the hi part to the
5783// by-reg argument. If it does fit into a single register, return the result
5784// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00005785SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5786 bool isSigned, SDValue &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005787 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
Scott Michelfdc40a02009-02-17 22:15:04 +00005788 // The input chain to this libcall is the entry node of the function.
Chris Lattner6831a812006-02-13 09:18:02 +00005789 // Legalizing the call will automatically add the previous call to the
5790 // dependence.
Dan Gohman475871a2008-07-27 21:46:04 +00005791 SDValue InChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005792
Chris Lattner77e77a62005-01-21 06:05:23 +00005793 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005794 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005795 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005796 MVT ArgVT = Node->getOperand(i).getValueType();
5797 const Type *ArgTy = ArgVT.getTypeForMVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00005798 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005799 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005800 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005801 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005802 }
Bill Wendling056292f2008-09-16 21:48:12 +00005803 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00005804 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005805
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005806 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005807 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005808 std::pair<SDValue, SDValue> CallInfo =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005809 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005810 CallingConv::C, false, Callee, Args, DAG,
5811 Node->getDebugLoc());
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005812
Chris Lattner6831a812006-02-13 09:18:02 +00005813 // Legalize the call sequence, starting with the chain. This will advance
5814 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5815 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5816 LegalizeOp(CallInfo.second);
Dan Gohman475871a2008-07-27 21:46:04 +00005817 SDValue Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005818 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005819 default: assert(0 && "Unknown thing");
5820 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005821 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005822 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005823 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005824 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005825 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005826 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005827 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005828}
5829
Dan Gohman7f8613e2008-08-14 20:04:46 +00005830/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5831///
5832SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005833LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op,
5834 DebugLoc dl) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00005835 bool isCustom = false;
5836 SDValue Tmp1;
5837 switch (getTypeAction(Op.getValueType())) {
5838 case Legal:
5839 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5840 Op.getValueType())) {
5841 default: assert(0 && "Unknown operation action!");
5842 case TargetLowering::Custom:
5843 isCustom = true;
5844 // FALLTHROUGH
5845 case TargetLowering::Legal:
5846 Tmp1 = LegalizeOp(Op);
Gabor Greifba36cb52008-08-28 21:40:38 +00005847 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005848 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5849 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005850 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005851 DestTy, Tmp1);
5852 if (isCustom) {
5853 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005854 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005855 }
5856 break;
5857 case TargetLowering::Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005858 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005859 break;
5860 case TargetLowering::Promote:
Dale Johannesenaf435272009-02-02 19:03:57 +00005861 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005862 break;
5863 }
5864 break;
5865 case Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005866 Result = ExpandIntToFP(isSigned, DestTy, Op, dl) ;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005867 break;
5868 case Promote:
5869 Tmp1 = PromoteOp(Op);
5870 if (isSigned) {
Dale Johannesenaf435272009-02-02 19:03:57 +00005871 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp1.getValueType(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005872 Tmp1, DAG.getValueType(Op.getValueType()));
Dan Gohman7f8613e2008-08-14 20:04:46 +00005873 } else {
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005874 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, Op.getValueType());
Dan Gohman7f8613e2008-08-14 20:04:46 +00005875 }
Gabor Greifba36cb52008-08-28 21:40:38 +00005876 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005877 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5878 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005879 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005880 DestTy, Tmp1);
5881 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5882 break;
5883 }
5884 return Result;
5885}
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005886
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005887/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5888///
Dan Gohman475871a2008-07-27 21:46:04 +00005889SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005890ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005891 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005892 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005893
Dan Gohman7f8613e2008-08-14 20:04:46 +00005894 // Expand unsupported int-to-fp vector casts by unrolling them.
5895 if (DestTy.isVector()) {
5896 if (!ExpandSource)
5897 return LegalizeOp(UnrollVectorOp(Source));
5898 MVT DestEltTy = DestTy.getVectorElementType();
5899 if (DestTy.getVectorNumElements() == 1) {
5900 SDValue Scalar = ScalarizeVectorOp(Source);
5901 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00005902 DestEltTy, Scalar, dl);
Evan Chenga87008d2009-02-25 22:49:59 +00005903 return DAG.getNode(ISD::BUILD_VECTOR, dl, DestTy, Result);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005904 }
5905 SDValue Lo, Hi;
5906 SplitVectorOp(Source, Lo, Hi);
5907 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5908 DestTy.getVectorNumElements() / 2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005909 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +00005910 Lo, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00005911 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +00005912 Hi, dl);
5913 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, DestTy, LoResult,
Evan Chengefa53392008-10-13 18:46:18 +00005914 HiResult));
Dan Gohman7f8613e2008-08-14 20:04:46 +00005915 }
5916
Evan Cheng9845eb52008-04-01 02:18:22 +00005917 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5918 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005919 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005920 // incoming integer is set. To handle this, we dynamically test to see if
5921 // it is set, and, if so, add a fudge factor.
Dan Gohman475871a2008-07-27 21:46:04 +00005922 SDValue Hi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005923 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005924 SDValue Lo;
Dan Gohman034f60e2008-03-11 01:59:03 +00005925 ExpandOp(Source, Lo, Hi);
Dale Johannesenaf435272009-02-02 19:03:57 +00005926 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, Lo, Hi);
Dan Gohman034f60e2008-03-11 01:59:03 +00005927 } else {
5928 // The comparison for the sign bit will use the entire operand.
5929 Hi = Source;
5930 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005931
Dale Johannesen53997b02008-11-04 20:52:49 +00005932 // Check to see if the target has a custom way to lower this. If so, use
5933 // it. (Note we've already expanded the operand in this case.)
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005934 switch (TLI.getOperationAction(ISD::UINT_TO_FP, SourceVT)) {
5935 default: assert(0 && "This action not implemented for this operation!");
5936 case TargetLowering::Legal:
5937 case TargetLowering::Expand:
5938 break; // This case is handled below.
5939 case TargetLowering::Custom: {
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005940 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::UINT_TO_FP, dl, DestTy,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005941 Source), DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005942 if (NV.getNode())
5943 return LegalizeOp(NV);
5944 break; // The target decided this was legal after all
5945 }
5946 }
5947
Chris Lattner66de05b2005-05-13 04:45:13 +00005948 // If this is unsigned, and not supported, first perform the conversion to
5949 // signed, then adjust the result if the sign bit is set.
Dale Johannesenaf435272009-02-02 19:03:57 +00005950 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source, dl);
Chris Lattner66de05b2005-05-13 04:45:13 +00005951
Scott Michelfdc40a02009-02-17 22:15:04 +00005952 SDValue SignSet = DAG.getSetCC(dl,
Dale Johannesenaf435272009-02-02 19:03:57 +00005953 TLI.getSetCCResultType(Hi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005954 Hi, DAG.getConstant(0, Hi.getValueType()),
5955 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00005956 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00005957 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattnere9c35e72005-04-13 05:09:42 +00005958 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005959 uint64_t FF = 0x5f800000ULL;
5960 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattnerd2e936a2009-03-08 01:47:41 +00005961 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005962
Dan Gohman475871a2008-07-27 21:46:04 +00005963 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00005964 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00005965 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00005966 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00005967 SDValue FudgeInReg;
Chris Lattnere9c35e72005-04-13 05:09:42 +00005968 if (DestTy == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00005969 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005970 PseudoSourceValue::getConstantPool(), 0,
5971 false, Alignment);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005972 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005973 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesenaf435272009-02-02 19:03:57 +00005974 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, dl, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005975 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005976 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00005977 MVT::f32, false, Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00005978 else
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005979 assert(0 && "Unexpected conversion");
5980
Duncan Sands83ec4b62008-06-06 12:08:01 +00005981 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005982 if (SCVT != DestTy) {
5983 // Destination type needs to be expanded as well. The FADD now we are
5984 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005985 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5986 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dale Johannesenaf435272009-02-02 19:03:57 +00005987 SignedConv = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005988 SignedConv, SignedConv.getValue(1));
5989 }
Dale Johannesenaf435272009-02-02 19:03:57 +00005990 SignedConv = DAG.getNode(ISD::BIT_CONVERT, dl, DestTy, SignedConv);
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005991 }
Dale Johannesenaf435272009-02-02 19:03:57 +00005992 return DAG.getNode(ISD::FADD, dl, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00005993 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005994
Chris Lattnera88a2602005-05-14 05:33:54 +00005995 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00005996 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00005997 default: assert(0 && "This action not implemented for this operation!");
5998 case TargetLowering::Legal:
5999 case TargetLowering::Expand:
6000 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00006001 case TargetLowering::Custom: {
Dale Johannesenaf435272009-02-02 19:03:57 +00006002 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, dl, DestTy,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006003 Source), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006004 if (NV.getNode())
Chris Lattner07dffd62005-08-26 00:14:16 +00006005 return LegalizeOp(NV);
6006 break; // The target decided this was legal after all
6007 }
Chris Lattnera88a2602005-05-14 05:33:54 +00006008 }
6009
Chris Lattner13689e22005-05-12 07:00:44 +00006010 // Expand the source, then glue it back together for the call. We must expand
6011 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00006012 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00006013 SDValue SrcLo, SrcHi;
Dan Gohman034f60e2008-03-11 01:59:03 +00006014 ExpandOp(Source, SrcLo, SrcHi);
Dale Johannesenaf435272009-02-02 19:03:57 +00006015 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, SrcLo, SrcHi);
Dan Gohman034f60e2008-03-11 01:59:03 +00006016 }
Chris Lattner13689e22005-05-12 07:00:44 +00006017
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006018 RTLIB::Libcall LC = isSigned ?
6019 RTLIB::getSINTTOFP(SourceVT, DestTy) :
6020 RTLIB::getUINTTOFP(SourceVT, DestTy);
6021 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
6022
Dale Johannesenaf435272009-02-02 19:03:57 +00006023 Source = DAG.getNode(ISD::SINT_TO_FP, dl, DestTy, Source);
Dan Gohman475871a2008-07-27 21:46:04 +00006024 SDValue HiPart;
Gabor Greifba36cb52008-08-28 21:40:38 +00006025 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
6026 if (Result.getValueType() != DestTy && HiPart.getNode())
Dale Johannesenaf435272009-02-02 19:03:57 +00006027 Result = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy, Result, HiPart);
Dan Gohmana2e94852008-03-10 23:03:31 +00006028 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00006029}
Misha Brukmanedf128a2005-04-21 22:36:52 +00006030
Chris Lattner22cde6a2006-01-28 08:25:58 +00006031/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
6032/// INT_TO_FP operation of the specified operand when the target requests that
6033/// we expand it. At this point, we know that the result and operand types are
6034/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00006035SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
6036 SDValue Op0,
Dale Johannesenaf435272009-02-02 19:03:57 +00006037 MVT DestVT,
6038 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006039 if (Op0.getValueType() == MVT::i32) {
6040 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00006041
Chris Lattner23594d42008-01-16 07:03:22 +00006042 // Get the stack frame index of a 8 byte buffer.
Dan Gohman475871a2008-07-27 21:46:04 +00006043 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00006044
Chris Lattner22cde6a2006-01-28 08:25:58 +00006045 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00006046 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00006047 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00006048 SDValue Hi = StackSlot;
Scott Michelfdc40a02009-02-17 22:15:04 +00006049 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006050 TLI.getPointerTy(), StackSlot, WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00006051 if (TLI.isLittleEndian())
6052 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00006053
Chris Lattner22cde6a2006-01-28 08:25:58 +00006054 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00006055 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006056 if (isSigned) {
6057 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman475871a2008-07-27 21:46:04 +00006058 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Dale Johannesenaf435272009-02-02 19:03:57 +00006059 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006060 } else {
6061 Op0Mapped = Op0;
6062 }
6063 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00006064 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006065 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006066 // initial hi portion of constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00006067 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006068 // store the hi of the constructed double - biased exponent
Dale Johannesenaf435272009-02-02 19:03:57 +00006069 SDValue Store2=DAG.getStore(Store1, dl, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006070 // load the constructed double
Dale Johannesenaf435272009-02-02 19:03:57 +00006071 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006072 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00006073 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006074 BitsToDouble(0x4330000080000000ULL) :
6075 BitsToDouble(0x4330000000000000ULL),
Chris Lattner22cde6a2006-01-28 08:25:58 +00006076 MVT::f64);
6077 // subtract the bias
Dale Johannesenaf435272009-02-02 19:03:57 +00006078 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006079 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00006080 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006081 // handle final rounding
6082 if (DestVT == MVT::f64) {
6083 // do nothing
6084 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006085 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006086 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00006087 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00006088 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006089 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006090 }
6091 return Result;
6092 }
6093 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesenaf435272009-02-02 19:03:57 +00006094 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006095
Dale Johannesenaf435272009-02-02 19:03:57 +00006096 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00006097 Op0, DAG.getConstant(0, Op0.getValueType()),
6098 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00006099 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00006100 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattner22cde6a2006-01-28 08:25:58 +00006101 SignSet, Four, Zero);
6102
6103 // If the sign bit of the integer is set, the large number will be treated
6104 // as a negative number. To counteract this, the dynamic code adds an
6105 // offset depending on the data type.
6106 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006107 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006108 default: assert(0 && "Unsupported integer type!");
6109 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
6110 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
6111 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
6112 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
6113 }
6114 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattnerd2e936a2009-03-08 01:47:41 +00006115 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006116
Dan Gohman475871a2008-07-27 21:46:04 +00006117 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00006118 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00006119 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00006120 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00006121 SDValue FudgeInReg;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006122 if (DestVT == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00006123 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00006124 PseudoSourceValue::getConstantPool(), 0,
6125 false, Alignment);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006126 else {
Dan Gohman69de1932008-02-06 22:27:42 +00006127 FudgeInReg =
Dale Johannesenaf435272009-02-02 19:03:57 +00006128 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
Dan Gohman69de1932008-02-06 22:27:42 +00006129 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00006130 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00006131 MVT::f32, false, Alignment));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006132 }
6133
Dale Johannesenaf435272009-02-02 19:03:57 +00006134 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006135}
6136
6137/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
6138/// *INT_TO_FP operation of the specified operand when the target requests that
6139/// we promote it. At this point, we know that the result and operand types are
6140/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
6141/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00006142SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
6143 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006144 bool isSigned,
6145 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006146 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006147 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006148
6149 unsigned OpToUse = 0;
6150
6151 // Scan for the appropriate larger type to use.
6152 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006153 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
6154 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006155
6156 // If the target supports SINT_TO_FP of this type, use it.
6157 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
6158 default: break;
6159 case TargetLowering::Legal:
6160 if (!TLI.isTypeLegal(NewInTy))
6161 break; // Can't use this datatype.
6162 // FALL THROUGH.
6163 case TargetLowering::Custom:
6164 OpToUse = ISD::SINT_TO_FP;
6165 break;
6166 }
6167 if (OpToUse) break;
6168 if (isSigned) continue;
6169
6170 // If the target supports UINT_TO_FP of this type, use it.
6171 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
6172 default: break;
6173 case TargetLowering::Legal:
6174 if (!TLI.isTypeLegal(NewInTy))
6175 break; // Can't use this datatype.
6176 // FALL THROUGH.
6177 case TargetLowering::Custom:
6178 OpToUse = ISD::UINT_TO_FP;
6179 break;
6180 }
6181 if (OpToUse) break;
6182
6183 // Otherwise, try a larger type.
6184 }
6185
6186 // Okay, we found the operation and type to use. Zero extend our input to the
6187 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00006188 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00006189 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00006190 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006191}
6192
6193/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
6194/// FP_TO_*INT operation of the specified operand when the target requests that
6195/// we promote it. At this point, we know that the result and operand types are
6196/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
6197/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00006198SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
6199 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006200 bool isSigned,
6201 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006202 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006203 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006204
6205 unsigned OpToUse = 0;
6206
6207 // Scan for the appropriate larger type to use.
6208 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006209 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
6210 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006211
6212 // If the target supports FP_TO_SINT returning this type, use it.
6213 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
6214 default: break;
6215 case TargetLowering::Legal:
6216 if (!TLI.isTypeLegal(NewOutTy))
6217 break; // Can't use this datatype.
6218 // FALL THROUGH.
6219 case TargetLowering::Custom:
6220 OpToUse = ISD::FP_TO_SINT;
6221 break;
6222 }
6223 if (OpToUse) break;
6224
6225 // If the target supports FP_TO_UINT of this type, use it.
6226 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
6227 default: break;
6228 case TargetLowering::Legal:
6229 if (!TLI.isTypeLegal(NewOutTy))
6230 break; // Can't use this datatype.
6231 // FALL THROUGH.
6232 case TargetLowering::Custom:
6233 OpToUse = ISD::FP_TO_UINT;
6234 break;
6235 }
6236 if (OpToUse) break;
6237
6238 // Otherwise, try a larger type.
6239 }
6240
Scott Michelfdc40a02009-02-17 22:15:04 +00006241
Chris Lattner27a6c732007-11-24 07:07:01 +00006242 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00006243 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00006244
Chris Lattner27a6c732007-11-24 07:07:01 +00006245 // If the operation produces an invalid type, it must be custom lowered. Use
6246 // the target lowering hooks to expand it. Just keep the low part of the
6247 // expanded operation, we know that we're truncating anyway.
6248 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands1607f052008-12-01 11:39:25 +00006249 SmallVector<SDValue, 2> Results;
6250 TLI.ReplaceNodeResults(Operation.getNode(), Results, DAG);
6251 assert(Results.size() == 1 && "Incorrect FP_TO_XINT lowering!");
6252 Operation = Results[0];
Chris Lattner27a6c732007-11-24 07:07:01 +00006253 }
Duncan Sands126d9072008-07-04 11:47:58 +00006254
Chris Lattner27a6c732007-11-24 07:07:01 +00006255 // Truncate the result of the extended FP_TO_*INT operation to the desired
6256 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00006257 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006258}
6259
6260/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
6261///
Dale Johannesen8a782a22009-02-02 22:12:50 +00006262SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006263 MVT VT = Op.getValueType();
6264 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman475871a2008-07-27 21:46:04 +00006265 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006266 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006267 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
6268 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006269 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6270 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6271 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006272 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006273 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6274 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6275 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6276 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6277 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
6278 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
6279 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6280 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6281 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006282 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006283 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
6284 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
6285 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6286 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6287 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6288 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6289 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
6290 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
6291 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
6292 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
6293 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
6294 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
6295 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
6296 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
6297 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
6298 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
6299 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6300 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6301 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
6302 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
6303 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006304 }
6305}
6306
6307/// ExpandBitCount - Expand the specified bitcount instruction into operations.
6308///
Scott Michelfdc40a02009-02-17 22:15:04 +00006309SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen8a782a22009-02-02 22:12:50 +00006310 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006311 switch (Opc) {
6312 default: assert(0 && "Cannot expand this yet!");
6313 case ISD::CTPOP: {
6314 static const uint64_t mask[6] = {
6315 0x5555555555555555ULL, 0x3333333333333333ULL,
6316 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
6317 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
6318 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00006319 MVT VT = Op.getValueType();
6320 MVT ShVT = TLI.getShiftAmountTy();
6321 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006322 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
6323 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006324 unsigned EltSize = VT.isVector() ?
6325 VT.getVectorElementType().getSizeInBits() : len;
6326 SDValue Tmp2 = DAG.getConstant(APInt(EltSize, mask[i]), VT);
Dan Gohman475871a2008-07-27 21:46:04 +00006327 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00006328 Op = DAG.getNode(ISD::ADD, dl, VT,
Dale Johannesene72c5962009-02-06 21:55:48 +00006329 DAG.getNode(ISD::AND, dl, VT, Op, Tmp2),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006330 DAG.getNode(ISD::AND, dl, VT,
6331 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3),
6332 Tmp2));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006333 }
6334 return Op;
6335 }
6336 case ISD::CTLZ: {
6337 // for now, we do this:
6338 // x = x | (x >> 1);
6339 // x = x | (x >> 2);
6340 // ...
6341 // x = x | (x >>16);
6342 // x = x | (x >>32); // for 64-bit input
6343 // return popcount(~x);
6344 //
6345 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006346 MVT VT = Op.getValueType();
6347 MVT ShVT = TLI.getShiftAmountTy();
6348 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006349 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00006350 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00006351 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00006352 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006353 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00006354 Op = DAG.getNOT(dl, Op, VT);
6355 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006356 }
6357 case ISD::CTTZ: {
6358 // for now, we use: { return popcount(~x & (x - 1)); }
6359 // unless the target has ctlz but not ctpop, in which case we use:
6360 // { return 32 - nlz(~x & (x-1)); }
6361 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006362 MVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006363 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
6364 DAG.getNOT(dl, Op, VT),
6365 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00006366 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006367 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006368 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
6369 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00006370 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006371 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006372 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
6373 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006374 }
6375 }
6376}
Chris Lattnere34b3962005-01-19 04:19:40 +00006377
Dan Gohman475871a2008-07-27 21:46:04 +00006378/// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattner3e928bb2005-01-07 07:47:09 +00006379/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
Dan Gohman929d3eb2008-10-01 15:07:49 +00006380/// LegalizedNodes map is filled in for any results that are not expanded, the
Chris Lattner3e928bb2005-01-07 07:47:09 +00006381/// ExpandedNodes map is filled in for any results that are expanded, and the
6382/// Lo/Hi values are returned.
Dan Gohman475871a2008-07-27 21:46:04 +00006383void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Duncan Sands83ec4b62008-06-06 12:08:01 +00006384 MVT VT = Op.getValueType();
6385 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greifba36cb52008-08-28 21:40:38 +00006386 SDNode *Node = Op.getNode();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006387 DebugLoc dl = Node->getDebugLoc();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006388 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00006389 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00006390 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006391
Chris Lattner6fdcb252005-09-02 20:32:45 +00006392 // See if we already expanded it.
Dan Gohman475871a2008-07-27 21:46:04 +00006393 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00006394 = ExpandedNodes.find(Op);
6395 if (I != ExpandedNodes.end()) {
6396 Lo = I->second.first;
6397 Hi = I->second.second;
6398 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006399 }
6400
Chris Lattner3e928bb2005-01-07 07:47:09 +00006401 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006402 case ISD::CopyFromReg:
6403 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006404 case ISD::FP_ROUND_INREG:
Scott Michelfdc40a02009-02-17 22:15:04 +00006405 if (VT == MVT::ppcf128 &&
6406 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006407 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006408 SDValue SrcLo, SrcHi, Src;
Dale Johannesenfcf4d242007-10-11 23:32:15 +00006409 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006410 Src = DAG.getNode(ISD::BUILD_PAIR, dl, VT, SrcLo, SrcHi);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006411 SDValue Result =
6412 TLI.LowerOperation(DAG.getNode(ISD::FP_ROUND_INREG, dl, VT, Src,
6413 Op.getOperand(1)), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006414 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
6415 Lo = Result.getNode()->getOperand(0);
6416 Hi = Result.getNode()->getOperand(1);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006417 break;
6418 }
6419 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00006420 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006421#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006422 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006423#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00006424 assert(0 && "Do not know how to expand this operator!");
6425 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00006426 case ISD::EXTRACT_ELEMENT:
6427 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006428 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman1953ecb2008-02-27 01:52:30 +00006429 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00006430 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00006431 case ISD::EXTRACT_VECTOR_ELT:
Dale Johannesen25f1d082007-10-31 00:32:36 +00006432 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
6433 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
6434 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00006435 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00006436 Lo = DAG.getUNDEF(NVT);
6437 Hi = DAG.getUNDEF(NVT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00006438 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006439 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006440 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00006441 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
6442 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
6443 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006444 break;
6445 }
Evan Cheng00495212006-12-12 21:32:44 +00006446 case ISD::ConstantFP: {
6447 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00006448 if (CFP->getValueType(0) == MVT::ppcf128) {
Dale Johannesen7111b022008-10-09 18:53:47 +00006449 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesena471c2e2007-10-11 18:07:22 +00006450 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
6451 MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00006452 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
Dale Johannesena471c2e2007-10-11 18:07:22 +00006453 MVT::f64);
6454 break;
6455 }
Evan Cheng279101e2006-12-12 22:19:28 +00006456 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00006457 if (getTypeAction(Lo.getValueType()) == Expand)
6458 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006459 break;
6460 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006461 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006462 // Return the operands.
6463 Lo = Node->getOperand(0);
6464 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006465 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006466
Chris Lattner27a6c732007-11-24 07:07:01 +00006467 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00006468 if (Node->getNumValues() == 1) {
6469 ExpandOp(Op.getOperand(0), Lo, Hi);
6470 break;
6471 }
Chris Lattner27a6c732007-11-24 07:07:01 +00006472 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif99a6cb92008-08-26 22:36:50 +00006473 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattner27a6c732007-11-24 07:07:01 +00006474 Op.getValue(1).getValueType() == MVT::Other &&
6475 "unhandled MERGE_VALUES");
6476 ExpandOp(Op.getOperand(0), Lo, Hi);
6477 // Remember that we legalized the chain.
6478 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
6479 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006480
Chris Lattner58f79632005-12-12 22:27:43 +00006481 case ISD::SIGN_EXTEND_INREG:
6482 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00006483 // sext_inreg the low part if needed.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006484 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Lo, Node->getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006485
Chris Lattner4bdd2752006-10-06 17:34:12 +00006486 // The high part gets the sign extension from the lo-part. This handles
6487 // things like sextinreg V:i64 from i8.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006488 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006489 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00006490 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00006491 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006492
Nate Begemand88fc032006-01-14 03:14:10 +00006493 case ISD::BSWAP: {
6494 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006495 SDValue TempLo = DAG.getNode(ISD::BSWAP, dl, NVT, Hi);
6496 Hi = DAG.getNode(ISD::BSWAP, dl, NVT, Lo);
Nate Begemand88fc032006-01-14 03:14:10 +00006497 Lo = TempLo;
6498 break;
6499 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006500
Chris Lattneredb1add2005-05-11 04:51:16 +00006501 case ISD::CTPOP:
6502 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006503 Lo = DAG.getNode(ISD::ADD, dl, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
6504 DAG.getNode(ISD::CTPOP, dl, NVT, Lo),
6505 DAG.getNode(ISD::CTPOP, dl, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00006506 Hi = DAG.getConstant(0, NVT);
6507 break;
6508
Chris Lattner39a8f332005-05-12 19:05:01 +00006509 case ISD::CTLZ: {
6510 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006511 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006512 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006513 SDValue HLZ = DAG.getNode(ISD::CTLZ, dl, NVT, Hi);
6514 SDValue TopNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), HLZ,
6515 BitsC, ISD::SETNE);
6516 SDValue LowPart = DAG.getNode(ISD::CTLZ, dl, NVT, Lo);
6517 LowPart = DAG.getNode(ISD::ADD, dl, NVT, LowPart, BitsC);
Chris Lattner39a8f332005-05-12 19:05:01 +00006518
Dale Johannesen8a782a22009-02-02 22:12:50 +00006519 Lo = DAG.getNode(ISD::SELECT, dl, NVT, TopNotZero, HLZ, LowPart);
Chris Lattner39a8f332005-05-12 19:05:01 +00006520 Hi = DAG.getConstant(0, NVT);
6521 break;
6522 }
6523
6524 case ISD::CTTZ: {
6525 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006526 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006527 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006528 SDValue LTZ = DAG.getNode(ISD::CTTZ, dl, NVT, Lo);
6529 SDValue BotNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), LTZ,
6530 BitsC, ISD::SETNE);
6531 SDValue HiPart = DAG.getNode(ISD::CTTZ, dl, NVT, Hi);
6532 HiPart = DAG.getNode(ISD::ADD, dl, NVT, HiPart, BitsC);
Chris Lattner39a8f332005-05-12 19:05:01 +00006533
Dale Johannesen8a782a22009-02-02 22:12:50 +00006534 Lo = DAG.getNode(ISD::SELECT, dl, NVT, BotNotZero, LTZ, HiPart);
Chris Lattner39a8f332005-05-12 19:05:01 +00006535 Hi = DAG.getConstant(0, NVT);
6536 break;
6537 }
Chris Lattneredb1add2005-05-11 04:51:16 +00006538
Nate Begemanacc398c2006-01-25 18:21:52 +00006539 case ISD::VAARG: {
Dan Gohman475871a2008-07-27 21:46:04 +00006540 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6541 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Dale Johannesenc460ae92009-02-04 00:13:36 +00006542 Lo = DAG.getVAArg(NVT, dl, Ch, Ptr, Node->getOperand(2));
6543 Hi = DAG.getVAArg(NVT, dl, Lo.getValue(1), Ptr, Node->getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +00006544
6545 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00006546 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00006547 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00006548 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00006549 std::swap(Lo, Hi);
6550 break;
6551 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006552
Chris Lattner3e928bb2005-01-07 07:47:09 +00006553 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00006554 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00006555 SDValue Ch = LD->getChain(); // Legalize the chain.
6556 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Evan Cheng466685d2006-10-09 20:57:25 +00006557 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f8613e2008-08-14 20:04:46 +00006558 const Value *SV = LD->getSrcValue();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006559 int SVOffset = LD->getSrcValueOffset();
6560 unsigned Alignment = LD->getAlignment();
6561 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006562
Evan Cheng466685d2006-10-09 20:57:25 +00006563 if (ExtType == ISD::NON_EXTLOAD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006564 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006565 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00006566 if (VT == MVT::f32 || VT == MVT::f64) {
6567 // f32->i32 or f64->i64 one to one expansion.
6568 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006569 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00006570 // Recursively expand the new load.
6571 if (getTypeAction(NVT) == Expand)
6572 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006573 break;
6574 }
Chris Lattnerec39a452005-01-19 18:02:17 +00006575
Evan Cheng466685d2006-10-09 20:57:25 +00006576 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006577 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Dale Johannesen8a782a22009-02-02 22:12:50 +00006578 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006579 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006580 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006581 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006582 Hi = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006583 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00006584
Evan Cheng466685d2006-10-09 20:57:25 +00006585 // Build a factor node to remember that this load is independent of the
6586 // other one.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006587 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006588 Hi.getValue(1));
Evan Cheng466685d2006-10-09 20:57:25 +00006589
6590 // Remember that we legalized the chain.
6591 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00006592 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00006593 std::swap(Lo, Hi);
6594 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006595 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00006596
Dale Johannesenb6210fc2007-10-19 20:29:00 +00006597 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6598 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00006599 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dale Johannesen8a782a22009-02-02 22:12:50 +00006600 SDValue Load = DAG.getLoad(EVT, dl, Ch, Ptr, SV,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006601 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00006602 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006603 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Dale Johannesen8a782a22009-02-02 22:12:50 +00006604 ExpandOp(DAG.getNode(ISD::FP_EXTEND, dl, VT, Load), Lo, Hi);
Evan Cheng548f6112006-12-13 03:19:57 +00006605 break;
6606 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006607
Evan Cheng466685d2006-10-09 20:57:25 +00006608 if (EVT == NVT)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006609 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006610 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006611 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00006612 Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006613 SVOffset, EVT, isVolatile,
6614 Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00006615
Evan Cheng466685d2006-10-09 20:57:25 +00006616 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006617 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng466685d2006-10-09 20:57:25 +00006618
6619 if (ExtType == ISD::SEXTLOAD) {
6620 // The high part is obtained by SRA'ing all but one of the bits of the
6621 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006622 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006623 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Evan Cheng466685d2006-10-09 20:57:25 +00006624 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6625 } else if (ExtType == ISD::ZEXTLOAD) {
6626 // The high part is just a zero.
6627 Hi = DAG.getConstant(0, NVT);
6628 } else /* if (ExtType == ISD::EXTLOAD) */ {
6629 // The high part is undefined.
Dale Johannesene8d72302009-02-06 23:05:02 +00006630 Hi = DAG.getUNDEF(NVT);
Evan Cheng466685d2006-10-09 20:57:25 +00006631 }
6632 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006633 break;
6634 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006635 case ISD::AND:
6636 case ISD::OR:
6637 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman475871a2008-07-27 21:46:04 +00006638 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006639 ExpandOp(Node->getOperand(0), LL, LH);
6640 ExpandOp(Node->getOperand(1), RL, RH);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006641 Lo = DAG.getNode(Node->getOpcode(), dl, NVT, LL, RL);
6642 Hi = DAG.getNode(Node->getOpcode(), dl, NVT, LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006643 break;
6644 }
6645 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006646 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006647 ExpandOp(Node->getOperand(1), LL, LH);
6648 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006649 if (getTypeAction(NVT) == Expand)
6650 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006651 Lo = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006652 if (VT != MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006653 Hi = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006654 break;
6655 }
Nate Begeman9373a812005-08-10 20:51:12 +00006656 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006657 SDValue TL, TH, FL, FH;
Nate Begeman9373a812005-08-10 20:51:12 +00006658 ExpandOp(Node->getOperand(2), TL, TH);
6659 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006660 if (getTypeAction(NVT) == Expand)
6661 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006662 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Nate Begeman9373a812005-08-10 20:51:12 +00006663 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006664 if (VT != MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006665 Hi = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Evan Cheng19103b12006-12-15 22:42:55 +00006666 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006667 break;
6668 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006669 case ISD::ANY_EXTEND:
6670 // The low part is any extension of the input (which degenerates to a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006671 Lo = DAG.getNode(ISD::ANY_EXTEND, dl, NVT, Node->getOperand(0));
Chris Lattner8137c9e2006-01-28 05:07:51 +00006672 // The high part is undefined.
Dale Johannesene8d72302009-02-06 23:05:02 +00006673 Hi = DAG.getUNDEF(NVT);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006674 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006675 case ISD::SIGN_EXTEND: {
6676 // The low part is just a sign extension of the input (which degenerates to
6677 // a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006678 Lo = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006679
Chris Lattner3e928bb2005-01-07 07:47:09 +00006680 // The high part is obtained by SRA'ing all but one of the bits of the lo
6681 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006682 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006683 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Chris Lattner8137c9e2006-01-28 05:07:51 +00006684 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006685 break;
6686 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006687 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006688 // The low part is just a zero extension of the input (which degenerates to
6689 // a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006690 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006691
Chris Lattner3e928bb2005-01-07 07:47:09 +00006692 // The high part is just a zero.
6693 Hi = DAG.getConstant(0, NVT);
6694 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006695
Chris Lattner4c948eb2007-02-13 23:55:16 +00006696 case ISD::TRUNCATE: {
6697 // The input value must be larger than this value. Expand *it*.
Dan Gohman475871a2008-07-27 21:46:04 +00006698 SDValue NewLo;
Chris Lattner4c948eb2007-02-13 23:55:16 +00006699 ExpandOp(Node->getOperand(0), NewLo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00006700
Chris Lattner4c948eb2007-02-13 23:55:16 +00006701 // The low part is now either the right size, or it is closer. If not the
6702 // right size, make an illegal truncate so we recursively expand it.
6703 if (NewLo.getValueType() != Node->getValueType(0))
Dale Johannesen8a782a22009-02-02 22:12:50 +00006704 NewLo = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), NewLo);
Chris Lattner4c948eb2007-02-13 23:55:16 +00006705 ExpandOp(NewLo, Lo, Hi);
6706 break;
6707 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006708
Chris Lattner35481892005-12-23 00:16:34 +00006709 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006710 SDValue Tmp;
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006711 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6712 // If the target wants to, allow it to lower this itself.
6713 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6714 case Expand: assert(0 && "cannot expand FP!");
6715 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6716 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6717 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00006718 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp), DAG);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006719 }
6720
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006721 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006722 if (VT == MVT::f32 || VT == MVT::f64) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006723 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006724 if (getTypeAction(NVT) == Expand)
6725 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006726 break;
6727 }
6728
6729 // If source operand will be expanded to the same type as VT, i.e.
6730 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006731 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006732 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6733 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006734 break;
6735 }
6736
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006737 // Turn this into a load/store pair by default.
Gabor Greifba36cb52008-08-28 21:40:38 +00006738 if (Tmp.getNode() == 0)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006739 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00006740
Chris Lattner35481892005-12-23 00:16:34 +00006741 ExpandOp(Tmp, Lo, Hi);
6742 break;
6743 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006744
Chris Lattner27a6c732007-11-24 07:07:01 +00006745 case ISD::READCYCLECOUNTER: {
Scott Michelfdc40a02009-02-17 22:15:04 +00006746 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
Chris Lattner308575b2005-11-20 22:56:56 +00006747 TargetLowering::Custom &&
6748 "Must custom expand ReadCycleCounter");
Dan Gohman475871a2008-07-27 21:46:04 +00006749 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006750 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattner27a6c732007-11-24 07:07:01 +00006751 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006752 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006753 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006754 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006755 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006756
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006757 case ISD::ATOMIC_CMP_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006758 // This operation does not need a loop.
6759 SDValue Tmp = TLI.LowerOperation(Op, DAG);
6760 assert(Tmp.getNode() && "Node must be custom expanded!");
6761 ExpandOp(Tmp.getValue(0), Lo, Hi);
6762 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
6763 LegalizeOp(Tmp.getValue(1)));
6764 break;
6765 }
6766
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006767 case ISD::ATOMIC_LOAD_ADD:
6768 case ISD::ATOMIC_LOAD_SUB:
6769 case ISD::ATOMIC_LOAD_AND:
6770 case ISD::ATOMIC_LOAD_OR:
6771 case ISD::ATOMIC_LOAD_XOR:
6772 case ISD::ATOMIC_LOAD_NAND:
6773 case ISD::ATOMIC_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006774 // These operations require a loop to be generated. We can't do that yet,
6775 // so substitute a target-dependent pseudo and expand that later.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006776 SDValue In2Lo, In2Hi, In2;
6777 ExpandOp(Op.getOperand(2), In2Lo, In2Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006778 In2 = DAG.getNode(ISD::BUILD_PAIR, dl, VT, In2Lo, In2Hi);
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006779 AtomicSDNode* Anode = cast<AtomicSDNode>(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00006780 SDValue Replace =
Dale Johannesen8a782a22009-02-02 22:12:50 +00006781 DAG.getAtomic(Op.getOpcode(), dl, Anode->getMemoryVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006782 Op.getOperand(0), Op.getOperand(1), In2,
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006783 Anode->getSrcValue(), Anode->getAlignment());
6784 SDValue Result = TLI.LowerOperation(Replace, DAG);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006785 ExpandOp(Result.getValue(0), Lo, Hi);
6786 // Remember that we legalized the chain.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006787 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Result.getValue(1)));
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006788 break;
6789 }
6790
Chris Lattner4e6c7462005-01-08 19:27:05 +00006791 // These operators cannot be expanded directly, emit them as calls to
6792 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006793 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006794 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006795 SDValue Op;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006796 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6797 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006798 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6799 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006800 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006801
Dale Johannesen8a782a22009-02-02 22:12:50 +00006802 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op), DAG);
Chris Lattnerf20d1832005-07-30 01:40:57 +00006803
Chris Lattner80a3e942005-07-29 00:33:32 +00006804 // Now that the custom expander is done, expand the result, which is still
6805 // VT.
Gabor Greifba36cb52008-08-28 21:40:38 +00006806 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006807 ExpandOp(Op, Lo, Hi);
6808 break;
6809 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006810 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006811
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006812 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6813 VT);
6814 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6815 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006816 break;
Evan Cheng56966222007-01-12 02:11:51 +00006817 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006818
Evan Cheng56966222007-01-12 02:11:51 +00006819 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006820 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006821 SDValue Op;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006822 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6823 case Expand: assert(0 && "cannot expand FP!");
6824 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6825 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6826 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006827
Dale Johannesen8a782a22009-02-02 22:12:50 +00006828 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, dl, VT, Op), DAG);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006829
6830 // Now that the custom expander is done, expand the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00006831 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006832 ExpandOp(Op, Lo, Hi);
6833 break;
6834 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006835 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006836
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006837 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6838 VT);
6839 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6840 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006841 break;
Evan Cheng56966222007-01-12 02:11:51 +00006842 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006843
Evan Cheng05a2d562006-01-09 18:31:59 +00006844 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006845 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006846 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006847 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006848 SDValue Op = DAG.getNode(ISD::SHL, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006849 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006850 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006851 // Now that the custom expander is done, expand the result, which is
6852 // still VT.
6853 ExpandOp(Op, Lo, Hi);
6854 break;
6855 }
6856 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006857
6858 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
Chris Lattner79980b02006-09-13 03:50:39 +00006859 // this X << 1 as X+X.
6860 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006861 if (ShAmt->getAPIntValue() == 1 &&
Scott Michelfdc40a02009-02-17 22:15:04 +00006862 TLI.isOperationLegalOrCustom(ISD::ADDC, NVT) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006863 TLI.isOperationLegalOrCustom(ISD::ADDE, NVT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006864 SDValue LoOps[2], HiOps[3];
Chris Lattner79980b02006-09-13 03:50:39 +00006865 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6866 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6867 LoOps[1] = LoOps[0];
Dale Johannesen8a782a22009-02-02 22:12:50 +00006868 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Chris Lattner79980b02006-09-13 03:50:39 +00006869
6870 HiOps[1] = HiOps[0];
6871 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006872 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Chris Lattner79980b02006-09-13 03:50:39 +00006873 break;
6874 }
6875 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006876
Chris Lattnere34b3962005-01-19 04:19:40 +00006877 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006878 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006879 break;
Chris Lattner47599822005-04-02 03:38:53 +00006880
6881 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006882 TargetLowering::LegalizeAction Action =
6883 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6884 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6885 Action == TargetLowering::Custom) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006886 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006887 ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006888 break;
6889 }
6890
Chris Lattnere34b3962005-01-19 04:19:40 +00006891 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006892 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006893 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006894 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006895
Evan Cheng05a2d562006-01-09 18:31:59 +00006896 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006897 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006898 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006899 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dale Johannesene72c5962009-02-06 21:55:48 +00006900 SDValue Op = DAG.getNode(ISD::SRA, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006901 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006902 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006903 // Now that the custom expander is done, expand the result, which is
6904 // still VT.
6905 ExpandOp(Op, Lo, Hi);
6906 break;
6907 }
6908 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006909
Chris Lattnere34b3962005-01-19 04:19:40 +00006910 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006911 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006912 break;
Chris Lattner47599822005-04-02 03:38:53 +00006913
6914 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006915 TargetLowering::LegalizeAction Action =
6916 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6917 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6918 Action == TargetLowering::Custom) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006919 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006920 ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006921 break;
6922 }
6923
Chris Lattnere34b3962005-01-19 04:19:40 +00006924 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006925 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006926 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006927 }
6928
6929 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006930 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006931 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006932 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006933 SDValue Op = DAG.getNode(ISD::SRL, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006934 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006935 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006936 // Now that the custom expander is done, expand the result, which is
6937 // still VT.
6938 ExpandOp(Op, Lo, Hi);
6939 break;
6940 }
6941 }
6942
Chris Lattnere34b3962005-01-19 04:19:40 +00006943 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006944 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006945 break;
Chris Lattner47599822005-04-02 03:38:53 +00006946
6947 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006948 TargetLowering::LegalizeAction Action =
6949 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6950 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6951 Action == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006952 ExpandShiftParts(ISD::SRL_PARTS,
6953 Node->getOperand(0), ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006954 break;
6955 }
6956
Chris Lattnere34b3962005-01-19 04:19:40 +00006957 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006958 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006959 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006960 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006961
Misha Brukmanedf128a2005-04-21 22:36:52 +00006962 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006963 case ISD::SUB: {
6964 // If the target wants to custom expand this, let them.
6965 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6966 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006967 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006968 if (Result.getNode()) {
Duncan Sands69bfb152008-06-22 09:42:16 +00006969 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006970 break;
6971 }
6972 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006973 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006974 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006975 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6976 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Dan Gohman475871a2008-07-27 21:46:04 +00006977 SDValue LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006978 LoOps[0] = LHSL;
6979 LoOps[1] = RHSL;
6980 HiOps[0] = LHSH;
6981 HiOps[1] = RHSH;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006982
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00006983 //cascaded check to see if any smaller size has a a carry flag.
6984 unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
6985 bool hasCarry = false;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006986 for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) {
6987 MVT AVT = MVT::getIntegerVT(BitSize);
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006988 if (TLI.isOperationLegalOrCustom(OpV, AVT)) {
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006989 hasCarry = true;
6990 break;
6991 }
6992 }
6993
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00006994 if(hasCarry) {
Evan Cheng637ed032008-12-12 18:49:09 +00006995 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Andrew Lenharth40d51392008-10-07 14:15:42 +00006996 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006997 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00006998 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006999 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007000 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007001 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007002 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007003 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007004 }
7005 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007006 } else {
Andrew Lenharth40d51392008-10-07 14:15:42 +00007007 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007008 Lo = DAG.getNode(ISD::ADD, dl, NVT, LoOps, 2);
7009 Hi = DAG.getNode(ISD::ADD, dl, NVT, HiOps, 2);
7010 SDValue Cmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007011 Lo, LoOps[0], ISD::SETULT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007012 SDValue Carry1 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp1,
Scott Michelfdc40a02009-02-17 22:15:04 +00007013 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007014 DAG.getConstant(0, NVT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00007015 SDValue Cmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007016 Lo, LoOps[1], ISD::SETULT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007017 SDValue Carry2 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp2,
Scott Michelfdc40a02009-02-17 22:15:04 +00007018 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007019 Carry1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007020 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, Carry2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007021 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007022 Lo = DAG.getNode(ISD::SUB, dl, NVT, LoOps, 2);
7023 Hi = DAG.getNode(ISD::SUB, dl, NVT, HiOps, 2);
7024 SDValue Cmp = DAG.getSetCC(dl, NVT, LoOps[0], LoOps[1], ISD::SETULT);
7025 SDValue Borrow = DAG.getNode(ISD::SELECT, dl, NVT, Cmp,
Scott Michelfdc40a02009-02-17 22:15:04 +00007026 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007027 DAG.getConstant(0, NVT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00007028 Hi = DAG.getNode(ISD::SUB, dl, NVT, Hi, Borrow);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007029 }
7030 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007031 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00007032 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007033
Chris Lattnerb429f732007-05-17 18:15:41 +00007034 case ISD::ADDC:
7035 case ISD::SUBC: {
7036 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007037 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007038 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7039 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7040 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007041 SDValue LoOps[2] = { LHSL, RHSL };
7042 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michelfdc40a02009-02-17 22:15:04 +00007043
Chris Lattnerb429f732007-05-17 18:15:41 +00007044 if (Node->getOpcode() == ISD::ADDC) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007045 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Chris Lattnerb429f732007-05-17 18:15:41 +00007046 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007047 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007048 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007049 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Chris Lattnerb429f732007-05-17 18:15:41 +00007050 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007051 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007052 }
7053 // Remember that we legalized the flag.
7054 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7055 break;
7056 }
7057 case ISD::ADDE:
7058 case ISD::SUBE: {
7059 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007060 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007061 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7062 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7063 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007064 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
7065 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michelfdc40a02009-02-17 22:15:04 +00007066
Dale Johannesen8a782a22009-02-02 22:12:50 +00007067 Lo = DAG.getNode(Node->getOpcode(), dl, VTList, LoOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007068 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007069 Hi = DAG.getNode(Node->getOpcode(), dl, VTList, HiOps, 3);
Scott Michelfdc40a02009-02-17 22:15:04 +00007070
Chris Lattnerb429f732007-05-17 18:15:41 +00007071 // Remember that we legalized the flag.
7072 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7073 break;
7074 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007075 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007076 // If the target wants to custom expand this, let them.
7077 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00007078 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007079 if (New.getNode()) {
Chris Lattner8829dc82006-09-16 05:08:34 +00007080 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007081 break;
7082 }
7083 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007084
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007085 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, NVT);
7086 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, NVT);
7087 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, NVT);
7088 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00007089 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman475871a2008-07-27 21:46:04 +00007090 SDValue LL, LH, RL, RH;
Nate Begemanc7c16572005-04-11 03:01:51 +00007091 ExpandOp(Node->getOperand(0), LL, LH);
7092 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007093 unsigned OuterBitSize = Op.getValueSizeInBits();
7094 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00007095 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
7096 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00007097 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
7098 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
7099 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00007100 // The inputs are both zero-extended.
7101 if (HasUMUL_LOHI) {
7102 // We can emit a umul_lohi.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007103 Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007104 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007105 break;
7106 }
7107 if (HasMULHU) {
7108 // We can emit a mulhu+mul.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007109 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7110 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
Dan Gohman525178c2007-10-08 18:33:35 +00007111 break;
7112 }
Dan Gohman525178c2007-10-08 18:33:35 +00007113 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007114 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00007115 // The input values are both sign-extended.
7116 if (HasSMUL_LOHI) {
7117 // We can emit a smul_lohi.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007118 Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007119 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007120 break;
7121 }
7122 if (HasMULHS) {
7123 // We can emit a mulhs+mul.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007124 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7125 Hi = DAG.getNode(ISD::MULHS, dl, NVT, LL, RL);
Dan Gohman525178c2007-10-08 18:33:35 +00007126 break;
7127 }
7128 }
7129 if (HasUMUL_LOHI) {
7130 // Lo,Hi = umul LHS, RHS.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007131 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, dl,
Dan Gohman525178c2007-10-08 18:33:35 +00007132 DAG.getVTList(NVT, NVT), LL, RL);
7133 Lo = UMulLOHI;
7134 Hi = UMulLOHI.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007135 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7136 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7137 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7138 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Chris Lattnera89654b2006-09-16 00:21:44 +00007139 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00007140 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00007141 if (HasMULHU) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007142 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7143 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
7144 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7145 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7146 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7147 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00007148 break;
7149 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007150 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00007151
Dan Gohman525178c2007-10-08 18:33:35 +00007152 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00007153 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00007154 break;
7155 }
Evan Cheng56966222007-01-12 02:11:51 +00007156 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007157 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007158 break;
7159 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007160 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007161 break;
7162 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007163 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007164 break;
7165 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007166 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007167 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00007168
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007169 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00007170 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
7171 RTLIB::ADD_F64,
7172 RTLIB::ADD_F80,
7173 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007174 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007175 break;
7176 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00007177 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
7178 RTLIB::SUB_F64,
7179 RTLIB::SUB_F80,
7180 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007181 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007182 break;
7183 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00007184 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
7185 RTLIB::MUL_F64,
7186 RTLIB::MUL_F80,
7187 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007188 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007189 break;
7190 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007191 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
7192 RTLIB::DIV_F64,
7193 RTLIB::DIV_F80,
7194 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007195 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007196 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007197 case ISD::FP_EXTEND: {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007198 if (VT == MVT::ppcf128) {
7199 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
7200 Node->getOperand(0).getValueType()==MVT::f64);
7201 const uint64_t zero = 0;
7202 if (Node->getOperand(0).getValueType()==MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00007203 Hi = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Node->getOperand(0));
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007204 else
7205 Hi = Node->getOperand(0);
7206 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7207 break;
7208 }
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007209 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
7210 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
7211 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007212 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007213 }
7214 case ISD::FP_ROUND: {
7215 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
7216 VT);
7217 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
7218 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007219 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007220 }
Evan Cheng4b887022008-09-09 23:02:14 +00007221 case ISD::FSQRT:
7222 case ISD::FSIN:
Scott Michelfdc40a02009-02-17 22:15:04 +00007223 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007224 case ISD::FLOG:
7225 case ISD::FLOG2:
7226 case ISD::FLOG10:
7227 case ISD::FEXP:
7228 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007229 case ISD::FTRUNC:
7230 case ISD::FFLOOR:
7231 case ISD::FCEIL:
7232 case ISD::FRINT:
7233 case ISD::FNEARBYINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00007234 case ISD::FPOW:
7235 case ISD::FPOWI: {
Evan Cheng56966222007-01-12 02:11:51 +00007236 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007237 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00007238 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00007239 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
7240 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007241 break;
7242 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00007243 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
7244 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007245 break;
7246 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00007247 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
7248 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007249 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007250 case ISD::FLOG:
7251 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
7252 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
7253 break;
7254 case ISD::FLOG2:
7255 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
7256 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
7257 break;
7258 case ISD::FLOG10:
7259 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
7260 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
7261 break;
7262 case ISD::FEXP:
7263 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
7264 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
7265 break;
7266 case ISD::FEXP2:
7267 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
7268 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
7269 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007270 case ISD::FTRUNC:
7271 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
7272 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
7273 break;
7274 case ISD::FFLOOR:
7275 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
7276 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
7277 break;
7278 case ISD::FCEIL:
7279 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
7280 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
7281 break;
7282 case ISD::FRINT:
7283 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
7284 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
7285 break;
7286 case ISD::FNEARBYINT:
7287 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
7288 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
7289 break;
Evan Cheng4b887022008-09-09 23:02:14 +00007290 case ISD::FPOW:
7291 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
7292 RTLIB::POW_PPCF128);
7293 break;
7294 case ISD::FPOWI:
7295 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
7296 RTLIB::POWI_PPCF128);
7297 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007298 default: assert(0 && "Unreachable!");
7299 }
Duncan Sands460a14e2008-04-12 17:14:18 +00007300 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00007301 break;
7302 }
Evan Cheng966bf242006-12-16 00:52:40 +00007303 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007304 if (VT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00007305 SDValue Tmp;
Dale Johannesenf6467742007-10-12 19:02:17 +00007306 ExpandOp(Node->getOperand(0), Lo, Tmp);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007307 Hi = DAG.getNode(ISD::FABS, dl, NVT, Tmp);
Dale Johannesenf6467742007-10-12 19:02:17 +00007308 // lo = hi==fabs(hi) ? lo : -lo;
Dale Johannesen8a782a22009-02-02 22:12:50 +00007309 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Hi, Tmp,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007310 Lo, DAG.getNode(ISD::FNEG, dl, NVT, Lo),
7311 DAG.getCondCode(ISD::SETEQ));
Dale Johannesenf6467742007-10-12 19:02:17 +00007312 break;
7313 }
Dan Gohman475871a2008-07-27 21:46:04 +00007314 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007315 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
7316 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007317 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7318 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7319 Lo = DAG.getNode(ISD::AND, dl, NVT, Lo, Mask);
Evan Cheng966bf242006-12-16 00:52:40 +00007320 if (getTypeAction(NVT) == Expand)
7321 ExpandOp(Lo, Lo, Hi);
7322 break;
7323 }
7324 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007325 if (VT == MVT::ppcf128) {
7326 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007327 Lo = DAG.getNode(ISD::FNEG, dl, MVT::f64, Lo);
7328 Hi = DAG.getNode(ISD::FNEG, dl, MVT::f64, Hi);
Dale Johannesenf6467742007-10-12 19:02:17 +00007329 break;
7330 }
Dan Gohman475871a2008-07-27 21:46:04 +00007331 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007332 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
7333 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007334 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7335 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7336 Lo = DAG.getNode(ISD::XOR, dl, NVT, Lo, Mask);
Evan Cheng966bf242006-12-16 00:52:40 +00007337 if (getTypeAction(NVT) == Expand)
7338 ExpandOp(Lo, Lo, Hi);
7339 break;
7340 }
Evan Cheng912095b2007-01-04 21:56:39 +00007341 case ISD::FCOPYSIGN: {
7342 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
7343 if (getTypeAction(NVT) == Expand)
7344 ExpandOp(Lo, Lo, Hi);
7345 break;
7346 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007347 case ISD::SINT_TO_FP:
7348 case ISD::UINT_TO_FP: {
7349 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007350 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00007351
7352 // Promote the operand if needed. Do this before checking for
7353 // ppcf128 so conversions of i16 and i8 work.
7354 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman475871a2008-07-27 21:46:04 +00007355 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesencf498192008-03-18 17:28:38 +00007356 Tmp = isSigned
Dale Johannesen8a782a22009-02-02 22:12:50 +00007357 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp.getValueType(), Tmp,
Dale Johannesencf498192008-03-18 17:28:38 +00007358 DAG.getValueType(SrcVT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00007359 : DAG.getZeroExtendInReg(Tmp, dl, SrcVT);
Gabor Greifba36cb52008-08-28 21:40:38 +00007360 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesencf498192008-03-18 17:28:38 +00007361 SrcVT = Node->getOperand(0).getValueType();
7362 }
7363
Dan Gohmana2e94852008-03-10 23:03:31 +00007364 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007365 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007366 if (isSigned) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007367 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007368 Node->getOperand(0)));
7369 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7370 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007371 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Scott Michelfdc40a02009-02-17 22:15:04 +00007372 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007373 Node->getOperand(0)));
7374 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007375 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00007376 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesen8a782a22009-02-02 22:12:50 +00007377 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl,
7378 MVT::ppcf128, Node->getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00007379 DAG.getConstant(0, MVT::i32),
Dale Johannesen8a782a22009-02-02 22:12:50 +00007380 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007381 DAG.getConstantFP
7382 (APFloat(APInt(128, 2, TwoE32)),
7383 MVT::ppcf128)),
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007384 Hi,
7385 DAG.getCondCode(ISD::SETLT)),
7386 Lo, Hi);
7387 }
7388 break;
7389 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00007390 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
7391 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007392 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen8a782a22009-02-02 22:12:50 +00007393 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::ppcf128,
7394 Node->getOperand(0)), Lo, Hi);
7395 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00007396 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
Dale Johannesen8a782a22009-02-02 22:12:50 +00007397 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl, MVT::ppcf128,
7398 Node->getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00007399 DAG.getConstant(0, MVT::i64),
Dale Johannesen8a782a22009-02-02 22:12:50 +00007400 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007401 DAG.getConstantFP
7402 (APFloat(APInt(128, 2, TwoE64)),
7403 MVT::ppcf128)),
Dale Johannesen6e63e092007-10-12 17:52:03 +00007404 Hi,
7405 DAG.getCondCode(ISD::SETLT)),
7406 Lo, Hi);
7407 break;
7408 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007409
Dan Gohmana2e94852008-03-10 23:03:31 +00007410 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00007411 Node->getOperand(0), dl);
Evan Cheng110cf482008-04-01 01:50:16 +00007412 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00007413 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00007414 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00007415 break;
7416 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00007417 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00007418
Chris Lattner83397362005-12-21 18:02:52 +00007419 // Make sure the resultant values have been legalized themselves, unless this
7420 // is a type that requires multi-step expansion.
7421 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
7422 Lo = LegalizeOp(Lo);
Gabor Greifba36cb52008-08-28 21:40:38 +00007423 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00007424 // Don't legalize the high part if it is expanded to a single node.
7425 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00007426 }
Evan Cheng05a2d562006-01-09 18:31:59 +00007427
7428 // Remember in a map if the values will be reused later.
Dan Gohman6b345ee2008-07-07 17:46:23 +00007429 bool isNew =
7430 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng05a2d562006-01-09 18:31:59 +00007431 assert(isNew && "Value already expanded?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007432 isNew = isNew;
Chris Lattner3e928bb2005-01-07 07:47:09 +00007433}
7434
Dan Gohman7f321562007-06-25 16:23:39 +00007435/// SplitVectorOp - Given an operand of vector type, break it down into
7436/// two smaller values, still of vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00007437void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
7438 SDValue &Hi) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007439 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007440 SDNode *Node = Op.getNode();
Dale Johannesenbb5da912009-02-02 20:41:04 +00007441 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007442 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00007443 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00007444
Duncan Sands83ec4b62008-06-06 12:08:01 +00007445 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00007446
7447 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
7448 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
7449
Duncan Sands83ec4b62008-06-06 12:08:01 +00007450 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
7451 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007452
Chris Lattnerc7029802006-03-18 01:44:44 +00007453 // See if we already split it.
Dan Gohman475871a2008-07-27 21:46:04 +00007454 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattnerc7029802006-03-18 01:44:44 +00007455 = SplitNodes.find(Op);
7456 if (I != SplitNodes.end()) {
7457 Lo = I->second.first;
7458 Hi = I->second.second;
7459 return;
7460 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007461
Chris Lattnerc7029802006-03-18 01:44:44 +00007462 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007463 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007464#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007465 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007466#endif
7467 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00007468 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00007469 Lo = DAG.getUNDEF(NewVT_Lo);
7470 Hi = DAG.getUNDEF(NewVT_Hi);
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00007471 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007472 case ISD::BUILD_PAIR:
7473 Lo = Node->getOperand(0);
7474 Hi = Node->getOperand(1);
7475 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00007476 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00007477 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
7478 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007479 unsigned Index = Idx->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007480 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman68679912008-04-25 18:07:40 +00007481 if (Index < NewNumElts_Lo)
Dale Johannesenc6be1102009-02-02 22:49:46 +00007482 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Lo, Lo, ScalarOp,
Nate Begeman68679912008-04-25 18:07:40 +00007483 DAG.getIntPtrConstant(Index));
7484 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00007485 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Hi, Hi, ScalarOp,
Nate Begeman68679912008-04-25 18:07:40 +00007486 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
7487 break;
7488 }
Dan Gohman475871a2008-07-27 21:46:04 +00007489 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007490 Node->getOperand(1),
7491 Node->getOperand(2), dl);
Nate Begeman68679912008-04-25 18:07:40 +00007492 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00007493 break;
7494 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00007495 case ISD::VECTOR_SHUFFLE: {
7496 // Build the low part.
Dan Gohman475871a2008-07-27 21:46:04 +00007497 SDValue Mask = Node->getOperand(2);
7498 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007499 MVT PtrVT = TLI.getPointerTy();
Scott Michelfdc40a02009-02-17 22:15:04 +00007500
7501 // Insert all of the elements from the input that are needed. We use
Chris Lattner6c9c6802007-11-19 21:16:54 +00007502 // buildvector of extractelement here because the input vectors will have
7503 // to be legalized, so this makes the code simpler.
7504 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007505 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007506 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007507 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman5922f562008-03-14 00:53:31 +00007508 continue;
7509 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007510 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007511 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007512 if (Idx >= NumElements) {
7513 InVec = Node->getOperand(1);
7514 Idx -= NumElements;
7515 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00007516 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner6c9c6802007-11-19 21:16:54 +00007517 DAG.getConstant(Idx, PtrVT)));
7518 }
Evan Chenga87008d2009-02-25 22:49:59 +00007519 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007520 Ops.clear();
Scott Michelfdc40a02009-02-17 22:15:04 +00007521
Chris Lattner6c9c6802007-11-19 21:16:54 +00007522 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007523 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007524 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007525 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman5922f562008-03-14 00:53:31 +00007526 continue;
7527 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007528 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007529 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007530 if (Idx >= NumElements) {
7531 InVec = Node->getOperand(1);
7532 Idx -= NumElements;
7533 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00007534 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner6c9c6802007-11-19 21:16:54 +00007535 DAG.getConstant(Idx, PtrVT)));
7536 }
Evan Chenga87008d2009-02-25 22:49:59 +00007537 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007538 break;
7539 }
Dan Gohman7f321562007-06-25 16:23:39 +00007540 case ISD::BUILD_VECTOR: {
Scott Michelfdc40a02009-02-17 22:15:04 +00007541 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007542 Node->op_begin()+NewNumElts_Lo);
Evan Chenga87008d2009-02-25 22:49:59 +00007543 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007544
Scott Michelfdc40a02009-02-17 22:15:04 +00007545 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007546 Node->op_end());
Evan Chenga87008d2009-02-25 22:49:59 +00007547 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007548 break;
7549 }
Dan Gohman7f321562007-06-25 16:23:39 +00007550 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00007551 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00007552 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
7553 if (NewNumSubvectors == 1) {
7554 Lo = Node->getOperand(0);
7555 Hi = Node->getOperand(1);
7556 } else {
Mon P Wangaeb06d22008-11-10 04:46:22 +00007557 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
7558 Node->op_begin()+NewNumSubvectors);
Scott Michelfdc40a02009-02-17 22:15:04 +00007559 Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Lo,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007560 &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00007561
Mon P Wangaeb06d22008-11-10 04:46:22 +00007562 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007563 Node->op_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00007564 Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Hi,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007565 &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00007566 }
Dan Gohman65956352007-06-13 15:12:02 +00007567 break;
7568 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00007569 case ISD::EXTRACT_SUBVECTOR: {
7570 SDValue Vec = Op.getOperand(0);
7571 SDValue Idx = Op.getOperand(1);
7572 MVT IdxVT = Idx.getValueType();
7573
Dale Johannesenc6be1102009-02-02 22:49:46 +00007574 Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Lo, Vec, Idx);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007575 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
7576 if (CIdx) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007577 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec,
Mon P Wangaeb06d22008-11-10 04:46:22 +00007578 DAG.getConstant(CIdx->getZExtValue() + NewNumElts_Lo,
7579 IdxVT));
7580 } else {
Dale Johannesenc6be1102009-02-02 22:49:46 +00007581 Idx = DAG.getNode(ISD::ADD, dl, IdxVT, Idx,
Mon P Wangaeb06d22008-11-10 04:46:22 +00007582 DAG.getConstant(NewNumElts_Lo, IdxVT));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007583 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec, Idx);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007584 }
7585 break;
7586 }
Dan Gohmanc6230962007-10-17 14:48:28 +00007587 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007588 SDValue Cond = Node->getOperand(0);
Dan Gohmanc6230962007-10-17 14:48:28 +00007589
Dan Gohman475871a2008-07-27 21:46:04 +00007590 SDValue LL, LH, RL, RH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007591 SplitVectorOp(Node->getOperand(1), LL, LH);
7592 SplitVectorOp(Node->getOperand(2), RL, RH);
7593
Duncan Sands83ec4b62008-06-06 12:08:01 +00007594 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00007595 // Handle a vector merge.
Dan Gohman475871a2008-07-27 21:46:04 +00007596 SDValue CL, CH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007597 SplitVectorOp(Cond, CL, CH);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007598 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, CL, LL, RL);
7599 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007600 } else {
7601 // Handle a simple select with vector operands.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007602 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, Cond, LL, RL);
7603 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007604 }
7605 break;
7606 }
Chris Lattner80c1a562008-06-30 02:43:01 +00007607 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007608 SDValue CondLHS = Node->getOperand(0);
7609 SDValue CondRHS = Node->getOperand(1);
7610 SDValue CondCode = Node->getOperand(4);
Scott Michelfdc40a02009-02-17 22:15:04 +00007611
Dan Gohman475871a2008-07-27 21:46:04 +00007612 SDValue LL, LH, RL, RH;
Chris Lattner80c1a562008-06-30 02:43:01 +00007613 SplitVectorOp(Node->getOperand(2), LL, LH);
7614 SplitVectorOp(Node->getOperand(3), RL, RH);
Scott Michelfdc40a02009-02-17 22:15:04 +00007615
Chris Lattner80c1a562008-06-30 02:43:01 +00007616 // Handle a simple select with vector operands.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007617 Lo = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Lo, CondLHS, CondRHS,
Chris Lattner80c1a562008-06-30 02:43:01 +00007618 LL, RL, CondCode);
Scott Michelfdc40a02009-02-17 22:15:04 +00007619 Hi = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Hi, CondLHS, CondRHS,
Chris Lattner80c1a562008-06-30 02:43:01 +00007620 LH, RH, CondCode);
7621 break;
7622 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00007623 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007624 SDValue LL, LH, RL, RH;
Nate Begemanb43e9c12008-05-12 19:40:03 +00007625 SplitVectorOp(Node->getOperand(0), LL, LH);
7626 SplitVectorOp(Node->getOperand(1), RL, RH);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007627 Lo = DAG.getNode(ISD::VSETCC, dl, NewVT_Lo, LL, RL, Node->getOperand(2));
7628 Hi = DAG.getNode(ISD::VSETCC, dl, NewVT_Hi, LH, RH, Node->getOperand(2));
Nate Begemanb43e9c12008-05-12 19:40:03 +00007629 break;
7630 }
Dan Gohman7f321562007-06-25 16:23:39 +00007631 case ISD::ADD:
7632 case ISD::SUB:
7633 case ISD::MUL:
7634 case ISD::FADD:
7635 case ISD::FSUB:
7636 case ISD::FMUL:
7637 case ISD::SDIV:
7638 case ISD::UDIV:
7639 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00007640 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007641 case ISD::AND:
7642 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00007643 case ISD::XOR:
7644 case ISD::UREM:
7645 case ISD::SREM:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00007646 case ISD::FREM:
7647 case ISD::SHL:
7648 case ISD::SRA:
7649 case ISD::SRL: {
Dan Gohman475871a2008-07-27 21:46:04 +00007650 SDValue LL, LH, RL, RH;
Chris Lattnerc7029802006-03-18 01:44:44 +00007651 SplitVectorOp(Node->getOperand(0), LL, LH);
7652 SplitVectorOp(Node->getOperand(1), RL, RH);
Scott Michelfdc40a02009-02-17 22:15:04 +00007653
Dale Johannesenc6be1102009-02-02 22:49:46 +00007654 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, LL, RL);
7655 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00007656 break;
7657 }
Dan Gohman7f8613e2008-08-14 20:04:46 +00007658 case ISD::FP_ROUND:
Dan Gohman82669522007-10-11 23:57:53 +00007659 case ISD::FPOWI: {
Dan Gohman475871a2008-07-27 21:46:04 +00007660 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007661 SplitVectorOp(Node->getOperand(0), L, H);
7662
Dale Johannesenc6be1102009-02-02 22:49:46 +00007663 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L, Node->getOperand(1));
7664 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00007665 break;
7666 }
7667 case ISD::CTTZ:
7668 case ISD::CTLZ:
7669 case ISD::CTPOP:
7670 case ISD::FNEG:
7671 case ISD::FABS:
7672 case ISD::FSQRT:
7673 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00007674 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007675 case ISD::FLOG:
7676 case ISD::FLOG2:
7677 case ISD::FLOG10:
7678 case ISD::FEXP:
7679 case ISD::FEXP2:
Nate Begemanb348d182007-11-17 03:58:34 +00007680 case ISD::FP_TO_SINT:
7681 case ISD::FP_TO_UINT:
7682 case ISD::SINT_TO_FP:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007683 case ISD::UINT_TO_FP:
7684 case ISD::TRUNCATE:
7685 case ISD::ANY_EXTEND:
7686 case ISD::SIGN_EXTEND:
7687 case ISD::ZERO_EXTEND:
7688 case ISD::FP_EXTEND: {
Dan Gohman475871a2008-07-27 21:46:04 +00007689 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007690 SplitVectorOp(Node->getOperand(0), L, H);
7691
Dale Johannesenc6be1102009-02-02 22:49:46 +00007692 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L);
7693 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00007694 break;
7695 }
Mon P Wang77cdf302008-11-10 20:54:11 +00007696 case ISD::CONVERT_RNDSAT: {
7697 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
7698 SDValue L, H;
7699 SplitVectorOp(Node->getOperand(0), L, H);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007700 SDValue DTyOpL = DAG.getValueType(NewVT_Lo);
7701 SDValue DTyOpH = DAG.getValueType(NewVT_Hi);
7702 SDValue STyOpL = DAG.getValueType(L.getValueType());
7703 SDValue STyOpH = DAG.getValueType(H.getValueType());
Mon P Wang77cdf302008-11-10 20:54:11 +00007704
7705 SDValue RndOp = Node->getOperand(3);
7706 SDValue SatOp = Node->getOperand(4);
7707
Dale Johannesenc460ae92009-02-04 00:13:36 +00007708 Lo = DAG.getConvertRndSat(NewVT_Lo, dl, L, DTyOpL, STyOpL,
Mon P Wang77cdf302008-11-10 20:54:11 +00007709 RndOp, SatOp, CvtCode);
Dale Johannesenc460ae92009-02-04 00:13:36 +00007710 Hi = DAG.getConvertRndSat(NewVT_Hi, dl, H, DTyOpH, STyOpH,
Mon P Wang77cdf302008-11-10 20:54:11 +00007711 RndOp, SatOp, CvtCode);
7712 break;
7713 }
Dan Gohman7f321562007-06-25 16:23:39 +00007714 case ISD::LOAD: {
7715 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007716 SDValue Ch = LD->getChain();
7717 SDValue Ptr = LD->getBasePtr();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007718 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007719 const Value *SV = LD->getSrcValue();
7720 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007721 MVT MemoryVT = LD->getMemoryVT();
Dan Gohman7f321562007-06-25 16:23:39 +00007722 unsigned Alignment = LD->getAlignment();
7723 bool isVolatile = LD->isVolatile();
7724
Dan Gohman7f8613e2008-08-14 20:04:46 +00007725 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesene8d72302009-02-06 23:05:02 +00007726 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Dan Gohman7f8613e2008-08-14 20:04:46 +00007727
7728 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7729 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7730 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7731
Dale Johannesenc6be1102009-02-02 22:49:46 +00007732 Lo = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007733 NewVT_Lo, Ch, Ptr, Offset,
7734 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7735 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Dale Johannesenc6be1102009-02-02 22:49:46 +00007736 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00007737 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00007738 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00007739 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007740 Hi = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007741 NewVT_Hi, Ch, Ptr, Offset,
7742 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00007743
Chris Lattnerc7029802006-03-18 01:44:44 +00007744 // Build a factor node to remember that this load is independent of the
7745 // other one.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007746 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007747 Hi.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00007748
Chris Lattnerc7029802006-03-18 01:44:44 +00007749 // Remember that we legalized the chain.
7750 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00007751 break;
7752 }
Dan Gohman7f321562007-06-25 16:23:39 +00007753 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00007754 // We know the result is a vector. The input may be either a vector or a
7755 // scalar value.
Dan Gohman475871a2008-07-27 21:46:04 +00007756 SDValue InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007757 if (!InOp.getValueType().isVector() ||
7758 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00007759 // The input is a scalar or single-element vector.
7760 // Lower to a store/load so that it can be split.
7761 // FIXME: this could be improved probably.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007762 unsigned LdAlign = TLI.getTargetData()->
7763 getPrefTypeAlignment(Op.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00007764 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greifba36cb52008-08-28 21:40:38 +00007765 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Chris Lattner7692eb42006-03-23 21:16:34 +00007766
Dale Johannesenc6be1102009-02-02 22:49:46 +00007767 SDValue St = DAG.getStore(DAG.getEntryNode(), dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007768 InOp, Ptr,
7769 PseudoSourceValue::getFixedStack(FI), 0);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007770 InOp = DAG.getLoad(Op.getValueType(), dl, St, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007771 PseudoSourceValue::getFixedStack(FI), 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00007772 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007773 // Split the vector and convert each of the pieces now.
7774 SplitVectorOp(InOp, Lo, Hi);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007775 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Lo, Lo);
7776 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007777 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007778 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007779 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007780
Chris Lattnerc7029802006-03-18 01:44:44 +00007781 // Remember in a map if the values will be reused later.
Scott Michelfdc40a02009-02-17 22:15:04 +00007782 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007783 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007784 assert(isNew && "Value already split?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007785 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00007786}
7787
7788
Dan Gohman89b20c02007-06-27 14:06:22 +00007789/// ScalarizeVectorOp - Given an operand of single-element vector type
7790/// (e.g. v1f32), convert it into the equivalent operation that returns a
7791/// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +00007792SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00007793 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007794 SDNode *Node = Op.getNode();
Dale Johannesenc6be1102009-02-02 22:49:46 +00007795 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007796 MVT NewVT = Op.getValueType().getVectorElementType();
7797 assert(Op.getValueType().getVectorNumElements() == 1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007798
Dan Gohman7f321562007-06-25 16:23:39 +00007799 // See if we already scalarized it.
Dan Gohman475871a2008-07-27 21:46:04 +00007800 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohman7f321562007-06-25 16:23:39 +00007801 if (I != ScalarizedNodes.end()) return I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00007802
Dan Gohman475871a2008-07-27 21:46:04 +00007803 SDValue Result;
Chris Lattnerc7029802006-03-18 01:44:44 +00007804 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007805 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007806#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007807 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007808#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007809 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7810 case ISD::ADD:
7811 case ISD::FADD:
7812 case ISD::SUB:
7813 case ISD::FSUB:
7814 case ISD::MUL:
7815 case ISD::FMUL:
7816 case ISD::SDIV:
7817 case ISD::UDIV:
7818 case ISD::FDIV:
7819 case ISD::SREM:
7820 case ISD::UREM:
7821 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007822 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007823 case ISD::AND:
7824 case ISD::OR:
7825 case ISD::XOR:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007826 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007827 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007828 ScalarizeVectorOp(Node->getOperand(0)),
7829 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007830 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007831 case ISD::FNEG:
7832 case ISD::FABS:
7833 case ISD::FSQRT:
7834 case ISD::FSIN:
7835 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007836 case ISD::FLOG:
7837 case ISD::FLOG2:
7838 case ISD::FLOG10:
7839 case ISD::FEXP:
7840 case ISD::FEXP2:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007841 case ISD::FP_TO_SINT:
7842 case ISD::FP_TO_UINT:
7843 case ISD::SINT_TO_FP:
7844 case ISD::UINT_TO_FP:
7845 case ISD::SIGN_EXTEND:
7846 case ISD::ZERO_EXTEND:
7847 case ISD::ANY_EXTEND:
7848 case ISD::TRUNCATE:
7849 case ISD::FP_EXTEND:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007850 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007851 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007852 ScalarizeVectorOp(Node->getOperand(0)));
7853 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00007854 case ISD::CONVERT_RNDSAT: {
7855 SDValue Op0 = ScalarizeVectorOp(Node->getOperand(0));
Dale Johannesenc460ae92009-02-04 00:13:36 +00007856 Result = DAG.getConvertRndSat(NewVT, dl, Op0,
Mon P Wang77cdf302008-11-10 20:54:11 +00007857 DAG.getValueType(NewVT),
7858 DAG.getValueType(Op0.getValueType()),
7859 Node->getOperand(3),
7860 Node->getOperand(4),
7861 cast<CvtRndSatSDNode>(Node)->getCvtCode());
7862 break;
7863 }
Dan Gohman9e04c822007-10-12 14:13:46 +00007864 case ISD::FPOWI:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007865 case ISD::FP_ROUND:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007866 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007867 NewVT,
Dan Gohman9e04c822007-10-12 14:13:46 +00007868 ScalarizeVectorOp(Node->getOperand(0)),
7869 Node->getOperand(1));
7870 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007871 case ISD::LOAD: {
7872 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007873 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7874 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman7f8613e2008-08-14 20:04:46 +00007875 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007876 const Value *SV = LD->getSrcValue();
7877 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007878 MVT MemoryVT = LD->getMemoryVT();
7879 unsigned Alignment = LD->getAlignment();
7880 bool isVolatile = LD->isVolatile();
7881
7882 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesene8d72302009-02-06 23:05:02 +00007883 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Scott Michelfdc40a02009-02-17 22:15:04 +00007884
Dale Johannesenc6be1102009-02-02 22:49:46 +00007885 Result = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007886 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7887 MemoryVT.getVectorElementType(),
7888 isVolatile, Alignment);
Dan Gohman7f321562007-06-25 16:23:39 +00007889
Chris Lattnerc7029802006-03-18 01:44:44 +00007890 // Remember that we legalized the chain.
7891 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7892 break;
7893 }
Dan Gohman7f321562007-06-25 16:23:39 +00007894 case ISD::BUILD_VECTOR:
7895 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007896 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007897 case ISD::INSERT_VECTOR_ELT:
7898 // Returning the inserted scalar element.
7899 Result = Node->getOperand(1);
7900 break;
7901 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007902 assert(Node->getOperand(0).getValueType() == NewVT &&
7903 "Concat of non-legal vectors not yet supported!");
7904 Result = Node->getOperand(0);
7905 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007906 case ISD::VECTOR_SHUFFLE: {
7907 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman475871a2008-07-27 21:46:04 +00007908 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007909 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohman7f321562007-06-25 16:23:39 +00007910 Result = ScalarizeVectorOp(Node->getOperand(1));
7911 else
7912 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007913 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007914 }
7915 case ISD::EXTRACT_SUBVECTOR:
Scott Michelfdc40a02009-02-17 22:15:04 +00007916 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewVT,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007917 Node->getOperand(0), Node->getOperand(1));
Dan Gohman65956352007-06-13 15:12:02 +00007918 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007919 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007920 SDValue Op0 = Op.getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007921 if (Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007922 Op0 = ScalarizeVectorOp(Op0);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007923 Result = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007924 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007925 }
Dan Gohman7f321562007-06-25 16:23:39 +00007926 case ISD::SELECT:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007927 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007928 ScalarizeVectorOp(Op.getOperand(1)),
7929 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007930 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007931 case ISD::SELECT_CC:
Scott Michelfdc40a02009-02-17 22:15:04 +00007932 Result = DAG.getNode(ISD::SELECT_CC, dl, NewVT, Node->getOperand(0),
Chris Lattner80c1a562008-06-30 02:43:01 +00007933 Node->getOperand(1),
7934 ScalarizeVectorOp(Op.getOperand(2)),
7935 ScalarizeVectorOp(Op.getOperand(3)),
7936 Node->getOperand(4));
7937 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007938 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007939 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7940 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007941 Result = DAG.getNode(ISD::SETCC, dl,
7942 TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00007943 Op0, Op1, Op.getOperand(2));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007944 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Result,
Nate Begeman0d1704b2008-05-12 23:09:43 +00007945 DAG.getConstant(-1ULL, NewVT),
7946 DAG.getConstant(0ULL, NewVT));
7947 break;
7948 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007949 }
7950
7951 if (TLI.isTypeLegal(NewVT))
7952 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007953 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7954 assert(isNew && "Value already scalarized?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007955 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00007956 return Result;
7957}
7958
Chris Lattner3e928bb2005-01-07 07:47:09 +00007959
Mon P Wang0c397192008-10-30 08:01:45 +00007960SDValue SelectionDAGLegalize::WidenVectorOp(SDValue Op, MVT WidenVT) {
7961 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(Op);
7962 if (I != WidenNodes.end()) return I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00007963
Mon P Wang0c397192008-10-30 08:01:45 +00007964 MVT VT = Op.getValueType();
7965 assert(VT.isVector() && "Cannot widen non-vector type!");
7966
7967 SDValue Result;
7968 SDNode *Node = Op.getNode();
Dale Johannesenc6be1102009-02-02 22:49:46 +00007969 DebugLoc dl = Node->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00007970 MVT EVT = VT.getVectorElementType();
7971
7972 unsigned NumElts = VT.getVectorNumElements();
7973 unsigned NewNumElts = WidenVT.getVectorNumElements();
7974 assert(NewNumElts > NumElts && "Cannot widen to smaller type!");
7975 assert(NewNumElts < 17);
7976
7977 // When widen is called, it is assumed that it is more efficient to use a
7978 // wide type. The default action is to widen to operation to a wider legal
7979 // vector type and then do the operation if it is legal by calling LegalizeOp
7980 // again. If there is no vector equivalent, we will unroll the operation, do
7981 // it, and rebuild the vector. If most of the operations are vectorizible to
7982 // the legal type, the resulting code will be more efficient. If this is not
7983 // the case, the resulting code will preform badly as we end up generating
7984 // code to pack/unpack the results. It is the function that calls widen
Mon P Wangf007a8b2008-11-06 05:31:54 +00007985 // that is responsible for seeing this doesn't happen.
Mon P Wang0c397192008-10-30 08:01:45 +00007986 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007987 default:
Mon P Wang0c397192008-10-30 08:01:45 +00007988#ifndef NDEBUG
7989 Node->dump(&DAG);
7990#endif
7991 assert(0 && "Unexpected operation in WidenVectorOp!");
7992 break;
7993 case ISD::CopyFromReg:
Mon P Wang49292f12008-11-15 06:05:52 +00007994 assert(0 && "CopyFromReg doesn't need widening!");
Mon P Wang0c397192008-10-30 08:01:45 +00007995 case ISD::Constant:
7996 case ISD::ConstantFP:
7997 // To build a vector of these elements, clients should call BuildVector
7998 // and with each element instead of creating a node with a vector type
7999 assert(0 && "Unexpected operation in WidenVectorOp!");
8000 case ISD::VAARG:
8001 // Variable Arguments with vector types doesn't make any sense to me
8002 assert(0 && "Unexpected operation in WidenVectorOp!");
8003 break;
Mon P Wang49292f12008-11-15 06:05:52 +00008004 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00008005 Result = DAG.getUNDEF(WidenVT);
Mon P Wang49292f12008-11-15 06:05:52 +00008006 break;
Mon P Wang0c397192008-10-30 08:01:45 +00008007 case ISD::BUILD_VECTOR: {
8008 // Build a vector with undefined for the new nodes
8009 SDValueVector NewOps(Node->op_begin(), Node->op_end());
8010 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesene8d72302009-02-06 23:05:02 +00008011 NewOps.push_back(DAG.getUNDEF(EVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008012 }
Evan Chenga87008d2009-02-25 22:49:59 +00008013 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT,
8014 &NewOps[0], NewOps.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008015 break;
8016 }
8017 case ISD::INSERT_VECTOR_ELT: {
8018 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008019 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, WidenVT, Tmp1,
Mon P Wang0c397192008-10-30 08:01:45 +00008020 Node->getOperand(1), Node->getOperand(2));
8021 break;
8022 }
8023 case ISD::VECTOR_SHUFFLE: {
8024 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8025 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
Nate Begeman9008ca62009-04-27 18:41:29 +00008026 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Node);
8027 SmallVector<int, 8> NewMask;
Mon P Wang0c397192008-10-30 08:01:45 +00008028 for (unsigned i = 0; i < NumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008029 int Idx = SVOp->getMaskElt(i);
8030 if (Idx < (int)NumElts)
8031 NewMask.push_back(Idx);
8032 else
8033 NewMask.push_back(Idx + NewNumElts - NumElts);
Mon P Wang0c397192008-10-30 08:01:45 +00008034 }
Nate Begeman9008ca62009-04-27 18:41:29 +00008035 for (unsigned i = NumElts; i < NewNumElts; ++i)
8036 NewMask.push_back(-1);
8037
8038 Result = DAG.getVectorShuffle(WidenVT, dl, Tmp1, Tmp2, &NewMask[0]);
Mon P Wang0c397192008-10-30 08:01:45 +00008039 break;
8040 }
8041 case ISD::LOAD: {
8042 // If the load widen returns true, we can use a single load for the
8043 // vector. Otherwise, it is returning a token factor for multiple
8044 // loads.
8045 SDValue TFOp;
8046 if (LoadWidenVectorOp(Result, TFOp, Op, WidenVT))
8047 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(1)));
8048 else
8049 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(0)));
8050 break;
8051 }
8052
8053 case ISD::BIT_CONVERT: {
8054 SDValue Tmp1 = Node->getOperand(0);
8055 // Converts between two different types so we need to determine
8056 // the correct widen type for the input operand.
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008057 MVT InVT = Tmp1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008058 unsigned WidenSize = WidenVT.getSizeInBits();
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008059 if (InVT.isVector()) {
8060 MVT InEltVT = InVT.getVectorElementType();
8061 unsigned InEltSize = InEltVT.getSizeInBits();
8062 assert(WidenSize % InEltSize == 0 &&
8063 "can not widen bit convert that are not multiple of element type");
8064 MVT NewInWidenVT = MVT::getVectorVT(InEltVT, WidenSize / InEltSize);
8065 Tmp1 = WidenVectorOp(Tmp1, NewInWidenVT);
8066 assert(Tmp1.getValueType().getSizeInBits() == WidenVT.getSizeInBits());
Dale Johannesenc6be1102009-02-02 22:49:46 +00008067 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Tmp1);
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008068 } else {
8069 // If the result size is a multiple of the input size, widen the input
8070 // and then convert.
8071 unsigned InSize = InVT.getSizeInBits();
8072 assert(WidenSize % InSize == 0 &&
8073 "can not widen bit convert that are not multiple of element type");
8074 unsigned NewNumElts = WidenSize / InSize;
8075 SmallVector<SDValue, 16> Ops(NewNumElts);
Dale Johannesene8d72302009-02-06 23:05:02 +00008076 SDValue UndefVal = DAG.getUNDEF(InVT);
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008077 Ops[0] = Tmp1;
8078 for (unsigned i = 1; i < NewNumElts; ++i)
8079 Ops[i] = UndefVal;
Mon P Wang0c397192008-10-30 08:01:45 +00008080
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008081 MVT NewInVT = MVT::getVectorVT(InVT, NewNumElts);
Evan Chenga87008d2009-02-25 22:49:59 +00008082 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, NewInVT, &Ops[0], NewNumElts);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008083 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008084 }
8085 break;
8086 }
8087
8088 case ISD::SINT_TO_FP:
8089 case ISD::UINT_TO_FP:
8090 case ISD::FP_TO_SINT:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008091 case ISD::FP_TO_UINT:
8092 case ISD::FP_ROUND: {
Mon P Wang0c397192008-10-30 08:01:45 +00008093 SDValue Tmp1 = Node->getOperand(0);
8094 // Converts between two different types so we need to determine
8095 // the correct widen type for the input operand.
8096 MVT TVT = Tmp1.getValueType();
8097 assert(TVT.isVector() && "can not widen non vector type");
8098 MVT TEVT = TVT.getVectorElementType();
8099 MVT TWidenVT = MVT::getVectorVT(TEVT, NewNumElts);
8100 Tmp1 = WidenVectorOp(Tmp1, TWidenVT);
8101 assert(Tmp1.getValueType().getVectorNumElements() == NewNumElts);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008102 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008103 break;
8104 }
8105
8106 case ISD::FP_EXTEND:
8107 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
8108 case ISD::TRUNCATE:
8109 case ISD::SIGN_EXTEND:
8110 case ISD::ZERO_EXTEND:
8111 case ISD::ANY_EXTEND:
Mon P Wang0c397192008-10-30 08:01:45 +00008112 case ISD::SIGN_EXTEND_INREG:
8113 case ISD::FABS:
8114 case ISD::FNEG:
8115 case ISD::FSQRT:
8116 case ISD::FSIN:
Mon P Wang49292f12008-11-15 06:05:52 +00008117 case ISD::FCOS:
8118 case ISD::CTPOP:
8119 case ISD::CTTZ:
8120 case ISD::CTLZ: {
Mon P Wang0c397192008-10-30 08:01:45 +00008121 // Unary op widening
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008122 SDValue Tmp1;
Mon P Wang0c397192008-10-30 08:01:45 +00008123 Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8124 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008125 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008126 break;
8127 }
Mon P Wang77cdf302008-11-10 20:54:11 +00008128 case ISD::CONVERT_RNDSAT: {
8129 SDValue RndOp = Node->getOperand(3);
8130 SDValue SatOp = Node->getOperand(4);
Mon P Wang77cdf302008-11-10 20:54:11 +00008131 SDValue SrcOp = Node->getOperand(0);
8132
8133 // Converts between two different types so we need to determine
8134 // the correct widen type for the input operand.
8135 MVT SVT = SrcOp.getValueType();
8136 assert(SVT.isVector() && "can not widen non vector type");
8137 MVT SEVT = SVT.getVectorElementType();
8138 MVT SWidenVT = MVT::getVectorVT(SEVT, NewNumElts);
8139
8140 SrcOp = WidenVectorOp(SrcOp, SWidenVT);
8141 assert(SrcOp.getValueType() == WidenVT);
8142 SDValue DTyOp = DAG.getValueType(WidenVT);
8143 SDValue STyOp = DAG.getValueType(SrcOp.getValueType());
8144 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
8145
Dale Johannesenc460ae92009-02-04 00:13:36 +00008146 Result = DAG.getConvertRndSat(WidenVT, dl, SrcOp, DTyOp, STyOp,
Mon P Wang77cdf302008-11-10 20:54:11 +00008147 RndOp, SatOp, CvtCode);
Mon P Wang77cdf302008-11-10 20:54:11 +00008148 break;
8149 }
Mon P Wang0c397192008-10-30 08:01:45 +00008150 case ISD::FPOW:
Scott Michelfdc40a02009-02-17 22:15:04 +00008151 case ISD::FPOWI:
Mon P Wang0c397192008-10-30 08:01:45 +00008152 case ISD::ADD:
8153 case ISD::SUB:
8154 case ISD::MUL:
8155 case ISD::MULHS:
8156 case ISD::MULHU:
8157 case ISD::AND:
8158 case ISD::OR:
8159 case ISD::XOR:
8160 case ISD::FADD:
8161 case ISD::FSUB:
8162 case ISD::FMUL:
8163 case ISD::SDIV:
8164 case ISD::SREM:
8165 case ISD::FDIV:
8166 case ISD::FREM:
8167 case ISD::FCOPYSIGN:
8168 case ISD::UDIV:
8169 case ISD::UREM:
8170 case ISD::BSWAP: {
8171 // Binary op widening
Mon P Wang0c397192008-10-30 08:01:45 +00008172 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8173 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8174 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008175 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008176 break;
8177 }
8178
8179 case ISD::SHL:
8180 case ISD::SRA:
8181 case ISD::SRL: {
Mon P Wang0c397192008-10-30 08:01:45 +00008182 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8183 assert(Tmp1.getValueType() == WidenVT);
Mon P Wangfb13f002008-12-02 07:35:08 +00008184 SDValue ShOp = Node->getOperand(1);
8185 MVT ShVT = ShOp.getValueType();
8186 MVT NewShVT = MVT::getVectorVT(ShVT.getVectorElementType(),
8187 WidenVT.getVectorNumElements());
8188 ShOp = WidenVectorOp(ShOp, NewShVT);
8189 assert(ShOp.getValueType() == NewShVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008190 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, ShOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008191 break;
8192 }
Mon P Wangfb13f002008-12-02 07:35:08 +00008193
Mon P Wang0c397192008-10-30 08:01:45 +00008194 case ISD::EXTRACT_VECTOR_ELT: {
8195 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8196 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008197 Result = DAG.getNode(Node->getOpcode(), dl, EVT, Tmp1, Node->getOperand(1));
Mon P Wang0c397192008-10-30 08:01:45 +00008198 break;
8199 }
8200 case ISD::CONCAT_VECTORS: {
8201 // We concurrently support only widen on a multiple of the incoming vector.
8202 // We could widen on a multiple of the incoming operand if necessary.
8203 unsigned NumConcat = NewNumElts / NumElts;
8204 assert(NewNumElts % NumElts == 0 && "Can widen only a multiple of vector");
Dale Johannesene8d72302009-02-06 23:05:02 +00008205 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang0c397192008-10-30 08:01:45 +00008206 SmallVector<SDValue, 8> MOps;
8207 MOps.push_back(Op);
8208 for (unsigned i = 1; i != NumConcat; ++i) {
8209 MOps.push_back(UndefVal);
8210 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00008211 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang0c397192008-10-30 08:01:45 +00008212 &MOps[0], MOps.size()));
8213 break;
8214 }
8215 case ISD::EXTRACT_SUBVECTOR: {
Mon P Wang49292f12008-11-15 06:05:52 +00008216 SDValue Tmp1 = Node->getOperand(0);
8217 SDValue Idx = Node->getOperand(1);
8218 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
8219 if (CIdx && CIdx->getZExtValue() == 0) {
8220 // Since we are access the start of the vector, the incoming
8221 // vector type might be the proper.
8222 MVT Tmp1VT = Tmp1.getValueType();
8223 if (Tmp1VT == WidenVT)
8224 return Tmp1;
8225 else {
8226 unsigned Tmp1VTNumElts = Tmp1VT.getVectorNumElements();
8227 if (Tmp1VTNumElts < NewNumElts)
8228 Result = WidenVectorOp(Tmp1, WidenVT);
8229 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00008230 Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, WidenVT, Tmp1, Idx);
Mon P Wang49292f12008-11-15 06:05:52 +00008231 }
8232 } else if (NewNumElts % NumElts == 0) {
8233 // Widen the extracted subvector.
8234 unsigned NumConcat = NewNumElts / NumElts;
Dale Johannesene8d72302009-02-06 23:05:02 +00008235 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang49292f12008-11-15 06:05:52 +00008236 SmallVector<SDValue, 8> MOps;
8237 MOps.push_back(Op);
8238 for (unsigned i = 1; i != NumConcat; ++i) {
8239 MOps.push_back(UndefVal);
8240 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00008241 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang49292f12008-11-15 06:05:52 +00008242 &MOps[0], MOps.size()));
8243 } else {
8244 assert(0 && "can not widen extract subvector");
8245 // This could be implemented using insert and build vector but I would
8246 // like to see when this happens.
8247 }
Mon P Wang0c397192008-10-30 08:01:45 +00008248 break;
8249 }
8250
8251 case ISD::SELECT: {
Mon P Wang0c397192008-10-30 08:01:45 +00008252 // Determine new condition widen type and widen
8253 SDValue Cond1 = Node->getOperand(0);
8254 MVT CondVT = Cond1.getValueType();
8255 assert(CondVT.isVector() && "can not widen non vector type");
8256 MVT CondEVT = CondVT.getVectorElementType();
8257 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8258 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8259 assert(Cond1.getValueType() == CondWidenVT && "Condition not widen");
8260
8261 SDValue Tmp1 = WidenVectorOp(Node->getOperand(1), WidenVT);
8262 SDValue Tmp2 = WidenVectorOp(Node->getOperand(2), WidenVT);
8263 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008264 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008265 break;
8266 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008267
Mon P Wang0c397192008-10-30 08:01:45 +00008268 case ISD::SELECT_CC: {
Mon P Wang0c397192008-10-30 08:01:45 +00008269 // Determine new condition widen type and widen
8270 SDValue Cond1 = Node->getOperand(0);
8271 SDValue Cond2 = Node->getOperand(1);
8272 MVT CondVT = Cond1.getValueType();
8273 assert(CondVT.isVector() && "can not widen non vector type");
8274 assert(CondVT == Cond2.getValueType() && "mismatch lhs/rhs");
8275 MVT CondEVT = CondVT.getVectorElementType();
8276 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8277 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8278 Cond2 = WidenVectorOp(Cond2, CondWidenVT);
8279 assert(Cond1.getValueType() == CondWidenVT &&
8280 Cond2.getValueType() == CondWidenVT && "condition not widen");
8281
8282 SDValue Tmp1 = WidenVectorOp(Node->getOperand(2), WidenVT);
8283 SDValue Tmp2 = WidenVectorOp(Node->getOperand(3), WidenVT);
8284 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT &&
8285 "operands not widen");
Dale Johannesenc6be1102009-02-02 22:49:46 +00008286 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Cond2, Tmp1,
Mon P Wang0c397192008-10-30 08:01:45 +00008287 Tmp2, Node->getOperand(4));
Mon P Wang0c397192008-10-30 08:01:45 +00008288 break;
Mon P Wang2eb13c32008-10-30 18:21:52 +00008289 }
8290 case ISD::VSETCC: {
8291 // Determine widen for the operand
8292 SDValue Tmp1 = Node->getOperand(0);
8293 MVT TmpVT = Tmp1.getValueType();
8294 assert(TmpVT.isVector() && "can not widen non vector type");
8295 MVT TmpEVT = TmpVT.getVectorElementType();
8296 MVT TmpWidenVT = MVT::getVectorVT(TmpEVT, NewNumElts);
8297 Tmp1 = WidenVectorOp(Tmp1, TmpWidenVT);
8298 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), TmpWidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008299 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2,
Mon P Wang2eb13c32008-10-30 18:21:52 +00008300 Node->getOperand(2));
Mon P Wang0c397192008-10-30 08:01:45 +00008301 break;
8302 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008303 case ISD::ATOMIC_CMP_SWAP:
8304 case ISD::ATOMIC_LOAD_ADD:
8305 case ISD::ATOMIC_LOAD_SUB:
8306 case ISD::ATOMIC_LOAD_AND:
8307 case ISD::ATOMIC_LOAD_OR:
8308 case ISD::ATOMIC_LOAD_XOR:
8309 case ISD::ATOMIC_LOAD_NAND:
8310 case ISD::ATOMIC_LOAD_MIN:
8311 case ISD::ATOMIC_LOAD_MAX:
8312 case ISD::ATOMIC_LOAD_UMIN:
8313 case ISD::ATOMIC_LOAD_UMAX:
8314 case ISD::ATOMIC_SWAP: {
Mon P Wang0c397192008-10-30 08:01:45 +00008315 // For now, we assume that using vectors for these operations don't make
8316 // much sense so we just split it. We return an empty result
8317 SDValue X, Y;
8318 SplitVectorOp(Op, X, Y);
8319 return Result;
8320 break;
8321 }
8322
8323 } // end switch (Node->getOpcode())
8324
Scott Michelfdc40a02009-02-17 22:15:04 +00008325 assert(Result.getNode() && "Didn't set a result!");
Mon P Wang0c397192008-10-30 08:01:45 +00008326 if (Result != Op)
8327 Result = LegalizeOp(Result);
8328
Mon P Wangf007a8b2008-11-06 05:31:54 +00008329 AddWidenedOperand(Op, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008330 return Result;
8331}
8332
8333// Utility function to find a legal vector type and its associated element
8334// type from a preferred width and whose vector type must be the same size
8335// as the VVT.
8336// TLI: Target lowering used to determine legal types
8337// Width: Preferred width of element type
8338// VVT: Vector value type whose size we must match.
8339// Returns VecEVT and EVT - the vector type and its associated element type
Dan Gohman0d137d72009-01-15 16:43:02 +00008340static void FindWidenVecType(const TargetLowering &TLI, unsigned Width, MVT VVT,
Mon P Wang0c397192008-10-30 08:01:45 +00008341 MVT& EVT, MVT& VecEVT) {
8342 // We start with the preferred width, make it a power of 2 and see if
8343 // we can find a vector type of that width. If not, we reduce it by
8344 // another power of 2. If we have widen the type, a vector of bytes should
8345 // always be legal.
8346 assert(TLI.isTypeLegal(VVT));
8347 unsigned EWidth = Width + 1;
8348 do {
8349 assert(EWidth > 0);
8350 EWidth = (1 << Log2_32(EWidth-1));
8351 EVT = MVT::getIntegerVT(EWidth);
8352 unsigned NumEVT = VVT.getSizeInBits()/EWidth;
8353 VecEVT = MVT::getVectorVT(EVT, NumEVT);
8354 } while (!TLI.isTypeLegal(VecEVT) ||
8355 VVT.getSizeInBits() != VecEVT.getSizeInBits());
8356}
8357
8358SDValue SelectionDAGLegalize::genWidenVectorLoads(SDValueVector& LdChain,
8359 SDValue Chain,
8360 SDValue BasePtr,
8361 const Value *SV,
8362 int SVOffset,
8363 unsigned Alignment,
8364 bool isVolatile,
8365 unsigned LdWidth,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008366 MVT ResType,
8367 DebugLoc dl) {
Mon P Wang0c397192008-10-30 08:01:45 +00008368 // We assume that we have good rules to handle loading power of two loads so
8369 // we break down the operations to power of 2 loads. The strategy is to
8370 // load the largest power of 2 that we can easily transform to a legal vector
8371 // and then insert into that vector, and the cast the result into the legal
8372 // vector that we want. This avoids unnecessary stack converts.
8373 // TODO: If the Ldwidth is legal, alignment is the same as the LdWidth, and
8374 // the load is nonvolatile, we an use a wider load for the value.
8375 // Find a vector length we can load a large chunk
8376 MVT EVT, VecEVT;
8377 unsigned EVTWidth;
8378 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8379 EVTWidth = EVT.getSizeInBits();
8380
Dale Johannesenc6be1102009-02-02 22:49:46 +00008381 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV, SVOffset,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008382 isVolatile, Alignment);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008383 SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecEVT, LdOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008384 LdChain.push_back(LdOp.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00008385
Mon P Wang0c397192008-10-30 08:01:45 +00008386 // Check if we can load the element with one instruction
8387 if (LdWidth == EVTWidth) {
Dale Johannesenc6be1102009-02-02 22:49:46 +00008388 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008389 }
8390
8391 // The vector element order is endianness dependent.
8392 unsigned Idx = 1;
8393 LdWidth -= EVTWidth;
8394 unsigned Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008395
Mon P Wang0c397192008-10-30 08:01:45 +00008396 while (LdWidth > 0) {
8397 unsigned Increment = EVTWidth / 8;
8398 Offset += Increment;
Dale Johannesenc6be1102009-02-02 22:49:46 +00008399 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang0c397192008-10-30 08:01:45 +00008400 DAG.getIntPtrConstant(Increment));
8401
8402 if (LdWidth < EVTWidth) {
8403 // Our current type we are using is too large, use a smaller size by
8404 // using a smaller power of 2
8405 unsigned oEVTWidth = EVTWidth;
8406 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8407 EVTWidth = EVT.getSizeInBits();
8408 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008409 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008410 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008411 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008412
Dale Johannesenc6be1102009-02-02 22:49:46 +00008413 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008414 SVOffset+Offset, isVolatile,
8415 MinAlign(Alignment, Offset));
Mon P Wang0c397192008-10-30 08:01:45 +00008416 LdChain.push_back(LdOp.getValue(1));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008417 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecEVT, VecOp, LdOp,
Mon P Wang0c397192008-10-30 08:01:45 +00008418 DAG.getIntPtrConstant(Idx++));
Scott Michelfdc40a02009-02-17 22:15:04 +00008419
Mon P Wang0c397192008-10-30 08:01:45 +00008420 LdWidth -= EVTWidth;
8421 }
8422
Dale Johannesenc6be1102009-02-02 22:49:46 +00008423 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008424}
8425
8426bool SelectionDAGLegalize::LoadWidenVectorOp(SDValue& Result,
8427 SDValue& TFOp,
8428 SDValue Op,
8429 MVT NVT) {
8430 // TODO: Add support for ConcatVec and the ability to load many vector
8431 // types (e.g., v4i8). This will not work when a vector register
8432 // to memory mapping is strange (e.g., vector elements are not
8433 // stored in some sequential order).
8434
Scott Michelfdc40a02009-02-17 22:15:04 +00008435 // It must be true that the widen vector type is bigger than where
Mon P Wang0c397192008-10-30 08:01:45 +00008436 // we need to load from.
8437 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
8438 MVT LdVT = LD->getMemoryVT();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008439 DebugLoc dl = LD->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008440 assert(LdVT.isVector() && NVT.isVector());
8441 assert(LdVT.getVectorElementType() == NVT.getVectorElementType());
Scott Michelfdc40a02009-02-17 22:15:04 +00008442
Mon P Wang0c397192008-10-30 08:01:45 +00008443 // Load information
8444 SDValue Chain = LD->getChain();
8445 SDValue BasePtr = LD->getBasePtr();
8446 int SVOffset = LD->getSrcValueOffset();
8447 unsigned Alignment = LD->getAlignment();
8448 bool isVolatile = LD->isVolatile();
8449 const Value *SV = LD->getSrcValue();
8450 unsigned int LdWidth = LdVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00008451
Mon P Wang0c397192008-10-30 08:01:45 +00008452 // Load value as a large register
8453 SDValueVector LdChain;
8454 Result = genWidenVectorLoads(LdChain, Chain, BasePtr, SV, SVOffset,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008455 Alignment, isVolatile, LdWidth, NVT, dl);
Mon P Wang0c397192008-10-30 08:01:45 +00008456
8457 if (LdChain.size() == 1) {
8458 TFOp = LdChain[0];
8459 return true;
8460 }
8461 else {
Scott Michelfdc40a02009-02-17 22:15:04 +00008462 TFOp=DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008463 &LdChain[0], LdChain.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008464 return false;
8465 }
8466}
8467
8468
8469void SelectionDAGLegalize::genWidenVectorStores(SDValueVector& StChain,
8470 SDValue Chain,
8471 SDValue BasePtr,
8472 const Value *SV,
8473 int SVOffset,
8474 unsigned Alignment,
8475 bool isVolatile,
Mon P Wang49292f12008-11-15 06:05:52 +00008476 SDValue ValOp,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008477 unsigned StWidth,
8478 DebugLoc dl) {
Mon P Wang0c397192008-10-30 08:01:45 +00008479 // Breaks the stores into a series of power of 2 width stores. For any
8480 // width, we convert the vector to the vector of element size that we
8481 // want to store. This avoids requiring a stack convert.
Scott Michelfdc40a02009-02-17 22:15:04 +00008482
Mon P Wang0c397192008-10-30 08:01:45 +00008483 // Find a width of the element type we can store with
8484 MVT VVT = ValOp.getValueType();
8485 MVT EVT, VecEVT;
8486 unsigned EVTWidth;
8487 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8488 EVTWidth = EVT.getSizeInBits();
8489
Dale Johannesenc6be1102009-02-02 22:49:46 +00008490 SDValue VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, ValOp);
8491 SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wange0b436a2008-11-06 22:52:21 +00008492 DAG.getIntPtrConstant(0));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008493 SDValue StOp = DAG.getStore(Chain, dl, EOp, BasePtr, SV, SVOffset,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008494 isVolatile, Alignment);
Mon P Wang0c397192008-10-30 08:01:45 +00008495 StChain.push_back(StOp);
8496
8497 // Check if we are done
8498 if (StWidth == EVTWidth) {
8499 return;
8500 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008501
Mon P Wang0c397192008-10-30 08:01:45 +00008502 unsigned Idx = 1;
8503 StWidth -= EVTWidth;
8504 unsigned Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008505
Mon P Wang0c397192008-10-30 08:01:45 +00008506 while (StWidth > 0) {
8507 unsigned Increment = EVTWidth / 8;
8508 Offset += Increment;
Dale Johannesenc6be1102009-02-02 22:49:46 +00008509 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang0c397192008-10-30 08:01:45 +00008510 DAG.getIntPtrConstant(Increment));
Scott Michelfdc40a02009-02-17 22:15:04 +00008511
Mon P Wang0c397192008-10-30 08:01:45 +00008512 if (StWidth < EVTWidth) {
8513 // Our current type we are using is too large, use a smaller size by
8514 // using a smaller power of 2
8515 unsigned oEVTWidth = EVTWidth;
8516 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8517 EVTWidth = EVT.getSizeInBits();
8518 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008519 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008520 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008521 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008522
Dale Johannesenc6be1102009-02-02 22:49:46 +00008523 EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang49292f12008-11-15 06:05:52 +00008524 DAG.getIntPtrConstant(Idx++));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008525 StChain.push_back(DAG.getStore(Chain, dl, EOp, BasePtr, SV,
Mon P Wang0c397192008-10-30 08:01:45 +00008526 SVOffset + Offset, isVolatile,
8527 MinAlign(Alignment, Offset)));
8528 StWidth -= EVTWidth;
8529 }
8530}
8531
8532
8533SDValue SelectionDAGLegalize::StoreWidenVectorOp(StoreSDNode *ST,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008534 SDValue Chain,
8535 SDValue BasePtr) {
Mon P Wang0c397192008-10-30 08:01:45 +00008536 // TODO: It might be cleaner if we can use SplitVector and have more legal
8537 // vector types that can be stored into memory (e.g., v4xi8 can
8538 // be stored as a word). This will not work when a vector register
8539 // to memory mapping is strange (e.g., vector elements are not
8540 // stored in some sequential order).
Scott Michelfdc40a02009-02-17 22:15:04 +00008541
Mon P Wang0c397192008-10-30 08:01:45 +00008542 MVT StVT = ST->getMemoryVT();
8543 SDValue ValOp = ST->getValue();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008544 DebugLoc dl = ST->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008545
8546 // Check if we have widen this node with another value
8547 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(ValOp);
8548 if (I != WidenNodes.end())
8549 ValOp = I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00008550
Mon P Wang0c397192008-10-30 08:01:45 +00008551 MVT VVT = ValOp.getValueType();
8552
8553 // It must be true that we the widen vector type is bigger than where
8554 // we need to store.
8555 assert(StVT.isVector() && VVT.isVector());
Dan Gohmanf83c81a2009-01-28 03:10:52 +00008556 assert(StVT.bitsLT(VVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008557 assert(StVT.getVectorElementType() == VVT.getVectorElementType());
8558
8559 // Store value
8560 SDValueVector StChain;
8561 genWidenVectorStores(StChain, Chain, BasePtr, ST->getSrcValue(),
8562 ST->getSrcValueOffset(), ST->getAlignment(),
Dale Johannesenc6be1102009-02-02 22:49:46 +00008563 ST->isVolatile(), ValOp, StVT.getSizeInBits(), dl);
Mon P Wang0c397192008-10-30 08:01:45 +00008564 if (StChain.size() == 1)
8565 return StChain[0];
Scott Michelfdc40a02009-02-17 22:15:04 +00008566 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00008567 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
8568 &StChain[0], StChain.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008569}
8570
8571
Chris Lattner3e928bb2005-01-07 07:47:09 +00008572// SelectionDAG::Legalize - This is the entry point for the file.
8573//
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008574void SelectionDAG::Legalize(bool TypesNeedLegalizing, unsigned OptLevel) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00008575 /// run - This is the main entry point to this class.
8576 ///
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +00008577 SelectionDAGLegalize(*this, TypesNeedLegalizing, OptLevel).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00008578}
8579