blob: f2a6b24f05e27f9bad229e4b8b28ca74f1251aac [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 Wendling98a366d2009-04-29 23:29:43 +000058 CodeGenOpt::Level OptLevel;
Chris Lattner3e928bb2005-01-07 07:47:09 +000059
Chris Lattner6831a812006-02-13 09:18:02 +000060 // Libcall insertion helpers.
Scott Michelfdc40a02009-02-17 22:15:04 +000061
Chris Lattner6831a812006-02-13 09:18:02 +000062 /// LastCALLSEQ_END - This keeps track of the CALLSEQ_END node that has been
63 /// legalized. We use this to ensure that calls are properly serialized
64 /// against each other, including inserted libcalls.
Dan Gohman475871a2008-07-27 21:46:04 +000065 SDValue LastCALLSEQ_END;
Scott Michelfdc40a02009-02-17 22:15:04 +000066
Chris Lattner6831a812006-02-13 09:18:02 +000067 /// IsLegalizingCall - This member is used *only* for purposes of providing
Scott Michelfdc40a02009-02-17 22:15:04 +000068 /// helpful assertions that a libcall isn't created while another call is
Chris Lattner6831a812006-02-13 09:18:02 +000069 /// being legalized (which could lead to non-serialized call sequences).
70 bool IsLegalizingCall;
Scott Michelfdc40a02009-02-17 22:15:04 +000071
Mon P Wange5ab34e2009-02-04 19:38:14 +000072 /// IsLegalizingCallArguments - This member is used only for the purpose
73 /// of providing assert to check for LegalizeTypes because legalizing an
74 /// operation might introduce call nodes that might need type legalization.
75 bool IsLegalizingCallArgs;
76
Chris Lattner3e928bb2005-01-07 07:47:09 +000077 enum LegalizeAction {
Chris Lattner68a17fe2006-01-29 08:42:06 +000078 Legal, // The target natively supports this operation.
79 Promote, // This operation should be executed in a larger type.
Chris Lattnerd74ea2b2006-05-24 17:04:05 +000080 Expand // Try to expand this to other ops, otherwise use a libcall.
Chris Lattner3e928bb2005-01-07 07:47:09 +000081 };
Scott Michelfdc40a02009-02-17 22:15:04 +000082
Chris Lattner3e928bb2005-01-07 07:47:09 +000083 /// ValueTypeActions - This is a bitvector that contains two bits for each
84 /// value type, where the two bits correspond to the LegalizeAction enum.
85 /// This can be queried with "getTypeAction(VT)".
Chris Lattner68a17fe2006-01-29 08:42:06 +000086 TargetLowering::ValueTypeActionImpl ValueTypeActions;
Chris Lattner3e928bb2005-01-07 07:47:09 +000087
Chris Lattner3e928bb2005-01-07 07:47:09 +000088 /// LegalizedNodes - For nodes that are of legal width, and that have more
89 /// than one use, this map indicates what regularized operand to use. This
90 /// allows us to avoid legalizing the same thing more than once.
Dan Gohman475871a2008-07-27 21:46:04 +000091 DenseMap<SDValue, SDValue> LegalizedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +000092
Chris Lattner03c85462005-01-15 05:21:40 +000093 /// PromotedNodes - For nodes that are below legal width, and that have more
94 /// than one use, this map indicates what promoted value to use. This allows
95 /// us to avoid promoting the same thing more than once.
Dan Gohman475871a2008-07-27 21:46:04 +000096 DenseMap<SDValue, SDValue> PromotedNodes;
Chris Lattner03c85462005-01-15 05:21:40 +000097
Chris Lattnerc7029802006-03-18 01:44:44 +000098 /// ExpandedNodes - For nodes that need to be expanded this map indicates
Mon P Wang0c397192008-10-30 08:01:45 +000099 /// which operands are the expanded version of the input. This allows
Chris Lattnerc7029802006-03-18 01:44:44 +0000100 /// us to avoid expanding the same node more than once.
Dan Gohman475871a2008-07-27 21:46:04 +0000101 DenseMap<SDValue, std::pair<SDValue, SDValue> > ExpandedNodes;
Chris Lattner3e928bb2005-01-07 07:47:09 +0000102
Chris Lattnerc7029802006-03-18 01:44:44 +0000103 /// SplitNodes - For vector nodes that need to be split, this map indicates
Mon P Wang0c397192008-10-30 08:01:45 +0000104 /// which operands are the split version of the input. This allows us
Chris Lattnerc7029802006-03-18 01:44:44 +0000105 /// to avoid splitting the same node more than once.
Dan Gohman475871a2008-07-27 21:46:04 +0000106 std::map<SDValue, std::pair<SDValue, SDValue> > SplitNodes;
Scott Michelfdc40a02009-02-17 22:15:04 +0000107
Dan Gohman7f321562007-06-25 16:23:39 +0000108 /// ScalarizedNodes - For nodes that need to be converted from vector types to
109 /// scalar types, this contains the mapping of ones we have already
Chris Lattnerc7029802006-03-18 01:44:44 +0000110 /// processed to the result.
Dan Gohman475871a2008-07-27 21:46:04 +0000111 std::map<SDValue, SDValue> ScalarizedNodes;
Scott Michelfdc40a02009-02-17 22:15:04 +0000112
Mon P Wangf007a8b2008-11-06 05:31:54 +0000113 /// WidenNodes - For nodes that need to be widened from one vector type to
114 /// another, this contains the mapping of those that we have already widen.
115 /// This allows us to avoid widening more than once.
Mon P Wang0c397192008-10-30 08:01:45 +0000116 std::map<SDValue, SDValue> WidenNodes;
117
Dan Gohman475871a2008-07-27 21:46:04 +0000118 void AddLegalizedOperand(SDValue From, SDValue To) {
Chris Lattner69a889e2005-12-20 00:53:54 +0000119 LegalizedNodes.insert(std::make_pair(From, To));
120 // If someone requests legalization of the new node, return itself.
121 if (From != To)
122 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner8afc48e2005-01-07 22:28:47 +0000123 }
Dan Gohman475871a2008-07-27 21:46:04 +0000124 void AddPromotedOperand(SDValue From, SDValue To) {
Dan Gohman6b345ee2008-07-07 17:46:23 +0000125 bool isNew = PromotedNodes.insert(std::make_pair(From, To)).second;
Chris Lattner03c85462005-01-15 05:21:40 +0000126 assert(isNew && "Got into the map somehow?");
Evan Cheng24ac4082008-11-24 07:09:49 +0000127 isNew = isNew;
Chris Lattner69a889e2005-12-20 00:53:54 +0000128 // If someone requests legalization of the new node, return itself.
129 LegalizedNodes.insert(std::make_pair(To, To));
Chris Lattner03c85462005-01-15 05:21:40 +0000130 }
Mon P Wangf007a8b2008-11-06 05:31:54 +0000131 void AddWidenedOperand(SDValue From, SDValue To) {
Mon P Wang0c397192008-10-30 08:01:45 +0000132 bool isNew = WidenNodes.insert(std::make_pair(From, To)).second;
133 assert(isNew && "Got into the map somehow?");
Evan Cheng24ac4082008-11-24 07:09:49 +0000134 isNew = isNew;
Mon P Wang0c397192008-10-30 08:01:45 +0000135 // If someone requests legalization of the new node, return itself.
136 LegalizedNodes.insert(std::make_pair(To, To));
137 }
Chris Lattner8afc48e2005-01-07 22:28:47 +0000138
Chris Lattner3e928bb2005-01-07 07:47:09 +0000139public:
Eli Friedman1fde9c52009-05-24 02:46:31 +0000140 SelectionDAGLegalize(SelectionDAG &DAG, CodeGenOpt::Level ol);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000141
Chris Lattner3e928bb2005-01-07 07:47:09 +0000142 /// getTypeAction - Return how we should legalize values of this type, either
143 /// it is already legal or we need to expand it into multiple registers of
144 /// smaller integer type, or we need to promote it to a larger type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000145 LegalizeAction getTypeAction(MVT VT) const {
Chris Lattner68a17fe2006-01-29 08:42:06 +0000146 return (LegalizeAction)ValueTypeActions.getTypeAction(VT);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000147 }
148
149 /// isTypeLegal - Return true if this type is legal on this target.
150 ///
Duncan Sands83ec4b62008-06-06 12:08:01 +0000151 bool isTypeLegal(MVT VT) const {
Chris Lattner3e928bb2005-01-07 07:47:09 +0000152 return getTypeAction(VT) == Legal;
153 }
154
Chris Lattner3e928bb2005-01-07 07:47:09 +0000155 void LegalizeDAG();
156
Chris Lattner456a93a2006-01-28 07:39:30 +0000157private:
Dan Gohman7f321562007-06-25 16:23:39 +0000158 /// HandleOp - Legalize, Promote, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000159 /// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000160 void HandleOp(SDValue Op);
Scott Michelfdc40a02009-02-17 22:15:04 +0000161
Chris Lattnerc7029802006-03-18 01:44:44 +0000162 /// LegalizeOp - We know that the specified value has a legal type.
163 /// Recursively ensure that the operands have legal types, then return the
164 /// result.
Dan Gohman475871a2008-07-27 21:46:04 +0000165 SDValue LegalizeOp(SDValue O);
Scott Michelfdc40a02009-02-17 22:15:04 +0000166
Dan Gohman82669522007-10-11 23:57:53 +0000167 /// UnrollVectorOp - We know that the given vector has a legal type, however
168 /// the operation it performs is not legal and is an operation that we have
169 /// no way of lowering. "Unroll" the vector, splitting out the scalars and
170 /// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000171 SDValue UnrollVectorOp(SDValue O);
Scott Michelfdc40a02009-02-17 22:15:04 +0000172
Nate Begeman68679912008-04-25 18:07:40 +0000173 /// PerformInsertVectorEltInMemory - Some target cannot handle a variable
174 /// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
175 /// is necessary to spill the vector being inserted into to memory, perform
176 /// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000177 SDValue PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val,
Dale Johannesenbb5da912009-02-02 20:41:04 +0000178 SDValue Idx, DebugLoc dl);
Dan Gohman82669522007-10-11 23:57:53 +0000179
Chris Lattnerc7029802006-03-18 01:44:44 +0000180 /// PromoteOp - Given an operation that produces a value in an invalid type,
181 /// promote it to compute the value into a larger type. The produced value
182 /// will have the correct bits for the low portion of the register, but no
183 /// guarantee is made about the top bits: it may be zero, sign-extended, or
184 /// garbage.
Dan Gohman475871a2008-07-27 21:46:04 +0000185 SDValue PromoteOp(SDValue O);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000186
Dan Gohman475871a2008-07-27 21:46:04 +0000187 /// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattnerc7029802006-03-18 01:44:44 +0000188 /// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this,
Dan Gohman929d3eb2008-10-01 15:07:49 +0000189 /// the LegalizedNodes map is filled in for any results that are not expanded,
Chris Lattnerc7029802006-03-18 01:44:44 +0000190 /// the ExpandedNodes map is filled in for any results that are expanded, and
191 /// the Lo/Hi values are returned. This applies to integer types and Vector
192 /// types.
Dan Gohman475871a2008-07-27 21:46:04 +0000193 void ExpandOp(SDValue O, SDValue &Lo, SDValue &Hi);
Chris Lattnerc7029802006-03-18 01:44:44 +0000194
Scott Michelfdc40a02009-02-17 22:15:04 +0000195 /// WidenVectorOp - Widen a vector operation to a wider type given by WidenVT
Mon P Wangf007a8b2008-11-06 05:31:54 +0000196 /// (e.g., v3i32 to v4i32). The produced value will have the correct value
197 /// for the existing elements but no guarantee is made about the new elements
198 /// at the end of the vector: it may be zero, ones, or garbage. This is useful
199 /// when we have an instruction operating on an illegal vector type and we
200 /// want to widen it to do the computation on a legal wider vector type.
Mon P Wang0c397192008-10-30 08:01:45 +0000201 SDValue WidenVectorOp(SDValue Op, MVT WidenVT);
202
Dan Gohman7f321562007-06-25 16:23:39 +0000203 /// SplitVectorOp - Given an operand of vector type, break it down into
204 /// two smaller values.
Dan Gohman475871a2008-07-27 21:46:04 +0000205 void SplitVectorOp(SDValue O, SDValue &Lo, SDValue &Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +0000206
Dan Gohman89b20c02007-06-27 14:06:22 +0000207 /// ScalarizeVectorOp - Given an operand of single-element vector type
208 /// (e.g. v1f32), convert it into the equivalent operation that returns a
209 /// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +0000210 SDValue ScalarizeVectorOp(SDValue O);
Scott Michelfdc40a02009-02-17 22:15:04 +0000211
Mon P Wangf007a8b2008-11-06 05:31:54 +0000212 /// Useful 16 element vector type that is used to pass operands for widening.
Scott Michelfdc40a02009-02-17 22:15:04 +0000213 typedef SmallVector<SDValue, 16> SDValueVector;
214
Mon P Wang0c397192008-10-30 08:01:45 +0000215 /// LoadWidenVectorOp - Load a vector for a wider type. Returns true if
216 /// the LdChain contains a single load and false if it contains a token
217 /// factor for multiple loads. It takes
218 /// Result: location to return the result
219 /// LdChain: location to return the load chain
220 /// Op: load operation to widen
221 /// NVT: widen vector result type we want for the load
Scott Michelfdc40a02009-02-17 22:15:04 +0000222 bool LoadWidenVectorOp(SDValue& Result, SDValue& LdChain,
Mon P Wang0c397192008-10-30 08:01:45 +0000223 SDValue Op, MVT NVT);
Scott Michelfdc40a02009-02-17 22:15:04 +0000224
Mon P Wang0c397192008-10-30 08:01:45 +0000225 /// Helper genWidenVectorLoads - Helper function to generate a set of
226 /// loads to load a vector with a resulting wider type. It takes
227 /// LdChain: list of chains for the load we have generated
228 /// Chain: incoming chain for the ld vector
229 /// BasePtr: base pointer to load from
230 /// SV: memory disambiguation source value
231 /// SVOffset: memory disambiugation offset
232 /// Alignment: alignment of the memory
233 /// isVolatile: volatile load
Scott Michelfdc40a02009-02-17 22:15:04 +0000234 /// LdWidth: width of memory that we want to load
Mon P Wang0c397192008-10-30 08:01:45 +0000235 /// ResType: the wider result result type for the resulting loaded vector
236 SDValue genWidenVectorLoads(SDValueVector& LdChain, SDValue Chain,
237 SDValue BasePtr, const Value *SV,
238 int SVOffset, unsigned Alignment,
239 bool isVolatile, unsigned LdWidth,
Dale Johannesenc6be1102009-02-02 22:49:46 +0000240 MVT ResType, DebugLoc dl);
Scott Michelfdc40a02009-02-17 22:15:04 +0000241
Mon P Wang0c397192008-10-30 08:01:45 +0000242 /// StoreWidenVectorOp - Stores a widen vector into non widen memory
243 /// location. It takes
244 /// ST: store node that we want to replace
245 /// Chain: incoming store chain
246 /// BasePtr: base address of where we want to store into
Scott Michelfdc40a02009-02-17 22:15:04 +0000247 SDValue StoreWidenVectorOp(StoreSDNode *ST, SDValue Chain,
Mon P Wang0c397192008-10-30 08:01:45 +0000248 SDValue BasePtr);
Scott Michelfdc40a02009-02-17 22:15:04 +0000249
Mon P Wang0c397192008-10-30 08:01:45 +0000250 /// Helper genWidenVectorStores - Helper function to generate a set of
251 /// stores to store a widen vector into non widen memory
252 // It takes
253 // StChain: list of chains for the stores we have generated
254 // Chain: incoming chain for the ld vector
255 // BasePtr: base pointer to load from
256 // SV: memory disambiguation source value
257 // SVOffset: memory disambiugation offset
258 // Alignment: alignment of the memory
259 // isVolatile: volatile lod
Scott Michelfdc40a02009-02-17 22:15:04 +0000260 // ValOp: value to store
261 // StWidth: width of memory that we want to store
Mon P Wang0c397192008-10-30 08:01:45 +0000262 void genWidenVectorStores(SDValueVector& StChain, SDValue Chain,
263 SDValue BasePtr, const Value *SV,
264 int SVOffset, unsigned Alignment,
265 bool isVolatile, SDValue ValOp,
Dale Johannesenc6be1102009-02-02 22:49:46 +0000266 unsigned StWidth, DebugLoc dl);
Scott Michelfdc40a02009-02-17 22:15:04 +0000267
Nate Begeman5a5ca152009-04-29 05:20:52 +0000268 /// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
269 /// performs the same shuffe in terms of order or result bytes, but on a type
270 /// whose vector element type is narrower than the original shuffle type.
271 /// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
272 SDValue ShuffleWithNarrowerEltType(MVT NVT, MVT VT, DebugLoc dl,
273 SDValue N1, SDValue N2,
274 SmallVectorImpl<int> &Mask) const;
Scott Michelfdc40a02009-02-17 22:15:04 +0000275
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000276 bool LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000277 SmallPtrSet<SDNode*, 32> &NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000278
Dale Johannesenbb5da912009-02-02 20:41:04 +0000279 void LegalizeSetCCOperands(SDValue &LHS, SDValue &RHS, SDValue &CC,
280 DebugLoc dl);
281 void LegalizeSetCCCondCode(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
282 DebugLoc dl);
283 void LegalizeSetCC(MVT VT, SDValue &LHS, SDValue &RHS, SDValue &CC,
284 DebugLoc dl) {
285 LegalizeSetCCOperands(LHS, RHS, CC, dl);
286 LegalizeSetCCCondCode(VT, LHS, RHS, CC, dl);
Evan Cheng7f042682008-10-15 02:05:31 +0000287 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000288
Dan Gohman475871a2008-07-27 21:46:04 +0000289 SDValue ExpandLibCall(RTLIB::Libcall LC, SDNode *Node, bool isSigned,
290 SDValue &Hi);
Dale Johannesenaf435272009-02-02 19:03:57 +0000291 SDValue ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl);
Chris Lattnercad063f2005-07-16 00:19:57 +0000292
Dale Johannesen8a782a22009-02-02 22:12:50 +0000293 SDValue EmitStackConvert(SDValue SrcOp, MVT SlotVT, MVT DestVT, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000294 SDValue ExpandBUILD_VECTOR(SDNode *Node);
295 SDValue ExpandSCALAR_TO_VECTOR(SDNode *Node);
Scott Michelfdc40a02009-02-17 22:15:04 +0000296 SDValue LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +0000297 SDValue Op, DebugLoc dl);
298 SDValue ExpandLegalINT_TO_FP(bool isSigned, SDValue LegalOp, MVT DestVT,
299 DebugLoc dl);
300 SDValue PromoteLegalINT_TO_FP(SDValue LegalOp, MVT DestVT, bool isSigned,
301 DebugLoc dl);
302 SDValue PromoteLegalFP_TO_INT(SDValue LegalOp, MVT DestVT, bool isSigned,
303 DebugLoc dl);
Jeff Cohen00b168892005-07-27 06:12:32 +0000304
Dale Johannesen8a782a22009-02-02 22:12:50 +0000305 SDValue ExpandBSWAP(SDValue Op, DebugLoc dl);
306 SDValue ExpandBitCount(unsigned Opc, SDValue Op, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000307 bool ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +0000308 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Dan Gohman475871a2008-07-27 21:46:04 +0000309 void ExpandShiftParts(unsigned NodeOp, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +0000310 SDValue &Lo, SDValue &Hi, DebugLoc dl);
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +0000311
Dan Gohman475871a2008-07-27 21:46:04 +0000312 SDValue ExpandEXTRACT_SUBVECTOR(SDValue Op);
313 SDValue ExpandEXTRACT_VECTOR_ELT(SDValue Op);
Eli Friedman3d43b3f2009-05-23 22:37:25 +0000314 SDValue ExpandExtractFromVectorThroughStack(SDValue Op);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000315};
316}
317
Nate Begeman5a5ca152009-04-29 05:20:52 +0000318/// ShuffleWithNarrowerEltType - Return a vector shuffle operation which
319/// performs the same shuffe in terms of order or result bytes, but on a type
320/// whose vector element type is narrower than the original shuffle type.
Nate Begeman9008ca62009-04-27 18:41:29 +0000321/// e.g. <v4i32> <0, 1, 0, 1> -> v8i16 <0, 1, 2, 3, 0, 1, 2, 3>
Nate Begeman5a5ca152009-04-29 05:20:52 +0000322SDValue
323SelectionDAGLegalize::ShuffleWithNarrowerEltType(MVT NVT, MVT VT, DebugLoc dl,
324 SDValue N1, SDValue N2,
Nate Begeman9008ca62009-04-27 18:41:29 +0000325 SmallVectorImpl<int> &Mask) const {
326 MVT EltVT = NVT.getVectorElementType();
Nate Begeman5a5ca152009-04-29 05:20:52 +0000327 unsigned NumMaskElts = VT.getVectorNumElements();
328 unsigned NumDestElts = NVT.getVectorNumElements();
Nate Begeman9008ca62009-04-27 18:41:29 +0000329 unsigned NumEltsGrowth = NumDestElts / NumMaskElts;
Chris Lattner4352cc92006-04-04 17:23:26 +0000330
Nate Begeman9008ca62009-04-27 18:41:29 +0000331 assert(NumEltsGrowth && "Cannot promote to vector type with fewer elts!");
332
333 if (NumEltsGrowth == 1)
334 return DAG.getVectorShuffle(NVT, dl, N1, N2, &Mask[0]);
335
336 SmallVector<int, 8> NewMask;
Nate Begeman5a5ca152009-04-29 05:20:52 +0000337 for (unsigned i = 0; i != NumMaskElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +0000338 int Idx = Mask[i];
339 for (unsigned j = 0; j != NumEltsGrowth; ++j) {
340 if (Idx < 0)
341 NewMask.push_back(-1);
342 else
343 NewMask.push_back(Idx * NumEltsGrowth + j);
Chris Lattner4352cc92006-04-04 17:23:26 +0000344 }
Chris Lattner4352cc92006-04-04 17:23:26 +0000345 }
Nate Begeman5a5ca152009-04-29 05:20:52 +0000346 assert(NewMask.size() == NumDestElts && "Non-integer NumEltsGrowth?");
Nate Begeman9008ca62009-04-27 18:41:29 +0000347 assert(TLI.isShuffleMaskLegal(NewMask, NVT) && "Shuffle not legal?");
348 return DAG.getVectorShuffle(NVT, dl, N1, N2, &NewMask[0]);
Chris Lattner4352cc92006-04-04 17:23:26 +0000349}
350
Bill Wendling5aa49772009-02-24 02:35:30 +0000351SelectionDAGLegalize::SelectionDAGLegalize(SelectionDAG &dag,
Eli Friedman1fde9c52009-05-24 02:46:31 +0000352 CodeGenOpt::Level ol)
Bill Wendlingbe8cc2a2009-04-29 00:15:41 +0000353 : TLI(dag.getTargetLoweringInfo()), DAG(dag), OptLevel(ol),
Eli Friedman1fde9c52009-05-24 02:46:31 +0000354 ValueTypeActions(TLI.getValueTypeActions()) {
Nate Begeman6a648612005-11-29 05:45:29 +0000355 assert(MVT::LAST_VALUETYPE <= 32 &&
Chris Lattner3e928bb2005-01-07 07:47:09 +0000356 "Too many value types for ValueTypeActions to hold!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000357}
358
Chris Lattner3e928bb2005-01-07 07:47:09 +0000359void SelectionDAGLegalize::LegalizeDAG() {
Chris Lattner6831a812006-02-13 09:18:02 +0000360 LastCALLSEQ_END = DAG.getEntryNode();
361 IsLegalizingCall = false;
Mon P Wange5ab34e2009-02-04 19:38:14 +0000362 IsLegalizingCallArgs = false;
363
Chris Lattnerab510a72005-10-02 17:49:46 +0000364 // The legalize process is inherently a bottom-up recursive process (users
365 // legalize their uses before themselves). Given infinite stack space, we
366 // could just start legalizing on the root and traverse the whole graph. In
367 // practice however, this causes us to run out of stack space on large basic
Chris Lattner32fca002005-10-06 01:20:27 +0000368 // blocks. To avoid this problem, compute an ordering of the nodes where each
369 // node is only legalized after all of its operands are legalized.
Dan Gohmanf06c8352008-09-30 18:30:35 +0000370 DAG.AssignTopologicalOrder();
371 for (SelectionDAG::allnodes_iterator I = DAG.allnodes_begin(),
372 E = prior(DAG.allnodes_end()); I != next(E); ++I)
373 HandleOp(SDValue(I, 0));
Chris Lattner32fca002005-10-06 01:20:27 +0000374
375 // Finally, it's possible the root changed. Get the new root.
Dan Gohman475871a2008-07-27 21:46:04 +0000376 SDValue OldRoot = DAG.getRoot();
Chris Lattner32fca002005-10-06 01:20:27 +0000377 assert(LegalizedNodes.count(OldRoot) && "Root didn't get legalized?");
378 DAG.setRoot(LegalizedNodes[OldRoot]);
Chris Lattner3e928bb2005-01-07 07:47:09 +0000379
380 ExpandedNodes.clear();
381 LegalizedNodes.clear();
Chris Lattner71c42a02005-01-16 01:11:45 +0000382 PromotedNodes.clear();
Chris Lattnerc7029802006-03-18 01:44:44 +0000383 SplitNodes.clear();
Dan Gohman7f321562007-06-25 16:23:39 +0000384 ScalarizedNodes.clear();
Mon P Wang0c397192008-10-30 08:01:45 +0000385 WidenNodes.clear();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000386
387 // Remove dead nodes now.
Chris Lattner190a4182006-08-04 17:45:20 +0000388 DAG.RemoveDeadNodes();
Chris Lattner3e928bb2005-01-07 07:47:09 +0000389}
390
Chris Lattner6831a812006-02-13 09:18:02 +0000391
392/// FindCallEndFromCallStart - Given a chained node that is part of a call
393/// sequence, find the CALLSEQ_END node that terminates the call sequence.
394static SDNode *FindCallEndFromCallStart(SDNode *Node) {
395 if (Node->getOpcode() == ISD::CALLSEQ_END)
396 return Node;
397 if (Node->use_empty())
398 return 0; // No CallSeqEnd
Scott Michelfdc40a02009-02-17 22:15:04 +0000399
Chris Lattner6831a812006-02-13 09:18:02 +0000400 // The chain is usually at the end.
Dan Gohman475871a2008-07-27 21:46:04 +0000401 SDValue TheChain(Node, Node->getNumValues()-1);
Chris Lattner6831a812006-02-13 09:18:02 +0000402 if (TheChain.getValueType() != MVT::Other) {
403 // Sometimes it's at the beginning.
Dan Gohman475871a2008-07-27 21:46:04 +0000404 TheChain = SDValue(Node, 0);
Chris Lattner6831a812006-02-13 09:18:02 +0000405 if (TheChain.getValueType() != MVT::Other) {
406 // Otherwise, hunt for it.
407 for (unsigned i = 1, e = Node->getNumValues(); i != e; ++i)
408 if (Node->getValueType(i) == MVT::Other) {
Dan Gohman475871a2008-07-27 21:46:04 +0000409 TheChain = SDValue(Node, i);
Chris Lattner6831a812006-02-13 09:18:02 +0000410 break;
411 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000412
413 // Otherwise, we walked into a node without a chain.
Chris Lattner6831a812006-02-13 09:18:02 +0000414 if (TheChain.getValueType() != MVT::Other)
415 return 0;
416 }
417 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000418
Chris Lattner6831a812006-02-13 09:18:02 +0000419 for (SDNode::use_iterator UI = Node->use_begin(),
420 E = Node->use_end(); UI != E; ++UI) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000421
Chris Lattner6831a812006-02-13 09:18:02 +0000422 // Make sure to only follow users of our token chain.
Dan Gohman89684502008-07-27 20:43:25 +0000423 SDNode *User = *UI;
Chris Lattner6831a812006-02-13 09:18:02 +0000424 for (unsigned i = 0, e = User->getNumOperands(); i != e; ++i)
425 if (User->getOperand(i) == TheChain)
426 if (SDNode *Result = FindCallEndFromCallStart(User))
427 return Result;
428 }
429 return 0;
430}
431
Scott Michelfdc40a02009-02-17 22:15:04 +0000432/// FindCallStartFromCallEnd - Given a chained node that is part of a call
Chris Lattner6831a812006-02-13 09:18:02 +0000433/// sequence, find the CALLSEQ_START node that initiates the call sequence.
434static SDNode *FindCallStartFromCallEnd(SDNode *Node) {
435 assert(Node && "Didn't find callseq_start for a call??");
436 if (Node->getOpcode() == ISD::CALLSEQ_START) return Node;
Scott Michelfdc40a02009-02-17 22:15:04 +0000437
Chris Lattner6831a812006-02-13 09:18:02 +0000438 assert(Node->getOperand(0).getValueType() == MVT::Other &&
439 "Node doesn't have a token chain argument!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000440 return FindCallStartFromCallEnd(Node->getOperand(0).getNode());
Chris Lattner6831a812006-02-13 09:18:02 +0000441}
442
443/// LegalizeAllNodesNotLeadingTo - Recursively walk the uses of N, looking to
Scott Michelfdc40a02009-02-17 22:15:04 +0000444/// see if any uses can reach Dest. If no dest operands can get to dest,
Chris Lattner6831a812006-02-13 09:18:02 +0000445/// legalize them, legalize ourself, and return false, otherwise, return true.
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000446///
447/// Keep track of the nodes we fine that actually do lead to Dest in
448/// NodesLeadingTo. This avoids retraversing them exponential number of times.
449///
450bool SelectionDAGLegalize::LegalizeAllNodesNotLeadingTo(SDNode *N, SDNode *Dest,
Chris Lattner00755df2007-02-04 00:27:56 +0000451 SmallPtrSet<SDNode*, 32> &NodesLeadingTo) {
Chris Lattner6831a812006-02-13 09:18:02 +0000452 if (N == Dest) return true; // N certainly leads to Dest :)
Scott Michelfdc40a02009-02-17 22:15:04 +0000453
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000454 // If we've already processed this node and it does lead to Dest, there is no
455 // need to reprocess it.
456 if (NodesLeadingTo.count(N)) return true;
Scott Michelfdc40a02009-02-17 22:15:04 +0000457
Chris Lattner6831a812006-02-13 09:18:02 +0000458 // If the first result of this node has been already legalized, then it cannot
459 // reach N.
460 switch (getTypeAction(N->getValueType(0))) {
Scott Michelfdc40a02009-02-17 22:15:04 +0000461 case Legal:
Dan Gohman475871a2008-07-27 21:46:04 +0000462 if (LegalizedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000463 break;
464 case Promote:
Dan Gohman475871a2008-07-27 21:46:04 +0000465 if (PromotedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000466 break;
467 case Expand:
Dan Gohman475871a2008-07-27 21:46:04 +0000468 if (ExpandedNodes.count(SDValue(N, 0))) return false;
Chris Lattner6831a812006-02-13 09:18:02 +0000469 break;
470 }
Scott Michelfdc40a02009-02-17 22:15:04 +0000471
Chris Lattner6831a812006-02-13 09:18:02 +0000472 // Okay, this node has not already been legalized. Check and legalize all
473 // operands. If none lead to Dest, then we can legalize this node.
474 bool OperandsLeadToDest = false;
475 for (unsigned i = 0, e = N->getNumOperands(); i != e; ++i)
476 OperandsLeadToDest |= // If an operand leads to Dest, so do we.
Gabor Greifba36cb52008-08-28 21:40:38 +0000477 LegalizeAllNodesNotLeadingTo(N->getOperand(i).getNode(), Dest, NodesLeadingTo);
Chris Lattner6831a812006-02-13 09:18:02 +0000478
Chris Lattnerc9cf4f12006-07-26 23:55:56 +0000479 if (OperandsLeadToDest) {
480 NodesLeadingTo.insert(N);
481 return true;
482 }
Chris Lattner6831a812006-02-13 09:18:02 +0000483
484 // Okay, this node looks safe, legalize it and return false.
Dan Gohman475871a2008-07-27 21:46:04 +0000485 HandleOp(SDValue(N, 0));
Chris Lattner6831a812006-02-13 09:18:02 +0000486 return false;
487}
488
Mon P Wang0c397192008-10-30 08:01:45 +0000489/// HandleOp - Legalize, Promote, Widen, or Expand the specified operand as
Chris Lattnerc7029802006-03-18 01:44:44 +0000490/// appropriate for its type.
Dan Gohman475871a2008-07-27 21:46:04 +0000491void SelectionDAGLegalize::HandleOp(SDValue Op) {
Eli Friedman1fde9c52009-05-24 02:46:31 +0000492 // Don't touch TargetConstants
493 if (Op.getOpcode() == ISD::TargetConstant)
494 return;
Duncan Sands83ec4b62008-06-06 12:08:01 +0000495 MVT VT = Op.getValueType();
Eli Friedman1fde9c52009-05-24 02:46:31 +0000496 // We should never see any illegal result types here.
497 assert(isTypeLegal(VT) && "Illegal type introduced after type legalization?");
Dan Gohman7f321562007-06-25 16:23:39 +0000498 switch (getTypeAction(VT)) {
Chris Lattnerc7029802006-03-18 01:44:44 +0000499 default: assert(0 && "Bad type action!");
Dan Gohman7f321562007-06-25 16:23:39 +0000500 case Legal: (void)LegalizeOp(Op); break;
Mon P Wang0c397192008-10-30 08:01:45 +0000501 case Promote:
502 if (!VT.isVector()) {
503 (void)PromoteOp(Op);
504 break;
505 }
506 else {
507 // See if we can widen otherwise use Expand to either scalarize or split
508 MVT WidenVT = TLI.getWidenVectorType(VT);
509 if (WidenVT != MVT::Other) {
510 (void) WidenVectorOp(Op, WidenVT);
511 break;
512 }
513 // else fall thru to expand since we can't widen the vector
514 }
Chris Lattnerc7029802006-03-18 01:44:44 +0000515 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +0000516 if (!VT.isVector()) {
Dan Gohman7f321562007-06-25 16:23:39 +0000517 // If this is an illegal scalar, expand it into its two component
518 // pieces.
Dan Gohman475871a2008-07-27 21:46:04 +0000519 SDValue X, Y;
Chris Lattner09ec1b02007-08-25 01:00:22 +0000520 if (Op.getOpcode() == ISD::TargetConstant)
521 break; // Allow illegal target nodes.
Chris Lattnerc7029802006-03-18 01:44:44 +0000522 ExpandOp(Op, X, Y);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000523 } else if (VT.getVectorNumElements() == 1) {
Dan Gohman7f321562007-06-25 16:23:39 +0000524 // If this is an illegal single element vector, convert it to a
525 // scalar operation.
526 (void)ScalarizeVectorOp(Op);
Chris Lattnerc7029802006-03-18 01:44:44 +0000527 } else {
Mon P Wang0c397192008-10-30 08:01:45 +0000528 // This is an illegal multiple element vector.
Dan Gohman7f321562007-06-25 16:23:39 +0000529 // Split it in half and legalize both parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000530 SDValue X, Y;
Dan Gohman7f321562007-06-25 16:23:39 +0000531 SplitVectorOp(Op, X, Y);
Chris Lattnerc7029802006-03-18 01:44:44 +0000532 }
533 break;
534 }
535}
Chris Lattner6831a812006-02-13 09:18:02 +0000536
Evan Cheng9f877882006-12-13 20:57:08 +0000537/// ExpandConstantFP - Expands the ConstantFP node to an integer constant or
538/// a load from the constant pool.
Dan Gohman475871a2008-07-27 21:46:04 +0000539static SDValue ExpandConstantFP(ConstantFPSDNode *CFP, bool UseCP,
Dan Gohman0d137d72009-01-15 16:43:02 +0000540 SelectionDAG &DAG, const TargetLowering &TLI) {
Evan Cheng00495212006-12-12 21:32:44 +0000541 bool Extend = false;
Dale Johannesen33c960f2009-02-04 20:06:27 +0000542 DebugLoc dl = CFP->getDebugLoc();
Evan Cheng00495212006-12-12 21:32:44 +0000543
544 // If a FP immediate is precise when represented as a float and if the
545 // target can do an extending load from float to double, we put it into
546 // the constant pool as a float, even if it's is statically typed as a
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000547 // double. This shrinks FP constants and canonicalizes them for targets where
548 // an FP extending load is the same cost as a normal load (such as on the x87
549 // fp stack or PPC FP unit).
Duncan Sands83ec4b62008-06-06 12:08:01 +0000550 MVT VT = CFP->getValueType(0);
Dan Gohman4fbd7962008-09-12 18:08:03 +0000551 ConstantFP *LLVMC = const_cast<ConstantFP*>(CFP->getConstantFPValue());
Evan Cheng9f877882006-12-13 20:57:08 +0000552 if (!UseCP) {
Chris Lattnerd2e936a2009-03-08 01:47:41 +0000553 assert((VT == MVT::f64 || VT == MVT::f32) && "Invalid type expansion");
Dale Johannesen7111b022008-10-09 18:53:47 +0000554 return DAG.getConstant(LLVMC->getValueAPF().bitcastToAPInt(),
Evan Chengef120572008-03-04 08:05:30 +0000555 (VT == MVT::f64) ? MVT::i64 : MVT::i32);
Evan Cheng279101e2006-12-12 22:19:28 +0000556 }
557
Duncan Sands83ec4b62008-06-06 12:08:01 +0000558 MVT OrigVT = VT;
559 MVT SVT = VT;
Evan Chengef120572008-03-04 08:05:30 +0000560 while (SVT != MVT::f32) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000561 SVT = (MVT::SimpleValueType)(SVT.getSimpleVT() - 1);
Evan Chengef120572008-03-04 08:05:30 +0000562 if (CFP->isValueValidForType(SVT, CFP->getValueAPF()) &&
563 // Only do this if the target has a native EXTLOAD instruction from
564 // smaller type.
Evan Cheng03294662008-10-14 21:26:46 +0000565 TLI.isLoadExtLegal(ISD::EXTLOAD, SVT) &&
Chris Lattneraa2acbb2008-03-05 06:46:58 +0000566 TLI.ShouldShrinkFPConstant(OrigVT)) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000567 const Type *SType = SVT.getTypeForMVT();
Evan Chengef120572008-03-04 08:05:30 +0000568 LLVMC = cast<ConstantFP>(ConstantExpr::getFPTrunc(LLVMC, SType));
569 VT = SVT;
570 Extend = true;
571 }
Evan Cheng00495212006-12-12 21:32:44 +0000572 }
573
Dan Gohman475871a2008-07-27 21:46:04 +0000574 SDValue CPIdx = DAG.getConstantPool(LLVMC, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +0000575 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Evan Chengef120572008-03-04 08:05:30 +0000576 if (Extend)
Dale Johannesen33c960f2009-02-04 20:06:27 +0000577 return DAG.getExtLoad(ISD::EXTLOAD, dl,
Dale Johannesen39355f92009-02-04 02:34:38 +0000578 OrigVT, DAG.getEntryNode(),
Dan Gohman3069b872008-02-07 18:41:25 +0000579 CPIdx, PseudoSourceValue::getConstantPool(),
Dan Gohman50284d82008-09-16 22:05:41 +0000580 0, VT, false, Alignment);
Dale Johannesen33c960f2009-02-04 20:06:27 +0000581 return DAG.getLoad(OrigVT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +0000582 PseudoSourceValue::getConstantPool(), 0, false, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +0000583}
584
Chris Lattner6831a812006-02-13 09:18:02 +0000585
Evan Cheng912095b2007-01-04 21:56:39 +0000586/// ExpandFCOPYSIGNToBitwiseOps - Expands fcopysign to a series of bitwise
587/// operations.
588static
Dan Gohman475871a2008-07-27 21:46:04 +0000589SDValue ExpandFCOPYSIGNToBitwiseOps(SDNode *Node, MVT NVT,
Dan Gohman0d137d72009-01-15 16:43:02 +0000590 SelectionDAG &DAG,
591 const TargetLowering &TLI) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000592 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000593 MVT VT = Node->getValueType(0);
594 MVT SrcVT = Node->getOperand(1).getValueType();
Dan Gohman7f321562007-06-25 16:23:39 +0000595 assert((SrcVT == MVT::f32 || SrcVT == MVT::f64) &&
596 "fcopysign expansion only supported for f32 and f64");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000597 MVT SrcNVT = (SrcVT == MVT::f64) ? MVT::i64 : MVT::i32;
Evan Cheng068c5f42007-01-05 21:31:51 +0000598
Evan Cheng912095b2007-01-04 21:56:39 +0000599 // First get the sign bit of second operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000600 SDValue Mask1 = (SrcVT == MVT::f64)
Evan Cheng912095b2007-01-04 21:56:39 +0000601 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), SrcVT)
602 : DAG.getConstantFP(BitsToFloat(1U << 31), SrcVT);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000603 Mask1 = DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT, Mask1);
Scott Michelfdc40a02009-02-17 22:15:04 +0000604 SDValue SignBit= DAG.getNode(ISD::BIT_CONVERT, dl, SrcNVT,
Dale Johannesenbb5da912009-02-02 20:41:04 +0000605 Node->getOperand(1));
606 SignBit = DAG.getNode(ISD::AND, dl, SrcNVT, SignBit, Mask1);
Evan Cheng912095b2007-01-04 21:56:39 +0000607 // Shift right or sign-extend it if the two operands have different types.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000608 int SizeDiff = SrcNVT.getSizeInBits() - NVT.getSizeInBits();
Evan Cheng912095b2007-01-04 21:56:39 +0000609 if (SizeDiff > 0) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000610 SignBit = DAG.getNode(ISD::SRL, dl, SrcNVT, SignBit,
Evan Cheng912095b2007-01-04 21:56:39 +0000611 DAG.getConstant(SizeDiff, TLI.getShiftAmountTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000612 SignBit = DAG.getNode(ISD::TRUNCATE, dl, NVT, SignBit);
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000613 } else if (SizeDiff < 0) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000614 SignBit = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, SignBit);
615 SignBit = DAG.getNode(ISD::SHL, dl, NVT, SignBit,
Chris Lattnerc563e1d2008-07-10 23:46:13 +0000616 DAG.getConstant(-SizeDiff, TLI.getShiftAmountTy()));
617 }
Evan Cheng068c5f42007-01-05 21:31:51 +0000618
619 // Clear the sign bit of first operand.
Dan Gohman475871a2008-07-27 21:46:04 +0000620 SDValue Mask2 = (VT == MVT::f64)
Evan Cheng068c5f42007-01-05 21:31:51 +0000621 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
622 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000623 Mask2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask2);
624 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
625 Result = DAG.getNode(ISD::AND, dl, NVT, Result, Mask2);
Evan Cheng068c5f42007-01-05 21:31:51 +0000626
627 // Or the value with the sign bit.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000628 Result = DAG.getNode(ISD::OR, dl, NVT, Result, SignBit);
Evan Cheng912095b2007-01-04 21:56:39 +0000629 return Result;
630}
631
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000632/// ExpandUnalignedStore - Expands an unaligned store to 2 half-size stores.
633static
Dan Gohman475871a2008-07-27 21:46:04 +0000634SDValue ExpandUnalignedStore(StoreSDNode *ST, SelectionDAG &DAG,
Dan Gohman0d137d72009-01-15 16:43:02 +0000635 const TargetLowering &TLI) {
Dan Gohman475871a2008-07-27 21:46:04 +0000636 SDValue Chain = ST->getChain();
637 SDValue Ptr = ST->getBasePtr();
638 SDValue Val = ST->getValue();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000639 MVT VT = Val.getValueType();
Dale Johannesen907f28c2007-09-08 19:29:23 +0000640 int Alignment = ST->getAlignment();
641 int SVOffset = ST->getSrcValueOffset();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000642 DebugLoc dl = ST->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000643 if (ST->getMemoryVT().isFloatingPoint() ||
644 ST->getMemoryVT().isVector()) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000645 MVT intVT = MVT::getIntegerVT(VT.getSizeInBits());
646 if (TLI.isTypeLegal(intVT)) {
647 // Expand to a bitconvert of the value to the integer type of the
648 // same size, then a (misaligned) int store.
649 // FIXME: Does not handle truncating floating point stores!
Dale Johannesenbb5da912009-02-02 20:41:04 +0000650 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, intVT, Val);
651 return DAG.getStore(Chain, dl, Result, Ptr, ST->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000652 SVOffset, ST->isVolatile(), Alignment);
653 } else {
654 // Do a (aligned) store to a stack slot, then copy from the stack slot
655 // to the final destination using (unaligned) integer loads and stores.
656 MVT StoredVT = ST->getMemoryVT();
657 MVT RegVT =
658 TLI.getRegisterType(MVT::getIntegerVT(StoredVT.getSizeInBits()));
659 unsigned StoredBytes = StoredVT.getSizeInBits() / 8;
660 unsigned RegBytes = RegVT.getSizeInBits() / 8;
661 unsigned NumRegs = (StoredBytes + RegBytes - 1) / RegBytes;
Dale Johannesen907f28c2007-09-08 19:29:23 +0000662
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000663 // Make sure the stack slot is also aligned for the register type.
664 SDValue StackPtr = DAG.CreateStackTemporary(StoredVT, RegVT);
665
666 // Perform the original store, only redirected to the stack slot.
Scott Michelfdc40a02009-02-17 22:15:04 +0000667 SDValue Store = DAG.getTruncStore(Chain, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +0000668 Val, StackPtr, NULL, 0, StoredVT);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000669 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
670 SmallVector<SDValue, 8> Stores;
671 unsigned Offset = 0;
672
673 // Do all but one copies using the full register width.
674 for (unsigned i = 1; i < NumRegs; i++) {
675 // Load one integer register's worth from the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000676 SDValue Load = DAG.getLoad(RegVT, dl, Store, StackPtr, NULL, 0);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000677 // Store it to the final location. Remember the store.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000678 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000679 ST->getSrcValue(), SVOffset + Offset,
680 ST->isVolatile(),
681 MinAlign(ST->getAlignment(), Offset)));
682 // Increment the pointers.
683 Offset += RegBytes;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000684 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000685 Increment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000686 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000687 }
688
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000689 // The last store may be partial. Do a truncating store. On big-endian
690 // machines this requires an extending load from the stack slot to ensure
691 // that the bits are in the right place.
692 MVT MemVT = MVT::getIntegerVT(8 * (StoredBytes - Offset));
Duncan Sands05e11fa2008-12-12 21:47:02 +0000693
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000694 // Load from the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000695 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Store, StackPtr,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000696 NULL, 0, MemVT);
697
Dale Johannesenbb5da912009-02-02 20:41:04 +0000698 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000699 ST->getSrcValue(), SVOffset + Offset,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000700 MemVT, ST->isVolatile(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000701 MinAlign(ST->getAlignment(), Offset)));
702 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000703 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sands05e11fa2008-12-12 21:47:02 +0000704 Stores.size());
705 }
Dale Johannesen907f28c2007-09-08 19:29:23 +0000706 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000707 assert(ST->getMemoryVT().isInteger() &&
708 !ST->getMemoryVT().isVector() &&
Dale Johannesen907f28c2007-09-08 19:29:23 +0000709 "Unaligned store of unknown type.");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000710 // Get the half-size VT
Duncan Sands83ec4b62008-06-06 12:08:01 +0000711 MVT NewStoredVT =
712 (MVT::SimpleValueType)(ST->getMemoryVT().getSimpleVT() - 1);
713 int NumBits = NewStoredVT.getSizeInBits();
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000714 int IncrementSize = NumBits / 8;
715
716 // Divide the stored value in two parts.
Dan Gohman475871a2008-07-27 21:46:04 +0000717 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
718 SDValue Lo = Val;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000719 SDValue Hi = DAG.getNode(ISD::SRL, dl, VT, Val, ShiftAmount);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000720
721 // Store the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000722 SDValue Store1, Store2;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000723 Store1 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Lo:Hi, Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000724 ST->getSrcValue(), SVOffset, NewStoredVT,
725 ST->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000726 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000727 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Duncan Sandsdc846502007-10-28 12:59:45 +0000728 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000729 Store2 = DAG.getTruncStore(Chain, dl, TLI.isLittleEndian()?Hi:Lo, Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000730 ST->getSrcValue(), SVOffset + IncrementSize,
731 NewStoredVT, ST->isVolatile(), Alignment);
732
Dale Johannesenbb5da912009-02-02 20:41:04 +0000733 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Store1, Store2);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000734}
735
736/// ExpandUnalignedLoad - Expands an unaligned load to 2 half-size loads.
737static
Dan Gohman475871a2008-07-27 21:46:04 +0000738SDValue ExpandUnalignedLoad(LoadSDNode *LD, SelectionDAG &DAG,
Dan Gohmane9530ec2009-01-15 16:58:17 +0000739 const TargetLowering &TLI) {
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000740 int SVOffset = LD->getSrcValueOffset();
Dan Gohman475871a2008-07-27 21:46:04 +0000741 SDValue Chain = LD->getChain();
742 SDValue Ptr = LD->getBasePtr();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000743 MVT VT = LD->getValueType(0);
744 MVT LoadedVT = LD->getMemoryVT();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000745 DebugLoc dl = LD->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +0000746 if (VT.isFloatingPoint() || VT.isVector()) {
Duncan Sands05e11fa2008-12-12 21:47:02 +0000747 MVT intVT = MVT::getIntegerVT(LoadedVT.getSizeInBits());
748 if (TLI.isTypeLegal(intVT)) {
749 // Expand to a (misaligned) integer load of the same size,
750 // then bitconvert to floating point or vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000751 SDValue newLoad = DAG.getLoad(intVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000752 SVOffset, LD->isVolatile(),
Dale Johannesen907f28c2007-09-08 19:29:23 +0000753 LD->getAlignment());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000754 SDValue Result = DAG.getNode(ISD::BIT_CONVERT, dl, LoadedVT, newLoad);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000755 if (VT.isFloatingPoint() && LoadedVT != VT)
Dale Johannesenbb5da912009-02-02 20:41:04 +0000756 Result = DAG.getNode(ISD::FP_EXTEND, dl, VT, Result);
Dale Johannesen907f28c2007-09-08 19:29:23 +0000757
Duncan Sands05e11fa2008-12-12 21:47:02 +0000758 SDValue Ops[] = { Result, Chain };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000759 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000760 } else {
761 // Copy the value to a (aligned) stack slot using (unaligned) integer
762 // loads and stores, then do a (aligned) load from the stack slot.
763 MVT RegVT = TLI.getRegisterType(intVT);
764 unsigned LoadedBytes = LoadedVT.getSizeInBits() / 8;
765 unsigned RegBytes = RegVT.getSizeInBits() / 8;
766 unsigned NumRegs = (LoadedBytes + RegBytes - 1) / RegBytes;
767
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000768 // Make sure the stack slot is also aligned for the register type.
769 SDValue StackBase = DAG.CreateStackTemporary(LoadedVT, RegVT);
770
Duncan Sands05e11fa2008-12-12 21:47:02 +0000771 SDValue Increment = DAG.getConstant(RegBytes, TLI.getPointerTy());
772 SmallVector<SDValue, 8> Stores;
773 SDValue StackPtr = StackBase;
774 unsigned Offset = 0;
775
776 // Do all but one copies using the full register width.
777 for (unsigned i = 1; i < NumRegs; i++) {
778 // Load one integer register's worth from the original location.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000779 SDValue Load = DAG.getLoad(RegVT, dl, Chain, Ptr, LD->getSrcValue(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000780 SVOffset + Offset, LD->isVolatile(),
781 MinAlign(LD->getAlignment(), Offset));
782 // Follow the load with a store to the stack slot. Remember the store.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000783 Stores.push_back(DAG.getStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000784 NULL, 0));
785 // Increment the pointers.
786 Offset += RegBytes;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000787 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr, Increment);
788 StackPtr = DAG.getNode(ISD::ADD, dl, StackPtr.getValueType(), StackPtr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000789 Increment);
790 }
791
792 // The last copy may be partial. Do an extending load.
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000793 MVT MemVT = MVT::getIntegerVT(8 * (LoadedBytes - Offset));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000794 SDValue Load = DAG.getExtLoad(ISD::EXTLOAD, dl, RegVT, Chain, Ptr,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000795 LD->getSrcValue(), SVOffset + Offset,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000796 MemVT, LD->isVolatile(),
Duncan Sands05e11fa2008-12-12 21:47:02 +0000797 MinAlign(LD->getAlignment(), Offset));
798 // Follow the load with a store to the stack slot. Remember the store.
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000799 // On big-endian machines this requires a truncating store to ensure
800 // that the bits end up in the right place.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000801 Stores.push_back(DAG.getTruncStore(Load.getValue(1), dl, Load, StackPtr,
Duncan Sandsfd6673c2008-12-13 07:18:38 +0000802 NULL, 0, MemVT));
Duncan Sands05e11fa2008-12-12 21:47:02 +0000803
804 // The order of the stores doesn't matter - say it with a TokenFactor.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000805 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, &Stores[0],
Duncan Sands05e11fa2008-12-12 21:47:02 +0000806 Stores.size());
807
808 // Finally, perform the original load only redirected to the stack slot.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000809 Load = DAG.getExtLoad(LD->getExtensionType(), dl, VT, TF, StackBase,
Duncan Sands05e11fa2008-12-12 21:47:02 +0000810 NULL, 0, LoadedVT);
811
812 // Callers expect a MERGE_VALUES node.
813 SDValue Ops[] = { Load, TF };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000814 return DAG.getMergeValues(Ops, 2, dl);
Duncan Sands05e11fa2008-12-12 21:47:02 +0000815 }
Dale Johannesen907f28c2007-09-08 19:29:23 +0000816 }
Duncan Sands83ec4b62008-06-06 12:08:01 +0000817 assert(LoadedVT.isInteger() && !LoadedVT.isVector() &&
Chris Lattnere400af82007-11-19 21:38:03 +0000818 "Unaligned load of unsupported type.");
819
Dale Johannesen8155d642008-02-27 22:36:00 +0000820 // Compute the new VT that is half the size of the old one. This is an
821 // integer MVT.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000822 unsigned NumBits = LoadedVT.getSizeInBits();
823 MVT NewLoadedVT;
824 NewLoadedVT = MVT::getIntegerVT(NumBits/2);
Chris Lattnere400af82007-11-19 21:38:03 +0000825 NumBits >>= 1;
Scott Michelfdc40a02009-02-17 22:15:04 +0000826
Chris Lattnere400af82007-11-19 21:38:03 +0000827 unsigned Alignment = LD->getAlignment();
828 unsigned IncrementSize = NumBits / 8;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000829 ISD::LoadExtType HiExtType = LD->getExtensionType();
830
831 // If the original load is NON_EXTLOAD, the hi part load must be ZEXTLOAD.
832 if (HiExtType == ISD::NON_EXTLOAD)
833 HiExtType = ISD::ZEXTLOAD;
834
835 // Load the value in two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000836 SDValue Lo, Hi;
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000837 if (TLI.isLittleEndian()) {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000838 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000839 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000840 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000841 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000842 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000843 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000844 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000845 } else {
Dale Johannesenbb5da912009-02-02 20:41:04 +0000846 Hi = DAG.getExtLoad(HiExtType, dl, VT, Chain, Ptr, LD->getSrcValue(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +0000847 SVOffset, NewLoadedVT, LD->isVolatile(), Alignment);
Dale Johannesenbb5da912009-02-02 20:41:04 +0000848 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000849 DAG.getConstant(IncrementSize, TLI.getPointerTy()));
Dale Johannesenbb5da912009-02-02 20:41:04 +0000850 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl, VT, Chain, Ptr, LD->getSrcValue(),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000851 SVOffset + IncrementSize, NewLoadedVT, LD->isVolatile(),
Duncan Sandsdc846502007-10-28 12:59:45 +0000852 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000853 }
854
855 // aggregate the two parts
Dan Gohman475871a2008-07-27 21:46:04 +0000856 SDValue ShiftAmount = DAG.getConstant(NumBits, TLI.getShiftAmountTy());
Dale Johannesenbb5da912009-02-02 20:41:04 +0000857 SDValue Result = DAG.getNode(ISD::SHL, dl, VT, Hi, ShiftAmount);
858 Result = DAG.getNode(ISD::OR, dl, VT, Result, Lo);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000859
Dale Johannesenbb5da912009-02-02 20:41:04 +0000860 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000861 Hi.getValue(1));
862
Dan Gohman475871a2008-07-27 21:46:04 +0000863 SDValue Ops[] = { Result, TF };
Dale Johannesenbb5da912009-02-02 20:41:04 +0000864 return DAG.getMergeValues(Ops, 2, dl);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +0000865}
Evan Cheng912095b2007-01-04 21:56:39 +0000866
Dan Gohman82669522007-10-11 23:57:53 +0000867/// UnrollVectorOp - We know that the given vector has a legal type, however
868/// the operation it performs is not legal and is an operation that we have
869/// no way of lowering. "Unroll" the vector, splitting out the scalars and
870/// operating on each element individually.
Dan Gohman475871a2008-07-27 21:46:04 +0000871SDValue SelectionDAGLegalize::UnrollVectorOp(SDValue Op) {
Duncan Sands83ec4b62008-06-06 12:08:01 +0000872 MVT VT = Op.getValueType();
Dan Gohman82669522007-10-11 23:57:53 +0000873 assert(isTypeLegal(VT) &&
874 "Caller should expand or promote operands that are not legal!");
Gabor Greifba36cb52008-08-28 21:40:38 +0000875 assert(Op.getNode()->getNumValues() == 1 &&
Dan Gohman82669522007-10-11 23:57:53 +0000876 "Can't unroll a vector with multiple results!");
Duncan Sands83ec4b62008-06-06 12:08:01 +0000877 unsigned NE = VT.getVectorNumElements();
878 MVT EltVT = VT.getVectorElementType();
Dale Johannesen6f38cb62009-02-07 19:59:05 +0000879 DebugLoc dl = Op.getDebugLoc();
Dan Gohman82669522007-10-11 23:57:53 +0000880
Dan Gohman475871a2008-07-27 21:46:04 +0000881 SmallVector<SDValue, 8> Scalars;
882 SmallVector<SDValue, 4> Operands(Op.getNumOperands());
Dan Gohman82669522007-10-11 23:57:53 +0000883 for (unsigned i = 0; i != NE; ++i) {
884 for (unsigned j = 0; j != Op.getNumOperands(); ++j) {
Dan Gohman475871a2008-07-27 21:46:04 +0000885 SDValue Operand = Op.getOperand(j);
Duncan Sands83ec4b62008-06-06 12:08:01 +0000886 MVT OperandVT = Operand.getValueType();
887 if (OperandVT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +0000888 // A vector operand; extract a single element.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000889 MVT OperandEltVT = OperandVT.getVectorElementType();
Dale Johannesenbb5da912009-02-02 20:41:04 +0000890 Operands[j] = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
Dan Gohman82669522007-10-11 23:57:53 +0000891 OperandEltVT,
892 Operand,
893 DAG.getConstant(i, MVT::i32));
894 } else {
895 // A scalar operand; just use it as is.
896 Operands[j] = Operand;
897 }
898 }
Mon P Wange9f10152008-12-09 05:46:39 +0000899
900 switch (Op.getOpcode()) {
901 default:
Dale Johannesenbb5da912009-02-02 20:41:04 +0000902 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT,
Mon P Wange9f10152008-12-09 05:46:39 +0000903 &Operands[0], Operands.size()));
904 break;
905 case ISD::SHL:
906 case ISD::SRA:
907 case ISD::SRL:
Duncan Sands92abc622009-01-31 15:50:11 +0000908 case ISD::ROTL:
909 case ISD::ROTR:
Dale Johannesenbb5da912009-02-02 20:41:04 +0000910 Scalars.push_back(DAG.getNode(Op.getOpcode(), dl, EltVT, Operands[0],
Duncan Sands92abc622009-01-31 15:50:11 +0000911 DAG.getShiftAmountOperand(Operands[1])));
Mon P Wange9f10152008-12-09 05:46:39 +0000912 break;
913 }
Dan Gohman82669522007-10-11 23:57:53 +0000914 }
915
Evan Chenga87008d2009-02-25 22:49:59 +0000916 return DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Scalars[0], Scalars.size());
Dan Gohman82669522007-10-11 23:57:53 +0000917}
918
Duncan Sands007f9842008-01-10 10:28:30 +0000919/// GetFPLibCall - Return the right libcall for the given floating point type.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000920static RTLIB::Libcall GetFPLibCall(MVT VT,
Duncan Sands007f9842008-01-10 10:28:30 +0000921 RTLIB::Libcall Call_F32,
922 RTLIB::Libcall Call_F64,
923 RTLIB::Libcall Call_F80,
924 RTLIB::Libcall Call_PPCF128) {
925 return
926 VT == MVT::f32 ? Call_F32 :
927 VT == MVT::f64 ? Call_F64 :
928 VT == MVT::f80 ? Call_F80 :
929 VT == MVT::ppcf128 ? Call_PPCF128 :
930 RTLIB::UNKNOWN_LIBCALL;
931}
932
Nate Begeman68679912008-04-25 18:07:40 +0000933/// PerformInsertVectorEltInMemory - Some target cannot handle a variable
934/// insertion index for the INSERT_VECTOR_ELT instruction. In this case, it
935/// is necessary to spill the vector being inserted into to memory, perform
936/// the insert there, and then read the result back.
Dan Gohman475871a2008-07-27 21:46:04 +0000937SDValue SelectionDAGLegalize::
Dale Johannesenbb5da912009-02-02 20:41:04 +0000938PerformInsertVectorEltInMemory(SDValue Vec, SDValue Val, SDValue Idx,
939 DebugLoc dl) {
Dan Gohman475871a2008-07-27 21:46:04 +0000940 SDValue Tmp1 = Vec;
941 SDValue Tmp2 = Val;
942 SDValue Tmp3 = Idx;
Scott Michelfdc40a02009-02-17 22:15:04 +0000943
Nate Begeman68679912008-04-25 18:07:40 +0000944 // If the target doesn't support this, we have to spill the input vector
945 // to a temporary stack slot, update the element, then reload it. This is
946 // badness. We could also load the value into a vector register (either
947 // with a "move to register" or "extload into register" instruction, then
948 // permute it into place, if the idx is a constant and if the idx is
949 // supported by the target.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000950 MVT VT = Tmp1.getValueType();
951 MVT EltVT = VT.getVectorElementType();
952 MVT IdxVT = Tmp3.getValueType();
953 MVT PtrVT = TLI.getPointerTy();
Dan Gohman475871a2008-07-27 21:46:04 +0000954 SDValue StackPtr = DAG.CreateStackTemporary(VT);
Nate Begeman68679912008-04-25 18:07:40 +0000955
Gabor Greifba36cb52008-08-28 21:40:38 +0000956 int SPFI = cast<FrameIndexSDNode>(StackPtr.getNode())->getIndex();
Nate Begeman68679912008-04-25 18:07:40 +0000957
958 // Store the vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000959 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Tmp1, StackPtr,
Mon P Wang0c397192008-10-30 08:01:45 +0000960 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000961
962 // Truncate or zero extend offset to target pointer type.
Duncan Sands8e4eb092008-06-08 20:54:56 +0000963 unsigned CastOpc = IdxVT.bitsGT(PtrVT) ? ISD::TRUNCATE : ISD::ZERO_EXTEND;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000964 Tmp3 = DAG.getNode(CastOpc, dl, PtrVT, Tmp3);
Nate Begeman68679912008-04-25 18:07:40 +0000965 // Add the offset to the index.
Duncan Sands83ec4b62008-06-06 12:08:01 +0000966 unsigned EltSize = EltVT.getSizeInBits()/8;
Dale Johannesenbb5da912009-02-02 20:41:04 +0000967 Tmp3 = DAG.getNode(ISD::MUL, dl, IdxVT, Tmp3,DAG.getConstant(EltSize, IdxVT));
968 SDValue StackPtr2 = DAG.getNode(ISD::ADD, dl, IdxVT, Tmp3, StackPtr);
Nate Begeman68679912008-04-25 18:07:40 +0000969 // Store the scalar value.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000970 Ch = DAG.getTruncStore(Ch, dl, Tmp2, StackPtr2,
Dan Gohmana54cf172008-07-11 22:44:52 +0000971 PseudoSourceValue::getFixedStack(SPFI), 0, EltVT);
Nate Begeman68679912008-04-25 18:07:40 +0000972 // Load the updated vector.
Dale Johannesenbb5da912009-02-02 20:41:04 +0000973 return DAG.getLoad(VT, dl, Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +0000974 PseudoSourceValue::getFixedStack(SPFI), 0);
Nate Begeman68679912008-04-25 18:07:40 +0000975}
976
Mon P Wange9f10152008-12-09 05:46:39 +0000977
Dan Gohmana3466152007-07-13 20:14:11 +0000978/// LegalizeOp - We know that the specified value has a legal type, and
979/// that its operands are legal. Now ensure that the operation itself
980/// is legal, recursively ensuring that the operands' operations remain
981/// legal.
Dan Gohman475871a2008-07-27 21:46:04 +0000982SDValue SelectionDAGLegalize::LegalizeOp(SDValue Op) {
Chris Lattner09ec1b02007-08-25 01:00:22 +0000983 if (Op.getOpcode() == ISD::TargetConstant) // Allow illegal target nodes.
984 return Op;
Scott Michelfdc40a02009-02-17 22:15:04 +0000985
Gabor Greifba36cb52008-08-28 21:40:38 +0000986 SDNode *Node = Op.getNode();
Dale Johannesen7d2ad622009-01-30 23:10:59 +0000987 DebugLoc dl = Node->getDebugLoc();
Chris Lattnere3304a32005-01-08 20:35:13 +0000988
Eli Friedman1fde9c52009-05-24 02:46:31 +0000989 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
990 assert(getTypeAction(Node->getValueType(i)) == Legal &&
991 "Unexpected illegal type!");
992
993 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
994 assert((isTypeLegal(Node->getOperand(i).getValueType()) ||
995 Node->getOperand(i).getOpcode() == ISD::TargetConstant) &&
996 "Unexpected illegal type!");
Chris Lattner3e928bb2005-01-07 07:47:09 +0000997
Chris Lattner45982da2005-05-12 16:53:42 +0000998 // Note that LegalizeOp may be reentered even from single-use nodes, which
999 // means that we always must cache transformed nodes.
Dan Gohman475871a2008-07-27 21:46:04 +00001000 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattnere1bd8222005-01-11 05:57:22 +00001001 if (I != LegalizedNodes.end()) return I->second;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001002
Dan Gohman475871a2008-07-27 21:46:04 +00001003 SDValue Tmp1, Tmp2, Tmp3, Tmp4;
1004 SDValue Result = Op;
Chris Lattner456a93a2006-01-28 07:39:30 +00001005 bool isCustom = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001006
Chris Lattner3e928bb2005-01-07 07:47:09 +00001007 switch (Node->getOpcode()) {
Chris Lattner948c1b12006-01-28 08:31:04 +00001008 case ISD::FrameIndex:
1009 case ISD::EntryToken:
1010 case ISD::Register:
1011 case ISD::BasicBlock:
1012 case ISD::TargetFrameIndex:
Nate Begeman37efe672006-04-22 18:53:45 +00001013 case ISD::TargetJumpTable:
Chris Lattner948c1b12006-01-28 08:31:04 +00001014 case ISD::TargetConstant:
Chris Lattner3181a772006-01-29 06:26:56 +00001015 case ISD::TargetConstantFP:
Chris Lattner948c1b12006-01-28 08:31:04 +00001016 case ISD::TargetConstantPool:
1017 case ISD::TargetGlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001018 case ISD::TargetGlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +00001019 case ISD::TargetExternalSymbol:
Chris Lattner948c1b12006-01-28 08:31:04 +00001020 case ISD::VALUETYPE:
1021 case ISD::SRCVALUE:
Dan Gohman69de1932008-02-06 22:27:42 +00001022 case ISD::MEMOPERAND:
Chris Lattner948c1b12006-01-28 08:31:04 +00001023 case ISD::CONDCODE:
Duncan Sands276dcbd2008-03-21 09:14:45 +00001024 case ISD::ARG_FLAGS:
Chris Lattner948c1b12006-01-28 08:31:04 +00001025 // Primitives must all be legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00001026 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Chris Lattner948c1b12006-01-28 08:31:04 +00001027 "This must be legal!");
1028 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00001029 default:
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001030 if (Node->getOpcode() >= ISD::BUILTIN_OP_END) {
1031 // If this is a target node, legalize it by legalizing the operands then
1032 // passing it through.
Dan Gohman475871a2008-07-27 21:46:04 +00001033 SmallVector<SDValue, 8> Ops;
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001034 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001035 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001036
Jay Foade3e51c02009-05-21 09:52:38 +00001037 Result = DAG.UpdateNodeOperands(Result.getValue(0), Ops.data(), Ops.size());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001038
1039 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
1040 AddLegalizedOperand(Op.getValue(i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001041 return Result.getValue(Op.getResNo());
Chris Lattnerd73cc5d2005-05-14 06:34:48 +00001042 }
1043 // Otherwise this is an unhandled builtin node. splat.
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001044#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00001045 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00001046#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00001047 assert(0 && "Do not know how to legalize this operator!");
1048 abort();
Lauro Ramos Venancio0d3b6782007-04-20 23:02:39 +00001049 case ISD::GLOBAL_OFFSET_TABLE:
Chris Lattner3e928bb2005-01-07 07:47:09 +00001050 case ISD::GlobalAddress:
Lauro Ramos Venanciob3a04172007-04-20 21:38:10 +00001051 case ISD::GlobalTLSAddress:
Bill Wendling056292f2008-09-16 21:48:12 +00001052 case ISD::ExternalSymbol:
Nate Begeman37efe672006-04-22 18:53:45 +00001053 case ISD::ConstantPool:
1054 case ISD::JumpTable: // Nothing to do.
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001055 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1056 default: assert(0 && "This action is not supported yet!");
Chris Lattner948c1b12006-01-28 08:31:04 +00001057 case TargetLowering::Custom:
1058 Tmp1 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001059 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner948c1b12006-01-28 08:31:04 +00001060 // FALLTHROUGH if the target doesn't want to lower this op after all.
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001061 case TargetLowering::Legal:
Chris Lattner0c8fbe32005-11-17 06:41:44 +00001062 break;
1063 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001064 break;
Nate Begemanbcc5f362007-01-29 22:58:52 +00001065 case ISD::FRAMEADDR:
1066 case ISD::RETURNADDR:
1067 // The only option for these nodes is to custom lower them. If the target
1068 // does not custom lower them, then return zero.
1069 Tmp1 = TLI.LowerOperation(Op, DAG);
Scott Michelfdc40a02009-02-17 22:15:04 +00001070 if (Tmp1.getNode())
Nate Begemanbcc5f362007-01-29 22:58:52 +00001071 Result = Tmp1;
1072 else
1073 Result = DAG.getConstant(0, TLI.getPointerTy());
1074 break;
Anton Korobeynikov055c5442007-08-29 23:18:48 +00001075 case ISD::FRAME_TO_ARGS_OFFSET: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001076 MVT VT = Node->getValueType(0);
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001077 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1078 default: assert(0 && "This action is not supported yet!");
1079 case TargetLowering::Custom:
1080 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001081 if (Result.getNode()) break;
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001082 // Fall Thru
1083 case TargetLowering::Legal:
1084 Result = DAG.getConstant(0, VT);
1085 break;
1086 }
Anton Korobeynikov055c5442007-08-29 23:18:48 +00001087 }
Anton Korobeynikov066f7b42007-08-29 19:28:29 +00001088 break;
Jim Laskey2bc210d2007-02-22 15:37:19 +00001089 case ISD::EXCEPTIONADDR: {
1090 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001091 MVT VT = Node->getValueType(0);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001092 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1093 default: assert(0 && "This action is not supported yet!");
1094 case TargetLowering::Expand: {
Jim Laskey8782d482007-02-28 20:43:58 +00001095 unsigned Reg = TLI.getExceptionAddressRegister();
Dale Johannesenc460ae92009-02-04 00:13:36 +00001096 Result = DAG.getCopyFromReg(Tmp1, dl, Reg, VT);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001097 }
1098 break;
1099 case TargetLowering::Custom:
1100 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001101 if (Result.getNode()) break;
Jim Laskey2bc210d2007-02-22 15:37:19 +00001102 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001103 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001104 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp1 };
Dale Johannesenca57b842009-02-02 23:46:53 +00001105 Result = DAG.getMergeValues(Ops, 2, dl);
Jim Laskey2bc210d2007-02-22 15:37:19 +00001106 break;
1107 }
1108 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001109 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001110 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +00001111
Gabor Greifba36cb52008-08-28 21:40:38 +00001112 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +00001113 "Cannot return more than two values!");
1114
1115 // Since we produced two values, make sure to remember that we
1116 // legalized both of them.
1117 Tmp1 = LegalizeOp(Result);
1118 Tmp2 = LegalizeOp(Result.getValue(1));
1119 AddLegalizedOperand(Op.getValue(0), Tmp1);
1120 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001121 return Op.getResNo() ? Tmp2 : Tmp1;
Jim Laskey8782d482007-02-28 20:43:58 +00001122 case ISD::EHSELECTION: {
1123 Tmp1 = LegalizeOp(Node->getOperand(0));
1124 Tmp2 = LegalizeOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00001125 MVT VT = Node->getValueType(0);
Jim Laskey8782d482007-02-28 20:43:58 +00001126 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1127 default: assert(0 && "This action is not supported yet!");
1128 case TargetLowering::Expand: {
1129 unsigned Reg = TLI.getExceptionSelectorRegister();
Dale Johannesenc460ae92009-02-04 00:13:36 +00001130 Result = DAG.getCopyFromReg(Tmp2, dl, Reg, VT);
Jim Laskey8782d482007-02-28 20:43:58 +00001131 }
1132 break;
1133 case TargetLowering::Custom:
1134 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001135 if (Result.getNode()) break;
Jim Laskey8782d482007-02-28 20:43:58 +00001136 // Fall Thru
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001137 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001138 SDValue Ops[] = { DAG.getConstant(0, VT), Tmp2 };
Dale Johannesenca57b842009-02-02 23:46:53 +00001139 Result = DAG.getMergeValues(Ops, 2, dl);
Jim Laskey8782d482007-02-28 20:43:58 +00001140 break;
1141 }
1142 }
Chris Lattnereb7f34f2007-04-27 17:12:52 +00001143 }
Gabor Greifba36cb52008-08-28 21:40:38 +00001144 if (Result.getNode()->getNumValues() == 1) break;
Duncan Sandsb027fa02007-12-31 18:35:50 +00001145
Gabor Greifba36cb52008-08-28 21:40:38 +00001146 assert(Result.getNode()->getNumValues() == 2 &&
Duncan Sandsb027fa02007-12-31 18:35:50 +00001147 "Cannot return more than two values!");
1148
1149 // Since we produced two values, make sure to remember that we
1150 // legalized both of them.
1151 Tmp1 = LegalizeOp(Result);
1152 Tmp2 = LegalizeOp(Result.getValue(1));
1153 AddLegalizedOperand(Op.getValue(0), Tmp1);
1154 AddLegalizedOperand(Op.getValue(1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001155 return Op.getResNo() ? Tmp2 : Tmp1;
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001156 case ISD::EH_RETURN: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001157 MVT VT = Node->getValueType(0);
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001158 // The only "good" option for this node is to custom lower it.
1159 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
1160 default: assert(0 && "This action is not supported at all!");
1161 case TargetLowering::Custom:
1162 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001163 if (Result.getNode()) break;
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001164 // Fall Thru
1165 case TargetLowering::Legal:
1166 // Target does not know, how to lower this, lower to noop
1167 Result = LegalizeOp(Node->getOperand(0));
1168 break;
1169 }
Nick Lewycky6d4b7112007-07-14 15:11:14 +00001170 }
Anton Korobeynikov2365f512007-07-14 14:06:15 +00001171 break;
Chris Lattner08951a32005-09-02 01:15:01 +00001172 case ISD::AssertSext:
1173 case ISD::AssertZext:
1174 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001175 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner08951a32005-09-02 01:15:01 +00001176 break;
Chris Lattner308575b2005-11-20 22:56:56 +00001177 case ISD::MERGE_VALUES:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001178 // Legalize eliminates MERGE_VALUES nodes.
Gabor Greif99a6cb92008-08-26 22:36:50 +00001179 Result = Node->getOperand(Op.getResNo());
Chris Lattner456a93a2006-01-28 07:39:30 +00001180 break;
Chris Lattner69a52152005-01-14 22:38:01 +00001181 case ISD::CopyFromReg:
1182 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner7310fb12005-12-18 15:27:43 +00001183 Result = Op.getValue(0);
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001184 if (Node->getNumValues() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001185 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner7310fb12005-12-18 15:27:43 +00001186 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001187 assert(Node->getNumValues() == 3 && "Invalid copyfromreg!");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001188 if (Node->getNumOperands() == 3) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00001189 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001190 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
1191 } else {
1192 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
1193 }
Chris Lattner7310fb12005-12-18 15:27:43 +00001194 AddLegalizedOperand(Op.getValue(2), Result.getValue(2));
1195 }
Chris Lattner13c184d2005-01-28 06:27:38 +00001196 // Since CopyFromReg produces two values, make sure to remember that we
1197 // legalized both of them.
1198 AddLegalizedOperand(Op.getValue(0), Result);
1199 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001200 return Result.getValue(Op.getResNo());
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001201 case ISD::UNDEF: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001202 MVT VT = Op.getValueType();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001203 switch (TLI.getOperationAction(ISD::UNDEF, VT)) {
Nate Begemanea19cd52005-04-02 00:41:14 +00001204 default: assert(0 && "This action is not supported yet!");
1205 case TargetLowering::Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00001206 if (VT.isInteger())
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001207 Result = DAG.getConstant(0, VT);
Duncan Sands83ec4b62008-06-06 12:08:01 +00001208 else if (VT.isFloatingPoint())
1209 Result = DAG.getConstantFP(APFloat(APInt(VT.getSizeInBits(), 0)),
Dale Johannesenf41db212007-09-26 17:26:49 +00001210 VT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001211 else
1212 assert(0 && "Unknown value type!");
1213 break;
Nate Begemanea19cd52005-04-02 00:41:14 +00001214 case TargetLowering::Legal:
Nate Begemanfc1b1da2005-04-01 22:34:39 +00001215 break;
1216 }
1217 break;
1218 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001219
Chris Lattner48b61a72006-03-28 00:40:33 +00001220 case ISD::INTRINSIC_W_CHAIN:
1221 case ISD::INTRINSIC_WO_CHAIN:
1222 case ISD::INTRINSIC_VOID: {
Dan Gohman475871a2008-07-27 21:46:04 +00001223 SmallVector<SDValue, 8> Ops;
Chris Lattnerd1f04d42006-03-24 02:26:29 +00001224 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1225 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001226 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001227
Chris Lattner10d7fa62006-03-26 09:12:51 +00001228 // Allow the target to custom lower its intrinsics if it wants to.
Scott Michelfdc40a02009-02-17 22:15:04 +00001229 if (TLI.getOperationAction(Node->getOpcode(), MVT::Other) ==
Chris Lattner10d7fa62006-03-26 09:12:51 +00001230 TargetLowering::Custom) {
1231 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001232 if (Tmp3.getNode()) Result = Tmp3;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001233 }
1234
Gabor Greifba36cb52008-08-28 21:40:38 +00001235 if (Result.getNode()->getNumValues() == 1) break;
Chris Lattner13fc2f12006-03-27 20:28:29 +00001236
1237 // Must have return value and chain result.
Gabor Greifba36cb52008-08-28 21:40:38 +00001238 assert(Result.getNode()->getNumValues() == 2 &&
Chris Lattner13fc2f12006-03-27 20:28:29 +00001239 "Cannot return more than two values!");
1240
Scott Michelfdc40a02009-02-17 22:15:04 +00001241 // Since loads produce two values, make sure to remember that we
Chris Lattner13fc2f12006-03-27 20:28:29 +00001242 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001243 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1244 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001245 return Result.getValue(Op.getResNo());
Scott Michelfdc40a02009-02-17 22:15:04 +00001246 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001247
Dan Gohman7f460202008-06-30 20:59:49 +00001248 case ISD::DBG_STOPPOINT:
1249 assert(Node->getNumOperands() == 1 && "Invalid DBG_STOPPOINT node!");
Chris Lattner36ce6912005-11-29 06:21:05 +00001250 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input chain.
Scott Michelfdc40a02009-02-17 22:15:04 +00001251
Dan Gohman7f460202008-06-30 20:59:49 +00001252 switch (TLI.getOperationAction(ISD::DBG_STOPPOINT, MVT::Other)) {
Chris Lattner36ce6912005-11-29 06:21:05 +00001253 case TargetLowering::Promote:
1254 default: assert(0 && "This action is not supported yet!");
Bill Wendling92c1e122009-02-13 02:16:35 +00001255 case TargetLowering::Expand: {
1256 DwarfWriter *DW = DAG.getDwarfWriter();
1257 bool useDEBUG_LOC = TLI.isOperationLegalOrCustom(ISD::DEBUG_LOC,
1258 MVT::Other);
1259 bool useLABEL = TLI.isOperationLegalOrCustom(ISD::DBG_LABEL, MVT::Other);
Scott Michelfdc40a02009-02-17 22:15:04 +00001260
Bill Wendling92c1e122009-02-13 02:16:35 +00001261 const DbgStopPointSDNode *DSP = cast<DbgStopPointSDNode>(Node);
1262 GlobalVariable *CU_GV = cast<GlobalVariable>(DSP->getCompileUnit());
1263 if (DW && (useDEBUG_LOC || useLABEL) && !CU_GV->isDeclaration()) {
1264 DICompileUnit CU(cast<GlobalVariable>(DSP->getCompileUnit()));
Scott Michelfdc40a02009-02-17 22:15:04 +00001265
Bill Wendling92c1e122009-02-13 02:16:35 +00001266 unsigned Line = DSP->getLine();
1267 unsigned Col = DSP->getColumn();
Bill Wendling86e6cb92009-02-17 01:04:54 +00001268
Bill Wendling98a366d2009-04-29 23:29:43 +00001269 if (OptLevel == CodeGenOpt::None) {
Bill Wendling86e6cb92009-02-17 01:04:54 +00001270 // A bit self-referential to have DebugLoc on Debug_Loc nodes, but it
1271 // won't hurt anything.
1272 if (useDEBUG_LOC) {
1273 SDValue Ops[] = { Tmp1, DAG.getConstant(Line, MVT::i32),
Bill Wendling92c1e122009-02-13 02:16:35 +00001274 DAG.getConstant(Col, MVT::i32),
Argyrios Kyrtzidisa26eae62009-04-30 23:22:31 +00001275 DAG.getSrcValue(CU.getGV()) };
Bill Wendling86e6cb92009-02-17 01:04:54 +00001276 Result = DAG.getNode(ISD::DEBUG_LOC, dl, MVT::Other, Ops, 4);
1277 } else {
Argyrios Kyrtzidisa26eae62009-04-30 23:22:31 +00001278 unsigned ID = DW->RecordSourceLine(Line, Col, CU);
Bill Wendling86e6cb92009-02-17 01:04:54 +00001279 Result = DAG.getLabel(ISD::DBG_LABEL, dl, Tmp1, ID);
1280 }
Bill Wendling92c1e122009-02-13 02:16:35 +00001281 } else {
Bill Wendling86e6cb92009-02-17 01:04:54 +00001282 Result = Tmp1; // chain
Bill Wendling92c1e122009-02-13 02:16:35 +00001283 }
1284 } else {
1285 Result = Tmp1; // chain
1286 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001287 break;
Bill Wendling92c1e122009-02-13 02:16:35 +00001288 }
Sanjiv Gupta5274a4a2009-04-02 18:03:10 +00001289 case TargetLowering::Custom:
1290 Result = TLI.LowerOperation(Op, DAG);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001291 if (Result.getNode())
Sanjiv Gupta5274a4a2009-04-02 18:03:10 +00001292 break;
Evan Cheng71e86852008-07-08 20:06:39 +00001293 case TargetLowering::Legal: {
1294 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
1295 if (Action == Legal && Tmp1 == Node->getOperand(0))
1296 break;
1297
Dan Gohman475871a2008-07-27 21:46:04 +00001298 SmallVector<SDValue, 8> Ops;
Evan Cheng71e86852008-07-08 20:06:39 +00001299 Ops.push_back(Tmp1);
1300 if (Action == Legal) {
1301 Ops.push_back(Node->getOperand(1)); // line # must be legal.
1302 Ops.push_back(Node->getOperand(2)); // col # must be legal.
1303 } else {
1304 // Otherwise promote them.
1305 Ops.push_back(PromoteOp(Node->getOperand(1)));
1306 Ops.push_back(PromoteOp(Node->getOperand(2)));
Chris Lattner36ce6912005-11-29 06:21:05 +00001307 }
Evan Cheng71e86852008-07-08 20:06:39 +00001308 Ops.push_back(Node->getOperand(3)); // filename must be legal.
1309 Ops.push_back(Node->getOperand(4)); // working dir # must be legal.
1310 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner36ce6912005-11-29 06:21:05 +00001311 break;
1312 }
Evan Cheng71e86852008-07-08 20:06:39 +00001313 }
Chris Lattner36ce6912005-11-29 06:21:05 +00001314 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001315
1316 case ISD::DECLARE:
1317 assert(Node->getNumOperands() == 3 && "Invalid DECLARE node!");
1318 switch (TLI.getOperationAction(ISD::DECLARE, MVT::Other)) {
1319 default: assert(0 && "This action is not supported yet!");
1320 case TargetLowering::Legal:
1321 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1322 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1323 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the variable.
1324 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
1325 break;
Chris Lattnere07415d2008-02-28 05:53:40 +00001326 case TargetLowering::Expand:
1327 Result = LegalizeOp(Node->getOperand(0));
1328 break;
Evan Chenga844bde2008-02-02 04:07:54 +00001329 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001330 break;
1331
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001332 case ISD::DEBUG_LOC:
Jim Laskeyabf6d172006-01-05 01:25:28 +00001333 assert(Node->getNumOperands() == 4 && "Invalid DEBUG_LOC node!");
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001334 switch (TLI.getOperationAction(ISD::DEBUG_LOC, MVT::Other)) {
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001335 default: assert(0 && "This action is not supported yet!");
Evan Cheng71e86852008-07-08 20:06:39 +00001336 case TargetLowering::Legal: {
1337 LegalizeAction Action = getTypeAction(Node->getOperand(1).getValueType());
Jim Laskeyabf6d172006-01-05 01:25:28 +00001338 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Evan Cheng71e86852008-07-08 20:06:39 +00001339 if (Action == Legal && Tmp1 == Node->getOperand(0))
1340 break;
1341 if (Action == Legal) {
1342 Tmp2 = Node->getOperand(1);
1343 Tmp3 = Node->getOperand(2);
1344 Tmp4 = Node->getOperand(3);
1345 } else {
1346 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the line #.
1347 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the col #.
1348 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize the source file id.
1349 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001350 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
Jim Laskeyabf6d172006-01-05 01:25:28 +00001351 break;
1352 }
Evan Cheng71e86852008-07-08 20:06:39 +00001353 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001354 break;
Jim Laskeyabf6d172006-01-05 01:25:28 +00001355
Dan Gohman44066042008-07-01 00:05:16 +00001356 case ISD::DBG_LABEL:
1357 case ISD::EH_LABEL:
1358 assert(Node->getNumOperands() == 1 && "Invalid LABEL node!");
1359 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
Jim Laskeyabf6d172006-01-05 01:25:28 +00001360 default: assert(0 && "This action is not supported yet!");
1361 case TargetLowering::Legal:
1362 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Dan Gohman44066042008-07-01 00:05:16 +00001363 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001364 break;
Chris Lattnera9569f12007-03-03 19:21:38 +00001365 case TargetLowering::Expand:
1366 Result = LegalizeOp(Node->getOperand(0));
1367 break;
Jim Laskeyf5395ce2005-12-16 22:45:29 +00001368 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00001369 break;
Chris Lattner36ce6912005-11-29 06:21:05 +00001370
Evan Cheng27b7db52008-03-08 00:58:38 +00001371 case ISD::PREFETCH:
1372 assert(Node->getNumOperands() == 4 && "Invalid Prefetch node!");
1373 switch (TLI.getOperationAction(ISD::PREFETCH, MVT::Other)) {
1374 default: assert(0 && "This action is not supported yet!");
1375 case TargetLowering::Legal:
1376 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1377 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the address.
1378 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the rw specifier.
1379 Tmp4 = LegalizeOp(Node->getOperand(3)); // Legalize locality specifier.
1380 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4);
1381 break;
1382 case TargetLowering::Expand:
1383 // It's a noop.
1384 Result = LegalizeOp(Node->getOperand(0));
1385 break;
1386 }
1387 break;
1388
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001389 case ISD::MEMBARRIER: {
1390 assert(Node->getNumOperands() == 6 && "Invalid MemBarrier node!");
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001391 switch (TLI.getOperationAction(ISD::MEMBARRIER, MVT::Other)) {
1392 default: assert(0 && "This action is not supported yet!");
1393 case TargetLowering::Legal: {
Dan Gohman475871a2008-07-27 21:46:04 +00001394 SDValue Ops[6];
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001395 Ops[0] = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Duncan Sandse90a6152008-02-27 08:53:44 +00001396 for (int x = 1; x < 6; ++x) {
1397 Ops[x] = Node->getOperand(x);
1398 if (!isTypeLegal(Ops[x].getValueType()))
1399 Ops[x] = PromoteOp(Ops[x]);
1400 }
Andrew Lenharthd497d9f2008-02-16 14:46:26 +00001401 Result = DAG.UpdateNodeOperands(Result, &Ops[0], 6);
1402 break;
1403 }
1404 case TargetLowering::Expand:
1405 //There is no libgcc call for this op
1406 Result = Node->getOperand(0); // Noop
1407 break;
1408 }
Andrew Lenharth22c5c1b2008-02-16 01:24:58 +00001409 break;
1410 }
1411
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001412 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001413 unsigned int num_operands = 4;
1414 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001415 SDValue Ops[4];
Mon P Wang63307c32008-05-05 19:05:59 +00001416 for (unsigned int x = 0; x < num_operands; ++x)
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001417 Ops[x] = LegalizeOp(Node->getOperand(x));
Mon P Wang63307c32008-05-05 19:05:59 +00001418 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Scott Michelfdc40a02009-02-17 22:15:04 +00001419
Mon P Wang63307c32008-05-05 19:05:59 +00001420 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
1421 default: assert(0 && "This action is not supported yet!");
1422 case TargetLowering::Custom:
1423 Result = TLI.LowerOperation(Result, DAG);
1424 break;
1425 case TargetLowering::Legal:
1426 break;
1427 }
Dan Gohman475871a2008-07-27 21:46:04 +00001428 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1429 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001430 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001431 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00001432 case ISD::ATOMIC_LOAD_ADD:
1433 case ISD::ATOMIC_LOAD_SUB:
1434 case ISD::ATOMIC_LOAD_AND:
1435 case ISD::ATOMIC_LOAD_OR:
1436 case ISD::ATOMIC_LOAD_XOR:
1437 case ISD::ATOMIC_LOAD_NAND:
1438 case ISD::ATOMIC_LOAD_MIN:
1439 case ISD::ATOMIC_LOAD_MAX:
1440 case ISD::ATOMIC_LOAD_UMIN:
1441 case ISD::ATOMIC_LOAD_UMAX:
1442 case ISD::ATOMIC_SWAP: {
Mon P Wang63307c32008-05-05 19:05:59 +00001443 unsigned int num_operands = 3;
1444 assert(Node->getNumOperands() == num_operands && "Invalid Atomic node!");
Dan Gohman475871a2008-07-27 21:46:04 +00001445 SDValue Ops[3];
Mon P Wang63307c32008-05-05 19:05:59 +00001446 for (unsigned int x = 0; x < num_operands; ++x)
1447 Ops[x] = LegalizeOp(Node->getOperand(x));
1448 Result = DAG.UpdateNodeOperands(Result, &Ops[0], num_operands);
Duncan Sands126d9072008-07-04 11:47:58 +00001449
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001450 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001451 default: assert(0 && "This action is not supported yet!");
Andrew Lenharth26ed8692008-03-01 21:52:34 +00001452 case TargetLowering::Custom:
1453 Result = TLI.LowerOperation(Result, DAG);
1454 break;
1455 case TargetLowering::Legal:
Andrew Lenharthab0b9492008-02-21 06:45:13 +00001456 break;
1457 }
Dan Gohman475871a2008-07-27 21:46:04 +00001458 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1459 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001460 return Result.getValue(Op.getResNo());
Duncan Sands126d9072008-07-04 11:47:58 +00001461 }
Scott Michelc1513d22007-08-08 23:23:31 +00001462 case ISD::Constant: {
1463 ConstantSDNode *CN = cast<ConstantSDNode>(Node);
1464 unsigned opAction =
1465 TLI.getOperationAction(ISD::Constant, CN->getValueType(0));
1466
Chris Lattner3e928bb2005-01-07 07:47:09 +00001467 // We know we don't need to expand constants here, constants only have one
1468 // value and we check that it is fine above.
1469
Scott Michelc1513d22007-08-08 23:23:31 +00001470 if (opAction == TargetLowering::Custom) {
1471 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001472 if (Tmp1.getNode())
Scott Michelc1513d22007-08-08 23:23:31 +00001473 Result = Tmp1;
1474 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001475 break;
Scott Michelc1513d22007-08-08 23:23:31 +00001476 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001477 case ISD::ConstantFP: {
1478 // Spill FP immediates to the constant pool if the target cannot directly
1479 // codegen them. Targets often have some immediate values that can be
1480 // efficiently generated into an FP register without a load. We explicitly
1481 // leave these constants as ConstantFP nodes for the target to deal with.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001482 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
1483
Chris Lattner3181a772006-01-29 06:26:56 +00001484 switch (TLI.getOperationAction(ISD::ConstantFP, CFP->getValueType(0))) {
1485 default: assert(0 && "This action is not supported yet!");
Nate Begemane1795842008-02-14 08:57:00 +00001486 case TargetLowering::Legal:
1487 break;
Chris Lattner3181a772006-01-29 06:26:56 +00001488 case TargetLowering::Custom:
1489 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001490 if (Tmp3.getNode()) {
Chris Lattner3181a772006-01-29 06:26:56 +00001491 Result = Tmp3;
1492 break;
1493 }
1494 // FALLTHROUGH
Nate Begemane1795842008-02-14 08:57:00 +00001495 case TargetLowering::Expand: {
1496 // Check to see if this FP immediate is already legal.
1497 bool isLegal = false;
1498 for (TargetLowering::legal_fpimm_iterator I = TLI.legal_fpimm_begin(),
1499 E = TLI.legal_fpimm_end(); I != E; ++I) {
1500 if (CFP->isExactlyValue(*I)) {
1501 isLegal = true;
1502 break;
1503 }
1504 }
1505 // If this is a legal constant, turn it into a TargetConstantFP node.
1506 if (isLegal)
1507 break;
Evan Cheng279101e2006-12-12 22:19:28 +00001508 Result = ExpandConstantFP(CFP, true, DAG, TLI);
Chris Lattner3e928bb2005-01-07 07:47:09 +00001509 }
Nate Begemane1795842008-02-14 08:57:00 +00001510 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00001511 break;
1512 }
Chris Lattner040c11c2005-11-09 18:48:57 +00001513 case ISD::TokenFactor:
1514 if (Node->getNumOperands() == 2) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001515 Tmp1 = LegalizeOp(Node->getOperand(0));
1516 Tmp2 = LegalizeOp(Node->getOperand(1));
1517 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1518 } else if (Node->getNumOperands() == 3) {
1519 Tmp1 = LegalizeOp(Node->getOperand(0));
1520 Tmp2 = LegalizeOp(Node->getOperand(1));
1521 Tmp3 = LegalizeOp(Node->getOperand(2));
1522 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner040c11c2005-11-09 18:48:57 +00001523 } else {
Dan Gohman475871a2008-07-27 21:46:04 +00001524 SmallVector<SDValue, 8> Ops;
Chris Lattner040c11c2005-11-09 18:48:57 +00001525 // Legalize the operands.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001526 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1527 Ops.push_back(LegalizeOp(Node->getOperand(i)));
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001528 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattnera385e9b2005-01-13 17:59:25 +00001529 }
Chris Lattnera385e9b2005-01-13 17:59:25 +00001530 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001531
Chris Lattnerfdfded52006-04-12 16:20:43 +00001532 case ISD::FORMAL_ARGUMENTS:
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001533 case ISD::CALL:
Chris Lattnerfdfded52006-04-12 16:20:43 +00001534 // The only option for this is to custom lower it.
Chris Lattnerb248e162006-05-17 17:55:45 +00001535 Tmp3 = TLI.LowerOperation(Result.getValue(0), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001536 assert(Tmp3.getNode() && "Target didn't custom lower this node!");
Dale Johannesen0ea03562008-03-05 19:14:03 +00001537 // A call within a calling sequence must be legalized to something
1538 // other than the normal CALLSEQ_END. Violating this gets Legalize
1539 // into an infinite loop.
1540 assert ((!IsLegalizingCall ||
1541 Node->getOpcode() != ISD::CALL ||
Gabor Greifba36cb52008-08-28 21:40:38 +00001542 Tmp3.getNode()->getOpcode() != ISD::CALLSEQ_END) &&
Dale Johannesen0ea03562008-03-05 19:14:03 +00001543 "Nested CALLSEQ_START..CALLSEQ_END not supported.");
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001544
1545 // The number of incoming and outgoing values should match; unless the final
1546 // outgoing value is a flag.
Gabor Greifba36cb52008-08-28 21:40:38 +00001547 assert((Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() ||
1548 (Tmp3.getNode()->getNumValues() == Result.getNode()->getNumValues() + 1 &&
1549 Tmp3.getNode()->getValueType(Tmp3.getNode()->getNumValues() - 1) ==
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001550 MVT::Flag)) &&
Chris Lattnerb248e162006-05-17 17:55:45 +00001551 "Lowering call/formal_arguments produced unexpected # results!");
Scott Michelfdc40a02009-02-17 22:15:04 +00001552
Chris Lattnerf4ec8172006-05-16 22:53:20 +00001553 // Since CALL/FORMAL_ARGUMENTS nodes produce multiple values, make sure to
Chris Lattnere2e41732006-05-16 05:49:56 +00001554 // remember that we legalized all of them, so it doesn't get relegalized.
Gabor Greifba36cb52008-08-28 21:40:38 +00001555 for (unsigned i = 0, e = Tmp3.getNode()->getNumValues(); i != e; ++i) {
1556 if (Tmp3.getNode()->getValueType(i) == MVT::Flag)
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001557 continue;
Chris Lattnerb248e162006-05-17 17:55:45 +00001558 Tmp1 = LegalizeOp(Tmp3.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001559 if (Op.getResNo() == i)
Chris Lattnere2e41732006-05-16 05:49:56 +00001560 Tmp2 = Tmp1;
Dan Gohman475871a2008-07-27 21:46:04 +00001561 AddLegalizedOperand(SDValue(Node, i), Tmp1);
Chris Lattnere2e41732006-05-16 05:49:56 +00001562 }
1563 return Tmp2;
Chris Lattnerb2827b02006-03-19 00:52:58 +00001564 case ISD::BUILD_VECTOR:
1565 switch (TLI.getOperationAction(ISD::BUILD_VECTOR, Node->getValueType(0))) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001566 default: assert(0 && "This action is not supported yet!");
1567 case TargetLowering::Custom:
1568 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001569 if (Tmp3.getNode()) {
Chris Lattner2332b9f2006-03-19 01:17:20 +00001570 Result = Tmp3;
1571 break;
1572 }
1573 // FALLTHROUGH
Chris Lattnerce872152006-03-19 06:31:19 +00001574 case TargetLowering::Expand:
Gabor Greifba36cb52008-08-28 21:40:38 +00001575 Result = ExpandBUILD_VECTOR(Result.getNode());
Chris Lattnerb2827b02006-03-19 00:52:58 +00001576 break;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001577 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001578 break;
1579 case ISD::INSERT_VECTOR_ELT:
1580 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVec
Chris Lattner2332b9f2006-03-19 01:17:20 +00001581 Tmp3 = LegalizeOp(Node->getOperand(2)); // InEltNo
Nate Begeman0325d902008-02-13 06:43:04 +00001582
1583 // The type of the value to insert may not be legal, even though the vector
1584 // type is legal. Legalize/Promote accordingly. We do not handle Expand
1585 // here.
1586 switch (getTypeAction(Node->getOperand(1).getValueType())) {
1587 default: assert(0 && "Cannot expand insert element operand");
1588 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
1589 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Mon P Wang0c397192008-10-30 08:01:45 +00001590 case Expand:
1591 // FIXME: An alternative would be to check to see if the target is not
Scott Michelfdc40a02009-02-17 22:15:04 +00001592 // going to custom lower this operation, we could bitcast to half elt
Mon P Wang0c397192008-10-30 08:01:45 +00001593 // width and perform two inserts at that width, if that is legal.
1594 Tmp2 = Node->getOperand(1);
1595 break;
Nate Begeman0325d902008-02-13 06:43:04 +00001596 }
Chris Lattner2332b9f2006-03-19 01:17:20 +00001597 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00001598
Chris Lattner2332b9f2006-03-19 01:17:20 +00001599 switch (TLI.getOperationAction(ISD::INSERT_VECTOR_ELT,
1600 Node->getValueType(0))) {
1601 default: assert(0 && "This action is not supported yet!");
1602 case TargetLowering::Legal:
1603 break;
1604 case TargetLowering::Custom:
Nate Begeman2281a992008-01-05 20:47:37 +00001605 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001606 if (Tmp4.getNode()) {
Nate Begeman2281a992008-01-05 20:47:37 +00001607 Result = Tmp4;
Chris Lattner2332b9f2006-03-19 01:17:20 +00001608 break;
1609 }
1610 // FALLTHROUGH
Mon P Wang0c397192008-10-30 08:01:45 +00001611 case TargetLowering::Promote:
1612 // Fall thru for vector case
Chris Lattner2332b9f2006-03-19 01:17:20 +00001613 case TargetLowering::Expand: {
Chris Lattner8d5a8942006-04-17 19:21:01 +00001614 // If the insert index is a constant, codegen this as a scalar_to_vector,
1615 // then a shuffle that inserts it into the right position in the vector.
1616 if (ConstantSDNode *InsertPos = dyn_cast<ConstantSDNode>(Tmp3)) {
Nate Begeman0325d902008-02-13 06:43:04 +00001617 // SCALAR_TO_VECTOR requires that the type of the value being inserted
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00001618 // match the element type of the vector being created, except for
1619 // integers in which case the inserted value can be over width.
1620 MVT EltVT = Op.getValueType().getVectorElementType();
1621 if (Tmp2.getValueType() == EltVT ||
1622 (EltVT.isInteger() && Tmp2.getValueType().bitsGE(EltVT))) {
Dale Johannesenca57b842009-02-02 23:46:53 +00001623 SDValue ScVec = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001624 Tmp1.getValueType(), Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00001625
Duncan Sands83ec4b62008-06-06 12:08:01 +00001626 unsigned NumElts = Tmp1.getValueType().getVectorNumElements();
Nate Begeman0325d902008-02-13 06:43:04 +00001627 // We generate a shuffle of InVec and ScVec, so the shuffle mask
1628 // should be 0,1,2,3,4,5... with the appropriate element replaced with
1629 // elt 0 of the RHS.
Nate Begeman9008ca62009-04-27 18:41:29 +00001630 SmallVector<int, 8> ShufOps;
1631 for (unsigned i = 0; i != NumElts; ++i)
1632 ShufOps.push_back(i != InsertPos->getZExtValue() ? i : NumElts);
1633
1634 Result = DAG.getVectorShuffle(Tmp1.getValueType(), dl, Tmp1, ScVec,
1635 &ShufOps[0]);
Nate Begeman0325d902008-02-13 06:43:04 +00001636 Result = LegalizeOp(Result);
1637 break;
Chris Lattner8d5a8942006-04-17 19:21:01 +00001638 }
Chris Lattner8d5a8942006-04-17 19:21:01 +00001639 }
Dale Johannesenbb5da912009-02-02 20:41:04 +00001640 Result = PerformInsertVectorEltInMemory(Tmp1, Tmp2, Tmp3, dl);
Chris Lattner2332b9f2006-03-19 01:17:20 +00001641 break;
1642 }
1643 }
1644 break;
Chris Lattnerce872152006-03-19 06:31:19 +00001645 case ISD::SCALAR_TO_VECTOR:
Chris Lattner4352cc92006-04-04 17:23:26 +00001646 if (!TLI.isTypeLegal(Node->getOperand(0).getValueType())) {
1647 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
1648 break;
1649 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001650
Chris Lattnerce872152006-03-19 06:31:19 +00001651 Tmp1 = LegalizeOp(Node->getOperand(0)); // InVal
1652 Result = DAG.UpdateNodeOperands(Result, Tmp1);
1653 switch (TLI.getOperationAction(ISD::SCALAR_TO_VECTOR,
1654 Node->getValueType(0))) {
1655 default: assert(0 && "This action is not supported yet!");
1656 case TargetLowering::Legal:
1657 break;
Chris Lattner4d3abee2006-03-19 06:47:21 +00001658 case TargetLowering::Custom:
1659 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001660 if (Tmp3.getNode()) {
Chris Lattner4d3abee2006-03-19 06:47:21 +00001661 Result = Tmp3;
1662 break;
1663 }
1664 // FALLTHROUGH
Chris Lattner4352cc92006-04-04 17:23:26 +00001665 case TargetLowering::Expand:
1666 Result = LegalizeOp(ExpandSCALAR_TO_VECTOR(Node));
Chris Lattnerce872152006-03-19 06:31:19 +00001667 break;
1668 }
Chris Lattnerce872152006-03-19 06:31:19 +00001669 break;
Nate Begeman9008ca62009-04-27 18:41:29 +00001670 case ISD::VECTOR_SHUFFLE: {
Chris Lattner87100e02006-03-20 01:52:29 +00001671 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the input vectors,
1672 Tmp2 = LegalizeOp(Node->getOperand(1)); // but not the shuffle mask.
Nate Begeman9008ca62009-04-27 18:41:29 +00001673 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
1674 MVT VT = Result.getValueType();
1675
Nate Begeman5a5ca152009-04-29 05:20:52 +00001676 // Copy the Mask to a local SmallVector for use with isShuffleMaskLegal.
Nate Begeman9008ca62009-04-27 18:41:29 +00001677 SmallVector<int, 8> Mask;
1678 cast<ShuffleVectorSDNode>(Result)->getMask(Mask);
Chris Lattner87100e02006-03-20 01:52:29 +00001679
1680 // Allow targets to custom lower the SHUFFLEs they support.
Nate Begeman9008ca62009-04-27 18:41:29 +00001681 switch (TLI.getOperationAction(ISD::VECTOR_SHUFFLE, VT)) {
Chris Lattner4352cc92006-04-04 17:23:26 +00001682 default: assert(0 && "Unknown operation action!");
1683 case TargetLowering::Legal:
Nate Begeman9008ca62009-04-27 18:41:29 +00001684 assert(TLI.isShuffleMaskLegal(Mask, VT) &&
Chris Lattner4352cc92006-04-04 17:23:26 +00001685 "vector shuffle should not be created if not legal!");
1686 break;
1687 case TargetLowering::Custom:
Evan Cheng18dd6d02006-04-05 06:07:11 +00001688 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001689 if (Tmp3.getNode()) {
Evan Cheng18dd6d02006-04-05 06:07:11 +00001690 Result = Tmp3;
1691 break;
1692 }
1693 // FALLTHROUGH
1694 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001695 MVT EltVT = VT.getVectorElementType();
Nate Begeman5a5ca152009-04-29 05:20:52 +00001696 unsigned NumElems = VT.getVectorNumElements();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00001697 SmallVector<SDValue, 8> Ops;
Nate Begeman5a5ca152009-04-29 05:20:52 +00001698 for (unsigned i = 0; i != NumElems; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00001699 if (Mask[i] < 0) {
Dale Johannesene8d72302009-02-06 23:05:02 +00001700 Ops.push_back(DAG.getUNDEF(EltVT));
Nate Begeman9008ca62009-04-27 18:41:29 +00001701 continue;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001702 }
Nate Begeman5a5ca152009-04-29 05:20:52 +00001703 unsigned Idx = Mask[i];
Nate Begeman9008ca62009-04-27 18:41:29 +00001704 if (Idx < NumElems)
1705 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp1,
1706 DAG.getIntPtrConstant(Idx)));
1707 else
1708 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, Tmp2,
1709 DAG.getIntPtrConstant(Idx - NumElems)));
Evan Cheng18dd6d02006-04-05 06:07:11 +00001710 }
Evan Chenga87008d2009-02-25 22:49:59 +00001711 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], Ops.size());
Chris Lattner4352cc92006-04-04 17:23:26 +00001712 break;
Evan Cheng18dd6d02006-04-05 06:07:11 +00001713 }
Chris Lattner4352cc92006-04-04 17:23:26 +00001714 case TargetLowering::Promote: {
1715 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00001716 MVT OVT = Node->getValueType(0);
1717 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattner4352cc92006-04-04 17:23:26 +00001718
1719 // Cast the two input vectors.
Dale Johannesenca57b842009-02-02 23:46:53 +00001720 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
1721 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00001722
Chris Lattner4352cc92006-04-04 17:23:26 +00001723 // Convert the shuffle mask to the right # elements.
Nate Begeman5a5ca152009-04-29 05:20:52 +00001724 Result = ShuffleWithNarrowerEltType(NVT, OVT, dl, Tmp1, Tmp2, Mask);
Dale Johannesenca57b842009-02-02 23:46:53 +00001725 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Chris Lattner4352cc92006-04-04 17:23:26 +00001726 break;
1727 }
Chris Lattner87100e02006-03-20 01:52:29 +00001728 }
1729 break;
Nate Begeman9008ca62009-04-27 18:41:29 +00001730 }
Chris Lattner384504c2006-03-21 20:44:12 +00001731 case ISD::EXTRACT_VECTOR_ELT:
Dan Gohman7f321562007-06-25 16:23:39 +00001732 Tmp1 = Node->getOperand(0);
Chris Lattner384504c2006-03-21 20:44:12 +00001733 Tmp2 = LegalizeOp(Node->getOperand(1));
1734 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohman7f321562007-06-25 16:23:39 +00001735 Result = ExpandEXTRACT_VECTOR_ELT(Result);
Chris Lattner384504c2006-03-21 20:44:12 +00001736 break;
1737
Scott Michelfdc40a02009-02-17 22:15:04 +00001738 case ISD::EXTRACT_SUBVECTOR:
Eli Friedman1fde9c52009-05-24 02:46:31 +00001739 Tmp1 = LegalizeOp(Node->getOperand(0));
Dan Gohman7f321562007-06-25 16:23:39 +00001740 Tmp2 = LegalizeOp(Node->getOperand(1));
1741 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Eli Friedman1fde9c52009-05-24 02:46:31 +00001742
Eli Friedman3d43b3f2009-05-23 22:37:25 +00001743 switch (TLI.getOperationAction(ISD::EXTRACT_SUBVECTOR,
1744 Node->getValueType(0))) {
1745 default: assert(0 && "Unknown operation action!");
1746 case TargetLowering::Legal:
1747 break;
1748 case TargetLowering::Custom:
1749 Tmp3 = TLI.LowerOperation(Result, DAG);
1750 if (Tmp3.getNode()) {
1751 Result = Tmp3;
1752 break;
1753 }
1754 // FALLTHROUGH
1755 case TargetLowering::Expand: {
1756 Result = ExpandExtractFromVectorThroughStack(Result);
1757 break;
1758 }
1759 }
Dan Gohman65956352007-06-13 15:12:02 +00001760 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00001761
Mon P Wang0c397192008-10-30 08:01:45 +00001762 case ISD::CONCAT_VECTORS: {
Bob Wilson5ee24e52009-05-01 17:55:32 +00001763 // Legalize the operands.
Mon P Wang0c397192008-10-30 08:01:45 +00001764 SmallVector<SDValue, 8> Ops;
Bob Wilson5ee24e52009-05-01 17:55:32 +00001765 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i)
1766 Ops.push_back(LegalizeOp(Node->getOperand(i)));
1767 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
1768
1769 switch (TLI.getOperationAction(ISD::CONCAT_VECTORS,
1770 Node->getValueType(0))) {
1771 default: assert(0 && "Unknown operation action!");
1772 case TargetLowering::Legal:
1773 break;
1774 case TargetLowering::Custom:
1775 Tmp3 = TLI.LowerOperation(Result, DAG);
1776 if (Tmp3.getNode()) {
1777 Result = Tmp3;
1778 break;
Mon P Wang0c397192008-10-30 08:01:45 +00001779 }
Bob Wilson5ee24e52009-05-01 17:55:32 +00001780 // FALLTHROUGH
1781 case TargetLowering::Expand: {
1782 // Use extract/insert/build vector for now. We might try to be
1783 // more clever later.
1784 MVT PtrVT = TLI.getPointerTy();
1785 SmallVector<SDValue, 8> Ops;
1786 unsigned NumOperands = Node->getNumOperands();
1787 for (unsigned i=0; i < NumOperands; ++i) {
1788 SDValue SubOp = Node->getOperand(i);
1789 MVT VVT = SubOp.getNode()->getValueType(0);
1790 MVT EltVT = VVT.getVectorElementType();
1791 unsigned NumSubElem = VVT.getVectorNumElements();
1792 for (unsigned j=0; j < NumSubElem; ++j) {
1793 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EltVT, SubOp,
1794 DAG.getConstant(j, PtrVT)));
1795 }
1796 }
1797 return LegalizeOp(DAG.getNode(ISD::BUILD_VECTOR, dl,
1798 Node->getValueType(0),
1799 &Ops[0], Ops.size()));
Mon P Wang0c397192008-10-30 08:01:45 +00001800 }
Bob Wilson5ee24e52009-05-01 17:55:32 +00001801 }
1802 break;
Mon P Wang0c397192008-10-30 08:01:45 +00001803 }
1804
Chris Lattner6831a812006-02-13 09:18:02 +00001805 case ISD::CALLSEQ_START: {
1806 SDNode *CallEnd = FindCallEndFromCallStart(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00001807
Chris Lattner6831a812006-02-13 09:18:02 +00001808 // Recursively Legalize all of the inputs of the call end that do not lead
1809 // to this call start. This ensures that any libcalls that need be inserted
1810 // are inserted *before* the CALLSEQ_START.
Mon P Wange5ab34e2009-02-04 19:38:14 +00001811 IsLegalizingCallArgs = true;
Chris Lattner00755df2007-02-04 00:27:56 +00001812 {SmallPtrSet<SDNode*, 32> NodesLeadingTo;
Chris Lattner6831a812006-02-13 09:18:02 +00001813 for (unsigned i = 0, e = CallEnd->getNumOperands(); i != e; ++i)
Gabor Greifba36cb52008-08-28 21:40:38 +00001814 LegalizeAllNodesNotLeadingTo(CallEnd->getOperand(i).getNode(), Node,
Chris Lattnerc9cf4f12006-07-26 23:55:56 +00001815 NodesLeadingTo);
1816 }
Mon P Wange5ab34e2009-02-04 19:38:14 +00001817 IsLegalizingCallArgs = false;
Chris Lattner6831a812006-02-13 09:18:02 +00001818
1819 // Now that we legalized all of the inputs (which may have inserted
1820 // libcalls) create the new CALLSEQ_START node.
1821 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1822
1823 // Merge in the last call, to ensure that this call start after the last
1824 // call ended.
Chris Lattnerc5d7d7c2006-05-17 18:00:08 +00001825 if (LastCALLSEQ_END.getOpcode() != ISD::EntryToken) {
Scott Michelfdc40a02009-02-17 22:15:04 +00001826 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00001827 Tmp1, LastCALLSEQ_END);
Chris Lattnerb248e162006-05-17 17:55:45 +00001828 Tmp1 = LegalizeOp(Tmp1);
1829 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001830
Chris Lattner6831a812006-02-13 09:18:02 +00001831 // Do not try to legalize the target-specific arguments (#1+).
1832 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001833 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner6831a812006-02-13 09:18:02 +00001834 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001835 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner6831a812006-02-13 09:18:02 +00001836 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001837
Chris Lattner6831a812006-02-13 09:18:02 +00001838 // Remember that the CALLSEQ_START is legalized.
Chris Lattner4b653a02006-02-14 00:55:02 +00001839 AddLegalizedOperand(Op.getValue(0), Result);
1840 if (Node->getNumValues() == 2) // If this has a flag result, remember it.
1841 AddLegalizedOperand(Op.getValue(1), Result.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00001842
Chris Lattner6831a812006-02-13 09:18:02 +00001843 // Now that the callseq_start and all of the non-call nodes above this call
Scott Michelfdc40a02009-02-17 22:15:04 +00001844 // sequence have been legalized, legalize the call itself. During this
Chris Lattner6831a812006-02-13 09:18:02 +00001845 // process, no libcalls can/will be inserted, guaranteeing that no calls
1846 // can overlap.
1847 assert(!IsLegalizingCall && "Inconsistent sequentialization of calls!");
Chris Lattner6831a812006-02-13 09:18:02 +00001848 // Note that we are selecting this call!
Dan Gohman475871a2008-07-27 21:46:04 +00001849 LastCALLSEQ_END = SDValue(CallEnd, 0);
Chris Lattner6831a812006-02-13 09:18:02 +00001850 IsLegalizingCall = true;
Scott Michelfdc40a02009-02-17 22:15:04 +00001851
Chris Lattner6831a812006-02-13 09:18:02 +00001852 // Legalize the call, starting from the CALLSEQ_END.
1853 LegalizeOp(LastCALLSEQ_END);
1854 assert(!IsLegalizingCall && "CALLSEQ_END should have cleared this!");
1855 return Result;
1856 }
Chris Lattner16cd04d2005-05-12 23:24:06 +00001857 case ISD::CALLSEQ_END:
Chris Lattner6831a812006-02-13 09:18:02 +00001858 // If the CALLSEQ_START node hasn't been legalized first, legalize it. This
1859 // will cause this node to be legalized as well as handling libcalls right.
Gabor Greifba36cb52008-08-28 21:40:38 +00001860 if (LastCALLSEQ_END.getNode() != Node) {
Dan Gohman475871a2008-07-27 21:46:04 +00001861 LegalizeOp(SDValue(FindCallStartFromCallEnd(Node), 0));
1862 DenseMap<SDValue, SDValue>::iterator I = LegalizedNodes.find(Op);
Chris Lattner6831a812006-02-13 09:18:02 +00001863 assert(I != LegalizedNodes.end() &&
1864 "Legalizing the call start should have legalized this node!");
1865 return I->second;
1866 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001867
1868 // Otherwise, the call start has been legalized and everything is going
Chris Lattner6831a812006-02-13 09:18:02 +00001869 // according to plan. Just legalize ourselves normally here.
Chris Lattner3e928bb2005-01-07 07:47:09 +00001870 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner70814bc2006-01-29 07:58:15 +00001871 // Do not try to legalize the target-specific arguments (#1+), except for
1872 // an optional flag input.
1873 if (Node->getOperand(Node->getNumOperands()-1).getValueType() != MVT::Flag){
1874 if (Tmp1 != Node->getOperand(0)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001875 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001876 Ops[0] = Tmp1;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001877 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001878 }
1879 } else {
1880 Tmp2 = LegalizeOp(Node->getOperand(Node->getNumOperands()-1));
1881 if (Tmp1 != Node->getOperand(0) ||
1882 Tmp2 != Node->getOperand(Node->getNumOperands()-1)) {
Dan Gohman475871a2008-07-27 21:46:04 +00001883 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner70814bc2006-01-29 07:58:15 +00001884 Ops[0] = Tmp1;
1885 Ops.back() = Tmp2;
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001886 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner70814bc2006-01-29 07:58:15 +00001887 }
Chris Lattner6a542892006-01-24 05:48:21 +00001888 }
Chris Lattner4b653a02006-02-14 00:55:02 +00001889 assert(IsLegalizingCall && "Call sequence imbalance between start/end?");
Chris Lattner6831a812006-02-13 09:18:02 +00001890 // This finishes up call legalization.
1891 IsLegalizingCall = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00001892
Chris Lattner4b653a02006-02-14 00:55:02 +00001893 // If the CALLSEQ_END node has a flag, remember that we legalized it.
Dan Gohman475871a2008-07-27 21:46:04 +00001894 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
Chris Lattner4b653a02006-02-14 00:55:02 +00001895 if (Node->getNumValues() == 2)
Dan Gohman475871a2008-07-27 21:46:04 +00001896 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001897 return Result.getValue(Op.getResNo());
Evan Chenga7dce3c2006-01-11 22:14:47 +00001898 case ISD::DYNAMIC_STACKALLOC: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00001899 MVT VT = Node->getValueType(0);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001900 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
1901 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the size.
1902 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the alignment.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001903 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerfa404e82005-01-09 19:03:49 +00001904
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001905 Tmp1 = Result.getValue(0);
Chris Lattner5f652292006-01-15 08:43:08 +00001906 Tmp2 = Result.getValue(1);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001907 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
Evan Chenga7dce3c2006-01-11 22:14:47 +00001908 default: assert(0 && "This action is not supported yet!");
Chris Lattner903d2782006-01-15 08:54:32 +00001909 case TargetLowering::Expand: {
1910 unsigned SPReg = TLI.getStackPointerRegisterToSaveRestore();
1911 assert(SPReg && "Target cannot require DYNAMIC_STACKALLOC expansion and"
1912 " not tell us which reg is the stack pointer!");
Dan Gohman475871a2008-07-27 21:46:04 +00001913 SDValue Chain = Tmp1.getOperand(0);
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001914
1915 // Chain the dynamic stack allocation so that it doesn't modify the stack
1916 // pointer when other instructions are using the stack.
Chris Lattnere563bbc2008-10-11 22:08:30 +00001917 Chain = DAG.getCALLSEQ_START(Chain, DAG.getIntPtrConstant(0, true));
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001918
Dan Gohman475871a2008-07-27 21:46:04 +00001919 SDValue Size = Tmp2.getOperand(1);
Dale Johannesenc460ae92009-02-04 00:13:36 +00001920 SDValue SP = DAG.getCopyFromReg(Chain, dl, SPReg, VT);
Evan Cheng61bbbab2007-08-16 23:50:06 +00001921 Chain = SP.getValue(1);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00001922 unsigned Align = cast<ConstantSDNode>(Tmp3)->getZExtValue();
Evan Cheng61bbbab2007-08-16 23:50:06 +00001923 unsigned StackAlign =
1924 TLI.getTargetMachine().getFrameInfo()->getStackAlignment();
1925 if (Align > StackAlign)
Dale Johannesenca57b842009-02-02 23:46:53 +00001926 SP = DAG.getNode(ISD::AND, dl, VT, SP,
Evan Cheng3e20bba2007-08-17 18:02:22 +00001927 DAG.getConstant(-(uint64_t)Align, VT));
Dale Johannesenca57b842009-02-02 23:46:53 +00001928 Tmp1 = DAG.getNode(ISD::SUB, dl, VT, SP, Size); // Value
Dale Johannesenc460ae92009-02-04 00:13:36 +00001929 Chain = DAG.getCopyToReg(Chain, dl, SPReg, Tmp1); // Output chain
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001930
Dale Johannesenca57b842009-02-02 23:46:53 +00001931 Tmp2 = DAG.getCALLSEQ_END(Chain, DAG.getIntPtrConstant(0, true),
Chris Lattnere563bbc2008-10-11 22:08:30 +00001932 DAG.getIntPtrConstant(0, true), SDValue());
Bill Wendling0f8d9c02007-11-13 00:44:25 +00001933
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001934 Tmp1 = LegalizeOp(Tmp1);
1935 Tmp2 = LegalizeOp(Tmp2);
Chris Lattner903d2782006-01-15 08:54:32 +00001936 break;
1937 }
1938 case TargetLowering::Custom:
Chris Lattner5f652292006-01-15 08:43:08 +00001939 Tmp3 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00001940 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001941 Tmp1 = LegalizeOp(Tmp3);
1942 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Evan Chenga7dce3c2006-01-11 22:14:47 +00001943 }
Chris Lattner903d2782006-01-15 08:54:32 +00001944 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001945 case TargetLowering::Legal:
Chris Lattner903d2782006-01-15 08:54:32 +00001946 break;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001947 }
Chris Lattner903d2782006-01-15 08:54:32 +00001948 // Since this op produce two values, make sure to remember that we
1949 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00001950 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
1951 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00001952 return Op.getResNo() ? Tmp2 : Tmp1;
Evan Chenga7dce3c2006-01-11 22:14:47 +00001953 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001954 case ISD::INLINEASM: {
Dan Gohman475871a2008-07-27 21:46:04 +00001955 SmallVector<SDValue, 8> Ops(Node->op_begin(), Node->op_end());
Chris Lattner25a022c2006-07-11 01:40:09 +00001956 bool Changed = false;
1957 // Legalize all of the operands of the inline asm, in case they are nodes
1958 // that need to be expanded or something. Note we skip the asm string and
1959 // all of the TargetConstant flags.
Dan Gohman475871a2008-07-27 21:46:04 +00001960 SDValue Op = LegalizeOp(Ops[0]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001961 Changed = Op != Ops[0];
1962 Ops[0] = Op;
1963
1964 bool HasInFlag = Ops.back().getValueType() == MVT::Flag;
1965 for (unsigned i = 2, e = Ops.size()-HasInFlag; i < e; ) {
Evan Cheng697cbbf2009-03-20 18:03:34 +00001966 unsigned NumVals = InlineAsm::
1967 getNumOperandRegisters(cast<ConstantSDNode>(Ops[i])->getZExtValue());
Chris Lattner25a022c2006-07-11 01:40:09 +00001968 for (++i; NumVals; ++i, --NumVals) {
Dan Gohman475871a2008-07-27 21:46:04 +00001969 SDValue Op = LegalizeOp(Ops[i]);
Chris Lattner25a022c2006-07-11 01:40:09 +00001970 if (Op != Ops[i]) {
1971 Changed = true;
1972 Ops[i] = Op;
1973 }
1974 }
Chris Lattnerce7518c2006-01-26 22:24:51 +00001975 }
Chris Lattner25a022c2006-07-11 01:40:09 +00001976
1977 if (HasInFlag) {
1978 Op = LegalizeOp(Ops.back());
1979 Changed |= Op != Ops.back();
1980 Ops.back() = Op;
1981 }
Scott Michelfdc40a02009-02-17 22:15:04 +00001982
Chris Lattner25a022c2006-07-11 01:40:09 +00001983 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00001984 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Scott Michelfdc40a02009-02-17 22:15:04 +00001985
Chris Lattnerce7518c2006-01-26 22:24:51 +00001986 // INLINE asm returns a chain and flag, make sure to add both to the map.
Dan Gohman475871a2008-07-27 21:46:04 +00001987 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
1988 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Gabor Greif99a6cb92008-08-26 22:36:50 +00001989 return Result.getValue(Op.getResNo());
Chris Lattner25a022c2006-07-11 01:40:09 +00001990 }
Chris Lattnerc7af1792005-01-07 22:12:08 +00001991 case ISD::BR:
1992 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00001993 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00001994 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00001995 Tmp1 = LegalizeOp(Tmp1);
1996 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00001997
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00001998 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerc7af1792005-01-07 22:12:08 +00001999 break;
Nate Begeman37efe672006-04-22 18:53:45 +00002000 case ISD::BRIND:
2001 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2002 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002003 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Nate Begeman37efe672006-04-22 18:53:45 +00002004 Tmp1 = LegalizeOp(Tmp1);
2005 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00002006
Nate Begeman37efe672006-04-22 18:53:45 +00002007 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2008 default: assert(0 && "Indirect target must be legal type (pointer)!");
2009 case Legal:
2010 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2011 break;
2012 }
2013 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
2014 break;
Evan Cheng3d4ce112006-10-30 08:00:44 +00002015 case ISD::BR_JT:
2016 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2017 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002018 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002019 Tmp1 = LegalizeOp(Tmp1);
2020 LastCALLSEQ_END = DAG.getEntryNode();
2021
2022 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the jumptable node.
2023 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
2024
Scott Michelfdc40a02009-02-17 22:15:04 +00002025 switch (TLI.getOperationAction(ISD::BR_JT, MVT::Other)) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00002026 default: assert(0 && "This action is not supported yet!");
2027 case TargetLowering::Legal: break;
2028 case TargetLowering::Custom:
2029 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002030 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng3d4ce112006-10-30 08:00:44 +00002031 break;
2032 case TargetLowering::Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002033 SDValue Chain = Result.getOperand(0);
2034 SDValue Table = Result.getOperand(1);
2035 SDValue Index = Result.getOperand(2);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002036
Duncan Sands83ec4b62008-06-06 12:08:01 +00002037 MVT PTy = TLI.getPointerTy();
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002038 MachineFunction &MF = DAG.getMachineFunction();
2039 unsigned EntrySize = MF.getJumpTableInfo()->getEntrySize();
Scott Michelfdc40a02009-02-17 22:15:04 +00002040 Index= DAG.getNode(ISD::MUL, dl, PTy,
Dale Johannesenca57b842009-02-02 23:46:53 +00002041 Index, DAG.getConstant(EntrySize, PTy));
2042 SDValue Addr = DAG.getNode(ISD::ADD, dl, PTy, Index, Table);
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002043
Duncan Sands712f7b32008-12-12 08:13:38 +00002044 MVT MemVT = MVT::getIntegerVT(EntrySize * 8);
Dale Johannesenca57b842009-02-02 23:46:53 +00002045 SDValue LD = DAG.getExtLoad(ISD::SEXTLOAD, dl, PTy, Chain, Addr,
Duncan Sands712f7b32008-12-12 08:13:38 +00002046 PseudoSourceValue::getJumpTable(), 0, MemVT);
Evan Chengcc415862007-11-09 01:32:10 +00002047 Addr = LD;
Jim Laskeyacd80ac2006-12-14 19:17:33 +00002048 if (TLI.getTargetMachine().getRelocationModel() == Reloc::PIC_) {
Evan Cheng3d4ce112006-10-30 08:00:44 +00002049 // For PIC, the sequence is:
2050 // BRIND(load(Jumptable + index) + RelocBase)
Evan Chengcc415862007-11-09 01:32:10 +00002051 // RelocBase can be JumpTable, GOT or some sort of global base.
Dale Johannesenca57b842009-02-02 23:46:53 +00002052 Addr = DAG.getNode(ISD::ADD, dl, PTy, Addr,
Evan Chengcc415862007-11-09 01:32:10 +00002053 TLI.getPICJumpTableRelocBase(Table, DAG));
Evan Cheng3d4ce112006-10-30 08:00:44 +00002054 }
Dale Johannesenca57b842009-02-02 23:46:53 +00002055 Result = DAG.getNode(ISD::BRIND, dl, MVT::Other, LD.getValue(1), Addr);
Evan Cheng3d4ce112006-10-30 08:00:44 +00002056 }
2057 }
2058 break;
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002059 case ISD::BRCOND:
2060 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002061 // Ensure that libcalls are emitted before a return.
Dale Johannesenca57b842009-02-02 23:46:53 +00002062 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002063 Tmp1 = LegalizeOp(Tmp1);
2064 LastCALLSEQ_END = DAG.getEntryNode();
2065
Chris Lattner47e92232005-01-18 19:27:06 +00002066 switch (getTypeAction(Node->getOperand(1).getValueType())) {
2067 case Expand: assert(0 && "It's impossible to expand bools");
2068 case Legal:
2069 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the condition.
2070 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002071 case Promote: {
Chris Lattner47e92232005-01-18 19:27:06 +00002072 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the condition.
Scott Michelfdc40a02009-02-17 22:15:04 +00002073
Chris Lattnerf9908172006-11-27 04:39:56 +00002074 // The top bits of the promoted condition are not necessarily zero, ensure
2075 // that the value is properly zero extended.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002076 unsigned BitWidth = Tmp2.getValueSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00002077 if (!DAG.MaskedValueIsZero(Tmp2,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002078 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenca57b842009-02-02 23:46:53 +00002079 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002080 break;
2081 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002082 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002083
2084 // Basic block destination (Op#2) is always legal.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002085 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00002086
2087 switch (TLI.getOperationAction(ISD::BRCOND, MVT::Other)) {
Nate Begeman7cbd5252005-08-16 19:49:35 +00002088 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002089 case TargetLowering::Legal: break;
2090 case TargetLowering::Custom:
2091 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002092 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002093 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002094 case TargetLowering::Expand:
2095 // Expand brcond's setcc into its constituent parts and create a BR_CC
2096 // Node.
2097 if (Tmp2.getOpcode() == ISD::SETCC) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002098 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other,
Dale Johannesenca57b842009-02-02 23:46:53 +00002099 Tmp1, Tmp2.getOperand(2),
Nate Begeman7cbd5252005-08-16 19:49:35 +00002100 Tmp2.getOperand(0), Tmp2.getOperand(1),
2101 Node->getOperand(2));
2102 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00002103 Result = DAG.getNode(ISD::BR_CC, dl, MVT::Other, Tmp1,
Nate Begeman7cbd5252005-08-16 19:49:35 +00002104 DAG.getCondCode(ISD::SETNE), Tmp2,
2105 DAG.getConstant(0, Tmp2.getValueType()),
2106 Node->getOperand(2));
2107 }
2108 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002109 }
2110 break;
2111 case ISD::BR_CC:
2112 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002113 // Ensure that libcalls are emitted before a branch.
Dale Johannesenca57b842009-02-02 23:46:53 +00002114 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002115 Tmp1 = LegalizeOp(Tmp1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002116 Tmp2 = Node->getOperand(2); // LHS
Nate Begeman750ac1b2006-02-01 07:19:44 +00002117 Tmp3 = Node->getOperand(3); // RHS
2118 Tmp4 = Node->getOperand(1); // CC
2119
Scott Michelfdc40a02009-02-17 22:15:04 +00002120 LegalizeSetCC(TLI.getSetCCResultType(Tmp2.getValueType()),
Dale Johannesenbb5da912009-02-02 20:41:04 +00002121 Tmp2, Tmp3, Tmp4, dl);
Evan Cheng722cb362006-12-18 22:55:34 +00002122 LastCALLSEQ_END = DAG.getEntryNode();
2123
Evan Cheng7f042682008-10-15 02:05:31 +00002124 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002125 // the LHS is a legal SETCC itself. In this case, we need to compare
2126 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00002127 if (Tmp3.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00002128 Tmp3 = DAG.getConstant(0, Tmp2.getValueType());
2129 Tmp4 = DAG.getCondCode(ISD::SETNE);
Chris Lattner181b7a32005-12-17 23:46:46 +00002130 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002131
2132 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp4, Tmp2, Tmp3,
Nate Begeman750ac1b2006-02-01 07:19:44 +00002133 Node->getOperand(4));
Scott Michelfdc40a02009-02-17 22:15:04 +00002134
Chris Lattner181b7a32005-12-17 23:46:46 +00002135 switch (TLI.getOperationAction(ISD::BR_CC, Tmp3.getValueType())) {
2136 default: assert(0 && "Unexpected action for BR_CC!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002137 case TargetLowering::Legal: break;
2138 case TargetLowering::Custom:
2139 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002140 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner181b7a32005-12-17 23:46:46 +00002141 break;
Nate Begeman7cbd5252005-08-16 19:49:35 +00002142 }
Chris Lattnerc18ae4c2005-01-07 08:19:42 +00002143 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002144 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00002145 LoadSDNode *LD = cast<LoadSDNode>(Node);
2146 Tmp1 = LegalizeOp(LD->getChain()); // Legalize the chain.
2147 Tmp2 = LegalizeOp(LD->getBasePtr()); // Legalize the base pointer.
Andrew Lenharth2d86ea22005-04-27 20:10:01 +00002148
Evan Cheng466685d2006-10-09 20:57:25 +00002149 ISD::LoadExtType ExtType = LD->getExtensionType();
2150 if (ExtType == ISD::NON_EXTLOAD) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002151 MVT VT = Node->getValueType(0);
Evan Cheng466685d2006-10-09 20:57:25 +00002152 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2153 Tmp3 = Result.getValue(0);
2154 Tmp4 = Result.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002155
Evan Cheng466685d2006-10-09 20:57:25 +00002156 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
2157 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002158 case TargetLowering::Legal:
2159 // If this is an unaligned load and the target doesn't support it,
2160 // expand it.
2161 if (!TLI.allowsUnalignedMemoryAccesses()) {
2162 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002163 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002164 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002165 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002166 TLI);
2167 Tmp3 = Result.getOperand(0);
2168 Tmp4 = Result.getOperand(1);
Dale Johannesen907f28c2007-09-08 19:29:23 +00002169 Tmp3 = LegalizeOp(Tmp3);
2170 Tmp4 = LegalizeOp(Tmp4);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002171 }
2172 }
2173 break;
Evan Cheng466685d2006-10-09 20:57:25 +00002174 case TargetLowering::Custom:
2175 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002176 if (Tmp1.getNode()) {
Evan Cheng466685d2006-10-09 20:57:25 +00002177 Tmp3 = LegalizeOp(Tmp1);
2178 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattner456a93a2006-01-28 07:39:30 +00002179 }
Evan Cheng466685d2006-10-09 20:57:25 +00002180 break;
2181 case TargetLowering::Promote: {
2182 // Only promote a load of vector type to another.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002183 assert(VT.isVector() && "Cannot promote this load!");
Evan Cheng466685d2006-10-09 20:57:25 +00002184 // Change base type to a different vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002185 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), VT);
Evan Cheng466685d2006-10-09 20:57:25 +00002186
Dale Johannesenca57b842009-02-02 23:46:53 +00002187 Tmp1 = DAG.getLoad(NVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002188 LD->getSrcValueOffset(),
2189 LD->isVolatile(), LD->getAlignment());
Dale Johannesenb300d2a2009-02-07 00:55:49 +00002190 Tmp3 = LegalizeOp(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp1));
Evan Cheng466685d2006-10-09 20:57:25 +00002191 Tmp4 = LegalizeOp(Tmp1.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002192 break;
Andrew Lenharth9d416f72005-06-30 19:22:37 +00002193 }
Evan Cheng466685d2006-10-09 20:57:25 +00002194 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002195 // Since loads produce two values, make sure to remember that we
Evan Cheng466685d2006-10-09 20:57:25 +00002196 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002197 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
2198 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002199 return Op.getResNo() ? Tmp4 : Tmp3;
Evan Cheng466685d2006-10-09 20:57:25 +00002200 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002201 MVT SrcVT = LD->getMemoryVT();
2202 unsigned SrcWidth = SrcVT.getSizeInBits();
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002203 int SVOffset = LD->getSrcValueOffset();
2204 unsigned Alignment = LD->getAlignment();
2205 bool isVolatile = LD->isVolatile();
2206
Duncan Sands83ec4b62008-06-06 12:08:01 +00002207 if (SrcWidth != SrcVT.getStoreSizeInBits() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002208 // Some targets pretend to have an i1 loading operation, and actually
2209 // load an i8. This trick is correct for ZEXTLOAD because the top 7
2210 // bits are guaranteed to be zero; it helps the optimizers understand
2211 // that these bits are zero. It is also useful for EXTLOAD, since it
2212 // tells the optimizers that those bits are undefined. It would be
2213 // nice to have an effective generic way of getting these benefits...
2214 // Until such a way is found, don't insist on promoting i1 here.
2215 (SrcVT != MVT::i1 ||
Evan Cheng03294662008-10-14 21:26:46 +00002216 TLI.getLoadExtAction(ExtType, MVT::i1) == TargetLowering::Promote)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002217 // Promote to a byte-sized load if not loading an integral number of
2218 // bytes. For example, promote EXTLOAD:i20 -> EXTLOAD:i24.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002219 unsigned NewWidth = SrcVT.getStoreSizeInBits();
2220 MVT NVT = MVT::getIntegerVT(NewWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002221 SDValue Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002222
2223 // The extra bits are guaranteed to be zero, since we stored them that
2224 // way. A zext load from NVT thus automatically gives zext from SrcVT.
2225
2226 ISD::LoadExtType NewExtType =
2227 ExtType == ISD::ZEXTLOAD ? ISD::ZEXTLOAD : ISD::EXTLOAD;
2228
Dale Johannesenca57b842009-02-02 23:46:53 +00002229 Result = DAG.getExtLoad(NewExtType, dl, Node->getValueType(0),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002230 Tmp1, Tmp2, LD->getSrcValue(), SVOffset,
2231 NVT, isVolatile, Alignment);
2232
2233 Ch = Result.getValue(1); // The chain.
2234
2235 if (ExtType == ISD::SEXTLOAD)
2236 // Having the top bits zero doesn't help when sign extending.
Scott Michelfdc40a02009-02-17 22:15:04 +00002237 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002238 Result.getValueType(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002239 Result, DAG.getValueType(SrcVT));
2240 else if (ExtType == ISD::ZEXTLOAD || NVT == Result.getValueType())
2241 // All the top bits are guaranteed to be zero - inform the optimizers.
Scott Michelfdc40a02009-02-17 22:15:04 +00002242 Result = DAG.getNode(ISD::AssertZext, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002243 Result.getValueType(), Result,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002244 DAG.getValueType(SrcVT));
2245
2246 Tmp1 = LegalizeOp(Result);
2247 Tmp2 = LegalizeOp(Ch);
2248 } else if (SrcWidth & (SrcWidth - 1)) {
2249 // If not loading a power-of-2 number of bits, expand as two loads.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002250 assert(SrcVT.isExtended() && !SrcVT.isVector() &&
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002251 "Unsupported extload!");
2252 unsigned RoundWidth = 1 << Log2_32(SrcWidth);
2253 assert(RoundWidth < SrcWidth);
2254 unsigned ExtraWidth = SrcWidth - RoundWidth;
2255 assert(ExtraWidth < RoundWidth);
2256 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2257 "Load size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002258 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2259 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002260 SDValue Lo, Hi, Ch;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002261 unsigned IncrementSize;
2262
2263 if (TLI.isLittleEndian()) {
2264 // EXTLOAD:i24 -> ZEXTLOAD:i16 | (shl EXTLOAD@+2:i8, 16)
2265 // Load the bottom RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002266 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
2267 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002268 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2269 Alignment);
2270
2271 // Load the remaining ExtraWidth bits.
2272 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002273 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002274 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002275 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002276 LD->getSrcValue(), SVOffset + IncrementSize,
2277 ExtraVT, isVolatile,
2278 MinAlign(Alignment, IncrementSize));
2279
2280 // Build a factor node to remember that this load is independent of the
2281 // other one.
Dale Johannesenca57b842009-02-02 23:46:53 +00002282 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002283 Hi.getValue(1));
2284
2285 // Move the top bits to the right place.
Dale Johannesenca57b842009-02-02 23:46:53 +00002286 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002287 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
2288
2289 // Join the hi and lo parts.
Dale Johannesenca57b842009-02-02 23:46:53 +00002290 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002291 } else {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002292 // Big endian - avoid unaligned loads.
2293 // EXTLOAD:i24 -> (shl EXTLOAD:i16, 8) | ZEXTLOAD@+2:i8
2294 // Load the top RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002295 Hi = DAG.getExtLoad(ExtType, dl, Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002296 LD->getSrcValue(), SVOffset, RoundVT, isVolatile,
2297 Alignment);
2298
2299 // Load the remaining ExtraWidth bits.
2300 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002301 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002302 DAG.getIntPtrConstant(IncrementSize));
Scott Michelfdc40a02009-02-17 22:15:04 +00002303 Lo = DAG.getExtLoad(ISD::ZEXTLOAD, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002304 Node->getValueType(0), Tmp1, Tmp2,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002305 LD->getSrcValue(), SVOffset + IncrementSize,
2306 ExtraVT, isVolatile,
2307 MinAlign(Alignment, IncrementSize));
2308
2309 // Build a factor node to remember that this load is independent of the
2310 // other one.
Dale Johannesenca57b842009-02-02 23:46:53 +00002311 Ch = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002312 Hi.getValue(1));
2313
2314 // Move the top bits to the right place.
Dale Johannesenca57b842009-02-02 23:46:53 +00002315 Hi = DAG.getNode(ISD::SHL, dl, Hi.getValueType(), Hi,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002316 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
2317
2318 // Join the hi and lo parts.
Dale Johannesenca57b842009-02-02 23:46:53 +00002319 Result = DAG.getNode(ISD::OR, dl, Node->getValueType(0), Lo, Hi);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002320 }
2321
2322 Tmp1 = LegalizeOp(Result);
2323 Tmp2 = LegalizeOp(Ch);
2324 } else {
Evan Cheng03294662008-10-14 21:26:46 +00002325 switch (TLI.getLoadExtAction(ExtType, SrcVT)) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002326 default: assert(0 && "This action is not supported yet!");
2327 case TargetLowering::Custom:
2328 isCustom = true;
2329 // FALLTHROUGH
2330 case TargetLowering::Legal:
2331 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, LD->getOffset());
2332 Tmp1 = Result.getValue(0);
2333 Tmp2 = Result.getValue(1);
2334
2335 if (isCustom) {
2336 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002337 if (Tmp3.getNode()) {
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002338 Tmp1 = LegalizeOp(Tmp3);
2339 Tmp2 = LegalizeOp(Tmp3.getValue(1));
2340 }
2341 } else {
2342 // If this is an unaligned load and the target doesn't support it,
2343 // expand it.
2344 if (!TLI.allowsUnalignedMemoryAccesses()) {
2345 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002346 getABITypeAlignment(LD->getMemoryVT().getTypeForMVT());
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002347 if (LD->getAlignment() < ABIAlignment){
Gabor Greifba36cb52008-08-28 21:40:38 +00002348 Result = ExpandUnalignedLoad(cast<LoadSDNode>(Result.getNode()), DAG,
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002349 TLI);
2350 Tmp1 = Result.getOperand(0);
2351 Tmp2 = Result.getOperand(1);
2352 Tmp1 = LegalizeOp(Tmp1);
2353 Tmp2 = LegalizeOp(Tmp2);
2354 }
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002355 }
2356 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002357 break;
2358 case TargetLowering::Expand:
2359 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
2360 if (SrcVT == MVT::f32 && Node->getValueType(0) == MVT::f64) {
Dale Johannesenca57b842009-02-02 23:46:53 +00002361 SDValue Load = DAG.getLoad(SrcVT, dl, Tmp1, Tmp2, LD->getSrcValue(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002362 LD->getSrcValueOffset(),
2363 LD->isVolatile(), LD->getAlignment());
Scott Michelfdc40a02009-02-17 22:15:04 +00002364 Result = DAG.getNode(ISD::FP_EXTEND, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00002365 Node->getValueType(0), Load);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002366 Tmp1 = LegalizeOp(Result); // Relegalize new nodes.
2367 Tmp2 = LegalizeOp(Load.getValue(1));
2368 break;
2369 }
2370 assert(ExtType != ISD::EXTLOAD &&"EXTLOAD should always be supported!");
2371 // Turn the unsupported load into an EXTLOAD followed by an explicit
2372 // zero/sign extend inreg.
Dale Johannesenca57b842009-02-02 23:46:53 +00002373 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, Node->getValueType(0),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002374 Tmp1, Tmp2, LD->getSrcValue(),
2375 LD->getSrcValueOffset(), SrcVT,
2376 LD->isVolatile(), LD->getAlignment());
Dan Gohman475871a2008-07-27 21:46:04 +00002377 SDValue ValRes;
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002378 if (ExtType == ISD::SEXTLOAD)
Dale Johannesenca57b842009-02-02 23:46:53 +00002379 ValRes = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl,
2380 Result.getValueType(),
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002381 Result, DAG.getValueType(SrcVT));
2382 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002383 ValRes = DAG.getZeroExtendInReg(Result, dl, SrcVT);
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002384 Tmp1 = LegalizeOp(ValRes); // Relegalize new nodes.
2385 Tmp2 = LegalizeOp(Result.getValue(1)); // Relegalize new nodes.
Evan Cheng466685d2006-10-09 20:57:25 +00002386 break;
2387 }
Evan Cheng466685d2006-10-09 20:57:25 +00002388 }
Duncan Sandsf9c98e62008-01-23 20:39:46 +00002389
Evan Cheng466685d2006-10-09 20:57:25 +00002390 // Since loads produce two values, make sure to remember that we legalized
2391 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002392 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2393 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002394 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner01ff7212005-04-10 22:54:25 +00002395 }
Chris Lattner01ff7212005-04-10 22:54:25 +00002396 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002397 case ISD::EXTRACT_ELEMENT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002398 MVT OpTy = Node->getOperand(0).getValueType();
Nate Begeman5dc897b2005-10-19 00:06:56 +00002399 switch (getTypeAction(OpTy)) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002400 default: assert(0 && "EXTRACT_ELEMENT action for type unimplemented!");
Nate Begeman5dc897b2005-10-19 00:06:56 +00002401 case Legal:
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002402 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue()) {
Nate Begeman5dc897b2005-10-19 00:06:56 +00002403 // 1 -> Hi
Dale Johannesenca57b842009-02-02 23:46:53 +00002404 Result = DAG.getNode(ISD::SRL, dl, OpTy, Node->getOperand(0),
Duncan Sands83ec4b62008-06-06 12:08:01 +00002405 DAG.getConstant(OpTy.getSizeInBits()/2,
Nate Begeman5dc897b2005-10-19 00:06:56 +00002406 TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002407 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Result);
Nate Begeman5dc897b2005-10-19 00:06:56 +00002408 } else {
2409 // 0 -> Lo
Scott Michelfdc40a02009-02-17 22:15:04 +00002410 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0),
Nate Begeman5dc897b2005-10-19 00:06:56 +00002411 Node->getOperand(0));
2412 }
Nate Begeman5dc897b2005-10-19 00:06:56 +00002413 break;
2414 case Expand:
2415 // Get both the low and high parts.
2416 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00002417 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Nate Begeman5dc897b2005-10-19 00:06:56 +00002418 Result = Tmp2; // 1 -> Hi
2419 else
2420 Result = Tmp1; // 0 -> Lo
2421 break;
2422 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002423 break;
Nate Begeman5dc897b2005-10-19 00:06:56 +00002424 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002425
2426 case ISD::CopyToReg:
2427 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Misha Brukmanedf128a2005-04-21 22:36:52 +00002428
Chris Lattnerc9c60f62005-08-24 16:35:28 +00002429 assert(isTypeLegal(Node->getOperand(2).getValueType()) &&
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002430 "Register type must be legal!");
Chris Lattner7310fb12005-12-18 15:27:43 +00002431 // Legalize the incoming value (must be a legal type).
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00002432 Tmp2 = LegalizeOp(Node->getOperand(2));
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002433 if (Node->getNumValues() == 1) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002434 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002435 } else {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002436 assert(Node->getNumValues() == 2 && "Unknown CopyToReg");
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002437 if (Node->getNumOperands() == 4) {
Chris Lattnerf1a47c32005-12-18 15:36:21 +00002438 Tmp3 = LegalizeOp(Node->getOperand(3));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002439 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1), Tmp2,
2440 Tmp3);
2441 } else {
2442 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1),Tmp2);
Chris Lattner7310fb12005-12-18 15:27:43 +00002443 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002444
Chris Lattner7310fb12005-12-18 15:27:43 +00002445 // Since this produces two values, make sure to remember that we legalized
2446 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002447 AddLegalizedOperand(SDValue(Node, 0), Result.getValue(0));
2448 AddLegalizedOperand(SDValue(Node, 1), Result.getValue(1));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002449 return Result;
Chris Lattner7310fb12005-12-18 15:27:43 +00002450 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002451 break;
2452
2453 case ISD::RET:
2454 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattner6831a812006-02-13 09:18:02 +00002455
2456 // Ensure that libcalls are emitted before a return.
Dale Johannesenca57b842009-02-02 23:46:53 +00002457 Tmp1 = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Tmp1, LastCALLSEQ_END);
Chris Lattner6831a812006-02-13 09:18:02 +00002458 Tmp1 = LegalizeOp(Tmp1);
2459 LastCALLSEQ_END = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00002460
Chris Lattner3e928bb2005-01-07 07:47:09 +00002461 switch (Node->getNumOperands()) {
Evan Cheng8e7d0562006-05-26 23:09:09 +00002462 case 3: // ret val
Evan Cheng98f8aeb2006-04-11 06:33:39 +00002463 Tmp2 = Node->getOperand(1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002464 Tmp3 = Node->getOperand(2); // Signness
Chris Lattnerf87324e2006-04-11 01:31:51 +00002465 switch (getTypeAction(Tmp2.getValueType())) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00002466 case Legal:
Evan Cheng8e7d0562006-05-26 23:09:09 +00002467 Result = DAG.UpdateNodeOperands(Result, Tmp1, LegalizeOp(Tmp2), Tmp3);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002468 break;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002469 case Expand:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002470 if (!Tmp2.getValueType().isVector()) {
Dan Gohman475871a2008-07-27 21:46:04 +00002471 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002472 ExpandOp(Tmp2, Lo, Hi);
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002473
2474 // Big endian systems want the hi reg first.
Duncan Sands0753fc12008-02-11 10:37:04 +00002475 if (TLI.isBigEndian())
Chris Lattneredf2e8d2007-03-06 20:01:06 +00002476 std::swap(Lo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00002477
Gabor Greifba36cb52008-08-28 21:40:38 +00002478 if (Hi.getNode())
Scott Michelfdc40a02009-02-17 22:15:04 +00002479 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002480 Tmp1, Lo, Tmp3, Hi, Tmp3);
Evan Cheng13acce32006-12-11 19:27:14 +00002481 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002482 Result = DAG.getNode(ISD::RET, dl, MVT::Other, Tmp1, Lo, Tmp3);
Chris Lattnerf921a512006-08-21 20:24:53 +00002483 Result = LegalizeOp(Result);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002484 } else {
Gabor Greifba36cb52008-08-28 21:40:38 +00002485 SDNode *InVal = Tmp2.getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002486 int InIx = Tmp2.getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002487 unsigned NumElems = InVal->getValueType(InIx).getVectorNumElements();
2488 MVT EVT = InVal->getValueType(InIx).getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00002489
Dan Gohman7f321562007-06-25 16:23:39 +00002490 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002491 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002492 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002493 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002494 // Turn this into a return of the vector type.
Dan Gohman7f321562007-06-25 16:23:39 +00002495 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002496 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002497 } else if (NumElems == 1) {
2498 // Turn this into a return of the scalar type.
Dan Gohman7f321562007-06-25 16:23:39 +00002499 Tmp2 = ScalarizeVectorOp(Tmp2);
2500 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002501 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00002502
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002503 // FIXME: Returns of gcc generic vectors smaller than a legal type
2504 // should be returned in integer registers!
Scott Michelfdc40a02009-02-17 22:15:04 +00002505
Chris Lattnerf87324e2006-04-11 01:31:51 +00002506 // The scalarized value type may not be legal, e.g. it might require
2507 // promotion or expansion. Relegalize the return.
2508 Result = LegalizeOp(Result);
2509 } else {
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002510 // FIXME: Returns of gcc generic vectors larger than a legal vector
2511 // type should be returned by reference!
Dan Gohman475871a2008-07-27 21:46:04 +00002512 SDValue Lo, Hi;
Chris Lattnerf87324e2006-04-11 01:31:51 +00002513 SplitVectorOp(Tmp2, Lo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00002514 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00002515 Tmp1, Lo, Tmp3, Hi, Tmp3);
Chris Lattnerf87324e2006-04-11 01:31:51 +00002516 Result = LegalizeOp(Result);
2517 }
2518 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002519 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002520 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002521 Tmp2 = PromoteOp(Node->getOperand(1));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002522 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002523 Result = LegalizeOp(Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00002524 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002525 }
2526 break;
2527 case 1: // ret void
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002528 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner3e928bb2005-01-07 07:47:09 +00002529 break;
2530 default: { // ret <values>
Dan Gohman475871a2008-07-27 21:46:04 +00002531 SmallVector<SDValue, 8> NewValues;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002532 NewValues.push_back(Tmp1);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002533 for (unsigned i = 1, e = Node->getNumOperands(); i < e; i += 2)
Chris Lattner3e928bb2005-01-07 07:47:09 +00002534 switch (getTypeAction(Node->getOperand(i).getValueType())) {
2535 case Legal:
Chris Lattner4e6c7462005-01-08 19:27:05 +00002536 NewValues.push_back(LegalizeOp(Node->getOperand(i)));
Evan Cheng8e7d0562006-05-26 23:09:09 +00002537 NewValues.push_back(Node->getOperand(i+1));
Chris Lattner3e928bb2005-01-07 07:47:09 +00002538 break;
2539 case Expand: {
Dan Gohman475871a2008-07-27 21:46:04 +00002540 SDValue Lo, Hi;
Duncan Sands83ec4b62008-06-06 12:08:01 +00002541 assert(!Node->getOperand(i).getValueType().isExtended() &&
Chris Lattnerb49e52c2006-04-11 02:00:08 +00002542 "FIXME: TODO: implement returning non-legal vector types!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002543 ExpandOp(Node->getOperand(i), Lo, Hi);
2544 NewValues.push_back(Lo);
Evan Cheng8e7d0562006-05-26 23:09:09 +00002545 NewValues.push_back(Node->getOperand(i+1));
Gabor Greifba36cb52008-08-28 21:40:38 +00002546 if (Hi.getNode()) {
Evan Cheng13acce32006-12-11 19:27:14 +00002547 NewValues.push_back(Hi);
2548 NewValues.push_back(Node->getOperand(i+1));
2549 }
Misha Brukmanedf128a2005-04-21 22:36:52 +00002550 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00002551 }
2552 case Promote:
Chris Lattner8b6fa222005-01-15 22:16:26 +00002553 assert(0 && "Can't promote multiple return value yet!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00002554 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002555
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002556 if (NewValues.size() == Node->getNumOperands())
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002557 Result = DAG.UpdateNodeOperands(Result, &NewValues[0],NewValues.size());
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002558 else
Dale Johannesenca57b842009-02-02 23:46:53 +00002559 Result = DAG.getNode(ISD::RET, dl, MVT::Other,
Chris Lattnerf06f35e2006-08-08 01:09:31 +00002560 &NewValues[0], NewValues.size());
Chris Lattner3e928bb2005-01-07 07:47:09 +00002561 break;
2562 }
2563 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002564
Chris Lattner6862dbc2006-01-29 21:02:23 +00002565 if (Result.getOpcode() == ISD::RET) {
2566 switch (TLI.getOperationAction(Result.getOpcode(), MVT::Other)) {
2567 default: assert(0 && "This action is not supported yet!");
2568 case TargetLowering::Legal: break;
2569 case TargetLowering::Custom:
2570 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002571 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner6862dbc2006-01-29 21:02:23 +00002572 break;
2573 }
Evan Cheng17c428e2006-01-06 00:41:43 +00002574 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002575 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002576 case ISD::STORE: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002577 StoreSDNode *ST = cast<StoreSDNode>(Node);
2578 Tmp1 = LegalizeOp(ST->getChain()); // Legalize the chain.
2579 Tmp2 = LegalizeOp(ST->getBasePtr()); // Legalize the pointer.
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002580 int SVOffset = ST->getSrcValueOffset();
2581 unsigned Alignment = ST->getAlignment();
2582 bool isVolatile = ST->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00002583
Evan Cheng8b2794a2006-10-13 21:14:26 +00002584 if (!ST->isTruncatingStore()) {
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002585 // Turn 'store float 1.0, Ptr' -> 'store int 0x12345678, Ptr'
2586 // FIXME: We shouldn't do this for TargetConstantFP's.
2587 // FIXME: move this to the DAG Combiner! Note that we can't regress due
2588 // to phase ordering between legalized code and the dag combiner. This
2589 // probably means that we need to integrate dag combiner and legalizer
2590 // together.
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002591 // We generally can't do this one for long doubles.
Chris Lattner2b4c2792007-10-13 06:35:54 +00002592 if (ConstantFPSDNode *CFP = dyn_cast<ConstantFPSDNode>(ST->getValue())) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002593 if (CFP->getValueType(0) == MVT::f32 &&
Chris Lattner3cb93512007-10-15 05:46:06 +00002594 getTypeAction(MVT::i32) == Legal) {
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002595 Tmp3 = DAG.getConstant(CFP->getValueAPF().
Dale Johannesen7111b022008-10-09 18:53:47 +00002596 bitcastToAPInt().zextOrTrunc(32),
Dale Johannesen3f6eb742007-09-11 18:32:33 +00002597 MVT::i32);
Dale Johannesenca57b842009-02-02 23:46:53 +00002598 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00002599 SVOffset, isVolatile, Alignment);
2600 break;
2601 } else if (CFP->getValueType(0) == MVT::f64) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002602 // If this target supports 64-bit registers, do a single 64-bit store.
2603 if (getTypeAction(MVT::i64) == Legal) {
Dale Johannesen7111b022008-10-09 18:53:47 +00002604 Tmp3 = DAG.getConstant(CFP->getValueAPF().bitcastToAPInt().
Dan Gohman6cf9b8a2008-03-11 00:11:06 +00002605 zextOrTrunc(64), MVT::i64);
Dale Johannesenca57b842009-02-02 23:46:53 +00002606 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattner3cb93512007-10-15 05:46:06 +00002607 SVOffset, isVolatile, Alignment);
2608 break;
Duncan Sandsd4b9c172008-06-13 19:07:40 +00002609 } else if (getTypeAction(MVT::i32) == Legal && !ST->isVolatile()) {
Chris Lattner3cb93512007-10-15 05:46:06 +00002610 // Otherwise, if the target supports 32-bit registers, use 2 32-bit
2611 // stores. If the target supports neither 32- nor 64-bits, this
2612 // xform is certainly not worth it.
Dale Johannesen7111b022008-10-09 18:53:47 +00002613 const APInt &IntVal =CFP->getValueAPF().bitcastToAPInt();
Dan Gohman475871a2008-07-27 21:46:04 +00002614 SDValue Lo = DAG.getConstant(APInt(IntVal).trunc(32), MVT::i32);
2615 SDValue Hi = DAG.getConstant(IntVal.lshr(32).trunc(32), MVT::i32);
Duncan Sands0753fc12008-02-11 10:37:04 +00002616 if (TLI.isBigEndian()) std::swap(Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002617
Dale Johannesenca57b842009-02-02 23:46:53 +00002618 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Chris Lattner3cb93512007-10-15 05:46:06 +00002619 SVOffset, isVolatile, Alignment);
Dale Johannesenca57b842009-02-02 23:46:53 +00002620 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002621 DAG.getIntPtrConstant(4));
Dale Johannesenca57b842009-02-02 23:46:53 +00002622 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(), SVOffset+4,
Duncan Sandsdc846502007-10-28 12:59:45 +00002623 isVolatile, MinAlign(Alignment, 4U));
Chris Lattner3cb93512007-10-15 05:46:06 +00002624
Dale Johannesenca57b842009-02-02 23:46:53 +00002625 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Chris Lattner3cb93512007-10-15 05:46:06 +00002626 break;
2627 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002628 }
Chris Lattnerd93d46e2006-12-12 04:18:56 +00002629 }
Scott Michelfdc40a02009-02-17 22:15:04 +00002630
Dan Gohmanb625f2f2008-01-30 00:15:11 +00002631 switch (getTypeAction(ST->getMemoryVT())) {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002632 case Legal: {
2633 Tmp3 = LegalizeOp(ST->getValue());
Scott Michelfdc40a02009-02-17 22:15:04 +00002634 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002635 ST->getOffset());
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002636
Duncan Sands83ec4b62008-06-06 12:08:01 +00002637 MVT VT = Tmp3.getValueType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002638 switch (TLI.getOperationAction(ISD::STORE, VT)) {
2639 default: assert(0 && "This action is not supported yet!");
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002640 case TargetLowering::Legal:
2641 // If this is an unaligned store and the target doesn't support it,
2642 // expand it.
2643 if (!TLI.allowsUnalignedMemoryAccesses()) {
2644 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002645 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002646 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002647 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002648 TLI);
2649 }
2650 break;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002651 case TargetLowering::Custom:
2652 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002653 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002654 break;
2655 case TargetLowering::Promote:
Duncan Sands83ec4b62008-06-06 12:08:01 +00002656 assert(VT.isVector() && "Unknown legal promote case!");
Scott Michelfdc40a02009-02-17 22:15:04 +00002657 Tmp3 = DAG.getNode(ISD::BIT_CONVERT, dl,
Evan Cheng8b2794a2006-10-13 21:14:26 +00002658 TLI.getTypeToPromoteTo(ISD::STORE, VT), Tmp3);
Dale Johannesenca57b842009-02-02 23:46:53 +00002659 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002660 ST->getSrcValue(), SVOffset, isVolatile,
2661 Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002662 break;
2663 }
2664 break;
2665 }
2666 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002667 if (!ST->getMemoryVT().isVector()) {
2668 // Truncate the value and store the result.
2669 Tmp3 = PromoteOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002670 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Mon P Wang0c397192008-10-30 08:01:45 +00002671 SVOffset, ST->getMemoryVT(),
2672 isVolatile, Alignment);
2673 break;
2674 }
2675 // Fall thru to expand for vector
2676 case Expand: {
Evan Cheng8b2794a2006-10-13 21:14:26 +00002677 unsigned IncrementSize = 0;
Dan Gohman475871a2008-07-27 21:46:04 +00002678 SDValue Lo, Hi;
Scott Michelfdc40a02009-02-17 22:15:04 +00002679
Evan Cheng8b2794a2006-10-13 21:14:26 +00002680 // If this is a vector type, then we have to calculate the increment as
2681 // the product of the element size in bytes, and the number of elements
2682 // in the high half of the vector.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002683 if (ST->getValue().getValueType().isVector()) {
Gabor Greifba36cb52008-08-28 21:40:38 +00002684 SDNode *InVal = ST->getValue().getNode();
Gabor Greif99a6cb92008-08-26 22:36:50 +00002685 int InIx = ST->getValue().getResNo();
Duncan Sands83ec4b62008-06-06 12:08:01 +00002686 MVT InVT = InVal->getValueType(InIx);
2687 unsigned NumElems = InVT.getVectorNumElements();
2688 MVT EVT = InVT.getVectorElementType();
Evan Cheng8b2794a2006-10-13 21:14:26 +00002689
Dan Gohman7f321562007-06-25 16:23:39 +00002690 // Figure out if there is a simple type corresponding to this Vector
Reid Spencerac9dcb92007-02-15 03:39:18 +00002691 // type. If so, convert to the vector type.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002692 MVT TVT = MVT::getVectorVT(EVT, NumElems);
Dan Gohman7f321562007-06-25 16:23:39 +00002693 if (TLI.isTypeLegal(TVT)) {
Reid Spencerac9dcb92007-02-15 03:39:18 +00002694 // Turn this into a normal store of the vector type.
Dan Gohman21be3842008-02-15 18:11:59 +00002695 Tmp3 = LegalizeOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002696 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002697 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002698 Result = LegalizeOp(Result);
2699 break;
2700 } else if (NumElems == 1) {
2701 // Turn this into a normal store of the scalar type.
Dan Gohman21be3842008-02-15 18:11:59 +00002702 Tmp3 = ScalarizeVectorOp(ST->getValue());
Dale Johannesenca57b842009-02-02 23:46:53 +00002703 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002704 SVOffset, isVolatile, Alignment);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002705 // The scalarized value type may not be legal, e.g. it might require
2706 // promotion or expansion. Relegalize the scalar store.
2707 Result = LegalizeOp(Result);
2708 break;
2709 } else {
Mon P Wang0c397192008-10-30 08:01:45 +00002710 // Check if we have widen this node with another value
2711 std::map<SDValue, SDValue>::iterator I =
2712 WidenNodes.find(ST->getValue());
2713 if (I != WidenNodes.end()) {
2714 Result = StoreWidenVectorOp(ST, Tmp1, Tmp2);
2715 break;
2716 }
2717 else {
2718 SplitVectorOp(ST->getValue(), Lo, Hi);
2719 IncrementSize = Lo.getNode()->getValueType(0).getVectorNumElements() *
2720 EVT.getSizeInBits()/8;
2721 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002722 }
2723 } else {
Dan Gohman21be3842008-02-15 18:11:59 +00002724 ExpandOp(ST->getValue(), Lo, Hi);
Gabor Greifba36cb52008-08-28 21:40:38 +00002725 IncrementSize = Hi.getNode() ? Hi.getValueType().getSizeInBits()/8 : 0;
Evan Cheng8b2794a2006-10-13 21:14:26 +00002726
Richard Pennington4b052dc2008-09-25 16:15:10 +00002727 if (Hi.getNode() && TLI.isBigEndian())
Evan Cheng8b2794a2006-10-13 21:14:26 +00002728 std::swap(Lo, Hi);
2729 }
2730
Dale Johannesenca57b842009-02-02 23:46:53 +00002731 Lo = DAG.getStore(Tmp1, dl, Lo, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002732 SVOffset, isVolatile, Alignment);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002733
Gabor Greifba36cb52008-08-28 21:40:38 +00002734 if (Hi.getNode() == NULL) {
Evan Cheng7b2b5c82006-12-12 19:53:13 +00002735 // Must be int <-> float one-to-one expansion.
2736 Result = Lo;
2737 break;
2738 }
2739
Dale Johannesenca57b842009-02-02 23:46:53 +00002740 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Chris Lattner0bd48932008-01-17 07:00:52 +00002741 DAG.getIntPtrConstant(IncrementSize));
Evan Cheng8b2794a2006-10-13 21:14:26 +00002742 assert(isTypeLegal(Tmp2.getValueType()) &&
2743 "Pointers must be legal!");
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002744 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00002745 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenca57b842009-02-02 23:46:53 +00002746 Hi = DAG.getStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00002747 SVOffset, isVolatile, Alignment);
Dale Johannesenca57b842009-02-02 23:46:53 +00002748 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Evan Cheng8b2794a2006-10-13 21:14:26 +00002749 break;
Mon P Wang0c397192008-10-30 08:01:45 +00002750 } // case Expand
Evan Cheng8b2794a2006-10-13 21:14:26 +00002751 }
2752 } else {
Chris Lattnerddf89562008-01-17 19:59:44 +00002753 switch (getTypeAction(ST->getValue().getValueType())) {
2754 case Legal:
2755 Tmp3 = LegalizeOp(ST->getValue());
2756 break;
2757 case Promote:
Mon P Wang0c397192008-10-30 08:01:45 +00002758 if (!ST->getValue().getValueType().isVector()) {
2759 // We can promote the value, the truncstore will still take care of it.
2760 Tmp3 = PromoteOp(ST->getValue());
2761 break;
2762 }
2763 // Vector case falls through to expand
Chris Lattnerddf89562008-01-17 19:59:44 +00002764 case Expand:
2765 // Just store the low part. This may become a non-trunc store, so make
2766 // sure to use getTruncStore, not UpdateNodeOperands below.
2767 ExpandOp(ST->getValue(), Tmp3, Tmp4);
Dale Johannesenca57b842009-02-02 23:46:53 +00002768 return DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Chris Lattnerddf89562008-01-17 19:59:44 +00002769 SVOffset, MVT::i8, isVolatile, Alignment);
2770 }
Evan Cheng8b2794a2006-10-13 21:14:26 +00002771
Duncan Sands83ec4b62008-06-06 12:08:01 +00002772 MVT StVT = ST->getMemoryVT();
2773 unsigned StWidth = StVT.getSizeInBits();
Duncan Sands7e857202008-01-22 07:17:34 +00002774
Duncan Sands83ec4b62008-06-06 12:08:01 +00002775 if (StWidth != StVT.getStoreSizeInBits()) {
Duncan Sands7e857202008-01-22 07:17:34 +00002776 // Promote to a byte-sized store with upper bits zero if not
2777 // storing an integral number of bytes. For example, promote
2778 // TRUNCSTORE:i1 X -> TRUNCSTORE:i8 (and X, 1)
Duncan Sands83ec4b62008-06-06 12:08:01 +00002779 MVT NVT = MVT::getIntegerVT(StVT.getStoreSizeInBits());
Dale Johannesenca57b842009-02-02 23:46:53 +00002780 Tmp3 = DAG.getZeroExtendInReg(Tmp3, dl, StVT);
2781 Result = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002782 SVOffset, NVT, isVolatile, Alignment);
2783 } else if (StWidth & (StWidth - 1)) {
2784 // If not storing a power-of-2 number of bits, expand as two stores.
Duncan Sands83ec4b62008-06-06 12:08:01 +00002785 assert(StVT.isExtended() && !StVT.isVector() &&
Duncan Sands7e857202008-01-22 07:17:34 +00002786 "Unsupported truncstore!");
2787 unsigned RoundWidth = 1 << Log2_32(StWidth);
2788 assert(RoundWidth < StWidth);
2789 unsigned ExtraWidth = StWidth - RoundWidth;
2790 assert(ExtraWidth < RoundWidth);
2791 assert(!(RoundWidth % 8) && !(ExtraWidth % 8) &&
2792 "Store size not an integral number of bytes!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00002793 MVT RoundVT = MVT::getIntegerVT(RoundWidth);
2794 MVT ExtraVT = MVT::getIntegerVT(ExtraWidth);
Dan Gohman475871a2008-07-27 21:46:04 +00002795 SDValue Lo, Hi;
Duncan Sands7e857202008-01-22 07:17:34 +00002796 unsigned IncrementSize;
2797
2798 if (TLI.isLittleEndian()) {
2799 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 X, TRUNCSTORE@+2:i8 (srl X, 16)
2800 // Store the bottom RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002801 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002802 SVOffset, RoundVT,
2803 isVolatile, Alignment);
2804
2805 // Store the remaining ExtraWidth bits.
2806 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002807 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00002808 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002809 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands7e857202008-01-22 07:17:34 +00002810 DAG.getConstant(RoundWidth, TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002811 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002812 SVOffset + IncrementSize, ExtraVT, isVolatile,
2813 MinAlign(Alignment, IncrementSize));
2814 } else {
2815 // Big endian - avoid unaligned stores.
2816 // TRUNCSTORE:i24 X -> TRUNCSTORE:i16 (srl X, 8), TRUNCSTORE@+2:i8 X
2817 // Store the top RoundWidth bits.
Dale Johannesenca57b842009-02-02 23:46:53 +00002818 Hi = DAG.getNode(ISD::SRL, dl, Tmp3.getValueType(), Tmp3,
Duncan Sands7e857202008-01-22 07:17:34 +00002819 DAG.getConstant(ExtraWidth, TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00002820 Hi = DAG.getTruncStore(Tmp1, dl, Hi, Tmp2, ST->getSrcValue(),
2821 SVOffset, RoundVT, isVolatile, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00002822
2823 // Store the remaining ExtraWidth bits.
2824 IncrementSize = RoundWidth / 8;
Dale Johannesenca57b842009-02-02 23:46:53 +00002825 Tmp2 = DAG.getNode(ISD::ADD, dl, Tmp2.getValueType(), Tmp2,
Duncan Sands7e857202008-01-22 07:17:34 +00002826 DAG.getIntPtrConstant(IncrementSize));
Dale Johannesenca57b842009-02-02 23:46:53 +00002827 Lo = DAG.getTruncStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
Duncan Sands7e857202008-01-22 07:17:34 +00002828 SVOffset + IncrementSize, ExtraVT, isVolatile,
2829 MinAlign(Alignment, IncrementSize));
Lauro Ramos Venanciof3c13c82007-08-01 19:34:21 +00002830 }
Duncan Sands7e857202008-01-22 07:17:34 +00002831
2832 // The order of the stores doesn't matter.
Dale Johannesenca57b842009-02-02 23:46:53 +00002833 Result = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo, Hi);
Duncan Sands7e857202008-01-22 07:17:34 +00002834 } else {
2835 if (Tmp1 != ST->getChain() || Tmp3 != ST->getValue() ||
2836 Tmp2 != ST->getBasePtr())
2837 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp3, Tmp2,
2838 ST->getOffset());
2839
2840 switch (TLI.getTruncStoreAction(ST->getValue().getValueType(), StVT)) {
2841 default: assert(0 && "This action is not supported yet!");
2842 case TargetLowering::Legal:
2843 // If this is an unaligned store and the target doesn't support it,
2844 // expand it.
2845 if (!TLI.allowsUnalignedMemoryAccesses()) {
2846 unsigned ABIAlignment = TLI.getTargetData()->
Duncan Sands83ec4b62008-06-06 12:08:01 +00002847 getABITypeAlignment(ST->getMemoryVT().getTypeForMVT());
Duncan Sands7e857202008-01-22 07:17:34 +00002848 if (ST->getAlignment() < ABIAlignment)
Gabor Greifba36cb52008-08-28 21:40:38 +00002849 Result = ExpandUnalignedStore(cast<StoreSDNode>(Result.getNode()), DAG,
Duncan Sands7e857202008-01-22 07:17:34 +00002850 TLI);
2851 }
2852 break;
2853 case TargetLowering::Custom:
2854 Result = TLI.LowerOperation(Result, DAG);
2855 break;
2856 case Expand:
2857 // TRUNCSTORE:i16 i32 -> STORE i16
2858 assert(isTypeLegal(StVT) && "Do not know how to expand this store!");
Dale Johannesenca57b842009-02-02 23:46:53 +00002859 Tmp3 = DAG.getNode(ISD::TRUNCATE, dl, StVT, Tmp3);
2860 Result = DAG.getStore(Tmp1, dl, Tmp3, Tmp2, ST->getSrcValue(),
2861 SVOffset, isVolatile, Alignment);
Duncan Sands7e857202008-01-22 07:17:34 +00002862 break;
2863 }
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002864 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002865 }
2866 break;
Evan Chengf3fd9fe2005-12-23 07:29:34 +00002867 }
Andrew Lenharth95762122005-03-31 21:24:06 +00002868 case ISD::PCMARKER:
2869 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002870 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Andrew Lenharth95762122005-03-31 21:24:06 +00002871 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002872 case ISD::STACKSAVE:
2873 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002874 Result = DAG.UpdateNodeOperands(Result, Tmp1);
2875 Tmp1 = Result.getValue(0);
2876 Tmp2 = Result.getValue(1);
Scott Michelfdc40a02009-02-17 22:15:04 +00002877
Chris Lattner140d53c2006-01-13 02:50:02 +00002878 switch (TLI.getOperationAction(ISD::STACKSAVE, MVT::Other)) {
2879 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002880 case TargetLowering::Legal: break;
2881 case TargetLowering::Custom:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002882 Tmp3 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002883 if (Tmp3.getNode()) {
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002884 Tmp1 = LegalizeOp(Tmp3);
2885 Tmp2 = LegalizeOp(Tmp3.getValue(1));
Chris Lattner140d53c2006-01-13 02:50:02 +00002886 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002887 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002888 case TargetLowering::Expand:
Scott Michelfdc40a02009-02-17 22:15:04 +00002889 // Expand to CopyFromReg if the target set
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002890 // StackPointerRegisterToSaveRestore.
2891 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00002892 Tmp1 = DAG.getCopyFromReg(Result.getOperand(0), dl, SP,
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002893 Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002894 Tmp2 = Tmp1.getValue(1);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002895 } else {
Dale Johannesene8d72302009-02-06 23:05:02 +00002896 Tmp1 = DAG.getUNDEF(Node->getValueType(0));
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002897 Tmp2 = Node->getOperand(0);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002898 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002899 break;
Chris Lattner140d53c2006-01-13 02:50:02 +00002900 }
Chris Lattner456a93a2006-01-28 07:39:30 +00002901
2902 // Since stacksave produce two values, make sure to remember that we
2903 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002904 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2905 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00002906 return Op.getResNo() ? Tmp2 : Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002907
Chris Lattner140d53c2006-01-13 02:50:02 +00002908 case ISD::STACKRESTORE:
2909 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
2910 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002911 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00002912
Chris Lattner140d53c2006-01-13 02:50:02 +00002913 switch (TLI.getOperationAction(ISD::STACKRESTORE, MVT::Other)) {
2914 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002915 case TargetLowering::Legal: break;
2916 case TargetLowering::Custom:
2917 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002918 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner140d53c2006-01-13 02:50:02 +00002919 break;
2920 case TargetLowering::Expand:
Scott Michelfdc40a02009-02-17 22:15:04 +00002921 // Expand to CopyToReg if the target set
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002922 // StackPointerRegisterToSaveRestore.
2923 if (unsigned SP = TLI.getStackPointerRegisterToSaveRestore()) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00002924 Result = DAG.getCopyToReg(Tmp1, dl, SP, Tmp2);
Chris Lattner4f0d8e42006-01-13 17:48:44 +00002925 } else {
2926 Result = Tmp1;
2927 }
Chris Lattner140d53c2006-01-13 02:50:02 +00002928 break;
2929 }
2930 break;
2931
Andrew Lenharth51b8d542005-11-11 16:47:30 +00002932 case ISD::READCYCLECOUNTER:
2933 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002934 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Chengf0b3ba62006-11-29 08:26:18 +00002935 switch (TLI.getOperationAction(ISD::READCYCLECOUNTER,
2936 Node->getValueType(0))) {
2937 default: assert(0 && "This action is not supported yet!");
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002938 case TargetLowering::Legal:
2939 Tmp1 = Result.getValue(0);
2940 Tmp2 = Result.getValue(1);
2941 break;
Evan Chengf0b3ba62006-11-29 08:26:18 +00002942 case TargetLowering::Custom:
2943 Result = TLI.LowerOperation(Result, DAG);
Evan Cheng6a16c5a2006-11-29 19:13:47 +00002944 Tmp1 = LegalizeOp(Result.getValue(0));
2945 Tmp2 = LegalizeOp(Result.getValue(1));
Evan Chengf0b3ba62006-11-29 08:26:18 +00002946 break;
2947 }
Andrew Lenharth49c709f2005-12-02 04:56:24 +00002948
2949 // Since rdcc produce two values, make sure to remember that we legalized
2950 // both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00002951 AddLegalizedOperand(SDValue(Node, 0), Tmp1);
2952 AddLegalizedOperand(SDValue(Node, 1), Tmp2);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002953 return Result;
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00002954
Chris Lattner2ee743f2005-01-14 22:08:15 +00002955 case ISD::SELECT:
Chris Lattner47e92232005-01-18 19:27:06 +00002956 switch (getTypeAction(Node->getOperand(0).getValueType())) {
2957 case Expand: assert(0 && "It's impossible to expand bools");
2958 case Legal:
2959 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the condition.
2960 break;
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002961 case Promote: {
Mon P Wang0c397192008-10-30 08:01:45 +00002962 assert(!Node->getOperand(0).getValueType().isVector() && "not possible");
Chris Lattner47e92232005-01-18 19:27:06 +00002963 Tmp1 = PromoteOp(Node->getOperand(0)); // Promote the condition.
Chris Lattnerb6c80602006-11-28 01:03:30 +00002964 // Make sure the condition is either zero or one.
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002965 unsigned BitWidth = Tmp1.getValueSizeInBits();
Dan Gohmanea859be2007-06-22 14:59:07 +00002966 if (!DAG.MaskedValueIsZero(Tmp1,
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002967 APInt::getHighBitsSet(BitWidth, BitWidth-1)))
Dale Johannesenca57b842009-02-02 23:46:53 +00002968 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, MVT::i1);
Chris Lattner47e92232005-01-18 19:27:06 +00002969 break;
2970 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00002971 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00002972 Tmp2 = LegalizeOp(Node->getOperand(1)); // TrueVal
Chris Lattner2ee743f2005-01-14 22:08:15 +00002973 Tmp3 = LegalizeOp(Node->getOperand(2)); // FalseVal
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002974
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00002975 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Scott Michelfdc40a02009-02-17 22:15:04 +00002976
Nate Begemanb942a3d2005-08-23 04:29:48 +00002977 switch (TLI.getOperationAction(ISD::SELECT, Tmp2.getValueType())) {
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002978 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00002979 case TargetLowering::Legal: break;
2980 case TargetLowering::Custom: {
2981 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00002982 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00002983 break;
2984 }
Nate Begeman9373a812005-08-10 20:51:12 +00002985 case TargetLowering::Expand:
2986 if (Tmp1.getOpcode() == ISD::SETCC) {
Scott Michelfdc40a02009-02-17 22:15:04 +00002987 Result = DAG.getSelectCC(dl, Tmp1.getOperand(0), Tmp1.getOperand(1),
Nate Begeman9373a812005-08-10 20:51:12 +00002988 Tmp2, Tmp3,
2989 cast<CondCodeSDNode>(Tmp1.getOperand(2))->get());
2990 } else {
Scott Michelfdc40a02009-02-17 22:15:04 +00002991 Result = DAG.getSelectCC(dl, Tmp1,
Nate Begeman9373a812005-08-10 20:51:12 +00002992 DAG.getConstant(0, Tmp1.getValueType()),
2993 Tmp2, Tmp3, ISD::SETNE);
2994 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002995 break;
2996 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00002997 MVT NVT =
Chris Lattner55ba8fb2005-01-16 07:29:19 +00002998 TLI.getTypeToPromoteTo(ISD::SELECT, Tmp2.getValueType());
2999 unsigned ExtOp, TruncOp;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003000 if (Tmp2.getValueType().isVector()) {
Evan Cheng41f6cbb2006-04-12 16:33:18 +00003001 ExtOp = ISD::BIT_CONVERT;
3002 TruncOp = ISD::BIT_CONVERT;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003003 } else if (Tmp2.getValueType().isInteger()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003004 ExtOp = ISD::ANY_EXTEND;
3005 TruncOp = ISD::TRUNCATE;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003006 } else {
Chris Lattner456a93a2006-01-28 07:39:30 +00003007 ExtOp = ISD::FP_EXTEND;
3008 TruncOp = ISD::FP_ROUND;
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003009 }
3010 // Promote each of the values to the new type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003011 Tmp2 = DAG.getNode(ExtOp, dl, NVT, Tmp2);
3012 Tmp3 = DAG.getNode(ExtOp, dl, NVT, Tmp3);
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003013 // Perform the larger operation, then round down.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00003014 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp1, Tmp2, Tmp3);
Chris Lattner0bd48932008-01-17 07:00:52 +00003015 if (TruncOp != ISD::FP_ROUND)
Dale Johannesenca57b842009-02-02 23:46:53 +00003016 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00003017 else
Dale Johannesenca57b842009-02-02 23:46:53 +00003018 Result = DAG.getNode(TruncOp, dl, Node->getValueType(0), Result,
Chris Lattner0bd48932008-01-17 07:00:52 +00003019 DAG.getIntPtrConstant(0));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00003020 break;
3021 }
3022 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003023 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00003024 case ISD::SELECT_CC: {
3025 Tmp1 = Node->getOperand(0); // LHS
3026 Tmp2 = Node->getOperand(1); // RHS
Nate Begeman9373a812005-08-10 20:51:12 +00003027 Tmp3 = LegalizeOp(Node->getOperand(2)); // True
3028 Tmp4 = LegalizeOp(Node->getOperand(3)); // False
Dan Gohman475871a2008-07-27 21:46:04 +00003029 SDValue CC = Node->getOperand(4);
Scott Michelfdc40a02009-02-17 22:15:04 +00003030
3031 LegalizeSetCC(TLI.getSetCCResultType(Tmp1.getValueType()),
Dale Johannesenbb5da912009-02-02 20:41:04 +00003032 Tmp1, Tmp2, CC, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003033
Evan Cheng7f042682008-10-15 02:05:31 +00003034 // If we didn't get both a LHS and RHS back from LegalizeSetCC,
Nate Begeman750ac1b2006-02-01 07:19:44 +00003035 // the LHS is a legal SETCC itself. In this case, we need to compare
3036 // the result against zero to select between true and false values.
Gabor Greifba36cb52008-08-28 21:40:38 +00003037 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003038 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
3039 CC = DAG.getCondCode(ISD::SETNE);
3040 }
3041 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3, Tmp4, CC);
3042
3043 // Everything is legal, see if we should expand this op or something.
3044 switch (TLI.getOperationAction(ISD::SELECT_CC, Tmp3.getValueType())) {
3045 default: assert(0 && "This action is not supported yet!");
3046 case TargetLowering::Legal: break;
3047 case TargetLowering::Custom:
3048 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003049 if (Tmp1.getNode()) Result = Tmp1;
Nate Begeman9373a812005-08-10 20:51:12 +00003050 break;
Nate Begeman9373a812005-08-10 20:51:12 +00003051 }
3052 break;
Nate Begeman750ac1b2006-02-01 07:19:44 +00003053 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003054 case ISD::SETCC:
Nate Begeman750ac1b2006-02-01 07:19:44 +00003055 Tmp1 = Node->getOperand(0);
3056 Tmp2 = Node->getOperand(1);
3057 Tmp3 = Node->getOperand(2);
Dale Johannesenbb5da912009-02-02 20:41:04 +00003058 LegalizeSetCC(Node->getValueType(0), Tmp1, Tmp2, Tmp3, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00003059
3060 // If we had to Expand the SetCC operands into a SELECT node, then it may
3061 // not always be possible to return a true LHS & RHS. In this case, just
Nate Begeman750ac1b2006-02-01 07:19:44 +00003062 // return the value we legalized, returned in the LHS
Gabor Greifba36cb52008-08-28 21:40:38 +00003063 if (Tmp2.getNode() == 0) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00003064 Result = Tmp1;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003065 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00003066 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003067
Chris Lattner73e142f2006-01-30 22:43:50 +00003068 switch (TLI.getOperationAction(ISD::SETCC, Tmp1.getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003069 default: assert(0 && "Cannot handle this action for SETCC yet!");
3070 case TargetLowering::Custom:
3071 isCustom = true;
3072 // FALLTHROUGH.
3073 case TargetLowering::Legal:
Evan Cheng2b49c502006-12-15 02:59:56 +00003074 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Chris Lattner456a93a2006-01-28 07:39:30 +00003075 if (isCustom) {
Evan Cheng2b49c502006-12-15 02:59:56 +00003076 Tmp4 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003077 if (Tmp4.getNode()) Result = Tmp4;
Chris Lattner456a93a2006-01-28 07:39:30 +00003078 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003079 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003080 case TargetLowering::Promote: {
3081 // First step, figure out the appropriate operation to use.
3082 // Allow SETCC to not be supported for all legal data types
3083 // Mostly this targets FP
Duncan Sands83ec4b62008-06-06 12:08:01 +00003084 MVT NewInTy = Node->getOperand(0).getValueType();
3085 MVT OldVT = NewInTy; OldVT = OldVT;
Andrew Lenharthae355752005-11-30 17:12:26 +00003086
3087 // Scan for the appropriate larger type to use.
3088 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003089 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
Andrew Lenharthae355752005-11-30 17:12:26 +00003090
Duncan Sands83ec4b62008-06-06 12:08:01 +00003091 assert(NewInTy.isInteger() == OldVT.isInteger() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003092 "Fell off of the edge of the integer world");
Duncan Sands83ec4b62008-06-06 12:08:01 +00003093 assert(NewInTy.isFloatingPoint() == OldVT.isFloatingPoint() &&
Andrew Lenharthae355752005-11-30 17:12:26 +00003094 "Fell off of the edge of the floating point world");
Scott Michelfdc40a02009-02-17 22:15:04 +00003095
Andrew Lenharthae355752005-11-30 17:12:26 +00003096 // If the target supports SETCC of this type, use it.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003097 if (TLI.isOperationLegalOrCustom(ISD::SETCC, NewInTy))
Andrew Lenharthae355752005-11-30 17:12:26 +00003098 break;
3099 }
Duncan Sands83ec4b62008-06-06 12:08:01 +00003100 if (NewInTy.isInteger())
Andrew Lenharthae355752005-11-30 17:12:26 +00003101 assert(0 && "Cannot promote Legal Integer SETCC yet");
3102 else {
Dale Johannesenca57b842009-02-02 23:46:53 +00003103 Tmp1 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp1);
3104 Tmp2 = DAG.getNode(ISD::FP_EXTEND, dl, NewInTy, Tmp2);
Andrew Lenharthae355752005-11-30 17:12:26 +00003105 }
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003106 Tmp1 = LegalizeOp(Tmp1);
3107 Tmp2 = LegalizeOp(Tmp2);
Evan Cheng2b49c502006-12-15 02:59:56 +00003108 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Evan Cheng433f8ac2006-01-17 19:47:13 +00003109 Result = LegalizeOp(Result);
Andrew Lenharth5e3efbc2005-08-29 20:46:51 +00003110 break;
Andrew Lenharthae355752005-11-30 17:12:26 +00003111 }
Nate Begemanb942a3d2005-08-23 04:29:48 +00003112 case TargetLowering::Expand:
3113 // Expand a setcc node into a select_cc of the same condition, lhs, and
3114 // rhs that selects between const 1 (true) and const 0 (false).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003115 MVT VT = Node->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003116 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Tmp1, Tmp2,
Nate Begemanb942a3d2005-08-23 04:29:48 +00003117 DAG.getConstant(1, VT), DAG.getConstant(0, VT),
Evan Cheng2b49c502006-12-15 02:59:56 +00003118 Tmp3);
Nate Begemanb942a3d2005-08-23 04:29:48 +00003119 break;
3120 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003121 break;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003122 case ISD::VSETCC: {
3123 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3124 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Dan Gohman475871a2008-07-27 21:46:04 +00003125 SDValue CC = Node->getOperand(2);
Scott Michelfdc40a02009-02-17 22:15:04 +00003126
Nate Begemanb43e9c12008-05-12 19:40:03 +00003127 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, CC);
3128
3129 // Everything is legal, see if we should expand this op or something.
3130 switch (TLI.getOperationAction(ISD::VSETCC, Tmp1.getValueType())) {
3131 default: assert(0 && "This action is not supported yet!");
3132 case TargetLowering::Legal: break;
3133 case TargetLowering::Custom:
3134 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003135 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanb43e9c12008-05-12 19:40:03 +00003136 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003137 case TargetLowering::Expand: {
3138 // Unroll into a nasty set of scalar code for now.
3139 MVT VT = Node->getValueType(0);
3140 unsigned NumElems = VT.getVectorNumElements();
3141 MVT EltVT = VT.getVectorElementType();
3142 MVT TmpEltVT = Tmp1.getValueType().getVectorElementType();
3143 SmallVector<SDValue, 8> Ops(NumElems);
3144 for (unsigned i = 0; i < NumElems; ++i) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003145 SDValue In1 = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, TmpEltVT,
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003146 Tmp1, DAG.getIntPtrConstant(i));
Dale Johannesenca57b842009-02-02 23:46:53 +00003147 Ops[i] = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(TmpEltVT),
3148 In1, DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl,
3149 TmpEltVT, Tmp2,
3150 DAG.getIntPtrConstant(i)),
Mon P Wang84aff842008-12-17 08:49:47 +00003151 CC);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00003152 Ops[i] = DAG.getNode(ISD::SELECT, dl, EltVT, Ops[i],
3153 DAG.getConstant(APInt::getAllOnesValue
3154 (EltVT.getSizeInBits()), EltVT),
3155 DAG.getConstant(0, EltVT));
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003156 }
Evan Chenga87008d2009-02-25 22:49:59 +00003157 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, VT, &Ops[0], NumElems);
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003158 break;
3159 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00003160 }
3161 break;
3162 }
Chris Lattner52d08bd2005-05-09 20:23:03 +00003163
Chris Lattner5b359c62005-04-02 04:00:59 +00003164 case ISD::SHL_PARTS:
3165 case ISD::SRA_PARTS:
3166 case ISD::SRL_PARTS: {
Dan Gohman475871a2008-07-27 21:46:04 +00003167 SmallVector<SDValue, 8> Ops;
Chris Lattner84f67882005-01-20 18:52:28 +00003168 bool Changed = false;
Duncan Sands92abc622009-01-31 15:50:11 +00003169 unsigned N = Node->getNumOperands();
3170 for (unsigned i = 0; i + 1 < N; ++i) {
Chris Lattner84f67882005-01-20 18:52:28 +00003171 Ops.push_back(LegalizeOp(Node->getOperand(i)));
3172 Changed |= Ops.back() != Node->getOperand(i);
3173 }
Duncan Sands92abc622009-01-31 15:50:11 +00003174 Ops.push_back(LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(N-1))));
3175 Changed |= Ops.back() != Node->getOperand(N-1);
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003176 if (Changed)
Chris Lattnerf06f35e2006-08-08 01:09:31 +00003177 Result = DAG.UpdateNodeOperands(Result, &Ops[0], Ops.size());
Chris Lattner2c8086f2005-04-02 05:00:07 +00003178
Evan Cheng05a2d562006-01-09 18:31:59 +00003179 switch (TLI.getOperationAction(Node->getOpcode(),
3180 Node->getValueType(0))) {
3181 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003182 case TargetLowering::Legal: break;
3183 case TargetLowering::Custom:
3184 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003185 if (Tmp1.getNode()) {
Dan Gohman475871a2008-07-27 21:46:04 +00003186 SDValue Tmp2, RetVal(0, 0);
Evan Cheng05a2d562006-01-09 18:31:59 +00003187 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003188 Tmp2 = LegalizeOp(Tmp1.getValue(i));
Dan Gohman475871a2008-07-27 21:46:04 +00003189 AddLegalizedOperand(SDValue(Node, i), Tmp2);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003190 if (i == Op.getResNo())
Evan Cheng12f22742006-01-19 04:54:52 +00003191 RetVal = Tmp2;
Evan Cheng05a2d562006-01-09 18:31:59 +00003192 }
Gabor Greifba36cb52008-08-28 21:40:38 +00003193 assert(RetVal.getNode() && "Illegal result number");
Evan Cheng05a2d562006-01-09 18:31:59 +00003194 return RetVal;
3195 }
Evan Cheng05a2d562006-01-09 18:31:59 +00003196 break;
3197 }
3198
Chris Lattner2c8086f2005-04-02 05:00:07 +00003199 // Since these produce multiple values, make sure to remember that we
3200 // legalized all of them.
3201 for (unsigned i = 0, e = Node->getNumValues(); i != e; ++i)
Dan Gohman475871a2008-07-27 21:46:04 +00003202 AddLegalizedOperand(SDValue(Node, i), Result.getValue(i));
Gabor Greif99a6cb92008-08-26 22:36:50 +00003203 return Result.getValue(Op.getResNo());
Chris Lattner84f67882005-01-20 18:52:28 +00003204 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003205
3206 // Binary operators
Chris Lattner3e928bb2005-01-07 07:47:09 +00003207 case ISD::ADD:
3208 case ISD::SUB:
3209 case ISD::MUL:
Nate Begemanc7c16572005-04-11 03:01:51 +00003210 case ISD::MULHS:
3211 case ISD::MULHU:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003212 case ISD::UDIV:
3213 case ISD::SDIV:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003214 case ISD::AND:
3215 case ISD::OR:
3216 case ISD::XOR:
Chris Lattner03c0cf82005-01-07 21:45:56 +00003217 case ISD::SHL:
3218 case ISD::SRL:
3219 case ISD::SRA:
Chris Lattner01b3d732005-09-28 22:28:18 +00003220 case ISD::FADD:
3221 case ISD::FSUB:
3222 case ISD::FMUL:
3223 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00003224 case ISD::FPOW:
Chris Lattner3e928bb2005-01-07 07:47:09 +00003225 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003226 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003227
3228 if ((Node->getOpcode() == ISD::SHL ||
3229 Node->getOpcode() == ISD::SRL ||
3230 Node->getOpcode() == ISD::SRA) &&
Duncan Sands92abc622009-01-31 15:50:11 +00003231 !Node->getValueType(0).isVector())
3232 Tmp2 = DAG.getShiftAmountOperand(Tmp2);
3233
3234 switch (getTypeAction(Tmp2.getValueType())) {
3235 case Expand: assert(0 && "Not possible");
3236 case Legal:
3237 Tmp2 = LegalizeOp(Tmp2); // Legalize the RHS.
3238 break;
3239 case Promote:
3240 Tmp2 = PromoteOp(Tmp2); // Promote the RHS.
3241 break;
Mon P Wange1a0b2e2008-12-13 08:15:14 +00003242 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003243
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003244 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Mon P Wangaeb06d22008-11-10 04:46:22 +00003245
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003246 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003247 default: assert(0 && "BinOp legalize operation not supported");
Chris Lattner456a93a2006-01-28 07:39:30 +00003248 case TargetLowering::Legal: break;
3249 case TargetLowering::Custom:
3250 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003251 if (Tmp1.getNode()) {
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003252 Result = Tmp1;
3253 break;
Nate Begeman24dc3462008-07-29 19:07:27 +00003254 }
Nate Begeman5bc1ea02008-07-29 15:49:41 +00003255 // Fall through if the custom lower can't deal with the operation
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003256 case TargetLowering::Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003257 MVT VT = Op.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00003258
Dan Gohman525178c2007-10-08 18:33:35 +00003259 // See if multiply or divide can be lowered using two-result operations.
3260 SDVTList VTs = DAG.getVTList(VT, VT);
3261 if (Node->getOpcode() == ISD::MUL) {
3262 // We just need the low half of the multiply; try both the signed
3263 // and unsigned forms. If the target supports both SMUL_LOHI and
3264 // UMUL_LOHI, form a preference by checking which forms of plain
3265 // MULH it supports.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003266 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT);
3267 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT);
3268 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, VT);
3269 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, VT);
Dan Gohman525178c2007-10-08 18:33:35 +00003270 unsigned OpToUse = 0;
3271 if (HasSMUL_LOHI && !HasMULHS) {
3272 OpToUse = ISD::SMUL_LOHI;
3273 } else if (HasUMUL_LOHI && !HasMULHU) {
3274 OpToUse = ISD::UMUL_LOHI;
3275 } else if (HasSMUL_LOHI) {
3276 OpToUse = ISD::SMUL_LOHI;
3277 } else if (HasUMUL_LOHI) {
3278 OpToUse = ISD::UMUL_LOHI;
3279 }
3280 if (OpToUse) {
Duncan Sandsa9cad0e2009-05-06 11:29:50 +00003281 Result = DAG.getNode(OpToUse, dl, VTs, Tmp1, Tmp2);
Dan Gohman525178c2007-10-08 18:33:35 +00003282 break;
3283 }
3284 }
3285 if (Node->getOpcode() == ISD::MULHS &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003286 TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003287 Result = SDValue(DAG.getNode(ISD::SMUL_LOHI, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003288 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003289 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003290 break;
3291 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003292 if (Node->getOpcode() == ISD::MULHU &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003293 TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003294 Result = SDValue(DAG.getNode(ISD::UMUL_LOHI, dl,
3295 VTs, Tmp1, Tmp2).getNode(),
Chris Lattner31d71612008-10-04 21:27:46 +00003296 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003297 break;
3298 }
3299 if (Node->getOpcode() == ISD::SDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003300 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Duncan Sandsa9cad0e2009-05-06 11:29:50 +00003301 Result = DAG.getNode(ISD::SDIVREM, dl, VTs, Tmp1, Tmp2);
Dan Gohman525178c2007-10-08 18:33:35 +00003302 break;
3303 }
3304 if (Node->getOpcode() == ISD::UDIV &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003305 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Duncan Sandsa9cad0e2009-05-06 11:29:50 +00003306 Result = DAG.getNode(ISD::UDIVREM, dl, VTs, Tmp1, Tmp2);
3307 break;
3308 }
3309 if (Node->getOpcode() == ISD::SUB &&
3310 TLI.isOperationLegalOrCustom(ISD::ADD, VT) &&
3311 TLI.isOperationLegalOrCustom(ISD::XOR, VT)) {
3312 Tmp2 = DAG.getNode(ISD::XOR, dl, VT, Tmp2,
3313 DAG.getConstant(APInt::getAllOnesValue(VT.getSizeInBits()), VT));
3314 Tmp2 = DAG.getNode(ISD::ADD, dl, VT, Tmp2, DAG.getConstant(1, VT));
3315 Result = DAG.getNode(ISD::ADD, dl, VT, Tmp1, Tmp2);
Dan Gohman525178c2007-10-08 18:33:35 +00003316 break;
3317 }
Mon P Wang87c8a8f2008-12-18 20:03:17 +00003318
Dan Gohman82669522007-10-11 23:57:53 +00003319 // Check to see if we have a libcall for this operator.
3320 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3321 bool isSigned = false;
3322 switch (Node->getOpcode()) {
3323 case ISD::UDIV:
3324 case ISD::SDIV:
Anton Korobeynikov813090c2009-05-03 13:18:16 +00003325 isSigned = Node->getOpcode() == ISD::SDIV;
3326 if (VT == MVT::i16)
3327 LC = (isSigned ? RTLIB::SDIV_I16 : RTLIB::UDIV_I16);
3328 else if (VT == MVT::i32)
3329 LC = (isSigned ? RTLIB::SDIV_I32 : RTLIB::UDIV_I32);
3330 else if (VT == MVT::i64)
3331 LC = (isSigned ? RTLIB::SDIV_I64 : RTLIB::UDIV_I64);
3332 else if (VT == MVT::i128)
3333 LC = (isSigned ? RTLIB::SDIV_I128 : RTLIB::UDIV_I128);
3334 break;
Chris Lattner31d71612008-10-04 21:27:46 +00003335 case ISD::MUL:
Anton Korobeynikov2f25c2c2009-05-03 13:13:51 +00003336 if (VT == MVT::i16)
3337 LC = RTLIB::MUL_I16;
Anton Korobeynikov813090c2009-05-03 13:18:16 +00003338 else if (VT == MVT::i32)
Chris Lattner31d71612008-10-04 21:27:46 +00003339 LC = RTLIB::MUL_I32;
Nate Begeman9b994852009-01-24 22:12:48 +00003340 else if (VT == MVT::i64)
Scott Michel845145f2008-12-29 03:21:37 +00003341 LC = RTLIB::MUL_I64;
Anton Korobeynikov2f25c2c2009-05-03 13:13:51 +00003342 else if (VT == MVT::i128)
3343 LC = RTLIB::MUL_I128;
Chris Lattner31d71612008-10-04 21:27:46 +00003344 break;
Dan Gohman82669522007-10-11 23:57:53 +00003345 case ISD::FPOW:
Duncan Sands007f9842008-01-10 10:28:30 +00003346 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
3347 RTLIB::POW_PPCF128);
Dan Gohman82669522007-10-11 23:57:53 +00003348 break;
Scott Micheld1e8d9c2009-01-21 04:58:48 +00003349 case ISD::FDIV:
3350 LC = GetFPLibCall(VT, RTLIB::DIV_F32, RTLIB::DIV_F64, RTLIB::DIV_F80,
3351 RTLIB::DIV_PPCF128);
3352 break;
Dan Gohman82669522007-10-11 23:57:53 +00003353 default: break;
3354 }
3355 if (LC != RTLIB::UNKNOWN_LIBCALL) {
Dan Gohman475871a2008-07-27 21:46:04 +00003356 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003357 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
Evan Cheng52cc1ea2006-09-18 21:49:04 +00003358 break;
3359 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003360
Duncan Sands83ec4b62008-06-06 12:08:01 +00003361 assert(Node->getValueType(0).isVector() &&
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003362 "Cannot expand this binary operator!");
3363 // Expand the operation into a bunch of nasty scalar code.
Dan Gohman82669522007-10-11 23:57:53 +00003364 Result = LegalizeOp(UnrollVectorOp(Op));
Chris Lattnerbc70cf82006-04-02 03:57:31 +00003365 break;
3366 }
Evan Chengcc987612006-04-12 21:20:24 +00003367 case TargetLowering::Promote: {
3368 switch (Node->getOpcode()) {
3369 default: assert(0 && "Do not know how to promote this BinOp!");
3370 case ISD::AND:
3371 case ISD::OR:
3372 case ISD::XOR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003373 MVT OVT = Node->getValueType(0);
3374 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3375 assert(OVT.isVector() && "Cannot promote this BinOp!");
Evan Chengcc987612006-04-12 21:20:24 +00003376 // Bit convert each of the values to the new type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003377 Tmp1 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp1);
3378 Tmp2 = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Tmp2);
3379 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Evan Chengcc987612006-04-12 21:20:24 +00003380 // Bit convert the result back the original type.
Dale Johannesenca57b842009-02-02 23:46:53 +00003381 Result = DAG.getNode(ISD::BIT_CONVERT, dl, OVT, Result);
Evan Chengcc987612006-04-12 21:20:24 +00003382 break;
3383 }
3384 }
3385 }
Andrew Lenharthe8f65f12005-12-24 23:42:32 +00003386 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00003387 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003388
Dan Gohmane14ea862007-10-05 14:17:22 +00003389 case ISD::SMUL_LOHI:
3390 case ISD::UMUL_LOHI:
3391 case ISD::SDIVREM:
3392 case ISD::UDIVREM:
3393 // These nodes will only be produced by target-specific lowering, so
3394 // they shouldn't be here if they aren't legal.
Duncan Sandsa7c97a72007-10-16 09:07:20 +00003395 assert(TLI.isOperationLegal(Node->getOpcode(), Node->getValueType(0)) &&
Dan Gohmane14ea862007-10-05 14:17:22 +00003396 "This must be legal!");
Dan Gohman525178c2007-10-08 18:33:35 +00003397
3398 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3399 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
3400 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Dan Gohmane14ea862007-10-05 14:17:22 +00003401 break;
3402
Chris Lattnera09f8482006-03-05 05:09:38 +00003403 case ISD::FCOPYSIGN: // FCOPYSIGN does not require LHS/RHS to match type!
3404 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3405 switch (getTypeAction(Node->getOperand(1).getValueType())) {
3406 case Expand: assert(0 && "Not possible");
3407 case Legal:
3408 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the RHS.
3409 break;
3410 case Promote:
3411 Tmp2 = PromoteOp(Node->getOperand(1)); // Promote the RHS.
3412 break;
3413 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003414
Chris Lattnera09f8482006-03-05 05:09:38 +00003415 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00003416
Chris Lattnera09f8482006-03-05 05:09:38 +00003417 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3418 default: assert(0 && "Operation not supported");
3419 case TargetLowering::Custom:
3420 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003421 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner8f4191d2006-03-13 06:08:38 +00003422 break;
Chris Lattnera09f8482006-03-05 05:09:38 +00003423 case TargetLowering::Legal: break;
Evan Cheng912095b2007-01-04 21:56:39 +00003424 case TargetLowering::Expand: {
Evan Cheng636c7532007-01-05 23:33:44 +00003425 // If this target supports fabs/fneg natively and select is cheap,
3426 // do this efficiently.
3427 if (!TLI.isSelectExpensive() &&
3428 TLI.getOperationAction(ISD::FABS, Tmp1.getValueType()) ==
3429 TargetLowering::Legal &&
Evan Cheng912095b2007-01-04 21:56:39 +00003430 TLI.getOperationAction(ISD::FNEG, Tmp1.getValueType()) ==
Evan Cheng636c7532007-01-05 23:33:44 +00003431 TargetLowering::Legal) {
Chris Lattner8f4191d2006-03-13 06:08:38 +00003432 // Get the sign bit of the RHS.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003433 MVT IVT =
Chris Lattner8f4191d2006-03-13 06:08:38 +00003434 Tmp2.getValueType() == MVT::f32 ? MVT::i32 : MVT::i64;
Dale Johannesenca57b842009-02-02 23:46:53 +00003435 SDValue SignBit = DAG.getNode(ISD::BIT_CONVERT, dl, IVT, Tmp2);
3436 SignBit = DAG.getSetCC(dl, TLI.getSetCCResultType(IVT),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003437 SignBit, DAG.getConstant(0, IVT), ISD::SETLT);
3438 // Get the absolute value of the result.
Dale Johannesenca57b842009-02-02 23:46:53 +00003439 SDValue AbsVal = DAG.getNode(ISD::FABS, dl, Tmp1.getValueType(), Tmp1);
Chris Lattner8f4191d2006-03-13 06:08:38 +00003440 // Select between the nabs and abs value based on the sign bit of
3441 // the input.
Dale Johannesenca57b842009-02-02 23:46:53 +00003442 Result = DAG.getNode(ISD::SELECT, dl, AbsVal.getValueType(), SignBit,
Scott Michelfdc40a02009-02-17 22:15:04 +00003443 DAG.getNode(ISD::FNEG, dl, AbsVal.getValueType(),
Chris Lattner8f4191d2006-03-13 06:08:38 +00003444 AbsVal),
3445 AbsVal);
3446 Result = LegalizeOp(Result);
3447 break;
3448 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003449
Chris Lattner8f4191d2006-03-13 06:08:38 +00003450 // Otherwise, do bitwise ops!
Duncan Sands83ec4b62008-06-06 12:08:01 +00003451 MVT NVT =
Evan Cheng912095b2007-01-04 21:56:39 +00003452 Node->getValueType(0) == MVT::f32 ? MVT::i32 : MVT::i64;
3453 Result = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
Dale Johannesenca57b842009-02-02 23:46:53 +00003454 Result = DAG.getNode(ISD::BIT_CONVERT, dl, Node->getValueType(0), Result);
Evan Cheng912095b2007-01-04 21:56:39 +00003455 Result = LegalizeOp(Result);
Chris Lattnera09f8482006-03-05 05:09:38 +00003456 break;
3457 }
Evan Cheng912095b2007-01-04 21:56:39 +00003458 }
Chris Lattnera09f8482006-03-05 05:09:38 +00003459 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003460
Nate Begeman551bf3f2006-02-17 05:43:56 +00003461 case ISD::ADDC:
3462 case ISD::SUBC:
3463 Tmp1 = LegalizeOp(Node->getOperand(0));
3464 Tmp2 = LegalizeOp(Node->getOperand(1));
3465 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003466 Tmp3 = Result.getValue(0);
3467 Tmp4 = Result.getValue(1);
3468
3469 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3470 default: assert(0 && "This action is not supported yet!");
3471 case TargetLowering::Legal:
3472 break;
3473 case TargetLowering::Custom:
3474 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3475 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003476 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003477 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3478 }
3479 break;
3480 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003481 // Since this produces two values, make sure to remember that we legalized
3482 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003483 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3484 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3485 return Op.getResNo() ? Tmp4 : Tmp3;
Misha Brukmanedf128a2005-04-21 22:36:52 +00003486
Nate Begeman551bf3f2006-02-17 05:43:56 +00003487 case ISD::ADDE:
3488 case ISD::SUBE:
3489 Tmp1 = LegalizeOp(Node->getOperand(0));
3490 Tmp2 = LegalizeOp(Node->getOperand(1));
3491 Tmp3 = LegalizeOp(Node->getOperand(2));
3492 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003493 Tmp3 = Result.getValue(0);
3494 Tmp4 = Result.getValue(1);
3495
3496 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3497 default: assert(0 && "This action is not supported yet!");
3498 case TargetLowering::Legal:
3499 break;
3500 case TargetLowering::Custom:
3501 Tmp1 = TLI.LowerOperation(Tmp3, DAG);
3502 if (Tmp1.getNode() != NULL) {
Sanjiv Gupta9b0f0b52008-11-27 05:58:04 +00003503 Tmp3 = LegalizeOp(Tmp1);
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003504 Tmp4 = LegalizeOp(Tmp1.getValue(1));
3505 }
3506 break;
3507 }
Nate Begeman551bf3f2006-02-17 05:43:56 +00003508 // Since this produces two values, make sure to remember that we legalized
3509 // both of them.
Sanjiv Guptad3f01aa2008-11-26 11:19:00 +00003510 AddLegalizedOperand(SDValue(Node, 0), Tmp3);
3511 AddLegalizedOperand(SDValue(Node, 1), Tmp4);
3512 return Op.getResNo() ? Tmp4 : Tmp3;
Scott Michelfdc40a02009-02-17 22:15:04 +00003513
Nate Begeman419f8b62005-10-18 00:27:41 +00003514 case ISD::BUILD_PAIR: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003515 MVT PairTy = Node->getValueType(0);
Nate Begeman419f8b62005-10-18 00:27:41 +00003516 // TODO: handle the case where the Lo and Hi operands are not of legal type
3517 Tmp1 = LegalizeOp(Node->getOperand(0)); // Lo
3518 Tmp2 = LegalizeOp(Node->getOperand(1)); // Hi
3519 switch (TLI.getOperationAction(ISD::BUILD_PAIR, PairTy)) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003520 case TargetLowering::Promote:
3521 case TargetLowering::Custom:
3522 assert(0 && "Cannot promote/custom this yet!");
Nate Begeman419f8b62005-10-18 00:27:41 +00003523 case TargetLowering::Legal:
3524 if (Tmp1 != Node->getOperand(0) || Tmp2 != Node->getOperand(1))
Dale Johannesenca57b842009-02-02 23:46:53 +00003525 Result = DAG.getNode(ISD::BUILD_PAIR, dl, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003526 break;
Nate Begeman419f8b62005-10-18 00:27:41 +00003527 case TargetLowering::Expand:
Dale Johannesenca57b842009-02-02 23:46:53 +00003528 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, PairTy, Tmp1);
3529 Tmp2 = DAG.getNode(ISD::ANY_EXTEND, dl, PairTy, Tmp2);
3530 Tmp2 = DAG.getNode(ISD::SHL, dl, PairTy, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003531 DAG.getConstant(PairTy.getSizeInBits()/2,
Nate Begeman419f8b62005-10-18 00:27:41 +00003532 TLI.getShiftAmountTy()));
Dale Johannesenca57b842009-02-02 23:46:53 +00003533 Result = DAG.getNode(ISD::OR, dl, PairTy, Tmp1, Tmp2);
Nate Begeman419f8b62005-10-18 00:27:41 +00003534 break;
3535 }
3536 break;
3537 }
3538
Nate Begemanc105e192005-04-06 00:23:54 +00003539 case ISD::UREM:
3540 case ISD::SREM:
Chris Lattner01b3d732005-09-28 22:28:18 +00003541 case ISD::FREM:
Nate Begemanc105e192005-04-06 00:23:54 +00003542 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
3543 Tmp2 = LegalizeOp(Node->getOperand(1)); // RHS
Chris Lattner456a93a2006-01-28 07:39:30 +00003544
Nate Begemanc105e192005-04-06 00:23:54 +00003545 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003546 case TargetLowering::Promote: assert(0 && "Cannot promote this yet!");
3547 case TargetLowering::Custom:
3548 isCustom = true;
3549 // FALLTHROUGH
Nate Begemanc105e192005-04-06 00:23:54 +00003550 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003551 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Chris Lattner456a93a2006-01-28 07:39:30 +00003552 if (isCustom) {
3553 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003554 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003555 }
Nate Begemanc105e192005-04-06 00:23:54 +00003556 break;
Dan Gohman525178c2007-10-08 18:33:35 +00003557 case TargetLowering::Expand: {
Evan Cheng6b5578f2006-09-18 23:28:33 +00003558 unsigned DivOpc= (Node->getOpcode() == ISD::UREM) ? ISD::UDIV : ISD::SDIV;
Reid Spencer47857812006-12-31 05:55:36 +00003559 bool isSigned = DivOpc == ISD::SDIV;
Duncan Sands83ec4b62008-06-06 12:08:01 +00003560 MVT VT = Node->getValueType(0);
Scott Michelfdc40a02009-02-17 22:15:04 +00003561
Dan Gohman525178c2007-10-08 18:33:35 +00003562 // See if remainder can be lowered using two-result operations.
3563 SDVTList VTs = DAG.getVTList(VT, VT);
3564 if (Node->getOpcode() == ISD::SREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003565 TLI.isOperationLegalOrCustom(ISD::SDIVREM, VT)) {
Scott Michelfdc40a02009-02-17 22:15:04 +00003566 Result = SDValue(DAG.getNode(ISD::SDIVREM, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00003567 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003568 break;
3569 }
3570 if (Node->getOpcode() == ISD::UREM &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00003571 TLI.isOperationLegalOrCustom(ISD::UDIVREM, VT)) {
Dale Johannesenca57b842009-02-02 23:46:53 +00003572 Result = SDValue(DAG.getNode(ISD::UDIVREM, dl,
3573 VTs, Tmp1, Tmp2).getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00003574 break;
3575 }
3576
Anton Korobeynikov58c04e12009-05-08 18:51:08 +00003577 if (VT.isInteger() &&
3578 TLI.getOperationAction(DivOpc, VT) == TargetLowering::Legal) {
3579 // X % Y -> X-X/Y*Y
3580 Result = DAG.getNode(DivOpc, dl, VT, Tmp1, Tmp2);
3581 Result = DAG.getNode(ISD::MUL, dl, VT, Result, Tmp2);
3582 Result = DAG.getNode(ISD::SUB, dl, VT, Tmp1, Result);
3583 break;
Nate Begemanc105e192005-04-06 00:23:54 +00003584 }
Anton Korobeynikov58c04e12009-05-08 18:51:08 +00003585
3586 // Check to see if we have a libcall for this operator.
3587 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
3588 switch (Node->getOpcode()) {
3589 default: break;
3590 case ISD::UREM:
3591 case ISD::SREM:
3592 if (VT == MVT::i16)
3593 LC = (isSigned ? RTLIB::SREM_I16 : RTLIB::UREM_I16);
3594 else if (VT == MVT::i32)
3595 LC = (isSigned ? RTLIB::SREM_I32 : RTLIB::UREM_I32);
3596 else if (VT == MVT::i64)
3597 LC = (isSigned ? RTLIB::SREM_I64 : RTLIB::UREM_I64);
3598 else if (VT == MVT::i128)
3599 LC = (isSigned ? RTLIB::SREM_I128 : RTLIB::UREM_I128);
3600 break;
3601 case ISD::FREM:
3602 // Floating point mod -> fmod libcall.
3603 LC = GetFPLibCall(VT, RTLIB::REM_F32, RTLIB::REM_F64,
3604 RTLIB::REM_F80, RTLIB::REM_PPCF128);
3605 break;
3606 }
3607
3608 if (LC != RTLIB::UNKNOWN_LIBCALL) {
3609 SDValue Dummy;
3610 Result = ExpandLibCall(LC, Node, isSigned, Dummy);
3611 break;
3612 }
3613
3614 assert(VT.isVector() &&
3615 "Cannot expand this binary operator!");
3616 // Expand the operation into a bunch of nasty scalar code.
3617 Result = LegalizeOp(UnrollVectorOp(Op));
Nate Begemanc105e192005-04-06 00:23:54 +00003618 break;
3619 }
Dan Gohman525178c2007-10-08 18:33:35 +00003620 }
Nate Begemanc105e192005-04-06 00:23:54 +00003621 break;
Nate Begemanacc398c2006-01-25 18:21:52 +00003622 case ISD::VAARG: {
3623 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3624 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3625
Duncan Sands83ec4b62008-06-06 12:08:01 +00003626 MVT VT = Node->getValueType(0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003627 switch (TLI.getOperationAction(Node->getOpcode(), MVT::Other)) {
3628 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003629 case TargetLowering::Custom:
3630 isCustom = true;
3631 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003632 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003633 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
3634 Result = Result.getValue(0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003635 Tmp1 = Result.getValue(1);
3636
3637 if (isCustom) {
3638 Tmp2 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003639 if (Tmp2.getNode()) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003640 Result = LegalizeOp(Tmp2);
3641 Tmp1 = LegalizeOp(Tmp2.getValue(1));
3642 }
3643 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003644 break;
3645 case TargetLowering::Expand: {
Dan Gohman69de1932008-02-06 22:27:42 +00003646 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenca57b842009-02-02 23:46:53 +00003647 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003648 // Increment the pointer, VAList, to the next vaarg
Dale Johannesenca57b842009-02-02 23:46:53 +00003649 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00003650 DAG.getConstant(TLI.getTargetData()->
Duncan Sands777d2302009-05-09 07:06:46 +00003651 getTypeAllocSize(VT.getTypeForMVT()),
Duncan Sandsceb4d1a2009-01-12 20:38:59 +00003652 TLI.getPointerTy()));
Nate Begemanacc398c2006-01-25 18:21:52 +00003653 // Store the incremented VAList to the legalized pointer
Dale Johannesenca57b842009-02-02 23:46:53 +00003654 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003655 // Load the actual argument out of the pointer VAList
Dale Johannesenca57b842009-02-02 23:46:53 +00003656 Result = DAG.getLoad(VT, dl, Tmp3, VAList, NULL, 0);
Chris Lattner456a93a2006-01-28 07:39:30 +00003657 Tmp1 = LegalizeOp(Result.getValue(1));
Nate Begemanacc398c2006-01-25 18:21:52 +00003658 Result = LegalizeOp(Result);
3659 break;
3660 }
3661 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003662 // Since VAARG produces two values, make sure to remember that we
Nate Begemanacc398c2006-01-25 18:21:52 +00003663 // legalized both of them.
Dan Gohman475871a2008-07-27 21:46:04 +00003664 AddLegalizedOperand(SDValue(Node, 0), Result);
3665 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00003666 return Op.getResNo() ? Tmp1 : Result;
Nate Begemanacc398c2006-01-25 18:21:52 +00003667 }
Scott Michelfdc40a02009-02-17 22:15:04 +00003668
3669 case ISD::VACOPY:
Nate Begemanacc398c2006-01-25 18:21:52 +00003670 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3671 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the dest pointer.
3672 Tmp3 = LegalizeOp(Node->getOperand(2)); // Legalize the source pointer.
3673
3674 switch (TLI.getOperationAction(ISD::VACOPY, MVT::Other)) {
3675 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003676 case TargetLowering::Custom:
3677 isCustom = true;
3678 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003679 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003680 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Tmp3,
3681 Node->getOperand(3), Node->getOperand(4));
Chris Lattner456a93a2006-01-28 07:39:30 +00003682 if (isCustom) {
3683 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003684 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003685 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003686 break;
3687 case TargetLowering::Expand:
3688 // This defaults to loading a pointer from the input and storing it to the
3689 // output, returning the chain.
Dan Gohman69de1932008-02-06 22:27:42 +00003690 const Value *VD = cast<SrcValueSDNode>(Node->getOperand(3))->getValue();
3691 const Value *VS = cast<SrcValueSDNode>(Node->getOperand(4))->getValue();
Dale Johannesenca57b842009-02-02 23:46:53 +00003692 Tmp4 = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp3, VS, 0);
3693 Result = DAG.getStore(Tmp4.getValue(1), dl, Tmp4, Tmp2, VD, 0);
Nate Begemanacc398c2006-01-25 18:21:52 +00003694 break;
3695 }
3696 break;
3697
Scott Michelfdc40a02009-02-17 22:15:04 +00003698 case ISD::VAEND:
Nate Begemanacc398c2006-01-25 18:21:52 +00003699 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3700 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3701
3702 switch (TLI.getOperationAction(ISD::VAEND, MVT::Other)) {
3703 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003704 case TargetLowering::Custom:
3705 isCustom = true;
3706 // FALLTHROUGH
Nate Begemanacc398c2006-01-25 18:21:52 +00003707 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003708 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Chris Lattner456a93a2006-01-28 07:39:30 +00003709 if (isCustom) {
3710 Tmp1 = TLI.LowerOperation(Tmp1, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003711 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00003712 }
Nate Begemanacc398c2006-01-25 18:21:52 +00003713 break;
3714 case TargetLowering::Expand:
3715 Result = Tmp1; // Default to a no-op, return the chain
3716 break;
3717 }
3718 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003719
3720 case ISD::VASTART:
Nate Begemanacc398c2006-01-25 18:21:52 +00003721 Tmp1 = LegalizeOp(Node->getOperand(0)); // Legalize the chain.
3722 Tmp2 = LegalizeOp(Node->getOperand(1)); // Legalize the pointer.
3723
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003724 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2, Node->getOperand(2));
Scott Michelfdc40a02009-02-17 22:15:04 +00003725
Nate Begemanacc398c2006-01-25 18:21:52 +00003726 switch (TLI.getOperationAction(ISD::VASTART, MVT::Other)) {
3727 default: assert(0 && "This action is not supported yet!");
Chris Lattner456a93a2006-01-28 07:39:30 +00003728 case TargetLowering::Legal: break;
3729 case TargetLowering::Custom:
3730 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003731 if (Tmp1.getNode()) Result = Tmp1;
Nate Begemanacc398c2006-01-25 18:21:52 +00003732 break;
3733 }
3734 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003735
Nate Begeman35ef9132006-01-11 21:21:00 +00003736 case ISD::ROTL:
3737 case ISD::ROTR:
3738 Tmp1 = LegalizeOp(Node->getOperand(0)); // LHS
Duncan Sands92abc622009-01-31 15:50:11 +00003739 Tmp2 = LegalizeOp(DAG.getShiftAmountOperand(Node->getOperand(1))); // RHS
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003740 Result = DAG.UpdateNodeOperands(Result, Tmp1, Tmp2);
Scott Michelc9dc1142007-04-02 21:36:32 +00003741 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
3742 default:
3743 assert(0 && "ROTL/ROTR legalize operation not supported");
3744 break;
3745 case TargetLowering::Legal:
3746 break;
3747 case TargetLowering::Custom:
3748 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003749 if (Tmp1.getNode()) Result = Tmp1;
Scott Michelc9dc1142007-04-02 21:36:32 +00003750 break;
3751 case TargetLowering::Promote:
3752 assert(0 && "Do not know how to promote ROTL/ROTR");
3753 break;
3754 case TargetLowering::Expand:
3755 assert(0 && "Do not know how to expand ROTL/ROTR");
3756 break;
3757 }
Nate Begeman35ef9132006-01-11 21:21:00 +00003758 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003759
Nate Begemand88fc032006-01-14 03:14:10 +00003760 case ISD::BSWAP:
3761 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3762 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003763 case TargetLowering::Custom:
3764 assert(0 && "Cannot custom legalize this yet!");
3765 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003766 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003767 break;
3768 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003769 MVT OVT = Tmp1.getValueType();
3770 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
3771 unsigned DiffBits = NVT.getSizeInBits() - OVT.getSizeInBits();
Nate Begemand88fc032006-01-14 03:14:10 +00003772
Dale Johannesenca57b842009-02-02 23:46:53 +00003773 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
3774 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
3775 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Chris Lattner456a93a2006-01-28 07:39:30 +00003776 DAG.getConstant(DiffBits, TLI.getShiftAmountTy()));
3777 break;
3778 }
3779 case TargetLowering::Expand:
Dale Johannesen8a782a22009-02-02 22:12:50 +00003780 Result = ExpandBSWAP(Tmp1, dl);
Chris Lattner456a93a2006-01-28 07:39:30 +00003781 break;
Nate Begemand88fc032006-01-14 03:14:10 +00003782 }
3783 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00003784
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003785 case ISD::CTPOP:
3786 case ISD::CTTZ:
3787 case ISD::CTLZ:
3788 Tmp1 = LegalizeOp(Node->getOperand(0)); // Op
3789 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Scott Michel910b66d2007-07-30 21:00:31 +00003790 case TargetLowering::Custom:
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003791 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003792 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel910b66d2007-07-30 21:00:31 +00003793 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
Scott Michel335f4f72007-08-02 02:22:46 +00003794 TargetLowering::Custom) {
3795 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003796 if (Tmp1.getNode()) {
Scott Michel335f4f72007-08-02 02:22:46 +00003797 Result = Tmp1;
3798 }
Scott Michel910b66d2007-07-30 21:00:31 +00003799 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003800 break;
3801 case TargetLowering::Promote: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003802 MVT OVT = Tmp1.getValueType();
3803 MVT NVT = TLI.getTypeToPromoteTo(Node->getOpcode(), OVT);
Chris Lattneredb1add2005-05-11 04:51:16 +00003804
3805 // Zero extend the argument.
Dale Johannesenca57b842009-02-02 23:46:53 +00003806 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003807 // Perform the larger operation, then subtract if needed.
Dale Johannesenca57b842009-02-02 23:46:53 +00003808 Tmp1 = DAG.getNode(Node->getOpcode(), dl, Node->getValueType(0), Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00003809 switch (Node->getOpcode()) {
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003810 case ISD::CTPOP:
3811 Result = Tmp1;
3812 break;
3813 case ISD::CTTZ:
3814 //if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesenca57b842009-02-02 23:46:53 +00003815 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
3816 Tmp1, DAG.getConstant(NVT.getSizeInBits(), NVT),
Chris Lattner7cf7e3f2005-08-09 20:20:18 +00003817 ISD::SETEQ);
Dale Johannesenca57b842009-02-02 23:46:53 +00003818 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003819 DAG.getConstant(OVT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003820 break;
3821 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00003822 // Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesenca57b842009-02-02 23:46:53 +00003823 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00003824 DAG.getConstant(NVT.getSizeInBits() -
3825 OVT.getSizeInBits(), NVT));
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003826 break;
3827 }
3828 break;
3829 }
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003830 case TargetLowering::Expand:
Dale Johannesen8a782a22009-02-02 22:12:50 +00003831 Result = ExpandBitCount(Node->getOpcode(), Tmp1, dl);
Andrew Lenharth691ef2b2005-05-03 17:19:30 +00003832 break;
3833 }
3834 break;
Jeff Cohen00b168892005-07-27 06:12:32 +00003835
Chris Lattner2c8086f2005-04-02 05:00:07 +00003836 // Unary operators
3837 case ISD::FABS:
3838 case ISD::FNEG:
Chris Lattnerda6ba872005-04-28 21:44:33 +00003839 case ISD::FSQRT:
3840 case ISD::FSIN:
3841 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003842 case ISD::FLOG:
3843 case ISD::FLOG2:
3844 case ISD::FLOG10:
3845 case ISD::FEXP:
3846 case ISD::FEXP2:
Dan Gohman509e84f2008-08-21 17:55:02 +00003847 case ISD::FTRUNC:
3848 case ISD::FFLOOR:
3849 case ISD::FCEIL:
3850 case ISD::FRINT:
3851 case ISD::FNEARBYINT:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003852 Tmp1 = LegalizeOp(Node->getOperand(0));
3853 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
Chris Lattner456a93a2006-01-28 07:39:30 +00003854 case TargetLowering::Promote:
3855 case TargetLowering::Custom:
Evan Cheng59ad7812006-01-31 18:14:25 +00003856 isCustom = true;
3857 // FALLTHROUGH
Chris Lattner2c8086f2005-04-02 05:00:07 +00003858 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00003859 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Evan Cheng59ad7812006-01-31 18:14:25 +00003860 if (isCustom) {
3861 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00003862 if (Tmp1.getNode()) Result = Tmp1;
Evan Cheng59ad7812006-01-31 18:14:25 +00003863 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003864 break;
Chris Lattner2c8086f2005-04-02 05:00:07 +00003865 case TargetLowering::Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00003866 switch (Node->getOpcode()) {
3867 default: assert(0 && "Unreachable!");
3868 case ISD::FNEG:
Chris Lattner2c8086f2005-04-02 05:00:07 +00003869 // Expand Y = FNEG(X) -> Y = SUB -0.0, X
3870 Tmp2 = DAG.getConstantFP(-0.0, Node->getValueType(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00003871 Result = DAG.getNode(ISD::FSUB, dl, Node->getValueType(0), Tmp2, Tmp1);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003872 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003873 case ISD::FABS: {
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003874 // Expand Y = FABS(X) -> Y = (X >u 0.0) ? X : fneg(X).
Duncan Sands83ec4b62008-06-06 12:08:01 +00003875 MVT VT = Node->getValueType(0);
Chris Lattner4af6e0d2005-04-02 05:26:37 +00003876 Tmp2 = DAG.getConstantFP(0.0, VT);
Dale Johannesenca57b842009-02-02 23:46:53 +00003877 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00003878 Tmp1, Tmp2, ISD::SETUGT);
Dale Johannesenca57b842009-02-02 23:46:53 +00003879 Tmp3 = DAG.getNode(ISD::FNEG, dl, VT, Tmp1);
3880 Result = DAG.getNode(ISD::SELECT, dl, VT, Tmp2, Tmp1, Tmp3);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003881 break;
3882 }
Evan Cheng9d24ac52008-09-09 23:35:53 +00003883 case ISD::FSQRT:
3884 case ISD::FSIN:
Scott Michelfdc40a02009-02-17 22:15:04 +00003885 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003886 case ISD::FLOG:
3887 case ISD::FLOG2:
3888 case ISD::FLOG10:
3889 case ISD::FEXP:
3890 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003891 case ISD::FTRUNC:
3892 case ISD::FFLOOR:
3893 case ISD::FCEIL:
3894 case ISD::FRINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00003895 case ISD::FNEARBYINT: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003896 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003897
3898 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003899 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003900 Result = LegalizeOp(UnrollVectorOp(Op));
3901 break;
3902 }
3903
Evan Cheng56966222007-01-12 02:11:51 +00003904 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003905 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00003906 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00003907 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
3908 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003909 break;
3910 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00003911 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
3912 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003913 break;
3914 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00003915 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
3916 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00003917 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00003918 case ISD::FLOG:
3919 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
3920 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
3921 break;
3922 case ISD::FLOG2:
3923 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
3924 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
3925 break;
3926 case ISD::FLOG10:
3927 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
3928 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
3929 break;
3930 case ISD::FEXP:
3931 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
3932 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
3933 break;
3934 case ISD::FEXP2:
3935 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
3936 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
3937 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00003938 case ISD::FTRUNC:
3939 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
3940 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
3941 break;
3942 case ISD::FFLOOR:
3943 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
3944 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
3945 break;
3946 case ISD::FCEIL:
3947 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
3948 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
3949 break;
3950 case ISD::FRINT:
3951 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
3952 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
3953 break;
3954 case ISD::FNEARBYINT:
3955 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
3956 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
3957 break;
Evan Cheng9d24ac52008-09-09 23:35:53 +00003958 break;
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003959 default: assert(0 && "Unreachable!");
3960 }
Dan Gohman475871a2008-07-27 21:46:04 +00003961 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003962 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattnerf76e7dc2005-04-30 04:43:14 +00003963 break;
3964 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00003965 }
3966 break;
3967 }
3968 break;
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003969 case ISD::FPOWI: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00003970 MVT VT = Node->getValueType(0);
Dan Gohman82669522007-10-11 23:57:53 +00003971
3972 // Expand unsupported unary vector operators by unrolling them.
Duncan Sands83ec4b62008-06-06 12:08:01 +00003973 if (VT.isVector()) {
Dan Gohman82669522007-10-11 23:57:53 +00003974 Result = LegalizeOp(UnrollVectorOp(Op));
3975 break;
3976 }
3977
3978 // We always lower FPOWI into a libcall. No target support for it yet.
Duncan Sands007f9842008-01-10 10:28:30 +00003979 RTLIB::Libcall LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64,
3980 RTLIB::POWI_F80, RTLIB::POWI_PPCF128);
Dan Gohman475871a2008-07-27 21:46:04 +00003981 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00003982 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Chris Lattner6ddf8ed2006-09-09 06:03:30 +00003983 break;
3984 }
Chris Lattner35481892005-12-23 00:16:34 +00003985 case ISD::BIT_CONVERT:
Eli Friedman1fde9c52009-05-24 02:46:31 +00003986 switch (TLI.getOperationAction(ISD::BIT_CONVERT,
3987 Node->getOperand(0).getValueType())) {
3988 default: assert(0 && "Unknown operation action!");
3989 case TargetLowering::Expand:
Chris Lattner1401d152008-01-16 07:45:30 +00003990 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00003991 Node->getValueType(0), dl);
Eli Friedman1fde9c52009-05-24 02:46:31 +00003992 break;
3993 case TargetLowering::Legal:
3994 Tmp1 = LegalizeOp(Node->getOperand(0));
3995 Result = DAG.UpdateNodeOperands(Result, Tmp1);
3996 break;
Chris Lattner35481892005-12-23 00:16:34 +00003997 }
3998 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00003999 case ISD::CONVERT_RNDSAT: {
4000 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4001 switch (CvtCode) {
4002 default: assert(0 && "Unknown cvt code!");
4003 case ISD::CVT_SF:
4004 case ISD::CVT_UF:
Mon P Wang77cdf302008-11-10 20:54:11 +00004005 case ISD::CVT_FF:
Mon P Wang1cd46bb2008-12-09 07:27:39 +00004006 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004007 case ISD::CVT_FS:
4008 case ISD::CVT_FU:
4009 case ISD::CVT_SS:
4010 case ISD::CVT_SU:
4011 case ISD::CVT_US:
4012 case ISD::CVT_UU: {
4013 SDValue DTyOp = Node->getOperand(1);
4014 SDValue STyOp = Node->getOperand(2);
4015 SDValue RndOp = Node->getOperand(3);
4016 SDValue SatOp = Node->getOperand(4);
4017 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4018 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4019 case Legal:
4020 Tmp1 = LegalizeOp(Node->getOperand(0));
4021 Result = DAG.UpdateNodeOperands(Result, Tmp1, DTyOp, STyOp,
4022 RndOp, SatOp);
4023 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4024 TargetLowering::Custom) {
4025 Tmp1 = TLI.LowerOperation(Result, DAG);
4026 if (Tmp1.getNode()) Result = Tmp1;
4027 }
4028 break;
4029 case Promote:
4030 Result = PromoteOp(Node->getOperand(0));
4031 // For FP, make Op1 a i32
Scott Michelfdc40a02009-02-17 22:15:04 +00004032
Dale Johannesenc460ae92009-02-04 00:13:36 +00004033 Result = DAG.getConvertRndSat(Op.getValueType(), dl, Result,
Mon P Wang77cdf302008-11-10 20:54:11 +00004034 DTyOp, STyOp, RndOp, SatOp, CvtCode);
4035 break;
4036 }
4037 break;
4038 }
4039 } // end switch CvtCode
4040 break;
4041 }
Chris Lattner2c8086f2005-04-02 05:00:07 +00004042 // Conversion operators. The source and destination have different types.
Chris Lattnerae0aacb2005-01-08 08:08:56 +00004043 case ISD::SINT_TO_FP:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004044 case ISD::UINT_TO_FP: {
4045 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Dan Gohman7f8613e2008-08-14 20:04:46 +00004046 Result = LegalizeINT_TO_FP(Result, isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00004047 Node->getValueType(0), Node->getOperand(0), dl);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004048 break;
4049 }
4050 case ISD::TRUNCATE:
4051 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4052 case Legal:
4053 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel546d7b52008-12-02 19:55:08 +00004054 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))) {
4055 default: assert(0 && "Unknown TRUNCATE legalization operation action!");
4056 case TargetLowering::Custom:
Mon P Wangf67303d2008-12-11 00:44:22 +00004057 isCustom = true;
4058 // FALLTHROUGH
Scott Michel546d7b52008-12-02 19:55:08 +00004059 case TargetLowering::Legal:
Mon P Wangf67303d2008-12-11 00:44:22 +00004060 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4061 if (isCustom) {
4062 Tmp1 = TLI.LowerOperation(Result, DAG);
4063 if (Tmp1.getNode()) Result = Tmp1;
4064 }
4065 break;
Mon P Wang9e5ecb82008-12-12 01:25:51 +00004066 case TargetLowering::Expand:
4067 assert(Result.getValueType().isVector() && "must be vector type");
4068 // Unroll the truncate. We should do better.
4069 Result = LegalizeOp(UnrollVectorOp(Result));
Tilmann Schellerb0a5cdd2008-12-02 12:12:25 +00004070 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004071 break;
4072 case Expand:
4073 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4074
4075 // Since the result is legal, we should just be able to truncate the low
4076 // part of the source.
Dale Johannesenca57b842009-02-02 23:46:53 +00004077 Result = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), Tmp1);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004078 break;
4079 case Promote:
4080 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004081 Result = DAG.getNode(ISD::TRUNCATE, dl, Op.getValueType(), Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004082 break;
4083 }
4084 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004085
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004086 case ISD::FP_TO_SINT:
4087 case ISD::FP_TO_UINT:
4088 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4089 case Legal:
Chris Lattnerf1fa74e2005-07-30 00:04:12 +00004090 Tmp1 = LegalizeOp(Node->getOperand(0));
4091
Chris Lattner1618beb2005-07-29 00:11:56 +00004092 switch (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0))){
4093 default: assert(0 && "Unknown operation action!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004094 case TargetLowering::Custom:
4095 isCustom = true;
4096 // FALLTHROUGH
4097 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004098 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004099 if (isCustom) {
4100 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004101 if (Tmp1.getNode()) Result = Tmp1;
Chris Lattner456a93a2006-01-28 07:39:30 +00004102 }
4103 break;
4104 case TargetLowering::Promote:
4105 Result = PromoteLegalFP_TO_INT(Tmp1, Node->getValueType(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00004106 Node->getOpcode() == ISD::FP_TO_SINT,
Dale Johannesenaf435272009-02-02 19:03:57 +00004107 dl);
Chris Lattner456a93a2006-01-28 07:39:30 +00004108 break;
Chris Lattner1618beb2005-07-29 00:11:56 +00004109 case TargetLowering::Expand:
Nate Begemand2558e32005-08-14 01:20:53 +00004110 if (Node->getOpcode() == ISD::FP_TO_UINT) {
Dan Gohman475871a2008-07-27 21:46:04 +00004111 SDValue True, False;
Duncan Sands83ec4b62008-06-06 12:08:01 +00004112 MVT VT = Node->getOperand(0).getValueType();
4113 MVT NVT = Node->getValueType(0);
Dale Johannesen73328d12007-09-19 23:55:34 +00004114 const uint64_t zero[] = {0, 0};
Duncan Sands83ec4b62008-06-06 12:08:01 +00004115 APFloat apf = APFloat(APInt(VT.getSizeInBits(), 2, zero));
4116 APInt x = APInt::getSignBit(NVT.getSizeInBits());
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004117 (void)apf.convertFromAPInt(x, false, APFloat::rmNearestTiesToEven);
Dale Johannesen73328d12007-09-19 23:55:34 +00004118 Tmp2 = DAG.getConstantFP(apf, VT);
Scott Michelfdc40a02009-02-17 22:15:04 +00004119 Tmp3 = DAG.getSetCC(dl, TLI.getSetCCResultType(VT),
Dale Johannesenaf435272009-02-02 19:03:57 +00004120 Node->getOperand(0),
Duncan Sands5480c042009-01-01 15:52:00 +00004121 Tmp2, ISD::SETLT);
Dale Johannesenaf435272009-02-02 19:03:57 +00004122 True = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Node->getOperand(0));
4123 False = DAG.getNode(ISD::FP_TO_SINT, dl, NVT,
Scott Michelfdc40a02009-02-17 22:15:04 +00004124 DAG.getNode(ISD::FSUB, dl, VT,
Dale Johannesenaf435272009-02-02 19:03:57 +00004125 Node->getOperand(0), Tmp2));
4126 False = DAG.getNode(ISD::XOR, dl, NVT, False,
Dan Gohmanc7773bf2008-02-29 01:44:25 +00004127 DAG.getConstant(x, NVT));
Dale Johannesenaf435272009-02-02 19:03:57 +00004128 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp3, True, False);
Chris Lattner456a93a2006-01-28 07:39:30 +00004129 break;
Nate Begemand2558e32005-08-14 01:20:53 +00004130 } else {
4131 assert(0 && "Do not know how to expand FP_TO_SINT yet!");
4132 }
4133 break;
Chris Lattner07dffd62005-08-26 00:14:16 +00004134 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004135 break;
Evan Cheng6af00d52006-12-13 01:57:55 +00004136 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004137 MVT VT = Op.getValueType();
4138 MVT OVT = Node->getOperand(0).getValueType();
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004139 // Convert ppcf128 to i32
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004140 if (OVT == MVT::ppcf128 && VT == MVT::i32) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004141 if (Node->getOpcode() == ISD::FP_TO_SINT) {
Scott Michelfdc40a02009-02-17 22:15:04 +00004142 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, MVT::ppcf128,
Chris Lattner0bd48932008-01-17 07:00:52 +00004143 Node->getOperand(0), DAG.getValueType(MVT::f64));
Scott Michelfdc40a02009-02-17 22:15:04 +00004144 Result = DAG.getNode(ISD::FP_ROUND, dl, MVT::f64, Result,
Chris Lattner0bd48932008-01-17 07:00:52 +00004145 DAG.getIntPtrConstant(1));
Dale Johannesenaf435272009-02-02 19:03:57 +00004146 Result = DAG.getNode(ISD::FP_TO_SINT, dl, VT, Result);
Chris Lattner0bd48932008-01-17 07:00:52 +00004147 } else {
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004148 const uint64_t TwoE31[] = {0x41e0000000000000LL, 0};
4149 APFloat apf = APFloat(APInt(128, 2, TwoE31));
4150 Tmp2 = DAG.getConstantFP(apf, OVT);
4151 // X>=2^31 ? (int)(X-2^31)+0x80000000 : (int)X
4152 // FIXME: generated code sucks.
Scott Michelfdc40a02009-02-17 22:15:04 +00004153 Result = DAG.getNode(ISD::SELECT_CC, dl, VT, Node->getOperand(0),
Dale Johannesenaf435272009-02-02 19:03:57 +00004154 Tmp2,
4155 DAG.getNode(ISD::ADD, dl, MVT::i32,
4156 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
4157 DAG.getNode(ISD::FSUB, dl, OVT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004158 Node->getOperand(0), Tmp2)),
4159 DAG.getConstant(0x80000000, MVT::i32)),
Scott Michelfdc40a02009-02-17 22:15:04 +00004160 DAG.getNode(ISD::FP_TO_SINT, dl, VT,
Dale Johannesenfcf4d242007-10-11 23:32:15 +00004161 Node->getOperand(0)),
4162 DAG.getCondCode(ISD::SETGE));
4163 }
Dale Johannesen6eaeff22007-10-10 01:01:31 +00004164 break;
4165 }
Dan Gohmana2e94852008-03-10 23:03:31 +00004166 // Convert f32 / f64 to i32 / i64 / i128.
Duncan Sandsb2ff8852008-07-17 02:36:29 +00004167 RTLIB::Libcall LC = (Node->getOpcode() == ISD::FP_TO_SINT) ?
4168 RTLIB::getFPTOSINT(OVT, VT) : RTLIB::getFPTOUINT(OVT, VT);
4169 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpectd fp-to-int conversion!");
Dan Gohman475871a2008-07-27 21:46:04 +00004170 SDValue Dummy;
Duncan Sands460a14e2008-04-12 17:14:18 +00004171 Result = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Dummy);
Evan Cheng6af00d52006-12-13 01:57:55 +00004172 break;
4173 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004174 case Promote:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004175 Tmp1 = PromoteOp(Node->getOperand(0));
4176 Result = DAG.UpdateNodeOperands(Result, LegalizeOp(Tmp1));
4177 Result = LegalizeOp(Result);
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004178 break;
4179 }
4180 break;
Jeff Cohend29b6aa2005-07-30 18:33:25 +00004181
Chris Lattnerf2670a82008-01-16 06:57:07 +00004182 case ISD::FP_EXTEND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004183 MVT DstVT = Op.getValueType();
4184 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00004185 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4186 // The only other way we can lower this is to turn it into a STORE,
4187 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen8a782a22009-02-02 22:12:50 +00004188 Result = EmitStackConvert(Node->getOperand(0), SrcVT, DstVT, dl);
Chris Lattner0bd48932008-01-17 07:00:52 +00004189 break;
Chris Lattnerf2670a82008-01-16 06:57:07 +00004190 }
4191 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4192 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4193 case Legal:
4194 Tmp1 = LegalizeOp(Node->getOperand(0));
4195 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4196 break;
4197 case Promote:
4198 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004199 Result = DAG.getNode(ISD::FP_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattnerf2670a82008-01-16 06:57:07 +00004200 break;
4201 }
4202 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004203 }
Dale Johannesen5411a392007-08-09 01:04:01 +00004204 case ISD::FP_ROUND: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004205 MVT DstVT = Op.getValueType();
4206 MVT SrcVT = Op.getOperand(0).getValueType();
Chris Lattner0bd48932008-01-17 07:00:52 +00004207 if (TLI.getConvertAction(SrcVT, DstVT) == TargetLowering::Expand) {
4208 if (SrcVT == MVT::ppcf128) {
Eli Friedman1fde9c52009-05-24 02:46:31 +00004209 // FIXME: Figure out how to extract the double without
4210 // help from type legalization
Dale Johannesen5411a392007-08-09 01:04:01 +00004211 }
Chris Lattner0bd48932008-01-17 07:00:52 +00004212 // The only other way we can lower this is to turn it into a STORE,
4213 // LOAD pair, targetting a temporary location (a stack slot).
Dale Johannesen8a782a22009-02-02 22:12:50 +00004214 Result = EmitStackConvert(Node->getOperand(0), DstVT, DstVT, dl);
Chris Lattner0bd48932008-01-17 07:00:52 +00004215 break;
Dale Johannesen849f2142007-07-03 00:53:03 +00004216 }
Chris Lattnerf2670a82008-01-16 06:57:07 +00004217 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4218 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
4219 case Legal:
4220 Tmp1 = LegalizeOp(Node->getOperand(0));
Chris Lattner0bd48932008-01-17 07:00:52 +00004221 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004222 break;
4223 case Promote:
4224 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004225 Result = DAG.getNode(ISD::FP_ROUND, dl, Op.getValueType(), Tmp1,
Chris Lattner0bd48932008-01-17 07:00:52 +00004226 Node->getOperand(1));
Chris Lattnerf2670a82008-01-16 06:57:07 +00004227 break;
4228 }
4229 break;
Chris Lattner0bd48932008-01-17 07:00:52 +00004230 }
Chris Lattner13c78e22005-09-02 00:18:10 +00004231 case ISD::ANY_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004232 case ISD::ZERO_EXTEND:
4233 case ISD::SIGN_EXTEND:
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004234 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner456a93a2006-01-28 07:39:30 +00004235 case Expand: assert(0 && "Shouldn't need to expand other operators here!");
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004236 case Legal:
4237 Tmp1 = LegalizeOp(Node->getOperand(0));
Scott Michel82747a52008-04-30 00:26:38 +00004238 Result = DAG.UpdateNodeOperands(Result, Tmp1);
Scott Michel0123b7d2008-02-15 23:05:48 +00004239 if (TLI.getOperationAction(Node->getOpcode(), Node->getValueType(0)) ==
4240 TargetLowering::Custom) {
Scott Michel82747a52008-04-30 00:26:38 +00004241 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004242 if (Tmp1.getNode()) Result = Tmp1;
Scott Michel0123b7d2008-02-15 23:05:48 +00004243 }
Chris Lattnerfa9c8012005-07-28 23:31:12 +00004244 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004245 case Promote:
4246 switch (Node->getOpcode()) {
Chris Lattner13c78e22005-09-02 00:18:10 +00004247 case ISD::ANY_EXTEND:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004248 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004249 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Tmp1);
Chris Lattner13c78e22005-09-02 00:18:10 +00004250 break;
Chris Lattner1713e732005-01-16 00:38:00 +00004251 case ISD::ZERO_EXTEND:
4252 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004253 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4254 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004255 Node->getOperand(0).getValueType());
Chris Lattner03c85462005-01-15 05:21:40 +00004256 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004257 case ISD::SIGN_EXTEND:
Chris Lattner1713e732005-01-16 00:38:00 +00004258 Result = PromoteOp(Node->getOperand(0));
Dale Johannesenca57b842009-02-02 23:46:53 +00004259 Result = DAG.getNode(ISD::ANY_EXTEND, dl, Op.getValueType(), Result);
4260 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004261 Result,
4262 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner1713e732005-01-16 00:38:00 +00004263 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004264 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00004265 }
4266 break;
Chris Lattner0f69b292005-01-15 06:18:18 +00004267 case ISD::FP_ROUND_INREG:
Chris Lattner23993562005-04-13 02:38:47 +00004268 case ISD::SIGN_EXTEND_INREG: {
Chris Lattner0f69b292005-01-15 06:18:18 +00004269 Tmp1 = LegalizeOp(Node->getOperand(0));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004270 MVT ExtraVT = cast<VTSDNode>(Node->getOperand(1))->getVT();
Chris Lattner45b8caf2005-01-15 07:15:18 +00004271
4272 // If this operation is not supported, convert it to a shl/shr or load/store
4273 // pair.
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004274 switch (TLI.getOperationAction(Node->getOpcode(), ExtraVT)) {
4275 default: assert(0 && "This action not supported for this op yet!");
4276 case TargetLowering::Legal:
Chris Lattnerc52ad4f2006-01-28 10:58:55 +00004277 Result = DAG.UpdateNodeOperands(Result, Tmp1, Node->getOperand(1));
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004278 break;
4279 case TargetLowering::Expand:
Chris Lattner45b8caf2005-01-15 07:15:18 +00004280 // If this is an integer extend and shifts are supported, do that.
Chris Lattner23993562005-04-13 02:38:47 +00004281 if (Node->getOpcode() == ISD::SIGN_EXTEND_INREG) {
Chris Lattner45b8caf2005-01-15 07:15:18 +00004282 // NOTE: we could fall back on load/store here too for targets without
4283 // SAR. However, it is doubtful that any exist.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004284 unsigned BitsDiff = Node->getValueType(0).getSizeInBits() -
4285 ExtraVT.getSizeInBits();
Dan Gohman475871a2008-07-27 21:46:04 +00004286 SDValue ShiftCst = DAG.getConstant(BitsDiff, TLI.getShiftAmountTy());
Dale Johannesenca57b842009-02-02 23:46:53 +00004287 Result = DAG.getNode(ISD::SHL, dl, Node->getValueType(0),
Chris Lattner45b8caf2005-01-15 07:15:18 +00004288 Node->getOperand(0), ShiftCst);
Dale Johannesenca57b842009-02-02 23:46:53 +00004289 Result = DAG.getNode(ISD::SRA, dl, Node->getValueType(0),
Chris Lattner45b8caf2005-01-15 07:15:18 +00004290 Result, ShiftCst);
4291 } else if (Node->getOpcode() == ISD::FP_ROUND_INREG) {
Jim Laskey2d84c4c2006-10-11 17:52:19 +00004292 // The only way we can lower this is to turn it into a TRUNCSTORE,
Chris Lattner45b8caf2005-01-15 07:15:18 +00004293 // EXTLOAD pair, targetting a temporary location (a stack slot).
4294
4295 // NOTE: there is a choice here between constantly creating new stack
4296 // slots and always reusing the same one. We currently always create
4297 // new ones, as reuse may inhibit scheduling.
Scott Michelfdc40a02009-02-17 22:15:04 +00004298 Result = EmitStackConvert(Node->getOperand(0), ExtraVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00004299 Node->getValueType(0), dl);
Chris Lattner45b8caf2005-01-15 07:15:18 +00004300 } else {
4301 assert(0 && "Unknown op");
4302 }
Chris Lattner55ba8fb2005-01-16 07:29:19 +00004303 break;
Chris Lattner45b8caf2005-01-15 07:15:18 +00004304 }
Chris Lattner0f69b292005-01-15 06:18:18 +00004305 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00004306 }
Duncan Sands36397f52007-07-27 12:58:54 +00004307 case ISD::TRAMPOLINE: {
Dan Gohman475871a2008-07-27 21:46:04 +00004308 SDValue Ops[6];
Duncan Sands36397f52007-07-27 12:58:54 +00004309 for (unsigned i = 0; i != 6; ++i)
4310 Ops[i] = LegalizeOp(Node->getOperand(i));
4311 Result = DAG.UpdateNodeOperands(Result, Ops, 6);
4312 // The only option for this node is to custom lower it.
4313 Result = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004314 assert(Result.getNode() && "Should always custom lower!");
Duncan Sandsf7331b32007-09-11 14:10:23 +00004315
4316 // Since trampoline produces two values, make sure to remember that we
4317 // legalized both of them.
4318 Tmp1 = LegalizeOp(Result.getValue(1));
4319 Result = LegalizeOp(Result);
Dan Gohman475871a2008-07-27 21:46:04 +00004320 AddLegalizedOperand(SDValue(Node, 0), Result);
4321 AddLegalizedOperand(SDValue(Node, 1), Tmp1);
Gabor Greif99a6cb92008-08-26 22:36:50 +00004322 return Op.getResNo() ? Tmp1 : Result;
Duncan Sands36397f52007-07-27 12:58:54 +00004323 }
Dan Gohman9c78a392008-05-14 00:43:10 +00004324 case ISD::FLT_ROUNDS_: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004325 MVT VT = Node->getValueType(0);
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004326 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4327 default: assert(0 && "This action not supported for this op yet!");
4328 case TargetLowering::Custom:
4329 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004330 if (Result.getNode()) break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004331 // Fall Thru
4332 case TargetLowering::Legal:
4333 // If this operation is not supported, lower it to constant 1
4334 Result = DAG.getConstant(1, VT);
4335 break;
4336 }
Dan Gohman9ab9ee82008-05-12 16:07:15 +00004337 break;
Anton Korobeynikov917c2a62007-11-15 23:25:33 +00004338 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004339 case ISD::TRAP: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00004340 MVT VT = Node->getValueType(0);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004341 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4342 default: assert(0 && "This action not supported for this op yet!");
Chris Lattner41bab0b2008-01-15 21:58:08 +00004343 case TargetLowering::Legal:
4344 Tmp1 = LegalizeOp(Node->getOperand(0));
4345 Result = DAG.UpdateNodeOperands(Result, Tmp1);
4346 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004347 case TargetLowering::Custom:
4348 Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00004349 if (Result.getNode()) break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004350 // Fall Thru
Chris Lattner41bab0b2008-01-15 21:58:08 +00004351 case TargetLowering::Expand:
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004352 // If this operation is not supported, lower it to 'abort()' call
Chris Lattner41bab0b2008-01-15 21:58:08 +00004353 Tmp1 = LegalizeOp(Node->getOperand(0));
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004354 TargetLowering::ArgListTy Args;
Bob Wilsonec15bbf2009-04-10 18:48:47 +00004355 std::pair<SDValue, SDValue> CallResult =
Duncan Sands00fee652008-02-14 17:28:50 +00004356 TLI.LowerCallTo(Tmp1, Type::VoidTy,
Dale Johannesen86098bd2008-09-26 19:31:26 +00004357 false, false, false, false, CallingConv::C, false,
Bill Wendling056292f2008-09-16 21:48:12 +00004358 DAG.getExternalSymbol("abort", TLI.getPointerTy()),
Dale Johannesen7d2ad622009-01-30 23:10:59 +00004359 Args, DAG, dl);
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004360 Result = CallResult.second;
4361 break;
4362 }
Chris Lattner41bab0b2008-01-15 21:58:08 +00004363 break;
Anton Korobeynikov66fac792008-01-15 07:02:33 +00004364 }
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004365
Bill Wendling74c37652008-12-09 22:08:41 +00004366 case ISD::SADDO:
4367 case ISD::SSUBO: {
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004368 MVT VT = Node->getValueType(0);
4369 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4370 default: assert(0 && "This action not supported for this op yet!");
4371 case TargetLowering::Custom:
4372 Result = TLI.LowerOperation(Op, DAG);
4373 if (Result.getNode()) break;
4374 // FALLTHROUGH
4375 case TargetLowering::Legal: {
4376 SDValue LHS = LegalizeOp(Node->getOperand(0));
4377 SDValue RHS = LegalizeOp(Node->getOperand(1));
4378
Scott Michelfdc40a02009-02-17 22:15:04 +00004379 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::SADDO ?
Dale Johannesenca57b842009-02-02 23:46:53 +00004380 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling74c37652008-12-09 22:08:41 +00004381 LHS, RHS);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004382 MVT OType = Node->getValueType(1);
4383
Bill Wendlinga6af91a2008-11-25 08:19:22 +00004384 SDValue Zero = DAG.getConstant(0, LHS.getValueType());
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004385
Bill Wendling740464e2008-11-25 19:40:17 +00004386 // LHSSign -> LHS >= 0
4387 // RHSSign -> RHS >= 0
4388 // SumSign -> Sum >= 0
4389 //
Bill Wendling74c37652008-12-09 22:08:41 +00004390 // Add:
Bill Wendling740464e2008-11-25 19:40:17 +00004391 // Overflow -> (LHSSign == RHSSign) && (LHSSign != SumSign)
Bill Wendling74c37652008-12-09 22:08:41 +00004392 // Sub:
4393 // Overflow -> (LHSSign != RHSSign) && (LHSSign != SumSign)
Bill Wendling740464e2008-11-25 19:40:17 +00004394 //
Dale Johannesenca57b842009-02-02 23:46:53 +00004395 SDValue LHSSign = DAG.getSetCC(dl, OType, LHS, Zero, ISD::SETGE);
4396 SDValue RHSSign = DAG.getSetCC(dl, OType, RHS, Zero, ISD::SETGE);
Scott Michelfdc40a02009-02-17 22:15:04 +00004397 SDValue SignsMatch = DAG.getSetCC(dl, OType, LHSSign, RHSSign,
4398 Node->getOpcode() == ISD::SADDO ?
Bill Wendling74c37652008-12-09 22:08:41 +00004399 ISD::SETEQ : ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004400
Dale Johannesenca57b842009-02-02 23:46:53 +00004401 SDValue SumSign = DAG.getSetCC(dl, OType, Sum, Zero, ISD::SETGE);
4402 SDValue SumSignNE = DAG.getSetCC(dl, OType, LHSSign, SumSign, ISD::SETNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004403
Dale Johannesenca57b842009-02-02 23:46:53 +00004404 SDValue Cmp = DAG.getNode(ISD::AND, dl, OType, SignsMatch, SumSignNE);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004405
4406 MVT ValueVTs[] = { LHS.getValueType(), OType };
4407 SDValue Ops[] = { Sum, Cmp };
4408
Scott Michelfdc40a02009-02-17 22:15:04 +00004409 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00004410 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sandsaaffa052008-12-01 11:41:29 +00004411 &Ops[0], 2);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004412 SDNode *RNode = Result.getNode();
Dan Gohmanc23e4962009-04-15 20:06:30 +00004413 DAG.ReplaceAllUsesWith(Node, RNode);
Bill Wendlingc0062fb2008-11-25 08:12:19 +00004414 break;
4415 }
4416 }
4417
4418 break;
4419 }
Bill Wendling74c37652008-12-09 22:08:41 +00004420 case ISD::UADDO:
4421 case ISD::USUBO: {
Bill Wendling41ea7e72008-11-24 19:21:46 +00004422 MVT VT = Node->getValueType(0);
4423 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4424 default: assert(0 && "This action not supported for this op yet!");
4425 case TargetLowering::Custom:
4426 Result = TLI.LowerOperation(Op, DAG);
4427 if (Result.getNode()) break;
4428 // FALLTHROUGH
4429 case TargetLowering::Legal: {
4430 SDValue LHS = LegalizeOp(Node->getOperand(0));
4431 SDValue RHS = LegalizeOp(Node->getOperand(1));
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004432
Bill Wendling74c37652008-12-09 22:08:41 +00004433 SDValue Sum = DAG.getNode(Node->getOpcode() == ISD::UADDO ?
Dale Johannesenca57b842009-02-02 23:46:53 +00004434 ISD::ADD : ISD::SUB, dl, LHS.getValueType(),
Bill Wendling74c37652008-12-09 22:08:41 +00004435 LHS, RHS);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004436 MVT OType = Node->getValueType(1);
Dale Johannesenca57b842009-02-02 23:46:53 +00004437 SDValue Cmp = DAG.getSetCC(dl, OType, Sum, LHS,
Scott Michelfdc40a02009-02-17 22:15:04 +00004438 Node->getOpcode () == ISD::UADDO ?
Bill Wendling74c37652008-12-09 22:08:41 +00004439 ISD::SETULT : ISD::SETUGT);
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004440
Bill Wendling41ea7e72008-11-24 19:21:46 +00004441 MVT ValueVTs[] = { LHS.getValueType(), OType };
4442 SDValue Ops[] = { Sum, Cmp };
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004443
Scott Michelfdc40a02009-02-17 22:15:04 +00004444 Result = DAG.getNode(ISD::MERGE_VALUES, dl,
Dale Johannesenca57b842009-02-02 23:46:53 +00004445 DAG.getVTList(&ValueVTs[0], 2),
Duncan Sandsaaffa052008-12-01 11:41:29 +00004446 &Ops[0], 2);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004447 SDNode *RNode = Result.getNode();
Dan Gohmanc23e4962009-04-15 20:06:30 +00004448 DAG.ReplaceAllUsesWith(Node, RNode);
Bill Wendling41ea7e72008-11-24 19:21:46 +00004449 break;
4450 }
4451 }
4452
Bill Wendling8ac0d4b2008-11-22 00:22:52 +00004453 break;
4454 }
Bill Wendling74c37652008-12-09 22:08:41 +00004455 case ISD::SMULO:
4456 case ISD::UMULO: {
4457 MVT VT = Node->getValueType(0);
4458 switch (TLI.getOperationAction(Node->getOpcode(), VT)) {
4459 default: assert(0 && "This action is not supported at all!");
4460 case TargetLowering::Custom:
4461 Result = TLI.LowerOperation(Op, DAG);
4462 if (Result.getNode()) break;
4463 // Fall Thru
4464 case TargetLowering::Legal:
4465 // FIXME: According to Hacker's Delight, this can be implemented in
4466 // target independent lowering, but it would be inefficient, since it
Bill Wendlingbc5e15e2008-12-10 02:01:32 +00004467 // requires a division + a branch.
Scott Michelfdc40a02009-02-17 22:15:04 +00004468 assert(0 && "Target independent lowering is not supported for SMULO/UMULO!");
Bill Wendling74c37652008-12-09 22:08:41 +00004469 break;
4470 }
4471 break;
4472 }
4473
Chris Lattner45b8caf2005-01-15 07:15:18 +00004474 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004475
Chris Lattner4ddd2832006-04-08 04:13:17 +00004476 assert(Result.getValueType() == Op.getValueType() &&
4477 "Bad legalization!");
Scott Michelfdc40a02009-02-17 22:15:04 +00004478
Chris Lattner456a93a2006-01-28 07:39:30 +00004479 // Make sure that the generated code is itself legal.
4480 if (Result != Op)
4481 Result = LegalizeOp(Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004482
Chris Lattner45982da2005-05-12 16:53:42 +00004483 // Note that LegalizeOp may be reentered even from single-use nodes, which
4484 // means that we always must cache transformed nodes.
4485 AddLegalizedOperand(Op, Result);
Chris Lattner3e928bb2005-01-07 07:47:09 +00004486 return Result;
4487}
4488
Chris Lattner8b6fa222005-01-15 22:16:26 +00004489/// PromoteOp - Given an operation that produces a value in an invalid type,
4490/// promote it to compute the value into a larger type. The produced value will
4491/// have the correct bits for the low portion of the register, but no guarantee
4492/// is made about the top bits: it may be zero, sign-extended, or garbage.
Dan Gohman475871a2008-07-27 21:46:04 +00004493SDValue SelectionDAGLegalize::PromoteOp(SDValue Op) {
Eli Friedman1fde9c52009-05-24 02:46:31 +00004494 assert(0 && "This should be dead!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00004495 MVT VT = Op.getValueType();
4496 MVT NVT = TLI.getTypeToTransformTo(VT);
Chris Lattner03c85462005-01-15 05:21:40 +00004497 assert(getTypeAction(VT) == Promote &&
4498 "Caller should expand or legalize operands that are not promotable!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004499 assert(NVT.bitsGT(VT) && NVT.isInteger() == VT.isInteger() &&
Chris Lattner03c85462005-01-15 05:21:40 +00004500 "Cannot promote to smaller type!");
4501
Dan Gohman475871a2008-07-27 21:46:04 +00004502 SDValue Tmp1, Tmp2, Tmp3;
4503 SDValue Result;
Gabor Greifba36cb52008-08-28 21:40:38 +00004504 SDNode *Node = Op.getNode();
Dale Johannesen8a782a22009-02-02 22:12:50 +00004505 DebugLoc dl = Node->getDebugLoc();
Chris Lattner03c85462005-01-15 05:21:40 +00004506
Dan Gohman475871a2008-07-27 21:46:04 +00004507 DenseMap<SDValue, SDValue>::iterator I = PromotedNodes.find(Op);
Chris Lattner6fdcb252005-09-02 20:32:45 +00004508 if (I != PromotedNodes.end()) return I->second;
Chris Lattner45982da2005-05-12 16:53:42 +00004509
Chris Lattner03c85462005-01-15 05:21:40 +00004510 switch (Node->getOpcode()) {
Chris Lattnerd5d0f9b2005-08-16 21:55:35 +00004511 case ISD::CopyFromReg:
4512 assert(0 && "CopyFromReg must be legal!");
Chris Lattner03c85462005-01-15 05:21:40 +00004513 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004514#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00004515 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00004516#endif
Chris Lattner03c85462005-01-15 05:21:40 +00004517 assert(0 && "Do not know how to promote this operator!");
4518 abort();
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004519 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00004520 Result = DAG.getUNDEF(NVT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00004521 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004522 case ISD::Constant:
Chris Lattnerec176e32005-08-30 16:56:19 +00004523 if (VT != MVT::i1)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004524 Result = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Op);
Chris Lattnerec176e32005-08-30 16:56:19 +00004525 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00004526 Result = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004527 assert(isa<ConstantSDNode>(Result) && "Didn't constant fold zext?");
4528 break;
4529 case ISD::ConstantFP:
Dale Johannesen8a782a22009-02-02 22:12:50 +00004530 Result = DAG.getNode(ISD::FP_EXTEND, dl, NVT, Op);
Chris Lattner03c85462005-01-15 05:21:40 +00004531 assert(isa<ConstantFPSDNode>(Result) && "Didn't constant fold fp_extend?");
4532 break;
Chris Lattneref5cd1d2005-01-18 17:54:55 +00004533
Duncan Sands5480c042009-01-01 15:52:00 +00004534 case ISD::SETCC: {
4535 MVT VT0 = Node->getOperand(0).getValueType();
4536 assert(isTypeLegal(TLI.getSetCCResultType(VT0))
Nate Begeman5922f562008-03-14 00:53:31 +00004537 && "SetCC type is not legal??");
Dale Johannesen8a782a22009-02-02 22:12:50 +00004538 Result = DAG.getNode(ISD::SETCC, dl, TLI.getSetCCResultType(VT0),
Nate Begeman5922f562008-03-14 00:53:31 +00004539 Node->getOperand(0), Node->getOperand(1),
4540 Node->getOperand(2));
Chris Lattner82fbfb62005-01-18 02:59:52 +00004541 break;
Duncan Sands5480c042009-01-01 15:52:00 +00004542 }
Chris Lattner03c85462005-01-15 05:21:40 +00004543 case ISD::TRUNCATE:
4544 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4545 case Legal:
4546 Result = LegalizeOp(Node->getOperand(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00004547 assert(Result.getValueType().bitsGE(NVT) &&
Chris Lattner03c85462005-01-15 05:21:40 +00004548 "This truncation doesn't make sense!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00004549 if (Result.getValueType().bitsGT(NVT)) // Truncate to NVT instead of VT
Dale Johannesen8a782a22009-02-02 22:12:50 +00004550 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Result);
Chris Lattner03c85462005-01-15 05:21:40 +00004551 break;
Chris Lattnere76ad6d2005-01-28 22:52:50 +00004552 case Promote:
4553 // The truncation is not required, because we don't guarantee anything
4554 // about high bits anyway.
4555 Result = PromoteOp(Node->getOperand(0));
4556 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004557 case Expand:
Nate Begeman79e46ac2005-04-04 00:57:08 +00004558 ExpandOp(Node->getOperand(0), Tmp1, Tmp2);
4559 // Truncate the low part of the expanded value to the result type
Dale Johannesen8a782a22009-02-02 22:12:50 +00004560 Result = DAG.getNode(ISD::TRUNCATE, dl, NVT, Tmp1);
Chris Lattner03c85462005-01-15 05:21:40 +00004561 }
4562 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004563 case ISD::SIGN_EXTEND:
4564 case ISD::ZERO_EXTEND:
Chris Lattner13c78e22005-09-02 00:18:10 +00004565 case ISD::ANY_EXTEND:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004566 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4567 case Expand: assert(0 && "BUG: Smaller reg should have been promoted!");
4568 case Legal:
4569 // Input is legal? Just do extend all the way to the larger type.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004570 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004571 break;
4572 case Promote:
4573 // Promote the reg if it's smaller.
4574 Result = PromoteOp(Node->getOperand(0));
4575 // The high bits are not guaranteed to be anything. Insert an extend.
4576 if (Node->getOpcode() == ISD::SIGN_EXTEND)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004577 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004578 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner13c78e22005-09-02 00:18:10 +00004579 else if (Node->getOpcode() == ISD::ZERO_EXTEND)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004580 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004581 Node->getOperand(0).getValueType());
Chris Lattner8b6fa222005-01-15 22:16:26 +00004582 break;
4583 }
4584 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00004585 case ISD::CONVERT_RNDSAT: {
4586 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
4587 assert ((CvtCode == ISD::CVT_SS || CvtCode == ISD::CVT_SU ||
4588 CvtCode == ISD::CVT_US || CvtCode == ISD::CVT_UU ||
4589 CvtCode == ISD::CVT_SF || CvtCode == ISD::CVT_UF) &&
4590 "can only promote integers");
Dale Johannesenc460ae92009-02-04 00:13:36 +00004591 Result = DAG.getConvertRndSat(NVT, dl, Node->getOperand(0),
Mon P Wang77cdf302008-11-10 20:54:11 +00004592 Node->getOperand(1), Node->getOperand(2),
4593 Node->getOperand(3), Node->getOperand(4),
4594 CvtCode);
4595 break;
4596
4597 }
Chris Lattner35481892005-12-23 00:16:34 +00004598 case ISD::BIT_CONVERT:
Chris Lattner1401d152008-01-16 07:45:30 +00004599 Result = EmitStackConvert(Node->getOperand(0), Node->getValueType(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00004600 Node->getValueType(0), dl);
Chris Lattner35481892005-12-23 00:16:34 +00004601 Result = PromoteOp(Result);
4602 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00004603
Chris Lattner8b6fa222005-01-15 22:16:26 +00004604 case ISD::FP_EXTEND:
4605 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
4606 case ISD::FP_ROUND:
4607 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4608 case Expand: assert(0 && "BUG: Cannot expand FP regs!");
4609 case Promote: assert(0 && "Unreachable with 2 FP types!");
4610 case Legal:
Chris Lattner0bd48932008-01-17 07:00:52 +00004611 if (Node->getConstantOperandVal(1) == 0) {
4612 // Input is legal? Do an FP_ROUND_INREG.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004613 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Node->getOperand(0),
Chris Lattner0bd48932008-01-17 07:00:52 +00004614 DAG.getValueType(VT));
4615 } else {
4616 // Just remove the truncate, it isn't affecting the value.
Scott Michelfdc40a02009-02-17 22:15:04 +00004617 Result = DAG.getNode(ISD::FP_ROUND, dl, NVT, Node->getOperand(0),
Chris Lattner0bd48932008-01-17 07:00:52 +00004618 Node->getOperand(1));
4619 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004620 break;
4621 }
4622 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004623 case ISD::SINT_TO_FP:
4624 case ISD::UINT_TO_FP:
4625 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4626 case Legal:
Chris Lattner77e77a62005-01-21 06:05:23 +00004627 // No extra round required here.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004628 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Node->getOperand(0));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004629 break;
4630
4631 case Promote:
4632 Result = PromoteOp(Node->getOperand(0));
4633 if (Node->getOpcode() == ISD::SINT_TO_FP)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004634 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Result.getValueType(),
Chris Lattner15e4b012005-07-10 00:07:11 +00004635 Result,
4636 DAG.getValueType(Node->getOperand(0).getValueType()));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004637 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00004638 Result = DAG.getZeroExtendInReg(Result, dl,
Chris Lattner23993562005-04-13 02:38:47 +00004639 Node->getOperand(0).getValueType());
Chris Lattner77e77a62005-01-21 06:05:23 +00004640 // No extra round required here.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004641 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Result);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004642 break;
4643 case Expand:
Chris Lattner77e77a62005-01-21 06:05:23 +00004644 Result = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, NVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00004645 Node->getOperand(0), dl);
Chris Lattner77e77a62005-01-21 06:05:23 +00004646 // Round if we cannot tolerate excess precision.
4647 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004648 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004649 DAG.getValueType(VT));
Chris Lattner77e77a62005-01-21 06:05:23 +00004650 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004651 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004652 break;
4653
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004654 case ISD::SIGN_EXTEND_INREG:
4655 Result = PromoteOp(Node->getOperand(0));
Scott Michelfdc40a02009-02-17 22:15:04 +00004656 Result = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Result,
Chris Lattner5e3c5b42005-12-09 17:32:47 +00004657 Node->getOperand(1));
4658 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004659 case ISD::FP_TO_SINT:
4660 case ISD::FP_TO_UINT:
4661 switch (getTypeAction(Node->getOperand(0).getValueType())) {
4662 case Legal:
Evan Cheng0b1b9dc2006-12-16 02:10:30 +00004663 case Expand:
Chris Lattner456a93a2006-01-28 07:39:30 +00004664 Tmp1 = Node->getOperand(0);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004665 break;
4666 case Promote:
4667 // The input result is prerounded, so we don't have to do anything
4668 // special.
4669 Tmp1 = PromoteOp(Node->getOperand(0));
4670 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004671 }
Nate Begemand2558e32005-08-14 01:20:53 +00004672 // If we're promoting a UINT to a larger size, check to see if the new node
4673 // will be legal. If it isn't, check to see if FP_TO_SINT is legal, since
4674 // we can use that instead. This allows us to generate better code for
4675 // FP_TO_UINT for small destination sizes on targets where FP_TO_UINT is not
4676 // legal, such as PowerPC.
Scott Michelfdc40a02009-02-17 22:15:04 +00004677 if (Node->getOpcode() == ISD::FP_TO_UINT &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00004678 !TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NVT) &&
4679 (TLI.isOperationLegalOrCustom(ISD::FP_TO_SINT, NVT) ||
Nate Begemanb7f6ef12005-10-25 23:47:25 +00004680 TLI.getOperationAction(ISD::FP_TO_SINT, NVT)==TargetLowering::Custom)){
Dale Johannesen8a782a22009-02-02 22:12:50 +00004681 Result = DAG.getNode(ISD::FP_TO_SINT, dl, NVT, Tmp1);
Nate Begemand2558e32005-08-14 01:20:53 +00004682 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00004683 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Nate Begemand2558e32005-08-14 01:20:53 +00004684 }
Chris Lattner8b6fa222005-01-15 22:16:26 +00004685 break;
4686
Chris Lattner2c8086f2005-04-02 05:00:07 +00004687 case ISD::FABS:
4688 case ISD::FNEG:
4689 Tmp1 = PromoteOp(Node->getOperand(0));
4690 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004691 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner2c8086f2005-04-02 05:00:07 +00004692 // NOTE: we do not have to do any extra rounding here for
4693 // NoExcessFPPrecision, because we know the input will have the appropriate
4694 // precision, and these operations don't modify precision at all.
4695 break;
4696
Dale Johannesen7794f2a2008-09-04 00:47:13 +00004697 case ISD::FLOG:
4698 case ISD::FLOG2:
4699 case ISD::FLOG10:
4700 case ISD::FEXP:
4701 case ISD::FEXP2:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004702 case ISD::FSQRT:
4703 case ISD::FSIN:
4704 case ISD::FCOS:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00004705 case ISD::FTRUNC:
4706 case ISD::FFLOOR:
4707 case ISD::FCEIL:
4708 case ISD::FRINT:
4709 case ISD::FNEARBYINT:
Chris Lattnerda6ba872005-04-28 21:44:33 +00004710 Tmp1 = PromoteOp(Node->getOperand(0));
4711 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004712 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004713 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004714 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004715 DAG.getValueType(VT));
Chris Lattnerda6ba872005-04-28 21:44:33 +00004716 break;
4717
Evan Cheng9d24ac52008-09-09 23:35:53 +00004718 case ISD::FPOW:
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004719 case ISD::FPOWI: {
Evan Cheng9d24ac52008-09-09 23:35:53 +00004720 // Promote f32 pow(i) to f64 pow(i). Note that this could insert a libcall
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004721 // directly as well, which may be better.
4722 Tmp1 = PromoteOp(Node->getOperand(0));
Evan Cheng9d24ac52008-09-09 23:35:53 +00004723 Tmp2 = Node->getOperand(1);
4724 if (Node->getOpcode() == ISD::FPOW)
4725 Tmp2 = PromoteOp(Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004726 assert(Tmp1.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004727 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004728 if (NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004729 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner8b2d42c2007-03-03 23:43:21 +00004730 DAG.getValueType(VT));
4731 break;
4732 }
Scott Michelfdc40a02009-02-17 22:15:04 +00004733
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004734 case ISD::ATOMIC_CMP_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004735 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004736 Tmp2 = PromoteOp(Node->getOperand(2));
4737 Tmp3 = PromoteOp(Node->getOperand(3));
Scott Michelfdc40a02009-02-17 22:15:04 +00004738 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
4739 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004740 AtomNode->getBasePtr(), Tmp2, Tmp3,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004741 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004742 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004743 // Remember that we legalized the chain.
4744 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4745 break;
4746 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00004747 case ISD::ATOMIC_LOAD_ADD:
4748 case ISD::ATOMIC_LOAD_SUB:
4749 case ISD::ATOMIC_LOAD_AND:
4750 case ISD::ATOMIC_LOAD_OR:
4751 case ISD::ATOMIC_LOAD_XOR:
4752 case ISD::ATOMIC_LOAD_NAND:
4753 case ISD::ATOMIC_LOAD_MIN:
4754 case ISD::ATOMIC_LOAD_MAX:
4755 case ISD::ATOMIC_LOAD_UMIN:
4756 case ISD::ATOMIC_LOAD_UMAX:
4757 case ISD::ATOMIC_SWAP: {
Mon P Wang28873102008-06-25 08:15:39 +00004758 AtomicSDNode* AtomNode = cast<AtomicSDNode>(Node);
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004759 Tmp2 = PromoteOp(Node->getOperand(2));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004760 Result = DAG.getAtomic(Node->getOpcode(), dl, AtomNode->getMemoryVT(),
Scott Michelfdc40a02009-02-17 22:15:04 +00004761 AtomNode->getChain(),
Mon P Wang28873102008-06-25 08:15:39 +00004762 AtomNode->getBasePtr(), Tmp2,
Dan Gohmanfd4418f2008-06-25 16:07:49 +00004763 AtomNode->getSrcValue(),
Mon P Wang28873102008-06-25 08:15:39 +00004764 AtomNode->getAlignment());
Andrew Lenharthab0b9492008-02-21 06:45:13 +00004765 // Remember that we legalized the chain.
4766 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
4767 break;
4768 }
4769
Chris Lattner03c85462005-01-15 05:21:40 +00004770 case ISD::AND:
4771 case ISD::OR:
4772 case ISD::XOR:
Chris Lattner0f69b292005-01-15 06:18:18 +00004773 case ISD::ADD:
Chris Lattner8b6fa222005-01-15 22:16:26 +00004774 case ISD::SUB:
Chris Lattner0f69b292005-01-15 06:18:18 +00004775 case ISD::MUL:
4776 // The input may have strange things in the top bits of the registers, but
Chris Lattner01b3d732005-09-28 22:28:18 +00004777 // these operations don't care. They may have weird bits going out, but
Chris Lattner0f69b292005-01-15 06:18:18 +00004778 // that too is okay if they are integer operations.
4779 Tmp1 = PromoteOp(Node->getOperand(0));
4780 Tmp2 = PromoteOp(Node->getOperand(1));
4781 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004782 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner01b3d732005-09-28 22:28:18 +00004783 break;
4784 case ISD::FADD:
4785 case ISD::FSUB:
4786 case ISD::FMUL:
Chris Lattner01b3d732005-09-28 22:28:18 +00004787 Tmp1 = PromoteOp(Node->getOperand(0));
4788 Tmp2 = PromoteOp(Node->getOperand(1));
4789 assert(Tmp1.getValueType() == NVT && Tmp2.getValueType() == NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004790 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00004791
Chris Lattner01b3d732005-09-28 22:28:18 +00004792 // Floating point operations will give excess precision that we may not be
4793 // able to tolerate. If we DO allow excess precision, just leave it,
4794 // otherwise excise it.
Chris Lattner8b6fa222005-01-15 22:16:26 +00004795 // FIXME: Why would we need to round FP ops more than integer ones?
4796 // Is Round(Add(Add(A,B),C)) != Round(Add(Round(Add(A,B)), C))
Chris Lattner01b3d732005-09-28 22:28:18 +00004797 if (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 Lattner0f69b292005-01-15 06:18:18 +00004800 break;
4801
Chris Lattner8b6fa222005-01-15 22:16:26 +00004802 case ISD::SDIV:
4803 case ISD::SREM:
4804 // These operators require that their input be sign extended.
4805 Tmp1 = PromoteOp(Node->getOperand(0));
4806 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004807 if (NVT.isInteger()) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00004808 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Chris Lattner15e4b012005-07-10 00:07:11 +00004809 DAG.getValueType(VT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004810 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Chris Lattner15e4b012005-07-10 00:07:11 +00004811 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004812 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00004813 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004814
4815 // Perform FP_ROUND: this is probably overly pessimistic.
Duncan Sands83ec4b62008-06-06 12:08:01 +00004816 if (NVT.isFloatingPoint() && NoExcessFPPrecision)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004817 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner15e4b012005-07-10 00:07:11 +00004818 DAG.getValueType(VT));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004819 break;
Chris Lattner01b3d732005-09-28 22:28:18 +00004820 case ISD::FDIV:
4821 case ISD::FREM:
Chris Lattnera09f8482006-03-05 05:09:38 +00004822 case ISD::FCOPYSIGN:
Chris Lattner01b3d732005-09-28 22:28:18 +00004823 // These operators require that their input be fp extended.
Nate Begemanec57fd92006-05-09 18:20:51 +00004824 switch (getTypeAction(Node->getOperand(0).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004825 case Expand: assert(0 && "not implemented");
4826 case Legal: Tmp1 = LegalizeOp(Node->getOperand(0)); break;
4827 case Promote: Tmp1 = PromoteOp(Node->getOperand(0)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004828 }
4829 switch (getTypeAction(Node->getOperand(1).getValueType())) {
Chris Lattner0bd48932008-01-17 07:00:52 +00004830 case Expand: assert(0 && "not implemented");
4831 case Legal: Tmp2 = LegalizeOp(Node->getOperand(1)); break;
4832 case Promote: Tmp2 = PromoteOp(Node->getOperand(1)); break;
Nate Begemanec57fd92006-05-09 18:20:51 +00004833 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00004834 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Scott Michelfdc40a02009-02-17 22:15:04 +00004835
Chris Lattner01b3d732005-09-28 22:28:18 +00004836 // Perform FP_ROUND: this is probably overly pessimistic.
Chris Lattnera09f8482006-03-05 05:09:38 +00004837 if (NoExcessFPPrecision && Node->getOpcode() != ISD::FCOPYSIGN)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004838 Result = DAG.getNode(ISD::FP_ROUND_INREG, dl, NVT, Result,
Chris Lattner01b3d732005-09-28 22:28:18 +00004839 DAG.getValueType(VT));
4840 break;
Chris Lattner8b6fa222005-01-15 22:16:26 +00004841
4842 case ISD::UDIV:
4843 case ISD::UREM:
4844 // These operators require that their input be zero extended.
4845 Tmp1 = PromoteOp(Node->getOperand(0));
4846 Tmp2 = PromoteOp(Node->getOperand(1));
Duncan Sands83ec4b62008-06-06 12:08:01 +00004847 assert(NVT.isInteger() && "Operators don't apply to FP!");
Dale Johannesen8a782a22009-02-02 22:12:50 +00004848 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4849 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
4850 Result = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1, Tmp2);
Chris Lattner8b6fa222005-01-15 22:16:26 +00004851 break;
4852
4853 case ISD::SHL:
4854 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004855 Result = DAG.getNode(ISD::SHL, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004856 break;
4857 case ISD::SRA:
4858 // The input value must be properly sign extended.
4859 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004860 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Chris Lattner15e4b012005-07-10 00:07:11 +00004861 DAG.getValueType(VT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004862 Result = DAG.getNode(ISD::SRA, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004863 break;
4864 case ISD::SRL:
4865 // The input value must be properly zero extended.
4866 Tmp1 = PromoteOp(Node->getOperand(0));
Dale Johannesen8a782a22009-02-02 22:12:50 +00004867 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
4868 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1, Node->getOperand(1));
Chris Lattner8b6fa222005-01-15 22:16:26 +00004869 break;
Nate Begeman0aed7842006-01-28 03:14:31 +00004870
4871 case ISD::VAARG:
Chris Lattner456a93a2006-01-28 07:39:30 +00004872 Tmp1 = Node->getOperand(0); // Get the chain.
4873 Tmp2 = Node->getOperand(1); // Get the pointer.
Nate Begeman0aed7842006-01-28 03:14:31 +00004874 if (TLI.getOperationAction(ISD::VAARG, VT) == TargetLowering::Custom) {
Dale Johannesenc460ae92009-02-04 00:13:36 +00004875 Tmp3 = DAG.getVAArg(VT, dl, Tmp1, Tmp2, Node->getOperand(2));
Duncan Sands126d9072008-07-04 11:47:58 +00004876 Result = TLI.LowerOperation(Tmp3, DAG);
Nate Begeman0aed7842006-01-28 03:14:31 +00004877 } else {
Dan Gohman69de1932008-02-06 22:27:42 +00004878 const Value *V = cast<SrcValueSDNode>(Node->getOperand(2))->getValue();
Dale Johannesenc460ae92009-02-04 00:13:36 +00004879 SDValue VAList = DAG.getLoad(TLI.getPointerTy(), dl, Tmp1, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004880 // Increment the pointer, VAList, to the next vaarg
Scott Michelfdc40a02009-02-17 22:15:04 +00004881 Tmp3 = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), VAList,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004882 DAG.getConstant(VT.getSizeInBits()/8,
Nate Begeman0aed7842006-01-28 03:14:31 +00004883 TLI.getPointerTy()));
4884 // Store the incremented VAList to the legalized pointer
Dale Johannesen8a782a22009-02-02 22:12:50 +00004885 Tmp3 = DAG.getStore(VAList.getValue(1), dl, Tmp3, Tmp2, V, 0);
Nate Begeman0aed7842006-01-28 03:14:31 +00004886 // Load the actual argument out of the pointer VAList
Dale Johannesen8a782a22009-02-02 22:12:50 +00004887 Result = DAG.getExtLoad(ISD::EXTLOAD, dl, NVT, Tmp3, VAList, NULL, 0, VT);
Nate Begeman0aed7842006-01-28 03:14:31 +00004888 }
4889 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004890 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Nate Begeman0aed7842006-01-28 03:14:31 +00004891 break;
4892
Evan Cheng466685d2006-10-09 20:57:25 +00004893 case ISD::LOAD: {
4894 LoadSDNode *LD = cast<LoadSDNode>(Node);
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004895 ISD::LoadExtType ExtType = ISD::isNON_EXTLoad(Node)
4896 ? ISD::EXTLOAD : LD->getExtensionType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00004897 Result = DAG.getExtLoad(ExtType, dl, NVT,
Evan Cheng62f2a3c2006-10-10 07:51:21 +00004898 LD->getChain(), LD->getBasePtr(),
Chris Lattner55b57082006-10-10 18:54:19 +00004899 LD->getSrcValue(), LD->getSrcValueOffset(),
Dan Gohmanb625f2f2008-01-30 00:15:11 +00004900 LD->getMemoryVT(),
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00004901 LD->isVolatile(),
4902 LD->getAlignment());
Chris Lattner03c85462005-01-15 05:21:40 +00004903 // Remember that we legalized the chain.
Chris Lattner456a93a2006-01-28 07:39:30 +00004904 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
Chris Lattner03c85462005-01-15 05:21:40 +00004905 break;
Evan Cheng466685d2006-10-09 20:57:25 +00004906 }
Scott Michel8bf61e82008-06-02 22:18:03 +00004907 case ISD::SELECT: {
Chris Lattner03c85462005-01-15 05:21:40 +00004908 Tmp2 = PromoteOp(Node->getOperand(1)); // Legalize the op0
4909 Tmp3 = PromoteOp(Node->getOperand(2)); // Legalize the op1
Scott Michel8bf61e82008-06-02 22:18:03 +00004910
Duncan Sands83ec4b62008-06-06 12:08:01 +00004911 MVT VT2 = Tmp2.getValueType();
Scott Michel8bf61e82008-06-02 22:18:03 +00004912 assert(VT2 == Tmp3.getValueType()
Scott Michelba12f572008-06-03 19:13:20 +00004913 && "PromoteOp SELECT: Operands 2 and 3 ValueTypes don't match");
4914 // Ensure that the resulting node is at least the same size as the operands'
4915 // value types, because we cannot assume that TLI.getSetCCValueType() is
4916 // constant.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004917 Result = DAG.getNode(ISD::SELECT, dl, VT2, Node->getOperand(0), Tmp2, Tmp3);
Chris Lattner03c85462005-01-15 05:21:40 +00004918 break;
Scott Michel8bf61e82008-06-02 22:18:03 +00004919 }
Nate Begeman9373a812005-08-10 20:51:12 +00004920 case ISD::SELECT_CC:
4921 Tmp2 = PromoteOp(Node->getOperand(2)); // True
4922 Tmp3 = PromoteOp(Node->getOperand(3)); // False
Dale Johannesen8a782a22009-02-02 22:12:50 +00004923 Result = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Chris Lattner456a93a2006-01-28 07:39:30 +00004924 Node->getOperand(1), Tmp2, Tmp3, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00004925 break;
Nate Begemand88fc032006-01-14 03:14:10 +00004926 case ISD::BSWAP:
4927 Tmp1 = Node->getOperand(0);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004928 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Tmp1);
4929 Tmp1 = DAG.getNode(ISD::BSWAP, dl, NVT, Tmp1);
4930 Result = DAG.getNode(ISD::SRL, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004931 DAG.getConstant(NVT.getSizeInBits() -
4932 VT.getSizeInBits(),
Nate Begemand88fc032006-01-14 03:14:10 +00004933 TLI.getShiftAmountTy()));
4934 break;
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004935 case ISD::CTPOP:
4936 case ISD::CTTZ:
4937 case ISD::CTLZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004938 // Zero extend the argument
Dale Johannesen8a782a22009-02-02 22:12:50 +00004939 Tmp1 = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004940 // Perform the larger operation, then subtract if needed.
Dale Johannesen8a782a22009-02-02 22:12:50 +00004941 Tmp1 = DAG.getNode(Node->getOpcode(), dl, NVT, Tmp1);
Chris Lattner456a93a2006-01-28 07:39:30 +00004942 switch(Node->getOpcode()) {
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004943 case ISD::CTPOP:
4944 Result = Tmp1;
4945 break;
4946 case ISD::CTTZ:
Chris Lattner456a93a2006-01-28 07:39:30 +00004947 // if Tmp1 == sizeinbits(NVT) then Tmp1 = sizeinbits(Old VT)
Dale Johannesen8a782a22009-02-02 22:12:50 +00004948 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(Tmp1.getValueType()), Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004949 DAG.getConstant(NVT.getSizeInBits(), NVT),
Dan Gohmanb55757e2007-05-18 17:52:13 +00004950 ISD::SETEQ);
Dale Johannesen8a782a22009-02-02 22:12:50 +00004951 Result = DAG.getNode(ISD::SELECT, dl, NVT, Tmp2,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004952 DAG.getConstant(VT.getSizeInBits(), NVT), Tmp1);
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004953 break;
4954 case ISD::CTLZ:
4955 //Tmp1 = Tmp1 - (sizeinbits(NVT) - sizeinbits(Old VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00004956 Result = DAG.getNode(ISD::SUB, dl, NVT, Tmp1,
Duncan Sands83ec4b62008-06-06 12:08:01 +00004957 DAG.getConstant(NVT.getSizeInBits() -
4958 VT.getSizeInBits(), NVT));
Andrew Lenharthfecf0952005-05-04 19:11:05 +00004959 break;
4960 }
4961 break;
Dan Gohman7f321562007-06-25 16:23:39 +00004962 case ISD::EXTRACT_SUBVECTOR:
4963 Result = PromoteOp(ExpandEXTRACT_SUBVECTOR(Op));
Dan Gohman65956352007-06-13 15:12:02 +00004964 break;
Chris Lattner4aab2f42006-04-02 05:06:04 +00004965 case ISD::EXTRACT_VECTOR_ELT:
4966 Result = PromoteOp(ExpandEXTRACT_VECTOR_ELT(Op));
4967 break;
Chris Lattner03c85462005-01-15 05:21:40 +00004968 }
4969
Gabor Greifba36cb52008-08-28 21:40:38 +00004970 assert(Result.getNode() && "Didn't set a result!");
Chris Lattner456a93a2006-01-28 07:39:30 +00004971
4972 // Make sure the result is itself legal.
4973 Result = LegalizeOp(Result);
Scott Michelfdc40a02009-02-17 22:15:04 +00004974
Chris Lattner456a93a2006-01-28 07:39:30 +00004975 // Remember that we promoted this!
Chris Lattner03c85462005-01-15 05:21:40 +00004976 AddPromotedOperand(Op, Result);
4977 return Result;
4978}
Chris Lattner3e928bb2005-01-07 07:47:09 +00004979
Dan Gohman7f321562007-06-25 16:23:39 +00004980/// ExpandEXTRACT_VECTOR_ELT - Expand an EXTRACT_VECTOR_ELT operation into
4981/// a legal EXTRACT_VECTOR_ELT operation, scalar code, or memory traffic,
4982/// based on the vector type. The return type of this matches the element type
4983/// of the vector, which may not be legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00004984SDValue SelectionDAGLegalize::ExpandEXTRACT_VECTOR_ELT(SDValue Op) {
Chris Lattner15972212006-03-31 17:55:51 +00004985 // We know that operand #0 is the Vec vector. If the index is a constant
4986 // or if the invec is a supported hardware type, we can use it. Otherwise,
4987 // lower to a store then an indexed load.
Dan Gohman475871a2008-07-27 21:46:04 +00004988 SDValue Vec = Op.getOperand(0);
4989 SDValue Idx = Op.getOperand(1);
Dale Johannesen6f38cb62009-02-07 19:59:05 +00004990 DebugLoc dl = Op.getDebugLoc();
Scott Michelfdc40a02009-02-17 22:15:04 +00004991
Duncan Sands83ec4b62008-06-06 12:08:01 +00004992 MVT TVT = Vec.getValueType();
4993 unsigned NumElems = TVT.getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00004994
Dan Gohman7f321562007-06-25 16:23:39 +00004995 switch (TLI.getOperationAction(ISD::EXTRACT_VECTOR_ELT, TVT)) {
4996 default: assert(0 && "This action is not supported yet!");
4997 case TargetLowering::Custom: {
4998 Vec = LegalizeOp(Vec);
4999 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005000 SDValue Tmp3 = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005001 if (Tmp3.getNode())
Dan Gohman7f321562007-06-25 16:23:39 +00005002 return Tmp3;
5003 break;
5004 }
5005 case TargetLowering::Legal:
5006 if (isTypeLegal(TVT)) {
5007 Vec = LegalizeOp(Vec);
5008 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Christopher Lamb844228a2007-07-26 03:33:13 +00005009 return Op;
Dan Gohman7f321562007-06-25 16:23:39 +00005010 }
5011 break;
Mon P Wang0c397192008-10-30 08:01:45 +00005012 case TargetLowering::Promote:
5013 assert(TVT.isVector() && "not vector type");
5014 // fall thru to expand since vectors are by default are promote
Dan Gohman7f321562007-06-25 16:23:39 +00005015 case TargetLowering::Expand:
5016 break;
5017 }
5018
Eli Friedman1fde9c52009-05-24 02:46:31 +00005019 if (NumElems == 1)
Chris Lattner15972212006-03-31 17:55:51 +00005020 // This must be an access of the only element. Return it.
Eli Friedman1fde9c52009-05-24 02:46:31 +00005021 return DAG.getNode(ISD::BIT_CONVERT, dl, Op.getValueType(), Vec);
5022 else
5023 return ExpandExtractFromVectorThroughStack(Op);
Chris Lattner15972212006-03-31 17:55:51 +00005024}
5025
Eli Friedman3d43b3f2009-05-23 22:37:25 +00005026SDValue SelectionDAGLegalize::ExpandExtractFromVectorThroughStack(SDValue Op) {
5027 SDValue Vec = Op.getOperand(0);
5028 SDValue Idx = Op.getOperand(1);
5029 DebugLoc dl = Op.getDebugLoc();
5030 // Store the value to a temporary stack slot, then LOAD the returned part.
5031 SDValue StackPtr = DAG.CreateStackTemporary(Vec.getValueType());
5032 SDValue Ch = DAG.getStore(DAG.getEntryNode(), dl, Vec, StackPtr, NULL, 0);
5033
5034 // Add the offset to the index.
Eli Friedman2a35b1c2009-05-23 23:03:28 +00005035 unsigned EltSize =
5036 Vec.getValueType().getVectorElementType().getSizeInBits()/8;
Eli Friedman3d43b3f2009-05-23 22:37:25 +00005037 Idx = DAG.getNode(ISD::MUL, dl, Idx.getValueType(), Idx,
5038 DAG.getConstant(EltSize, Idx.getValueType()));
5039
5040 if (Idx.getValueType().bitsGT(TLI.getPointerTy()))
5041 Idx = DAG.getNode(ISD::TRUNCATE, dl, TLI.getPointerTy(), Idx);
5042 else
5043 Idx = DAG.getNode(ISD::ZERO_EXTEND, dl, TLI.getPointerTy(), Idx);
5044
5045 StackPtr = DAG.getNode(ISD::ADD, dl, Idx.getValueType(), Idx, StackPtr);
5046
5047 return DAG.getLoad(Op.getValueType(), dl, Ch, StackPtr, NULL, 0);
5048}
5049
Dan Gohman7f321562007-06-25 16:23:39 +00005050/// ExpandEXTRACT_SUBVECTOR - Expand a EXTRACT_SUBVECTOR operation. For now
Dan Gohman65956352007-06-13 15:12:02 +00005051/// we assume the operation can be split if it is not already legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005052SDValue SelectionDAGLegalize::ExpandEXTRACT_SUBVECTOR(SDValue Op) {
Dan Gohman65956352007-06-13 15:12:02 +00005053 // We know that operand #0 is the Vec vector. For now we assume the index
5054 // is a constant and that the extracted result is a supported hardware type.
Dan Gohman475871a2008-07-27 21:46:04 +00005055 SDValue Vec = Op.getOperand(0);
5056 SDValue Idx = LegalizeOp(Op.getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00005057
Duncan Sands83ec4b62008-06-06 12:08:01 +00005058 unsigned NumElems = Vec.getValueType().getVectorNumElements();
Scott Michelfdc40a02009-02-17 22:15:04 +00005059
Duncan Sands83ec4b62008-06-06 12:08:01 +00005060 if (NumElems == Op.getValueType().getVectorNumElements()) {
Dan Gohman65956352007-06-13 15:12:02 +00005061 // This must be an access of the desired vector length. Return it.
Dan Gohman7f321562007-06-25 16:23:39 +00005062 return Vec;
Dan Gohman65956352007-06-13 15:12:02 +00005063 }
5064
5065 ConstantSDNode *CIdx = cast<ConstantSDNode>(Idx);
Dan Gohman475871a2008-07-27 21:46:04 +00005066 SDValue Lo, Hi;
Dan Gohman65956352007-06-13 15:12:02 +00005067 SplitVectorOp(Vec, Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005068 if (CIdx->getZExtValue() < NumElems/2) {
Dan Gohman65956352007-06-13 15:12:02 +00005069 Vec = Lo;
5070 } else {
5071 Vec = Hi;
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005072 Idx = DAG.getConstant(CIdx->getZExtValue() - NumElems/2,
5073 Idx.getValueType());
Dan Gohman65956352007-06-13 15:12:02 +00005074 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005075
Dan Gohman65956352007-06-13 15:12:02 +00005076 // It's now an extract from the appropriate high or low part. Recurse.
5077 Op = DAG.UpdateNodeOperands(Op, Vec, Idx);
Dan Gohman7f321562007-06-25 16:23:39 +00005078 return ExpandEXTRACT_SUBVECTOR(Op);
Dan Gohman65956352007-06-13 15:12:02 +00005079}
5080
Nate Begeman750ac1b2006-02-01 07:19:44 +00005081/// LegalizeSetCCOperands - Attempts to create a legal LHS and RHS for a SETCC
5082/// with condition CC on the current target. This usually involves legalizing
5083/// or promoting the arguments. In the case where LHS and RHS must be expanded,
5084/// there may be no choice but to create a new SetCC node to represent the
5085/// legalized value of setcc lhs, rhs. In this case, the value is returned in
Dan Gohman475871a2008-07-27 21:46:04 +00005086/// LHS, and the SDValue returned in RHS has a nil SDNode value.
5087void SelectionDAGLegalize::LegalizeSetCCOperands(SDValue &LHS,
5088 SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005089 SDValue &CC,
5090 DebugLoc dl) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005091 SDValue Tmp1, Tmp2, Tmp3, Result;
5092
Nate Begeman750ac1b2006-02-01 07:19:44 +00005093 switch (getTypeAction(LHS.getValueType())) {
5094 case Legal:
5095 Tmp1 = LegalizeOp(LHS); // LHS
5096 Tmp2 = LegalizeOp(RHS); // RHS
5097 break;
5098 case Promote:
5099 Tmp1 = PromoteOp(LHS); // LHS
5100 Tmp2 = PromoteOp(RHS); // RHS
5101
5102 // If this is an FP compare, the operands have already been extended.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005103 if (LHS.getValueType().isInteger()) {
5104 MVT VT = LHS.getValueType();
5105 MVT NVT = TLI.getTypeToTransformTo(VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005106
5107 // Otherwise, we have to insert explicit sign or zero extends. Note
5108 // that we could insert sign extends for ALL conditions, but zero extend
5109 // is cheaper on many machines (an AND instead of two shifts), so prefer
5110 // it.
5111 switch (cast<CondCodeSDNode>(CC)->get()) {
5112 default: assert(0 && "Unknown integer comparison!");
5113 case ISD::SETEQ:
5114 case ISD::SETNE:
5115 case ISD::SETUGE:
5116 case ISD::SETUGT:
5117 case ISD::SETULE:
5118 case ISD::SETULT:
5119 // ALL of these operations will work if we either sign or zero extend
5120 // the operands (including the unsigned comparisons!). Zero extend is
5121 // usually a simpler/cheaper operation, so prefer it.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005122 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, VT);
5123 Tmp2 = DAG.getZeroExtendInReg(Tmp2, dl, VT);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005124 break;
5125 case ISD::SETGE:
5126 case ISD::SETGT:
5127 case ISD::SETLT:
5128 case ISD::SETLE:
Dale Johannesenbb5da912009-02-02 20:41:04 +00005129 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp1,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005130 DAG.getValueType(VT));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005131 Tmp2 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Tmp2,
Nate Begeman750ac1b2006-02-01 07:19:44 +00005132 DAG.getValueType(VT));
Evan Chengefa53392008-10-13 18:46:18 +00005133 Tmp1 = LegalizeOp(Tmp1); // Relegalize new nodes.
5134 Tmp2 = LegalizeOp(Tmp2); // Relegalize new nodes.
Nate Begeman750ac1b2006-02-01 07:19:44 +00005135 break;
5136 }
5137 }
5138 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005139 case Expand: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005140 MVT VT = LHS.getValueType();
Evan Cheng2b49c502006-12-15 02:59:56 +00005141 if (VT == MVT::f32 || VT == MVT::f64) {
5142 // Expand into one or more soft-fp libcall(s).
Evan Cheng6518c6e2008-07-01 21:35:46 +00005143 RTLIB::Libcall LC1 = RTLIB::UNKNOWN_LIBCALL, LC2 = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng2b49c502006-12-15 02:59:56 +00005144 switch (cast<CondCodeSDNode>(CC)->get()) {
5145 case ISD::SETEQ:
5146 case ISD::SETOEQ:
Evan Cheng56966222007-01-12 02:11:51 +00005147 LC1 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005148 break;
5149 case ISD::SETNE:
5150 case ISD::SETUNE:
Evan Cheng56966222007-01-12 02:11:51 +00005151 LC1 = (VT == MVT::f32) ? RTLIB::UNE_F32 : RTLIB::UNE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005152 break;
5153 case ISD::SETGE:
5154 case ISD::SETOGE:
Evan Cheng56966222007-01-12 02:11:51 +00005155 LC1 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005156 break;
5157 case ISD::SETLT:
5158 case ISD::SETOLT:
Evan Cheng56966222007-01-12 02:11:51 +00005159 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005160 break;
5161 case ISD::SETLE:
5162 case ISD::SETOLE:
Evan Cheng56966222007-01-12 02:11:51 +00005163 LC1 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005164 break;
5165 case ISD::SETGT:
5166 case ISD::SETOGT:
Evan Cheng56966222007-01-12 02:11:51 +00005167 LC1 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005168 break;
5169 case ISD::SETUO:
Evan Chengd385fd62007-01-31 09:29:11 +00005170 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
5171 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005172 case ISD::SETO:
Evan Cheng5efdecc2007-02-03 00:43:46 +00005173 LC1 = (VT == MVT::f32) ? RTLIB::O_F32 : RTLIB::O_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005174 break;
5175 default:
Evan Cheng56966222007-01-12 02:11:51 +00005176 LC1 = (VT == MVT::f32) ? RTLIB::UO_F32 : RTLIB::UO_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005177 switch (cast<CondCodeSDNode>(CC)->get()) {
5178 case ISD::SETONE:
5179 // SETONE = SETOLT | SETOGT
Evan Cheng56966222007-01-12 02:11:51 +00005180 LC1 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005181 // Fallthrough
5182 case ISD::SETUGT:
Evan Cheng56966222007-01-12 02:11:51 +00005183 LC2 = (VT == MVT::f32) ? RTLIB::OGT_F32 : RTLIB::OGT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005184 break;
5185 case ISD::SETUGE:
Evan Cheng56966222007-01-12 02:11:51 +00005186 LC2 = (VT == MVT::f32) ? RTLIB::OGE_F32 : RTLIB::OGE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005187 break;
5188 case ISD::SETULT:
Evan Cheng56966222007-01-12 02:11:51 +00005189 LC2 = (VT == MVT::f32) ? RTLIB::OLT_F32 : RTLIB::OLT_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005190 break;
5191 case ISD::SETULE:
Evan Cheng56966222007-01-12 02:11:51 +00005192 LC2 = (VT == MVT::f32) ? RTLIB::OLE_F32 : RTLIB::OLE_F64;
Evan Cheng2b49c502006-12-15 02:59:56 +00005193 break;
Evan Cheng56966222007-01-12 02:11:51 +00005194 case ISD::SETUEQ:
5195 LC2 = (VT == MVT::f32) ? RTLIB::OEQ_F32 : RTLIB::OEQ_F64;
Evan Cheng56966222007-01-12 02:11:51 +00005196 break;
Evan Cheng2b49c502006-12-15 02:59:56 +00005197 default: assert(0 && "Unsupported FP setcc!");
5198 }
5199 }
Duncan Sandsf9516202008-06-30 10:19:09 +00005200
Dan Gohman475871a2008-07-27 21:46:04 +00005201 SDValue Dummy;
5202 SDValue Ops[2] = { LHS, RHS };
Dale Johannesenbb5da912009-02-02 20:41:04 +00005203 Tmp1 = ExpandLibCall(LC1, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005204 false /*sign irrelevant*/, Dummy);
Evan Cheng2b49c502006-12-15 02:59:56 +00005205 Tmp2 = DAG.getConstant(0, MVT::i32);
Evan Chengd385fd62007-01-31 09:29:11 +00005206 CC = DAG.getCondCode(TLI.getCmpLibcallCC(LC1));
Evan Cheng56966222007-01-12 02:11:51 +00005207 if (LC2 != RTLIB::UNKNOWN_LIBCALL) {
Dale Johannesenbb5da912009-02-02 20:41:04 +00005208 Tmp1 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005209 TLI.getSetCCResultType(Tmp1.getValueType()),
5210 Tmp1, Tmp2, CC);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005211 LHS = ExpandLibCall(LC2, DAG.getMergeValues(Ops, 2, dl).getNode(),
Reid Spencerb47b25c2007-01-03 04:22:32 +00005212 false /*sign irrelevant*/, Dummy);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005213 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005214 TLI.getSetCCResultType(LHS.getValueType()), LHS,
5215 Tmp2, DAG.getCondCode(TLI.getCmpLibcallCC(LC2)));
Dale Johannesenbb5da912009-02-02 20:41:04 +00005216 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Dan Gohman475871a2008-07-27 21:46:04 +00005217 Tmp2 = SDValue();
Evan Cheng2b49c502006-12-15 02:59:56 +00005218 }
Evan Cheng21cacc42008-07-07 07:18:09 +00005219 LHS = LegalizeOp(Tmp1);
Evan Cheng2b49c502006-12-15 02:59:56 +00005220 RHS = Tmp2;
5221 return;
5222 }
5223
Dan Gohman475871a2008-07-27 21:46:04 +00005224 SDValue LHSLo, LHSHi, RHSLo, RHSHi;
Nate Begeman750ac1b2006-02-01 07:19:44 +00005225 ExpandOp(LHS, LHSLo, LHSHi);
Dale Johannesen638ccd52007-10-06 01:24:11 +00005226 ExpandOp(RHS, RHSLo, RHSHi);
5227 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5228
5229 if (VT==MVT::ppcf128) {
5230 // FIXME: This generated code sucks. We want to generate
Dale Johannesene2f20832008-09-12 00:30:56 +00005231 // FCMPU crN, hi1, hi2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005232 // BNE crN, L:
Dale Johannesene2f20832008-09-12 00:30:56 +00005233 // FCMPU crN, lo1, lo2
Dale Johannesen638ccd52007-10-06 01:24:11 +00005234 // The following can be improved, but not that much.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005235 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005236 LHSHi, RHSHi, ISD::SETOEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005237 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005238 LHSLo, RHSLo, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005239 Tmp3 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5240 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005241 LHSHi, RHSHi, ISD::SETUNE);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005242 Tmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005243 LHSHi, RHSHi, CCCode);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005244 Tmp1 = DAG.getNode(ISD::AND, dl, Tmp1.getValueType(), Tmp1, Tmp2);
5245 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp3);
Dan Gohman475871a2008-07-27 21:46:04 +00005246 Tmp2 = SDValue();
Dale Johannesen638ccd52007-10-06 01:24:11 +00005247 break;
5248 }
5249
5250 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005251 case ISD::SETEQ:
5252 case ISD::SETNE:
5253 if (RHSLo == RHSHi)
5254 if (ConstantSDNode *RHSCST = dyn_cast<ConstantSDNode>(RHSLo))
5255 if (RHSCST->isAllOnesValue()) {
5256 // Comparison to -1.
Dale Johannesenbb5da912009-02-02 20:41:04 +00005257 Tmp1 = DAG.getNode(ISD::AND, dl,LHSLo.getValueType(), LHSLo, LHSHi);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005258 Tmp2 = RHSLo;
5259 break;
5260 }
5261
Dale Johannesenbb5da912009-02-02 20:41:04 +00005262 Tmp1 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSLo, RHSLo);
5263 Tmp2 = DAG.getNode(ISD::XOR, dl, LHSLo.getValueType(), LHSHi, RHSHi);
5264 Tmp1 = DAG.getNode(ISD::OR, dl, Tmp1.getValueType(), Tmp1, Tmp2);
Nate Begeman750ac1b2006-02-01 07:19:44 +00005265 Tmp2 = DAG.getConstant(0, Tmp1.getValueType());
5266 break;
5267 default:
5268 // If this is a comparison of the sign bit, just look at the top part.
5269 // X > -1, x < 0
5270 if (ConstantSDNode *CST = dyn_cast<ConstantSDNode>(RHS))
Scott Michelfdc40a02009-02-17 22:15:04 +00005271 if ((cast<CondCodeSDNode>(CC)->get() == ISD::SETLT &&
Dan Gohman002e5d02008-03-13 22:13:53 +00005272 CST->isNullValue()) || // X < 0
Nate Begeman750ac1b2006-02-01 07:19:44 +00005273 (cast<CondCodeSDNode>(CC)->get() == ISD::SETGT &&
5274 CST->isAllOnesValue())) { // X > -1
5275 Tmp1 = LHSHi;
5276 Tmp2 = RHSHi;
5277 break;
5278 }
5279
5280 // FIXME: This generated code sucks.
5281 ISD::CondCode LowCC;
Evan Cheng2e677812007-02-08 22:16:19 +00005282 switch (CCCode) {
Nate Begeman750ac1b2006-02-01 07:19:44 +00005283 default: assert(0 && "Unknown integer setcc!");
5284 case ISD::SETLT:
5285 case ISD::SETULT: LowCC = ISD::SETULT; break;
5286 case ISD::SETGT:
5287 case ISD::SETUGT: LowCC = ISD::SETUGT; break;
5288 case ISD::SETLE:
5289 case ISD::SETULE: LowCC = ISD::SETULE; break;
5290 case ISD::SETGE:
5291 case ISD::SETUGE: LowCC = ISD::SETUGE; break;
5292 }
5293
5294 // Tmp1 = lo(op1) < lo(op2) // Always unsigned comparison
5295 // Tmp2 = hi(op1) < hi(op2) // Signedness depends on operands
5296 // dest = hi(op1) == hi(op2) ? Tmp1 : Tmp2;
5297
5298 // NOTE: on targets without efficient SELECT of bools, we can always use
5299 // this identity: (B1 ? B2 : B3) --> (B1 & B2)|(!B1&B3)
Evan Cheng2e677812007-02-08 22:16:19 +00005300 TargetLowering::DAGCombinerInfo DagCombineInfo(DAG, false, true, NULL);
Duncan Sands5480c042009-01-01 15:52:00 +00005301 Tmp1 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSLo.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005302 LHSLo, RHSLo, LowCC, false, DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005303 if (!Tmp1.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005304 Tmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(LHSLo.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005305 LHSLo, RHSLo, LowCC);
5306 Tmp2 = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005307 LHSHi, RHSHi, CCCode, false, DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005308 if (!Tmp2.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005309 Tmp2 = DAG.getNode(ISD::SETCC, dl,
Duncan Sands5480c042009-01-01 15:52:00 +00005310 TLI.getSetCCResultType(LHSHi.getValueType()),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005311 LHSHi, RHSHi, CC);
Scott Michelfdc40a02009-02-17 22:15:04 +00005312
Gabor Greifba36cb52008-08-28 21:40:38 +00005313 ConstantSDNode *Tmp1C = dyn_cast<ConstantSDNode>(Tmp1.getNode());
5314 ConstantSDNode *Tmp2C = dyn_cast<ConstantSDNode>(Tmp2.getNode());
Dan Gohman002e5d02008-03-13 22:13:53 +00005315 if ((Tmp1C && Tmp1C->isNullValue()) ||
5316 (Tmp2C && Tmp2C->isNullValue() &&
Evan Cheng2e677812007-02-08 22:16:19 +00005317 (CCCode == ISD::SETLE || CCCode == ISD::SETGE ||
5318 CCCode == ISD::SETUGE || CCCode == ISD::SETULE)) ||
Dan Gohman002e5d02008-03-13 22:13:53 +00005319 (Tmp2C && Tmp2C->getAPIntValue() == 1 &&
Evan Cheng2e677812007-02-08 22:16:19 +00005320 (CCCode == ISD::SETLT || CCCode == ISD::SETGT ||
5321 CCCode == ISD::SETUGT || CCCode == ISD::SETULT))) {
5322 // low part is known false, returns high part.
5323 // For LE / GE, if high part is known false, ignore the low part.
5324 // For LT / GT, if high part is known true, ignore the low part.
5325 Tmp1 = Tmp2;
Dan Gohman475871a2008-07-27 21:46:04 +00005326 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005327 } else {
Duncan Sands5480c042009-01-01 15:52:00 +00005328 Result = TLI.SimplifySetCC(TLI.getSetCCResultType(LHSHi.getValueType()),
5329 LHSHi, RHSHi, ISD::SETEQ, false,
Dale Johannesenff97d4f2009-02-03 00:47:48 +00005330 DagCombineInfo, dl);
Gabor Greifba36cb52008-08-28 21:40:38 +00005331 if (!Result.getNode())
Dale Johannesenbb5da912009-02-02 20:41:04 +00005332 Result=DAG.getSetCC(dl, TLI.getSetCCResultType(LHSHi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005333 LHSHi, RHSHi, ISD::SETEQ);
Dale Johannesenbb5da912009-02-02 20:41:04 +00005334 Result = LegalizeOp(DAG.getNode(ISD::SELECT, dl, Tmp1.getValueType(),
Evan Cheng2e677812007-02-08 22:16:19 +00005335 Result, Tmp1, Tmp2));
5336 Tmp1 = Result;
Dan Gohman475871a2008-07-27 21:46:04 +00005337 Tmp2 = SDValue();
Evan Cheng2e677812007-02-08 22:16:19 +00005338 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005339 }
5340 }
Evan Cheng2b49c502006-12-15 02:59:56 +00005341 }
Nate Begeman750ac1b2006-02-01 07:19:44 +00005342 LHS = Tmp1;
5343 RHS = Tmp2;
5344}
5345
Evan Cheng7f042682008-10-15 02:05:31 +00005346/// LegalizeSetCCCondCode - Legalize a SETCC with given LHS and RHS and
5347/// condition code CC on the current target. This routine assumes LHS and rHS
5348/// have already been legalized by LegalizeSetCCOperands. It expands SETCC with
5349/// illegal condition code into AND / OR of multiple SETCC values.
5350void SelectionDAGLegalize::LegalizeSetCCCondCode(MVT VT,
5351 SDValue &LHS, SDValue &RHS,
Dale Johannesenbb5da912009-02-02 20:41:04 +00005352 SDValue &CC,
5353 DebugLoc dl) {
Evan Cheng7f042682008-10-15 02:05:31 +00005354 MVT OpVT = LHS.getValueType();
5355 ISD::CondCode CCCode = cast<CondCodeSDNode>(CC)->get();
5356 switch (TLI.getCondCodeAction(CCCode, OpVT)) {
5357 default: assert(0 && "Unknown condition code action!");
5358 case TargetLowering::Legal:
5359 // Nothing to do.
5360 break;
5361 case TargetLowering::Expand: {
5362 ISD::CondCode CC1 = ISD::SETCC_INVALID, CC2 = ISD::SETCC_INVALID;
5363 unsigned Opc = 0;
5364 switch (CCCode) {
5365 default: assert(0 && "Don't know how to expand this condition!"); abort();
Dan Gohmane7d238e2008-10-21 03:12:54 +00005366 case ISD::SETOEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETO; Opc = ISD::AND; break;
5367 case ISD::SETOGT: CC1 = ISD::SETGT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5368 case ISD::SETOGE: CC1 = ISD::SETGE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5369 case ISD::SETOLT: CC1 = ISD::SETLT; CC2 = ISD::SETO; Opc = ISD::AND; break;
5370 case ISD::SETOLE: CC1 = ISD::SETLE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5371 case ISD::SETONE: CC1 = ISD::SETNE; CC2 = ISD::SETO; Opc = ISD::AND; break;
5372 case ISD::SETUEQ: CC1 = ISD::SETEQ; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5373 case ISD::SETUGT: CC1 = ISD::SETGT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5374 case ISD::SETUGE: CC1 = ISD::SETGE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5375 case ISD::SETULT: CC1 = ISD::SETLT; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5376 case ISD::SETULE: CC1 = ISD::SETLE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
5377 case ISD::SETUNE: CC1 = ISD::SETNE; CC2 = ISD::SETUO; Opc = ISD::OR; break;
Evan Cheng7f042682008-10-15 02:05:31 +00005378 // FIXME: Implement more expansions.
5379 }
5380
Dale Johannesenbb5da912009-02-02 20:41:04 +00005381 SDValue SetCC1 = DAG.getSetCC(dl, VT, LHS, RHS, CC1);
5382 SDValue SetCC2 = DAG.getSetCC(dl, VT, LHS, RHS, CC2);
5383 LHS = DAG.getNode(Opc, dl, VT, SetCC1, SetCC2);
Evan Cheng7f042682008-10-15 02:05:31 +00005384 RHS = SDValue();
5385 CC = SDValue();
5386 break;
5387 }
5388 }
5389}
5390
Chris Lattner1401d152008-01-16 07:45:30 +00005391/// EmitStackConvert - Emit a store/load combination to the stack. This stores
5392/// SrcOp to a stack slot of type SlotVT, truncating it if needed. It then does
5393/// a load from the stack slot to DestVT, extending it if needed.
5394/// The resultant code need not be legal.
Dan Gohman475871a2008-07-27 21:46:04 +00005395SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp,
5396 MVT SlotVT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005397 MVT DestVT,
5398 DebugLoc dl) {
Chris Lattner35481892005-12-23 00:16:34 +00005399 // Create the stack frame object.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005400 unsigned SrcAlign =
5401 TLI.getTargetData()->getPrefTypeAlignment(SrcOp.getValueType().
5402 getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00005403 SDValue FIPtr = DAG.CreateStackTemporary(SlotVT, SrcAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00005404
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005405 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(FIPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005406 int SPFI = StackPtrFI->getIndex();
Dan Gohman15b38302009-01-29 21:02:43 +00005407 const Value *SV = PseudoSourceValue::getFixedStack(SPFI);
5408
Duncan Sands83ec4b62008-06-06 12:08:01 +00005409 unsigned SrcSize = SrcOp.getValueType().getSizeInBits();
5410 unsigned SlotSize = SlotVT.getSizeInBits();
5411 unsigned DestSize = DestVT.getSizeInBits();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005412 unsigned DestAlign =
5413 TLI.getTargetData()->getPrefTypeAlignment(DestVT.getTypeForMVT());
Scott Michelfdc40a02009-02-17 22:15:04 +00005414
Chris Lattner1401d152008-01-16 07:45:30 +00005415 // Emit a store to the stack slot. Use a truncstore if the input value is
5416 // later than DestVT.
Dan Gohman475871a2008-07-27 21:46:04 +00005417 SDValue Store;
Scott Michelfdc40a02009-02-17 22:15:04 +00005418
Chris Lattner1401d152008-01-16 07:45:30 +00005419 if (SrcSize > SlotSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005420 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005421 SV, 0, SlotVT, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005422 else {
5423 assert(SrcSize == SlotSize && "Invalid store");
Dale Johannesen8a782a22009-02-02 22:12:50 +00005424 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr,
Dan Gohman15b38302009-01-29 21:02:43 +00005425 SV, 0, false, SrcAlign);
Chris Lattner1401d152008-01-16 07:45:30 +00005426 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005427
Chris Lattner35481892005-12-23 00:16:34 +00005428 // Result is a load from the stack slot.
Chris Lattner1401d152008-01-16 07:45:30 +00005429 if (SlotSize == DestSize)
Dale Johannesen8a782a22009-02-02 22:12:50 +00005430 return DAG.getLoad(DestVT, dl, Store, FIPtr, SV, 0, false, DestAlign);
Scott Michelfdc40a02009-02-17 22:15:04 +00005431
Chris Lattner1401d152008-01-16 07:45:30 +00005432 assert(SlotSize < DestSize && "Unknown extension!");
Dale Johannesen8a782a22009-02-02 22:12:50 +00005433 return DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT, Store, FIPtr, SV, 0, SlotVT,
Mon P Wang364d73d2008-07-05 20:40:31 +00005434 false, DestAlign);
Chris Lattner35481892005-12-23 00:16:34 +00005435}
5436
Dan Gohman475871a2008-07-27 21:46:04 +00005437SDValue SelectionDAGLegalize::ExpandSCALAR_TO_VECTOR(SDNode *Node) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005438 DebugLoc dl = Node->getDebugLoc();
Chris Lattner4352cc92006-04-04 17:23:26 +00005439 // Create a vector sized/aligned stack slot, store the value to element #0,
5440 // then load the whole vector back out.
Dan Gohman475871a2008-07-27 21:46:04 +00005441 SDValue StackPtr = DAG.CreateStackTemporary(Node->getValueType(0));
Dan Gohman69de1932008-02-06 22:27:42 +00005442
Dan Gohmanbbbbb9c2008-02-11 18:58:42 +00005443 FrameIndexSDNode *StackPtrFI = cast<FrameIndexSDNode>(StackPtr);
Dan Gohman69de1932008-02-06 22:27:42 +00005444 int SPFI = StackPtrFI->getIndex();
5445
Duncan Sandsb10b5ac2009-04-18 20:16:54 +00005446 SDValue Ch = DAG.getTruncStore(DAG.getEntryNode(), dl, Node->getOperand(0),
5447 StackPtr,
5448 PseudoSourceValue::getFixedStack(SPFI), 0,
5449 Node->getValueType(0).getVectorElementType());
Dale Johannesen8a782a22009-02-02 22:12:50 +00005450 return DAG.getLoad(Node->getValueType(0), dl, Ch, StackPtr,
Dan Gohmana54cf172008-07-11 22:44:52 +00005451 PseudoSourceValue::getFixedStack(SPFI), 0);
Chris Lattner4352cc92006-04-04 17:23:26 +00005452}
5453
5454
Chris Lattnerce872152006-03-19 06:31:19 +00005455/// ExpandBUILD_VECTOR - Expand a BUILD_VECTOR node on targets that don't
Dan Gohman07a96762007-07-16 14:29:03 +00005456/// support the operation, but do support the resultant vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00005457SDValue SelectionDAGLegalize::ExpandBUILD_VECTOR(SDNode *Node) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005458 unsigned NumElems = Node->getNumOperands();
5459 SDValue SplatValue = Node->getOperand(0);
5460 DebugLoc dl = Node->getDebugLoc();
5461 MVT VT = Node->getValueType(0);
5462 MVT OpVT = SplatValue.getValueType();
5463 MVT EltVT = VT.getVectorElementType();
Scott Michelfdc40a02009-02-17 22:15:04 +00005464
5465 // If the only non-undef value is the low element, turn this into a
Chris Lattner87100e02006-03-20 01:52:29 +00005466 // SCALAR_TO_VECTOR node. If this is { X, X, X, X }, determine X.
Chris Lattnerce872152006-03-19 06:31:19 +00005467 bool isOnlyLowElement = true;
Scott Michelfdc40a02009-02-17 22:15:04 +00005468
Dan Gohman475871a2008-07-27 21:46:04 +00005469 // FIXME: it would be far nicer to change this into map<SDValue,uint64_t>
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005470 // and use a bitmask instead of a list of elements.
Nate Begeman9008ca62009-04-27 18:41:29 +00005471 // FIXME: this doesn't treat <0, u, 0, u> for example, as a splat.
Dan Gohman475871a2008-07-27 21:46:04 +00005472 std::map<SDValue, std::vector<unsigned> > Values;
Evan Cheng033e6812006-03-24 01:17:21 +00005473 Values[SplatValue].push_back(0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005474 bool isConstant = true;
5475 if (!isa<ConstantFPSDNode>(SplatValue) && !isa<ConstantSDNode>(SplatValue) &&
5476 SplatValue.getOpcode() != ISD::UNDEF)
5477 isConstant = false;
Scott Michelfdc40a02009-02-17 22:15:04 +00005478
Evan Cheng033e6812006-03-24 01:17:21 +00005479 for (unsigned i = 1; i < NumElems; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00005480 SDValue V = Node->getOperand(i);
Chris Lattner89a1b382006-04-19 23:17:50 +00005481 Values[V].push_back(i);
Evan Cheng033e6812006-03-24 01:17:21 +00005482 if (V.getOpcode() != ISD::UNDEF)
Chris Lattnerce872152006-03-19 06:31:19 +00005483 isOnlyLowElement = false;
Evan Cheng033e6812006-03-24 01:17:21 +00005484 if (SplatValue != V)
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005485 SplatValue = SDValue(0, 0);
Chris Lattner2eb86532006-03-24 07:29:17 +00005486
5487 // If this isn't a constant element or an undef, we can't use a constant
5488 // pool load.
5489 if (!isa<ConstantFPSDNode>(V) && !isa<ConstantSDNode>(V) &&
5490 V.getOpcode() != ISD::UNDEF)
5491 isConstant = false;
Chris Lattnerce872152006-03-19 06:31:19 +00005492 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005493
Chris Lattnerce872152006-03-19 06:31:19 +00005494 if (isOnlyLowElement) {
5495 // If the low element is an undef too, then this whole things is an undef.
5496 if (Node->getOperand(0).getOpcode() == ISD::UNDEF)
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005497 return DAG.getUNDEF(VT);
Chris Lattnerce872152006-03-19 06:31:19 +00005498 // Otherwise, turn this into a scalar_to_vector node.
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005499 return DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Node->getOperand(0));
Chris Lattnerce872152006-03-19 06:31:19 +00005500 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005501
Chris Lattner2eb86532006-03-24 07:29:17 +00005502 // If all elements are constants, create a load from the constant pool.
5503 if (isConstant) {
Chris Lattner2eb86532006-03-24 07:29:17 +00005504 std::vector<Constant*> CV;
5505 for (unsigned i = 0, e = NumElems; i != e; ++i) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005506 if (ConstantFPSDNode *V =
Chris Lattner2eb86532006-03-24 07:29:17 +00005507 dyn_cast<ConstantFPSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005508 CV.push_back(const_cast<ConstantFP *>(V->getConstantFPValue()));
Scott Michelfdc40a02009-02-17 22:15:04 +00005509 } else if (ConstantSDNode *V =
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005510 dyn_cast<ConstantSDNode>(Node->getOperand(i))) {
Dan Gohman4fbd7962008-09-12 18:08:03 +00005511 CV.push_back(const_cast<ConstantInt *>(V->getConstantIntValue()));
Chris Lattner2eb86532006-03-24 07:29:17 +00005512 } else {
5513 assert(Node->getOperand(i).getOpcode() == ISD::UNDEF);
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005514 const Type *OpNTy = OpVT.getTypeForMVT();
Chris Lattner2eb86532006-03-24 07:29:17 +00005515 CV.push_back(UndefValue::get(OpNTy));
5516 }
5517 }
Reid Spencer9d6565a2007-02-15 02:26:10 +00005518 Constant *CP = ConstantVector::get(CV);
Dan Gohman475871a2008-07-27 21:46:04 +00005519 SDValue CPIdx = DAG.getConstantPool(CP, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00005520 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesen8a782a22009-02-02 22:12:50 +00005521 return DAG.getLoad(VT, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005522 PseudoSourceValue::getConstantPool(), 0,
5523 false, Alignment);
Chris Lattner2eb86532006-03-24 07:29:17 +00005524 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005525
Gabor Greifba36cb52008-08-28 21:40:38 +00005526 if (SplatValue.getNode()) { // Splat of one value?
Chris Lattner87100e02006-03-20 01:52:29 +00005527 // Build the shuffle constant vector: <0, 0, 0, 0>
Nate Begeman9008ca62009-04-27 18:41:29 +00005528 SmallVector<int, 8> ZeroVec(NumElems, 0);
Chris Lattner87100e02006-03-20 01:52:29 +00005529
5530 // If the target supports VECTOR_SHUFFLE and this shuffle mask, use it.
Nate Begeman9008ca62009-04-27 18:41:29 +00005531 if (TLI.isShuffleMaskLegal(ZeroVec, Node->getValueType(0))) {
Chris Lattner87100e02006-03-20 01:52:29 +00005532 // Get the splatted value into the low element of a vector register.
Scott Michelfdc40a02009-02-17 22:15:04 +00005533 SDValue LowValVec =
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005534 DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, SplatValue);
Scott Michelfdc40a02009-02-17 22:15:04 +00005535
Chris Lattner87100e02006-03-20 01:52:29 +00005536 // Return shuffle(LowValVec, undef, <0,0,0,0>)
Nate Begeman9008ca62009-04-27 18:41:29 +00005537 return DAG.getVectorShuffle(VT, dl, LowValVec, DAG.getUNDEF(VT),
5538 &ZeroVec[0]);
Chris Lattner87100e02006-03-20 01:52:29 +00005539 }
5540 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005541
Evan Cheng033e6812006-03-24 01:17:21 +00005542 // If there are only two unique elements, we may be able to turn this into a
5543 // vector shuffle.
5544 if (Values.size() == 2) {
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005545 // Get the two values in deterministic order.
Dan Gohman475871a2008-07-27 21:46:04 +00005546 SDValue Val1 = Node->getOperand(1);
5547 SDValue Val2;
5548 std::map<SDValue, std::vector<unsigned> >::iterator MI = Values.begin();
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005549 if (MI->first != Val1)
5550 Val2 = MI->first;
5551 else
5552 Val2 = (++MI)->first;
Scott Michelfdc40a02009-02-17 22:15:04 +00005553
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005554 // If Val1 is an undef, make sure it ends up as Val2, to ensure that our
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005555 // vector shuffle has the undef vector on the RHS.
5556 if (Val1.getOpcode() == ISD::UNDEF)
5557 std::swap(Val1, Val2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005558
Evan Cheng033e6812006-03-24 01:17:21 +00005559 // Build the shuffle constant vector: e.g. <0, 4, 0, 4>
Nate Begeman9008ca62009-04-27 18:41:29 +00005560 SmallVector<int, 8> ShuffleMask(NumElems, -1);
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005561
5562 // Set elements of the shuffle mask for Val1.
5563 std::vector<unsigned> &Val1Elts = Values[Val1];
5564 for (unsigned i = 0, e = Val1Elts.size(); i != e; ++i)
Nate Begeman9008ca62009-04-27 18:41:29 +00005565 ShuffleMask[Val1Elts[i]] = 0;
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005566
5567 // Set elements of the shuffle mask for Val2.
5568 std::vector<unsigned> &Val2Elts = Values[Val2];
5569 for (unsigned i = 0, e = Val2Elts.size(); i != e; ++i)
5570 if (Val2.getOpcode() != ISD::UNDEF)
Nate Begeman9008ca62009-04-27 18:41:29 +00005571 ShuffleMask[Val2Elts[i]] = NumElems;
Evan Cheng033e6812006-03-24 01:17:21 +00005572
Chris Lattnerf9d95c82008-03-09 00:29:42 +00005573 // If the target supports SCALAR_TO_VECTOR and this shuffle mask, use it.
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005574 if (TLI.isOperationLegalOrCustom(ISD::SCALAR_TO_VECTOR, VT) &&
Nate Begeman9008ca62009-04-27 18:41:29 +00005575 TLI.isShuffleMaskLegal(ShuffleMask, VT)) {
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005576 Val1 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Val1);
5577 Val2 = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VT, Val2);
Nate Begeman9008ca62009-04-27 18:41:29 +00005578 return DAG.getVectorShuffle(VT, dl, Val1, Val2, &ShuffleMask[0]);
Evan Cheng033e6812006-03-24 01:17:21 +00005579 }
5580 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005581
Chris Lattnerce872152006-03-19 06:31:19 +00005582 // Otherwise, we can't handle this case efficiently. Allocate a sufficiently
5583 // aligned object on the stack, store each element into it, then load
5584 // the result as a vector.
Chris Lattnerce872152006-03-19 06:31:19 +00005585 // Create the stack frame object.
Dan Gohman475871a2008-07-27 21:46:04 +00005586 SDValue FIPtr = DAG.CreateStackTemporary(VT);
Dan Gohman15b38302009-01-29 21:02:43 +00005587 int FI = cast<FrameIndexSDNode>(FIPtr.getNode())->getIndex();
5588 const Value *SV = PseudoSourceValue::getFixedStack(FI);
5589
Chris Lattnerce872152006-03-19 06:31:19 +00005590 // Emit a store of each element to the stack slot.
Dan Gohman475871a2008-07-27 21:46:04 +00005591 SmallVector<SDValue, 8> Stores;
Bob Wilson26cbf9e2009-04-13 20:20:30 +00005592 unsigned TypeByteSize = OpVT.getSizeInBits() / 8;
Chris Lattnerce872152006-03-19 06:31:19 +00005593 // Store (in the right endianness) the elements to memory.
5594 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
5595 // Ignore undef elements.
5596 if (Node->getOperand(i).getOpcode() == ISD::UNDEF) continue;
Scott Michelfdc40a02009-02-17 22:15:04 +00005597
Chris Lattner841c8822006-03-22 01:46:54 +00005598 unsigned Offset = TypeByteSize*i;
Scott Michelfdc40a02009-02-17 22:15:04 +00005599
Dan Gohman475871a2008-07-27 21:46:04 +00005600 SDValue Idx = DAG.getConstant(Offset, FIPtr.getValueType());
Dale Johannesen8a782a22009-02-02 22:12:50 +00005601 Idx = DAG.getNode(ISD::ADD, dl, FIPtr.getValueType(), FIPtr, Idx);
Scott Michelfdc40a02009-02-17 22:15:04 +00005602
Dale Johannesen8a782a22009-02-02 22:12:50 +00005603 Stores.push_back(DAG.getStore(DAG.getEntryNode(), dl, Node->getOperand(i),
5604 Idx, SV, Offset));
Chris Lattnerce872152006-03-19 06:31:19 +00005605 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005606
Dan Gohman475871a2008-07-27 21:46:04 +00005607 SDValue StoreChain;
Chris Lattnerce872152006-03-19 06:31:19 +00005608 if (!Stores.empty()) // Not all undef elements?
Dale Johannesen8a782a22009-02-02 22:12:50 +00005609 StoreChain = DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Chris Lattnerbd564bf2006-08-08 02:23:42 +00005610 &Stores[0], Stores.size());
Chris Lattnerce872152006-03-19 06:31:19 +00005611 else
5612 StoreChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005613
Chris Lattnerce872152006-03-19 06:31:19 +00005614 // Result is a load from the stack slot.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005615 return DAG.getLoad(VT, dl, StoreChain, FIPtr, SV, 0);
Chris Lattnerce872152006-03-19 06:31:19 +00005616}
5617
Chris Lattner5b359c62005-04-02 04:00:59 +00005618void SelectionDAGLegalize::ExpandShiftParts(unsigned NodeOp,
Dan Gohman475871a2008-07-27 21:46:04 +00005619 SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005620 SDValue &Lo, SDValue &Hi,
5621 DebugLoc dl) {
Chris Lattner5b359c62005-04-02 04:00:59 +00005622 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00005623 SDValue LHSL, LHSH;
Chris Lattner5b359c62005-04-02 04:00:59 +00005624 ExpandOp(Op, LHSL, LHSH);
5625
Dan Gohman475871a2008-07-27 21:46:04 +00005626 SDValue Ops[] = { LHSL, LHSH, Amt };
Duncan Sands83ec4b62008-06-06 12:08:01 +00005627 MVT VT = LHSL.getValueType();
Dan Gohmanfc166572009-04-09 23:54:40 +00005628 Lo = DAG.getNode(NodeOp, dl, DAG.getVTList(VT, VT), Ops, 3);
Chris Lattner5b359c62005-04-02 04:00:59 +00005629 Hi = Lo.getValue(1);
5630}
5631
5632
Chris Lattnere34b3962005-01-19 04:19:40 +00005633/// ExpandShift - Try to find a clever way to expand this shift operation out to
5634/// smaller elements. If we can't find a way that is more efficient than a
5635/// libcall on this target, return false. Otherwise, return true with the
5636/// low-parts expanded into Lo and Hi.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005637bool SelectionDAGLegalize::ExpandShift(unsigned Opc, SDValue Op, SDValue Amt,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005638 SDValue &Lo, SDValue &Hi,
5639 DebugLoc dl) {
Chris Lattnere34b3962005-01-19 04:19:40 +00005640 assert((Opc == ISD::SHL || Opc == ISD::SRA || Opc == ISD::SRL) &&
5641 "This is not a shift!");
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005642
Duncan Sands83ec4b62008-06-06 12:08:01 +00005643 MVT NVT = TLI.getTypeToTransformTo(Op.getValueType());
Dan Gohman475871a2008-07-27 21:46:04 +00005644 SDValue ShAmt = LegalizeOp(Amt);
Duncan Sands83ec4b62008-06-06 12:08:01 +00005645 MVT ShTy = ShAmt.getValueType();
5646 unsigned ShBits = ShTy.getSizeInBits();
5647 unsigned VTBits = Op.getValueType().getSizeInBits();
5648 unsigned NVTBits = NVT.getSizeInBits();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005649
Chris Lattner7a3c8552007-10-14 20:35:12 +00005650 // Handle the case when Amt is an immediate.
Gabor Greifba36cb52008-08-28 21:40:38 +00005651 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(Amt.getNode())) {
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00005652 unsigned Cst = CN->getZExtValue();
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005653 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005654 SDValue InL, InH;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005655 ExpandOp(Op, InL, InH);
5656 switch(Opc) {
5657 case ISD::SHL:
5658 if (Cst > VTBits) {
5659 Lo = DAG.getConstant(0, NVT);
5660 Hi = DAG.getConstant(0, NVT);
5661 } else if (Cst > NVTBits) {
5662 Lo = DAG.getConstant(0, NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00005663 Hi = DAG.getNode(ISD::SHL, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005664 NVT, InL, DAG.getConstant(Cst-NVTBits, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005665 } else if (Cst == NVTBits) {
5666 Lo = DAG.getConstant(0, NVT);
5667 Hi = InL;
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005668 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005669 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, DAG.getConstant(Cst, ShTy));
5670 Hi = DAG.getNode(ISD::OR, dl, NVT,
5671 DAG.getNode(ISD::SHL, dl, NVT, InH, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005672 DAG.getNode(ISD::SRL, dl, NVT, InL,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005673 DAG.getConstant(NVTBits-Cst, ShTy)));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005674 }
5675 return true;
5676 case ISD::SRL:
5677 if (Cst > VTBits) {
5678 Lo = DAG.getConstant(0, NVT);
5679 Hi = DAG.getConstant(0, NVT);
5680 } else if (Cst > NVTBits) {
Scott Michelfdc40a02009-02-17 22:15:04 +00005681 Lo = DAG.getNode(ISD::SRL, dl, NVT,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005682 InH, DAG.getConstant(Cst-NVTBits, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005683 Hi = DAG.getConstant(0, NVT);
Chris Lattneree27f572005-04-11 20:08:52 +00005684 } else if (Cst == NVTBits) {
5685 Lo = InH;
5686 Hi = DAG.getConstant(0, NVT);
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005687 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005688 Lo = DAG.getNode(ISD::OR, dl, NVT,
5689 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005690 DAG.getNode(ISD::SHL, dl, NVT, InH,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005691 DAG.getConstant(NVTBits-Cst, ShTy)));
5692 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005693 }
5694 return true;
5695 case ISD::SRA:
5696 if (Cst > VTBits) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005697 Hi = Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005698 DAG.getConstant(NVTBits-1, ShTy));
5699 } else if (Cst > NVTBits) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005700 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005701 DAG.getConstant(Cst-NVTBits, ShTy));
Dale Johannesen8a782a22009-02-02 22:12:50 +00005702 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005703 DAG.getConstant(NVTBits-1, ShTy));
Chris Lattneree27f572005-04-11 20:08:52 +00005704 } else if (Cst == NVTBits) {
5705 Lo = InH;
Dale Johannesen8a782a22009-02-02 22:12:50 +00005706 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH,
Chris Lattneree27f572005-04-11 20:08:52 +00005707 DAG.getConstant(NVTBits-1, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005708 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00005709 Lo = DAG.getNode(ISD::OR, dl, NVT,
5710 DAG.getNode(ISD::SRL, dl, NVT, InL, DAG.getConstant(Cst, ShTy)),
Scott Michelfdc40a02009-02-17 22:15:04 +00005711 DAG.getNode(ISD::SHL, dl,
Dale Johannesen8a782a22009-02-02 22:12:50 +00005712 NVT, InH, DAG.getConstant(NVTBits-Cst, ShTy)));
5713 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, DAG.getConstant(Cst, ShTy));
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005714 }
5715 return true;
5716 }
5717 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005718
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005719 // Okay, the shift amount isn't constant. However, if we can tell that it is
5720 // >= 32 or < 32, we can still simplify it, without knowing the actual value.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005721 APInt Mask = APInt::getHighBitsSet(ShBits, ShBits - Log2_32(NVTBits));
5722 APInt KnownZero, KnownOne;
Dan Gohmanea859be2007-06-22 14:59:07 +00005723 DAG.ComputeMaskedBits(Amt, Mask, KnownZero, KnownOne);
Scott Michelfdc40a02009-02-17 22:15:04 +00005724
Dan Gohman9e255b72008-02-22 01:12:31 +00005725 // If we know that if any of the high bits of the shift amount are one, then
5726 // we can do this as a couple of simple shifts.
Dan Gohman91dc17b2008-02-20 16:57:27 +00005727 if (KnownOne.intersects(Mask)) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005728 // Mask out the high bit, which we know is set.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005729 Amt = DAG.getNode(ISD::AND, dl, Amt.getValueType(), Amt,
Dan Gohman91dc17b2008-02-20 16:57:27 +00005730 DAG.getConstant(~Mask, Amt.getValueType()));
Scott Michelfdc40a02009-02-17 22:15:04 +00005731
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005732 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005733 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005734 ExpandOp(Op, InL, InH);
5735 switch(Opc) {
5736 case ISD::SHL:
5737 Lo = DAG.getConstant(0, NVT); // Low part is zero.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005738 Hi = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt); // High part from Lo part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005739 return true;
5740 case ISD::SRL:
5741 Hi = DAG.getConstant(0, NVT); // Hi part is zero.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005742 Lo = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt); // Lo part from Hi part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005743 return true;
5744 case ISD::SRA:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005745 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, // Sign extend high part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005746 DAG.getConstant(NVTBits-1, Amt.getValueType()));
Dale Johannesen8a782a22009-02-02 22:12:50 +00005747 Lo = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt); // Lo part from Hi part.
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005748 return true;
5749 }
5750 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005751
Dan Gohman9e255b72008-02-22 01:12:31 +00005752 // If we know that the high bits of the shift amount are all zero, then we can
5753 // do this as a couple of simple shifts.
5754 if ((KnownZero & Mask) == Mask) {
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005755 // Compute 32-amt.
Dale Johannesen8a782a22009-02-02 22:12:50 +00005756 SDValue Amt2 = DAG.getNode(ISD::SUB, dl, Amt.getValueType(),
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005757 DAG.getConstant(NVTBits, Amt.getValueType()),
5758 Amt);
Scott Michelfdc40a02009-02-17 22:15:04 +00005759
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005760 // Expand the incoming operand to be shifted, so that we have its parts
Dan Gohman475871a2008-07-27 21:46:04 +00005761 SDValue InL, InH;
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005762 ExpandOp(Op, InL, InH);
5763 switch(Opc) {
5764 case ISD::SHL:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005765 Lo = DAG.getNode(ISD::SHL, dl, NVT, InL, Amt);
5766 Hi = DAG.getNode(ISD::OR, dl, NVT,
5767 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt),
5768 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005769 return true;
5770 case ISD::SRL:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005771 Hi = DAG.getNode(ISD::SRL, dl, NVT, InH, Amt);
5772 Lo = DAG.getNode(ISD::OR, dl, NVT,
5773 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5774 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005775 return true;
5776 case ISD::SRA:
Dale Johannesen8a782a22009-02-02 22:12:50 +00005777 Hi = DAG.getNode(ISD::SRA, dl, NVT, InH, Amt);
5778 Lo = DAG.getNode(ISD::OR, dl, NVT,
5779 DAG.getNode(ISD::SRL, dl, NVT, InL, Amt),
5780 DAG.getNode(ISD::SHL, dl, NVT, InH, Amt2));
Chris Lattner0ea26ca2006-09-20 03:38:48 +00005781 return true;
5782 }
5783 }
Scott Michelfdc40a02009-02-17 22:15:04 +00005784
Nate Begemanf1fe32e2005-04-06 21:13:14 +00005785 return false;
Chris Lattnere34b3962005-01-19 04:19:40 +00005786}
Chris Lattner77e77a62005-01-21 06:05:23 +00005787
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005788
Chris Lattner77e77a62005-01-21 06:05:23 +00005789// ExpandLibCall - Expand a node into a call to a libcall. If the result value
5790// does not fit into a register, return the lo part and set the hi part to the
5791// by-reg argument. If it does fit into a single register, return the result
5792// and leave the Hi part unset.
Dan Gohman475871a2008-07-27 21:46:04 +00005793SDValue SelectionDAGLegalize::ExpandLibCall(RTLIB::Libcall LC, SDNode *Node,
5794 bool isSigned, SDValue &Hi) {
Chris Lattner6831a812006-02-13 09:18:02 +00005795 assert(!IsLegalizingCall && "Cannot overlap legalization of calls!");
Scott Michelfdc40a02009-02-17 22:15:04 +00005796 // The input chain to this libcall is the entry node of the function.
Chris Lattner6831a812006-02-13 09:18:02 +00005797 // Legalizing the call will automatically add the previous call to the
5798 // dependence.
Dan Gohman475871a2008-07-27 21:46:04 +00005799 SDValue InChain = DAG.getEntryNode();
Scott Michelfdc40a02009-02-17 22:15:04 +00005800
Chris Lattner77e77a62005-01-21 06:05:23 +00005801 TargetLowering::ArgListTy Args;
Reid Spencer47857812006-12-31 05:55:36 +00005802 TargetLowering::ArgListEntry Entry;
Chris Lattner77e77a62005-01-21 06:05:23 +00005803 for (unsigned i = 0, e = Node->getNumOperands(); i != e; ++i) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005804 MVT ArgVT = Node->getOperand(i).getValueType();
5805 const Type *ArgTy = ArgVT.getTypeForMVT();
Scott Michelfdc40a02009-02-17 22:15:04 +00005806 Entry.Node = Node->getOperand(i); Entry.Ty = ArgTy;
Anton Korobeynikovd0b82b32007-03-07 16:25:09 +00005807 Entry.isSExt = isSigned;
Duncan Sands00fee652008-02-14 17:28:50 +00005808 Entry.isZExt = !isSigned;
Reid Spencer47857812006-12-31 05:55:36 +00005809 Args.push_back(Entry);
Chris Lattner77e77a62005-01-21 06:05:23 +00005810 }
Bill Wendling056292f2008-09-16 21:48:12 +00005811 SDValue Callee = DAG.getExternalSymbol(TLI.getLibcallName(LC),
Mon P Wang0c397192008-10-30 08:01:45 +00005812 TLI.getPointerTy());
Misha Brukmanedf128a2005-04-21 22:36:52 +00005813
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005814 // Splice the libcall in wherever FindInputOutputChains tells us to.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005815 const Type *RetTy = Node->getValueType(0).getTypeForMVT();
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005816 std::pair<SDValue, SDValue> CallInfo =
Dale Johannesen86098bd2008-09-26 19:31:26 +00005817 TLI.LowerCallTo(InChain, RetTy, isSigned, !isSigned, false, false,
Dale Johannesen7d2ad622009-01-30 23:10:59 +00005818 CallingConv::C, false, Callee, Args, DAG,
5819 Node->getDebugLoc());
Chris Lattnerb9fa3bc2005-05-12 04:49:08 +00005820
Chris Lattner6831a812006-02-13 09:18:02 +00005821 // Legalize the call sequence, starting with the chain. This will advance
5822 // the LastCALLSEQ_END to the legalized version of the CALLSEQ_END node that
5823 // was added by LowerCallTo (guaranteeing proper serialization of calls).
5824 LegalizeOp(CallInfo.second);
Dan Gohman475871a2008-07-27 21:46:04 +00005825 SDValue Result;
Chris Lattner0d67f0c2005-05-11 19:02:11 +00005826 switch (getTypeAction(CallInfo.first.getValueType())) {
Chris Lattner77e77a62005-01-21 06:05:23 +00005827 default: assert(0 && "Unknown thing");
5828 case Legal:
Chris Lattner456a93a2006-01-28 07:39:30 +00005829 Result = CallInfo.first;
Chris Lattner99c25b82005-09-02 20:26:58 +00005830 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005831 case Expand:
Chris Lattner99c25b82005-09-02 20:26:58 +00005832 ExpandOp(CallInfo.first, Result, Hi);
Chris Lattner99c25b82005-09-02 20:26:58 +00005833 break;
Chris Lattner77e77a62005-01-21 06:05:23 +00005834 }
Chris Lattner99c25b82005-09-02 20:26:58 +00005835 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00005836}
5837
Dan Gohman7f8613e2008-08-14 20:04:46 +00005838/// LegalizeINT_TO_FP - Legalize a [US]INT_TO_FP operation.
5839///
5840SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005841LegalizeINT_TO_FP(SDValue Result, bool isSigned, MVT DestTy, SDValue Op,
5842 DebugLoc dl) {
Dan Gohman7f8613e2008-08-14 20:04:46 +00005843 bool isCustom = false;
5844 SDValue Tmp1;
5845 switch (getTypeAction(Op.getValueType())) {
5846 case Legal:
5847 switch (TLI.getOperationAction(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP,
5848 Op.getValueType())) {
5849 default: assert(0 && "Unknown operation action!");
5850 case TargetLowering::Custom:
5851 isCustom = true;
5852 // FALLTHROUGH
5853 case TargetLowering::Legal:
5854 Tmp1 = LegalizeOp(Op);
Gabor Greifba36cb52008-08-28 21:40:38 +00005855 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005856 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5857 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005858 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005859 DestTy, Tmp1);
5860 if (isCustom) {
5861 Tmp1 = TLI.LowerOperation(Result, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00005862 if (Tmp1.getNode()) Result = Tmp1;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005863 }
5864 break;
5865 case TargetLowering::Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005866 Result = ExpandLegalINT_TO_FP(isSigned, LegalizeOp(Op), DestTy, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005867 break;
5868 case TargetLowering::Promote:
Dale Johannesenaf435272009-02-02 19:03:57 +00005869 Result = PromoteLegalINT_TO_FP(LegalizeOp(Op), DestTy, isSigned, dl);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005870 break;
5871 }
5872 break;
5873 case Expand:
Dale Johannesenaf435272009-02-02 19:03:57 +00005874 Result = ExpandIntToFP(isSigned, DestTy, Op, dl) ;
Dan Gohman7f8613e2008-08-14 20:04:46 +00005875 break;
5876 case Promote:
5877 Tmp1 = PromoteOp(Op);
5878 if (isSigned) {
Dale Johannesenaf435272009-02-02 19:03:57 +00005879 Tmp1 = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp1.getValueType(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005880 Tmp1, DAG.getValueType(Op.getValueType()));
Dan Gohman7f8613e2008-08-14 20:04:46 +00005881 } else {
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005882 Tmp1 = DAG.getZeroExtendInReg(Tmp1, dl, Op.getValueType());
Dan Gohman7f8613e2008-08-14 20:04:46 +00005883 }
Gabor Greifba36cb52008-08-28 21:40:38 +00005884 if (Result.getNode())
Dan Gohman7f8613e2008-08-14 20:04:46 +00005885 Result = DAG.UpdateNodeOperands(Result, Tmp1);
5886 else
Dale Johannesenaf435272009-02-02 19:03:57 +00005887 Result = DAG.getNode(isSigned ? ISD::SINT_TO_FP : ISD::UINT_TO_FP, dl,
Dan Gohman7f8613e2008-08-14 20:04:46 +00005888 DestTy, Tmp1);
5889 Result = LegalizeOp(Result); // The 'op' is not necessarily legal!
5890 break;
5891 }
5892 return Result;
5893}
Chris Lattner9c32d3b2005-01-23 04:42:50 +00005894
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005895/// ExpandIntToFP - Expand a [US]INT_TO_FP operation.
5896///
Dan Gohman475871a2008-07-27 21:46:04 +00005897SDValue SelectionDAGLegalize::
Dale Johannesenaf435272009-02-02 19:03:57 +00005898ExpandIntToFP(bool isSigned, MVT DestTy, SDValue Source, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00005899 MVT SourceVT = Source.getValueType();
Dan Gohman034f60e2008-03-11 01:59:03 +00005900 bool ExpandSource = getTypeAction(SourceVT) == Expand;
Chris Lattner77e77a62005-01-21 06:05:23 +00005901
Dan Gohman7f8613e2008-08-14 20:04:46 +00005902 // Expand unsupported int-to-fp vector casts by unrolling them.
5903 if (DestTy.isVector()) {
5904 if (!ExpandSource)
5905 return LegalizeOp(UnrollVectorOp(Source));
5906 MVT DestEltTy = DestTy.getVectorElementType();
5907 if (DestTy.getVectorNumElements() == 1) {
5908 SDValue Scalar = ScalarizeVectorOp(Source);
5909 SDValue Result = LegalizeINT_TO_FP(SDValue(), isSigned,
Dale Johannesenaf435272009-02-02 19:03:57 +00005910 DestEltTy, Scalar, dl);
Evan Chenga87008d2009-02-25 22:49:59 +00005911 return DAG.getNode(ISD::BUILD_VECTOR, dl, DestTy, Result);
Dan Gohman7f8613e2008-08-14 20:04:46 +00005912 }
5913 SDValue Lo, Hi;
5914 SplitVectorOp(Source, Lo, Hi);
5915 MVT SplitDestTy = MVT::getVectorVT(DestEltTy,
5916 DestTy.getVectorNumElements() / 2);
Scott Michelfdc40a02009-02-17 22:15:04 +00005917 SDValue LoResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +00005918 Lo, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00005919 SDValue HiResult = LegalizeINT_TO_FP(SDValue(), isSigned, SplitDestTy,
Dale Johannesenaf435272009-02-02 19:03:57 +00005920 Hi, dl);
5921 return LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, DestTy, LoResult,
Evan Chengefa53392008-10-13 18:46:18 +00005922 HiResult));
Dan Gohman7f8613e2008-08-14 20:04:46 +00005923 }
5924
Evan Cheng9845eb52008-04-01 02:18:22 +00005925 // Special case for i32 source to take advantage of UINTTOFP_I32_F32, etc.
5926 if (!isSigned && SourceVT != MVT::i32) {
Dan Gohman34bc1782008-03-05 02:07:31 +00005927 // The integer value loaded will be incorrectly if the 'sign bit' of the
Chris Lattnere9c35e72005-04-13 05:09:42 +00005928 // incoming integer is set. To handle this, we dynamically test to see if
5929 // it is set, and, if so, add a fudge factor.
Dan Gohman475871a2008-07-27 21:46:04 +00005930 SDValue Hi;
Dan Gohman034f60e2008-03-11 01:59:03 +00005931 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00005932 SDValue Lo;
Dan Gohman034f60e2008-03-11 01:59:03 +00005933 ExpandOp(Source, Lo, Hi);
Dale Johannesenaf435272009-02-02 19:03:57 +00005934 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, Lo, Hi);
Dan Gohman034f60e2008-03-11 01:59:03 +00005935 } else {
5936 // The comparison for the sign bit will use the entire operand.
5937 Hi = Source;
5938 }
Chris Lattnere9c35e72005-04-13 05:09:42 +00005939
Dale Johannesen53997b02008-11-04 20:52:49 +00005940 // Check to see if the target has a custom way to lower this. If so, use
5941 // it. (Note we've already expanded the operand in this case.)
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005942 switch (TLI.getOperationAction(ISD::UINT_TO_FP, SourceVT)) {
5943 default: assert(0 && "This action not implemented for this operation!");
5944 case TargetLowering::Legal:
5945 case TargetLowering::Expand:
5946 break; // This case is handled below.
5947 case TargetLowering::Custom: {
Dale Johannesenb300d2a2009-02-07 00:55:49 +00005948 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::UINT_TO_FP, dl, DestTy,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00005949 Source), DAG);
Dale Johannesen1c15bf52008-10-21 20:50:01 +00005950 if (NV.getNode())
5951 return LegalizeOp(NV);
5952 break; // The target decided this was legal after all
5953 }
5954 }
5955
Chris Lattner66de05b2005-05-13 04:45:13 +00005956 // If this is unsigned, and not supported, first perform the conversion to
5957 // signed, then adjust the result if the sign bit is set.
Dale Johannesenaf435272009-02-02 19:03:57 +00005958 SDValue SignedConv = ExpandIntToFP(true, DestTy, Source, dl);
Chris Lattner66de05b2005-05-13 04:45:13 +00005959
Scott Michelfdc40a02009-02-17 22:15:04 +00005960 SDValue SignSet = DAG.getSetCC(dl,
Dale Johannesenaf435272009-02-02 19:03:57 +00005961 TLI.getSetCCResultType(Hi.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00005962 Hi, DAG.getConstant(0, Hi.getValueType()),
5963 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00005964 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00005965 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattnere9c35e72005-04-13 05:09:42 +00005966 SignSet, Four, Zero);
Chris Lattner383203b2005-05-12 18:52:34 +00005967 uint64_t FF = 0x5f800000ULL;
5968 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattnerd2e936a2009-03-08 01:47:41 +00005969 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattnere9c35e72005-04-13 05:09:42 +00005970
Dan Gohman475871a2008-07-27 21:46:04 +00005971 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00005972 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00005973 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00005974 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00005975 SDValue FudgeInReg;
Chris Lattnere9c35e72005-04-13 05:09:42 +00005976 if (DestTy == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00005977 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00005978 PseudoSourceValue::getConstantPool(), 0,
5979 false, Alignment);
Duncan Sands8e4eb092008-06-08 20:54:56 +00005980 else if (DestTy.bitsGT(MVT::f32))
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005981 // FIXME: Avoid the extend by construction the right constantpool?
Dale Johannesenaf435272009-02-02 19:03:57 +00005982 FudgeInReg = DAG.getExtLoad(ISD::EXTLOAD, dl, DestTy, DAG.getEntryNode(),
Dan Gohman69de1932008-02-06 22:27:42 +00005983 CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00005984 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00005985 MVT::f32, false, Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00005986 else
Dale Johannesen9e3d3ab2007-09-14 22:26:36 +00005987 assert(0 && "Unexpected conversion");
5988
Duncan Sands83ec4b62008-06-06 12:08:01 +00005989 MVT SCVT = SignedConv.getValueType();
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005990 if (SCVT != DestTy) {
5991 // Destination type needs to be expanded as well. The FADD now we are
5992 // constructing will be expanded into a libcall.
Duncan Sands83ec4b62008-06-06 12:08:01 +00005993 if (SCVT.getSizeInBits() != DestTy.getSizeInBits()) {
5994 assert(SCVT.getSizeInBits() * 2 == DestTy.getSizeInBits());
Dale Johannesenaf435272009-02-02 19:03:57 +00005995 SignedConv = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy,
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005996 SignedConv, SignedConv.getValue(1));
5997 }
Dale Johannesenaf435272009-02-02 19:03:57 +00005998 SignedConv = DAG.getNode(ISD::BIT_CONVERT, dl, DestTy, SignedConv);
Evan Cheng4c6cfad2007-04-27 07:33:31 +00005999 }
Dale Johannesenaf435272009-02-02 19:03:57 +00006000 return DAG.getNode(ISD::FADD, dl, DestTy, SignedConv, FudgeInReg);
Chris Lattner77e77a62005-01-21 06:05:23 +00006001 }
Chris Lattner0d67f0c2005-05-11 19:02:11 +00006002
Chris Lattnera88a2602005-05-14 05:33:54 +00006003 // Check to see if the target has a custom way to lower this. If so, use it.
Dan Gohmand91446d2008-03-05 01:08:17 +00006004 switch (TLI.getOperationAction(ISD::SINT_TO_FP, SourceVT)) {
Chris Lattnera88a2602005-05-14 05:33:54 +00006005 default: assert(0 && "This action not implemented for this operation!");
6006 case TargetLowering::Legal:
6007 case TargetLowering::Expand:
6008 break; // This case is handled below.
Chris Lattner07dffd62005-08-26 00:14:16 +00006009 case TargetLowering::Custom: {
Dale Johannesenaf435272009-02-02 19:03:57 +00006010 SDValue NV = TLI.LowerOperation(DAG.getNode(ISD::SINT_TO_FP, dl, DestTy,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006011 Source), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006012 if (NV.getNode())
Chris Lattner07dffd62005-08-26 00:14:16 +00006013 return LegalizeOp(NV);
6014 break; // The target decided this was legal after all
6015 }
Chris Lattnera88a2602005-05-14 05:33:54 +00006016 }
6017
Chris Lattner13689e22005-05-12 07:00:44 +00006018 // Expand the source, then glue it back together for the call. We must expand
6019 // the source in case it is shared (this pass of legalize must traverse it).
Dan Gohman034f60e2008-03-11 01:59:03 +00006020 if (ExpandSource) {
Dan Gohman475871a2008-07-27 21:46:04 +00006021 SDValue SrcLo, SrcHi;
Dan Gohman034f60e2008-03-11 01:59:03 +00006022 ExpandOp(Source, SrcLo, SrcHi);
Dale Johannesenaf435272009-02-02 19:03:57 +00006023 Source = DAG.getNode(ISD::BUILD_PAIR, dl, SourceVT, SrcLo, SrcHi);
Dan Gohman034f60e2008-03-11 01:59:03 +00006024 }
Chris Lattner13689e22005-05-12 07:00:44 +00006025
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006026 RTLIB::Libcall LC = isSigned ?
6027 RTLIB::getSINTTOFP(SourceVT, DestTy) :
6028 RTLIB::getUINTTOFP(SourceVT, DestTy);
6029 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unknown int value type");
6030
Dale Johannesenaf435272009-02-02 19:03:57 +00006031 Source = DAG.getNode(ISD::SINT_TO_FP, dl, DestTy, Source);
Dan Gohman475871a2008-07-27 21:46:04 +00006032 SDValue HiPart;
Gabor Greifba36cb52008-08-28 21:40:38 +00006033 SDValue Result = ExpandLibCall(LC, Source.getNode(), isSigned, HiPart);
6034 if (Result.getValueType() != DestTy && HiPart.getNode())
Dale Johannesenaf435272009-02-02 19:03:57 +00006035 Result = DAG.getNode(ISD::BUILD_PAIR, dl, DestTy, Result, HiPart);
Dan Gohmana2e94852008-03-10 23:03:31 +00006036 return Result;
Chris Lattner77e77a62005-01-21 06:05:23 +00006037}
Misha Brukmanedf128a2005-04-21 22:36:52 +00006038
Chris Lattner22cde6a2006-01-28 08:25:58 +00006039/// ExpandLegalINT_TO_FP - This function is responsible for legalizing a
6040/// INT_TO_FP operation of the specified operand when the target requests that
6041/// we expand it. At this point, we know that the result and operand types are
6042/// legal for the target.
Dan Gohman475871a2008-07-27 21:46:04 +00006043SDValue SelectionDAGLegalize::ExpandLegalINT_TO_FP(bool isSigned,
6044 SDValue Op0,
Dale Johannesenaf435272009-02-02 19:03:57 +00006045 MVT DestVT,
6046 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006047 if (Op0.getValueType() == MVT::i32) {
6048 // simple 32-bit [signed|unsigned] integer to float/double expansion
Scott Michelfdc40a02009-02-17 22:15:04 +00006049
Chris Lattner23594d42008-01-16 07:03:22 +00006050 // Get the stack frame index of a 8 byte buffer.
Dan Gohman475871a2008-07-27 21:46:04 +00006051 SDValue StackSlot = DAG.CreateStackTemporary(MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00006052
Chris Lattner22cde6a2006-01-28 08:25:58 +00006053 // word offset constant for Hi/Lo address computation
Dan Gohman475871a2008-07-27 21:46:04 +00006054 SDValue WordOff = DAG.getConstant(sizeof(int), TLI.getPointerTy());
Chris Lattner22cde6a2006-01-28 08:25:58 +00006055 // set up Hi and Lo (into buffer) address based on endian
Dan Gohman475871a2008-07-27 21:46:04 +00006056 SDValue Hi = StackSlot;
Scott Michelfdc40a02009-02-17 22:15:04 +00006057 SDValue Lo = DAG.getNode(ISD::ADD, dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006058 TLI.getPointerTy(), StackSlot, WordOff);
Chris Lattner408c4282006-03-23 05:29:04 +00006059 if (TLI.isLittleEndian())
6060 std::swap(Hi, Lo);
Scott Michelfdc40a02009-02-17 22:15:04 +00006061
Chris Lattner22cde6a2006-01-28 08:25:58 +00006062 // if signed map to unsigned space
Dan Gohman475871a2008-07-27 21:46:04 +00006063 SDValue Op0Mapped;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006064 if (isSigned) {
6065 // constant used to invert sign bit (signed to unsigned mapping)
Dan Gohman475871a2008-07-27 21:46:04 +00006066 SDValue SignBit = DAG.getConstant(0x80000000u, MVT::i32);
Dale Johannesenaf435272009-02-02 19:03:57 +00006067 Op0Mapped = DAG.getNode(ISD::XOR, dl, MVT::i32, Op0, SignBit);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006068 } else {
6069 Op0Mapped = Op0;
6070 }
6071 // store the lo of the constructed double - based on integer input
Dale Johannesenaf435272009-02-02 19:03:57 +00006072 SDValue Store1 = DAG.getStore(DAG.getEntryNode(), dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006073 Op0Mapped, Lo, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006074 // initial hi portion of constructed double
Dan Gohman475871a2008-07-27 21:46:04 +00006075 SDValue InitialHi = DAG.getConstant(0x43300000u, MVT::i32);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006076 // store the hi of the constructed double - biased exponent
Dale Johannesenaf435272009-02-02 19:03:57 +00006077 SDValue Store2=DAG.getStore(Store1, dl, InitialHi, Hi, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006078 // load the constructed double
Dale Johannesenaf435272009-02-02 19:03:57 +00006079 SDValue Load = DAG.getLoad(MVT::f64, dl, Store2, StackSlot, NULL, 0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006080 // FP constant to bias correct the final result
Dan Gohman475871a2008-07-27 21:46:04 +00006081 SDValue Bias = DAG.getConstantFP(isSigned ?
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006082 BitsToDouble(0x4330000080000000ULL) :
6083 BitsToDouble(0x4330000000000000ULL),
Chris Lattner22cde6a2006-01-28 08:25:58 +00006084 MVT::f64);
6085 // subtract the bias
Dale Johannesenaf435272009-02-02 19:03:57 +00006086 SDValue Sub = DAG.getNode(ISD::FSUB, dl, MVT::f64, Load, Bias);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006087 // final result
Dan Gohman475871a2008-07-27 21:46:04 +00006088 SDValue Result;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006089 // handle final rounding
6090 if (DestVT == MVT::f64) {
6091 // do nothing
6092 Result = Sub;
Duncan Sands8e4eb092008-06-08 20:54:56 +00006093 } else if (DestVT.bitsLT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006094 Result = DAG.getNode(ISD::FP_ROUND, dl, DestVT, Sub,
Chris Lattner0bd48932008-01-17 07:00:52 +00006095 DAG.getIntPtrConstant(0));
Duncan Sands8e4eb092008-06-08 20:54:56 +00006096 } else if (DestVT.bitsGT(MVT::f64)) {
Dale Johannesenaf435272009-02-02 19:03:57 +00006097 Result = DAG.getNode(ISD::FP_EXTEND, dl, DestVT, Sub);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006098 }
6099 return Result;
6100 }
6101 assert(!isSigned && "Legalize cannot Expand SINT_TO_FP for i64 yet");
Dale Johannesenaf435272009-02-02 19:03:57 +00006102 SDValue Tmp1 = DAG.getNode(ISD::SINT_TO_FP, dl, DestVT, Op0);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006103
Dale Johannesenaf435272009-02-02 19:03:57 +00006104 SDValue SignSet = DAG.getSetCC(dl, TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00006105 Op0, DAG.getConstant(0, Op0.getValueType()),
6106 ISD::SETLT);
Dan Gohman475871a2008-07-27 21:46:04 +00006107 SDValue Zero = DAG.getIntPtrConstant(0), Four = DAG.getIntPtrConstant(4);
Dale Johannesenaf435272009-02-02 19:03:57 +00006108 SDValue CstOffset = DAG.getNode(ISD::SELECT, dl, Zero.getValueType(),
Chris Lattner22cde6a2006-01-28 08:25:58 +00006109 SignSet, Four, Zero);
6110
6111 // If the sign bit of the integer is set, the large number will be treated
6112 // as a negative number. To counteract this, the dynamic code adds an
6113 // offset depending on the data type.
6114 uint64_t FF;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006115 switch (Op0.getValueType().getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006116 default: assert(0 && "Unsupported integer type!");
6117 case MVT::i8 : FF = 0x43800000ULL; break; // 2^8 (as a float)
6118 case MVT::i16: FF = 0x47800000ULL; break; // 2^16 (as a float)
6119 case MVT::i32: FF = 0x4F800000ULL; break; // 2^32 (as a float)
6120 case MVT::i64: FF = 0x5F800000ULL; break; // 2^64 (as a float)
6121 }
6122 if (TLI.isLittleEndian()) FF <<= 32;
Chris Lattnerd2e936a2009-03-08 01:47:41 +00006123 Constant *FudgeFactor = ConstantInt::get(Type::Int64Ty, FF);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006124
Dan Gohman475871a2008-07-27 21:46:04 +00006125 SDValue CPIdx = DAG.getConstantPool(FudgeFactor, TLI.getPointerTy());
Evan Cheng1606e8e2009-03-13 07:51:59 +00006126 unsigned Alignment = cast<ConstantPoolSDNode>(CPIdx)->getAlignment();
Dale Johannesenaf435272009-02-02 19:03:57 +00006127 CPIdx = DAG.getNode(ISD::ADD, dl, TLI.getPointerTy(), CPIdx, CstOffset);
Dan Gohman87a0f102008-09-22 22:40:08 +00006128 Alignment = std::min(Alignment, 4u);
Dan Gohman475871a2008-07-27 21:46:04 +00006129 SDValue FudgeInReg;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006130 if (DestVT == MVT::f32)
Dale Johannesenaf435272009-02-02 19:03:57 +00006131 FudgeInReg = DAG.getLoad(MVT::f32, dl, DAG.getEntryNode(), CPIdx,
Dan Gohman50284d82008-09-16 22:05:41 +00006132 PseudoSourceValue::getConstantPool(), 0,
6133 false, Alignment);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006134 else {
Dan Gohman69de1932008-02-06 22:27:42 +00006135 FudgeInReg =
Dale Johannesenaf435272009-02-02 19:03:57 +00006136 LegalizeOp(DAG.getExtLoad(ISD::EXTLOAD, dl, DestVT,
Dan Gohman69de1932008-02-06 22:27:42 +00006137 DAG.getEntryNode(), CPIdx,
Dan Gohman3069b872008-02-07 18:41:25 +00006138 PseudoSourceValue::getConstantPool(), 0,
Dan Gohman50284d82008-09-16 22:05:41 +00006139 MVT::f32, false, Alignment));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006140 }
6141
Dale Johannesenaf435272009-02-02 19:03:57 +00006142 return DAG.getNode(ISD::FADD, dl, DestVT, Tmp1, FudgeInReg);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006143}
6144
6145/// PromoteLegalINT_TO_FP - This function is responsible for legalizing a
6146/// *INT_TO_FP operation of the specified operand when the target requests that
6147/// we promote it. At this point, we know that the result and operand types are
6148/// legal for the target, and that there is a legal UINT_TO_FP or SINT_TO_FP
6149/// operation that takes a larger input.
Dan Gohman475871a2008-07-27 21:46:04 +00006150SDValue SelectionDAGLegalize::PromoteLegalINT_TO_FP(SDValue LegalOp,
6151 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006152 bool isSigned,
6153 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006154 // First step, figure out the appropriate *INT_TO_FP operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006155 MVT NewInTy = LegalOp.getValueType();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006156
6157 unsigned OpToUse = 0;
6158
6159 // Scan for the appropriate larger type to use.
6160 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006161 NewInTy = (MVT::SimpleValueType)(NewInTy.getSimpleVT()+1);
6162 assert(NewInTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006163
6164 // If the target supports SINT_TO_FP of this type, use it.
6165 switch (TLI.getOperationAction(ISD::SINT_TO_FP, NewInTy)) {
6166 default: break;
6167 case TargetLowering::Legal:
6168 if (!TLI.isTypeLegal(NewInTy))
6169 break; // Can't use this datatype.
6170 // FALL THROUGH.
6171 case TargetLowering::Custom:
6172 OpToUse = ISD::SINT_TO_FP;
6173 break;
6174 }
6175 if (OpToUse) break;
6176 if (isSigned) continue;
6177
6178 // If the target supports UINT_TO_FP of this type, use it.
6179 switch (TLI.getOperationAction(ISD::UINT_TO_FP, NewInTy)) {
6180 default: break;
6181 case TargetLowering::Legal:
6182 if (!TLI.isTypeLegal(NewInTy))
6183 break; // Can't use this datatype.
6184 // FALL THROUGH.
6185 case TargetLowering::Custom:
6186 OpToUse = ISD::UINT_TO_FP;
6187 break;
6188 }
6189 if (OpToUse) break;
6190
6191 // Otherwise, try a larger type.
6192 }
6193
6194 // Okay, we found the operation and type to use. Zero extend our input to the
6195 // desired type then run the operation on it.
Dale Johannesenaf435272009-02-02 19:03:57 +00006196 return DAG.getNode(OpToUse, dl, DestVT,
Chris Lattner22cde6a2006-01-28 08:25:58 +00006197 DAG.getNode(isSigned ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND,
Dale Johannesenaf435272009-02-02 19:03:57 +00006198 dl, NewInTy, LegalOp));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006199}
6200
6201/// PromoteLegalFP_TO_INT - This function is responsible for legalizing a
6202/// FP_TO_*INT operation of the specified operand when the target requests that
6203/// we promote it. At this point, we know that the result and operand types are
6204/// legal for the target, and that there is a legal FP_TO_UINT or FP_TO_SINT
6205/// operation that returns a larger result.
Dan Gohman475871a2008-07-27 21:46:04 +00006206SDValue SelectionDAGLegalize::PromoteLegalFP_TO_INT(SDValue LegalOp,
6207 MVT DestVT,
Dale Johannesenaf435272009-02-02 19:03:57 +00006208 bool isSigned,
6209 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006210 // First step, figure out the appropriate FP_TO*INT operation to use.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006211 MVT NewOutTy = DestVT;
Chris Lattner22cde6a2006-01-28 08:25:58 +00006212
6213 unsigned OpToUse = 0;
6214
6215 // Scan for the appropriate larger type to use.
6216 while (1) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006217 NewOutTy = (MVT::SimpleValueType)(NewOutTy.getSimpleVT()+1);
6218 assert(NewOutTy.isInteger() && "Ran out of possibilities!");
Chris Lattner22cde6a2006-01-28 08:25:58 +00006219
6220 // If the target supports FP_TO_SINT returning this type, use it.
6221 switch (TLI.getOperationAction(ISD::FP_TO_SINT, NewOutTy)) {
6222 default: break;
6223 case TargetLowering::Legal:
6224 if (!TLI.isTypeLegal(NewOutTy))
6225 break; // Can't use this datatype.
6226 // FALL THROUGH.
6227 case TargetLowering::Custom:
6228 OpToUse = ISD::FP_TO_SINT;
6229 break;
6230 }
6231 if (OpToUse) break;
6232
6233 // If the target supports FP_TO_UINT of this type, use it.
6234 switch (TLI.getOperationAction(ISD::FP_TO_UINT, NewOutTy)) {
6235 default: break;
6236 case TargetLowering::Legal:
6237 if (!TLI.isTypeLegal(NewOutTy))
6238 break; // Can't use this datatype.
6239 // FALL THROUGH.
6240 case TargetLowering::Custom:
6241 OpToUse = ISD::FP_TO_UINT;
6242 break;
6243 }
6244 if (OpToUse) break;
6245
6246 // Otherwise, try a larger type.
6247 }
6248
Scott Michelfdc40a02009-02-17 22:15:04 +00006249
Chris Lattner27a6c732007-11-24 07:07:01 +00006250 // Okay, we found the operation and type to use.
Dale Johannesenaf435272009-02-02 19:03:57 +00006251 SDValue Operation = DAG.getNode(OpToUse, dl, NewOutTy, LegalOp);
Duncan Sands126d9072008-07-04 11:47:58 +00006252
Chris Lattner27a6c732007-11-24 07:07:01 +00006253 // If the operation produces an invalid type, it must be custom lowered. Use
6254 // the target lowering hooks to expand it. Just keep the low part of the
6255 // expanded operation, we know that we're truncating anyway.
6256 if (getTypeAction(NewOutTy) == Expand) {
Duncan Sands1607f052008-12-01 11:39:25 +00006257 SmallVector<SDValue, 2> Results;
6258 TLI.ReplaceNodeResults(Operation.getNode(), Results, DAG);
6259 assert(Results.size() == 1 && "Incorrect FP_TO_XINT lowering!");
6260 Operation = Results[0];
Chris Lattner27a6c732007-11-24 07:07:01 +00006261 }
Duncan Sands126d9072008-07-04 11:47:58 +00006262
Chris Lattner27a6c732007-11-24 07:07:01 +00006263 // Truncate the result of the extended FP_TO_*INT operation to the desired
6264 // size.
Dale Johannesenaf435272009-02-02 19:03:57 +00006265 return DAG.getNode(ISD::TRUNCATE, dl, DestVT, Operation);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006266}
6267
6268/// ExpandBSWAP - Open code the operations for BSWAP of the specified operation.
6269///
Dale Johannesen8a782a22009-02-02 22:12:50 +00006270SDValue SelectionDAGLegalize::ExpandBSWAP(SDValue Op, DebugLoc dl) {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006271 MVT VT = Op.getValueType();
6272 MVT SHVT = TLI.getShiftAmountTy();
Dan Gohman475871a2008-07-27 21:46:04 +00006273 SDValue Tmp1, Tmp2, Tmp3, Tmp4, Tmp5, Tmp6, Tmp7, Tmp8;
Duncan Sands83ec4b62008-06-06 12:08:01 +00006274 switch (VT.getSimpleVT()) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006275 default: assert(0 && "Unhandled Expand type in BSWAP!"); abort();
6276 case MVT::i16:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006277 Tmp2 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6278 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6279 return DAG.getNode(ISD::OR, dl, VT, Tmp1, Tmp2);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006280 case MVT::i32:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006281 Tmp4 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6282 Tmp3 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6283 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6284 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6285 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(0xFF0000, VT));
6286 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(0xFF00, VT));
6287 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6288 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6289 return DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006290 case MVT::i64:
Dale Johannesen8a782a22009-02-02 22:12:50 +00006291 Tmp8 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(56, SHVT));
6292 Tmp7 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(40, SHVT));
6293 Tmp6 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(24, SHVT));
6294 Tmp5 = DAG.getNode(ISD::SHL, dl, VT, Op, DAG.getConstant(8, SHVT));
6295 Tmp4 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(8, SHVT));
6296 Tmp3 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(24, SHVT));
6297 Tmp2 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(40, SHVT));
6298 Tmp1 = DAG.getNode(ISD::SRL, dl, VT, Op, DAG.getConstant(56, SHVT));
6299 Tmp7 = DAG.getNode(ISD::AND, dl, VT, Tmp7, DAG.getConstant(255ULL<<48, VT));
6300 Tmp6 = DAG.getNode(ISD::AND, dl, VT, Tmp6, DAG.getConstant(255ULL<<40, VT));
6301 Tmp5 = DAG.getNode(ISD::AND, dl, VT, Tmp5, DAG.getConstant(255ULL<<32, VT));
6302 Tmp4 = DAG.getNode(ISD::AND, dl, VT, Tmp4, DAG.getConstant(255ULL<<24, VT));
6303 Tmp3 = DAG.getNode(ISD::AND, dl, VT, Tmp3, DAG.getConstant(255ULL<<16, VT));
6304 Tmp2 = DAG.getNode(ISD::AND, dl, VT, Tmp2, DAG.getConstant(255ULL<<8 , VT));
6305 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp7);
6306 Tmp6 = DAG.getNode(ISD::OR, dl, VT, Tmp6, Tmp5);
6307 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp3);
6308 Tmp2 = DAG.getNode(ISD::OR, dl, VT, Tmp2, Tmp1);
6309 Tmp8 = DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp6);
6310 Tmp4 = DAG.getNode(ISD::OR, dl, VT, Tmp4, Tmp2);
6311 return DAG.getNode(ISD::OR, dl, VT, Tmp8, Tmp4);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006312 }
6313}
6314
6315/// ExpandBitCount - Expand the specified bitcount instruction into operations.
6316///
Scott Michelfdc40a02009-02-17 22:15:04 +00006317SDValue SelectionDAGLegalize::ExpandBitCount(unsigned Opc, SDValue Op,
Dale Johannesen8a782a22009-02-02 22:12:50 +00006318 DebugLoc dl) {
Chris Lattner22cde6a2006-01-28 08:25:58 +00006319 switch (Opc) {
6320 default: assert(0 && "Cannot expand this yet!");
6321 case ISD::CTPOP: {
6322 static const uint64_t mask[6] = {
6323 0x5555555555555555ULL, 0x3333333333333333ULL,
6324 0x0F0F0F0F0F0F0F0FULL, 0x00FF00FF00FF00FFULL,
6325 0x0000FFFF0000FFFFULL, 0x00000000FFFFFFFFULL
6326 };
Duncan Sands83ec4b62008-06-06 12:08:01 +00006327 MVT VT = Op.getValueType();
6328 MVT ShVT = TLI.getShiftAmountTy();
6329 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006330 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
6331 //x = (x & mask[i][len/8]) + (x >> (1 << i) & mask[i][len/8])
Duncan Sandsb0d5cdd2009-02-01 18:06:53 +00006332 unsigned EltSize = VT.isVector() ?
6333 VT.getVectorElementType().getSizeInBits() : len;
6334 SDValue Tmp2 = DAG.getConstant(APInt(EltSize, mask[i]), VT);
Dan Gohman475871a2008-07-27 21:46:04 +00006335 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00006336 Op = DAG.getNode(ISD::ADD, dl, VT,
Dale Johannesene72c5962009-02-06 21:55:48 +00006337 DAG.getNode(ISD::AND, dl, VT, Op, Tmp2),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006338 DAG.getNode(ISD::AND, dl, VT,
6339 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3),
6340 Tmp2));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006341 }
6342 return Op;
6343 }
6344 case ISD::CTLZ: {
6345 // for now, we do this:
6346 // x = x | (x >> 1);
6347 // x = x | (x >> 2);
6348 // ...
6349 // x = x | (x >>16);
6350 // x = x | (x >>32); // for 64-bit input
6351 // return popcount(~x);
6352 //
6353 // but see also: http://www.hackersdelight.org/HDcode/nlz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006354 MVT VT = Op.getValueType();
6355 MVT ShVT = TLI.getShiftAmountTy();
6356 unsigned len = VT.getSizeInBits();
Chris Lattner22cde6a2006-01-28 08:25:58 +00006357 for (unsigned i = 0; (1U << i) <= (len / 2); ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00006358 SDValue Tmp3 = DAG.getConstant(1ULL << i, ShVT);
Scott Michelfdc40a02009-02-17 22:15:04 +00006359 Op = DAG.getNode(ISD::OR, dl, VT, Op,
Dale Johannesene72c5962009-02-06 21:55:48 +00006360 DAG.getNode(ISD::SRL, dl, VT, Op, Tmp3));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006361 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00006362 Op = DAG.getNOT(dl, Op, VT);
6363 return DAG.getNode(ISD::CTPOP, dl, VT, Op);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006364 }
6365 case ISD::CTTZ: {
6366 // for now, we use: { return popcount(~x & (x - 1)); }
6367 // unless the target has ctlz but not ctpop, in which case we use:
6368 // { return 32 - nlz(~x & (x-1)); }
6369 // see also http://www.hackersdelight.org/HDcode/ntz.cc
Duncan Sands83ec4b62008-06-06 12:08:01 +00006370 MVT VT = Op.getValueType();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006371 SDValue Tmp3 = DAG.getNode(ISD::AND, dl, VT,
6372 DAG.getNOT(dl, Op, VT),
6373 DAG.getNode(ISD::SUB, dl, VT, Op,
Bill Wendling7581bfa2009-01-30 23:03:19 +00006374 DAG.getConstant(1, VT)));
Chris Lattner22cde6a2006-01-28 08:25:58 +00006375 // If ISD::CTLZ is legal and CTPOP isn't, then do that instead.
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006376 if (!TLI.isOperationLegalOrCustom(ISD::CTPOP, VT) &&
6377 TLI.isOperationLegalOrCustom(ISD::CTLZ, VT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00006378 return DAG.getNode(ISD::SUB, dl, VT,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006379 DAG.getConstant(VT.getSizeInBits(), VT),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006380 DAG.getNode(ISD::CTLZ, dl, VT, Tmp3));
6381 return DAG.getNode(ISD::CTPOP, dl, VT, Tmp3);
Chris Lattner22cde6a2006-01-28 08:25:58 +00006382 }
6383 }
6384}
Chris Lattnere34b3962005-01-19 04:19:40 +00006385
Dan Gohman475871a2008-07-27 21:46:04 +00006386/// ExpandOp - Expand the specified SDValue into its two component pieces
Chris Lattner3e928bb2005-01-07 07:47:09 +00006387/// Lo&Hi. Note that the Op MUST be an expanded type. As a result of this, the
Dan Gohman929d3eb2008-10-01 15:07:49 +00006388/// LegalizedNodes map is filled in for any results that are not expanded, the
Chris Lattner3e928bb2005-01-07 07:47:09 +00006389/// ExpandedNodes map is filled in for any results that are expanded, and the
6390/// Lo/Hi values are returned.
Dan Gohman475871a2008-07-27 21:46:04 +00006391void SelectionDAGLegalize::ExpandOp(SDValue Op, SDValue &Lo, SDValue &Hi){
Eli Friedman1fde9c52009-05-24 02:46:31 +00006392 assert(0 && "This should be dead!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00006393 MVT VT = Op.getValueType();
6394 MVT NVT = TLI.getTypeToTransformTo(VT);
Gabor Greifba36cb52008-08-28 21:40:38 +00006395 SDNode *Node = Op.getNode();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006396 DebugLoc dl = Node->getDebugLoc();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006397 assert(getTypeAction(VT) == Expand && "Not an expanded type!");
Duncan Sands8e4eb092008-06-08 20:54:56 +00006398 assert(((NVT.isInteger() && NVT.bitsLT(VT)) || VT.isFloatingPoint() ||
Duncan Sands83ec4b62008-06-06 12:08:01 +00006399 VT.isVector()) && "Cannot expand to FP value or to larger int value!");
Chris Lattner3e928bb2005-01-07 07:47:09 +00006400
Chris Lattner6fdcb252005-09-02 20:32:45 +00006401 // See if we already expanded it.
Dan Gohman475871a2008-07-27 21:46:04 +00006402 DenseMap<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattner6fdcb252005-09-02 20:32:45 +00006403 = ExpandedNodes.find(Op);
6404 if (I != ExpandedNodes.end()) {
6405 Lo = I->second.first;
6406 Hi = I->second.second;
6407 return;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006408 }
6409
Chris Lattner3e928bb2005-01-07 07:47:09 +00006410 switch (Node->getOpcode()) {
Chris Lattner348e93c2006-01-21 04:27:00 +00006411 case ISD::CopyFromReg:
6412 assert(0 && "CopyFromReg must be legal!");
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006413 case ISD::FP_ROUND_INREG:
Scott Michelfdc40a02009-02-17 22:15:04 +00006414 if (VT == MVT::ppcf128 &&
6415 TLI.getOperationAction(ISD::FP_ROUND_INREG, VT) ==
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006416 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006417 SDValue SrcLo, SrcHi, Src;
Dale Johannesenfcf4d242007-10-11 23:32:15 +00006418 ExpandOp(Op.getOperand(0), SrcLo, SrcHi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006419 Src = DAG.getNode(ISD::BUILD_PAIR, dl, VT, SrcLo, SrcHi);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006420 SDValue Result =
6421 TLI.LowerOperation(DAG.getNode(ISD::FP_ROUND_INREG, dl, VT, Src,
6422 Op.getOperand(1)), DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006423 assert(Result.getNode()->getOpcode() == ISD::BUILD_PAIR);
6424 Lo = Result.getNode()->getOperand(0);
6425 Hi = Result.getNode()->getOperand(1);
Dale Johannesen6eaeff22007-10-10 01:01:31 +00006426 break;
6427 }
6428 // fall through
Chris Lattner348e93c2006-01-21 04:27:00 +00006429 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006430#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00006431 cerr << "NODE: "; Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00006432#endif
Chris Lattner3e928bb2005-01-07 07:47:09 +00006433 assert(0 && "Do not know how to expand this operator!");
6434 abort();
Dan Gohman1953ecb2008-02-27 01:52:30 +00006435 case ISD::EXTRACT_ELEMENT:
6436 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00006437 if (cast<ConstantSDNode>(Node->getOperand(1))->getZExtValue())
Dan Gohman1953ecb2008-02-27 01:52:30 +00006438 return ExpandOp(Hi, Lo, Hi);
Dan Gohman18714ae2008-02-27 19:44:57 +00006439 return ExpandOp(Lo, Lo, Hi);
Dale Johannesen25f1d082007-10-31 00:32:36 +00006440 case ISD::EXTRACT_VECTOR_ELT:
Dale Johannesen25f1d082007-10-31 00:32:36 +00006441 // ExpandEXTRACT_VECTOR_ELT tolerates invalid result types.
6442 Lo = ExpandEXTRACT_VECTOR_ELT(Op);
6443 return ExpandOp(Lo, Lo, Hi);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00006444 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00006445 Lo = DAG.getUNDEF(NVT);
6446 Hi = DAG.getUNDEF(NVT);
Nate Begemanfc1b1da2005-04-01 22:34:39 +00006447 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006448 case ISD::Constant: {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006449 unsigned NVTBits = NVT.getSizeInBits();
Dan Gohman050f5502008-03-03 22:20:46 +00006450 const APInt &Cst = cast<ConstantSDNode>(Node)->getAPIntValue();
6451 Lo = DAG.getConstant(APInt(Cst).trunc(NVTBits), NVT);
6452 Hi = DAG.getConstant(Cst.lshr(NVTBits).trunc(NVTBits), NVT);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006453 break;
6454 }
Evan Cheng00495212006-12-12 21:32:44 +00006455 case ISD::ConstantFP: {
6456 ConstantFPSDNode *CFP = cast<ConstantFPSDNode>(Node);
Dale Johannesena471c2e2007-10-11 18:07:22 +00006457 if (CFP->getValueType(0) == MVT::ppcf128) {
Dale Johannesen7111b022008-10-09 18:53:47 +00006458 APInt api = CFP->getValueAPF().bitcastToAPInt();
Dale Johannesena471c2e2007-10-11 18:07:22 +00006459 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[1])),
6460 MVT::f64);
Scott Michelfdc40a02009-02-17 22:15:04 +00006461 Hi = DAG.getConstantFP(APFloat(APInt(64, 1, &api.getRawData()[0])),
Dale Johannesena471c2e2007-10-11 18:07:22 +00006462 MVT::f64);
6463 break;
6464 }
Evan Cheng279101e2006-12-12 22:19:28 +00006465 Lo = ExpandConstantFP(CFP, false, DAG, TLI);
Evan Cheng9f877882006-12-13 20:57:08 +00006466 if (getTypeAction(Lo.getValueType()) == Expand)
6467 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006468 break;
6469 }
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006470 case ISD::BUILD_PAIR:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006471 // Return the operands.
6472 Lo = Node->getOperand(0);
6473 Hi = Node->getOperand(1);
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006474 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006475
Chris Lattner27a6c732007-11-24 07:07:01 +00006476 case ISD::MERGE_VALUES:
Chris Lattnerc58d5582007-11-24 19:12:15 +00006477 if (Node->getNumValues() == 1) {
6478 ExpandOp(Op.getOperand(0), Lo, Hi);
6479 break;
6480 }
Chris Lattner27a6c732007-11-24 07:07:01 +00006481 // FIXME: For now only expand i64,chain = MERGE_VALUES (x, y)
Gabor Greif99a6cb92008-08-26 22:36:50 +00006482 assert(Op.getResNo() == 0 && Node->getNumValues() == 2 &&
Chris Lattner27a6c732007-11-24 07:07:01 +00006483 Op.getValue(1).getValueType() == MVT::Other &&
6484 "unhandled MERGE_VALUES");
6485 ExpandOp(Op.getOperand(0), Lo, Hi);
6486 // Remember that we legalized the chain.
6487 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Op.getOperand(1)));
6488 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006489
Chris Lattner58f79632005-12-12 22:27:43 +00006490 case ISD::SIGN_EXTEND_INREG:
6491 ExpandOp(Node->getOperand(0), Lo, Hi);
Chris Lattner4bdd2752006-10-06 17:34:12 +00006492 // sext_inreg the low part if needed.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006493 Lo = DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, NVT, Lo, Node->getOperand(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00006494
Chris Lattner4bdd2752006-10-06 17:34:12 +00006495 // The high part gets the sign extension from the lo-part. This handles
6496 // things like sextinreg V:i64 from i8.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006497 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Duncan Sands83ec4b62008-06-06 12:08:01 +00006498 DAG.getConstant(NVT.getSizeInBits()-1,
Chris Lattner58f79632005-12-12 22:27:43 +00006499 TLI.getShiftAmountTy()));
Chris Lattner58f79632005-12-12 22:27:43 +00006500 break;
Chris Lattnerd4e50bb2005-03-28 22:03:13 +00006501
Nate Begemand88fc032006-01-14 03:14:10 +00006502 case ISD::BSWAP: {
6503 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006504 SDValue TempLo = DAG.getNode(ISD::BSWAP, dl, NVT, Hi);
6505 Hi = DAG.getNode(ISD::BSWAP, dl, NVT, Lo);
Nate Begemand88fc032006-01-14 03:14:10 +00006506 Lo = TempLo;
6507 break;
6508 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006509
Chris Lattneredb1add2005-05-11 04:51:16 +00006510 case ISD::CTPOP:
6511 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006512 Lo = DAG.getNode(ISD::ADD, dl, NVT, // ctpop(HL) -> ctpop(H)+ctpop(L)
6513 DAG.getNode(ISD::CTPOP, dl, NVT, Lo),
6514 DAG.getNode(ISD::CTPOP, dl, NVT, Hi));
Chris Lattneredb1add2005-05-11 04:51:16 +00006515 Hi = DAG.getConstant(0, NVT);
6516 break;
6517
Chris Lattner39a8f332005-05-12 19:05:01 +00006518 case ISD::CTLZ: {
6519 // ctlz (HL) -> ctlz(H) != 32 ? ctlz(H) : (ctlz(L)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006520 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006521 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006522 SDValue HLZ = DAG.getNode(ISD::CTLZ, dl, NVT, Hi);
6523 SDValue TopNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), HLZ,
6524 BitsC, ISD::SETNE);
6525 SDValue LowPart = DAG.getNode(ISD::CTLZ, dl, NVT, Lo);
6526 LowPart = DAG.getNode(ISD::ADD, dl, NVT, LowPart, BitsC);
Chris Lattner39a8f332005-05-12 19:05:01 +00006527
Dale Johannesen8a782a22009-02-02 22:12:50 +00006528 Lo = DAG.getNode(ISD::SELECT, dl, NVT, TopNotZero, HLZ, LowPart);
Chris Lattner39a8f332005-05-12 19:05:01 +00006529 Hi = DAG.getConstant(0, NVT);
6530 break;
6531 }
6532
6533 case ISD::CTTZ: {
6534 // cttz (HL) -> cttz(L) != 32 ? cttz(L) : (cttz(H)+32)
Chris Lattner3becf202005-05-12 19:27:51 +00006535 ExpandOp(Node->getOperand(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006536 SDValue BitsC = DAG.getConstant(NVT.getSizeInBits(), NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006537 SDValue LTZ = DAG.getNode(ISD::CTTZ, dl, NVT, Lo);
6538 SDValue BotNotZero = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT), LTZ,
6539 BitsC, ISD::SETNE);
6540 SDValue HiPart = DAG.getNode(ISD::CTTZ, dl, NVT, Hi);
6541 HiPart = DAG.getNode(ISD::ADD, dl, NVT, HiPart, BitsC);
Chris Lattner39a8f332005-05-12 19:05:01 +00006542
Dale Johannesen8a782a22009-02-02 22:12:50 +00006543 Lo = DAG.getNode(ISD::SELECT, dl, NVT, BotNotZero, LTZ, HiPart);
Chris Lattner39a8f332005-05-12 19:05:01 +00006544 Hi = DAG.getConstant(0, NVT);
6545 break;
6546 }
Chris Lattneredb1add2005-05-11 04:51:16 +00006547
Nate Begemanacc398c2006-01-25 18:21:52 +00006548 case ISD::VAARG: {
Dan Gohman475871a2008-07-27 21:46:04 +00006549 SDValue Ch = Node->getOperand(0); // Legalize the chain.
6550 SDValue Ptr = Node->getOperand(1); // Legalize the pointer.
Dale Johannesenc460ae92009-02-04 00:13:36 +00006551 Lo = DAG.getVAArg(NVT, dl, Ch, Ptr, Node->getOperand(2));
6552 Hi = DAG.getVAArg(NVT, dl, Lo.getValue(1), Ptr, Node->getOperand(2));
Nate Begemanacc398c2006-01-25 18:21:52 +00006553
6554 // Remember that we legalized the chain.
Chris Lattner8137c9e2006-01-28 05:07:51 +00006555 Hi = LegalizeOp(Hi);
Nate Begemanacc398c2006-01-25 18:21:52 +00006556 AddLegalizedOperand(Op.getValue(1), Hi.getValue(1));
Duncan Sands0753fc12008-02-11 10:37:04 +00006557 if (TLI.isBigEndian())
Nate Begemanacc398c2006-01-25 18:21:52 +00006558 std::swap(Lo, Hi);
6559 break;
6560 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006561
Chris Lattner3e928bb2005-01-07 07:47:09 +00006562 case ISD::LOAD: {
Evan Cheng466685d2006-10-09 20:57:25 +00006563 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00006564 SDValue Ch = LD->getChain(); // Legalize the chain.
6565 SDValue Ptr = LD->getBasePtr(); // Legalize the pointer.
Evan Cheng466685d2006-10-09 20:57:25 +00006566 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f8613e2008-08-14 20:04:46 +00006567 const Value *SV = LD->getSrcValue();
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006568 int SVOffset = LD->getSrcValueOffset();
6569 unsigned Alignment = LD->getAlignment();
6570 bool isVolatile = LD->isVolatile();
Chris Lattner3e928bb2005-01-07 07:47:09 +00006571
Evan Cheng466685d2006-10-09 20:57:25 +00006572 if (ExtType == ISD::NON_EXTLOAD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006573 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006574 isVolatile, Alignment);
Evan Cheng00495212006-12-12 21:32:44 +00006575 if (VT == MVT::f32 || VT == MVT::f64) {
6576 // f32->i32 or f64->i64 one to one expansion.
6577 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006578 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng9f877882006-12-13 20:57:08 +00006579 // Recursively expand the new load.
6580 if (getTypeAction(NVT) == Expand)
6581 ExpandOp(Lo, Lo, Hi);
Evan Cheng00495212006-12-12 21:32:44 +00006582 break;
6583 }
Chris Lattnerec39a452005-01-19 18:02:17 +00006584
Evan Cheng466685d2006-10-09 20:57:25 +00006585 // Increment the pointer to the other half.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006586 unsigned IncrementSize = Lo.getValueType().getSizeInBits()/8;
Dale Johannesen8a782a22009-02-02 22:12:50 +00006587 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00006588 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00006589 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00006590 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006591 Hi = DAG.getLoad(NVT, dl, Ch, Ptr, SV, SVOffset,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006592 isVolatile, Alignment);
Misha Brukmanedf128a2005-04-21 22:36:52 +00006593
Evan Cheng466685d2006-10-09 20:57:25 +00006594 // Build a factor node to remember that this load is independent of the
6595 // other one.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006596 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006597 Hi.getValue(1));
Evan Cheng466685d2006-10-09 20:57:25 +00006598
6599 // Remember that we legalized the chain.
6600 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Duncan Sands0753fc12008-02-11 10:37:04 +00006601 if (TLI.isBigEndian())
Evan Cheng466685d2006-10-09 20:57:25 +00006602 std::swap(Lo, Hi);
6603 } else {
Duncan Sands83ec4b62008-06-06 12:08:01 +00006604 MVT EVT = LD->getMemoryVT();
Evan Cheng548f6112006-12-13 03:19:57 +00006605
Dale Johannesenb6210fc2007-10-19 20:29:00 +00006606 if ((VT == MVT::f64 && EVT == MVT::f32) ||
6607 (VT == MVT::ppcf128 && (EVT==MVT::f64 || EVT==MVT::f32))) {
Evan Cheng548f6112006-12-13 03:19:57 +00006608 // f64 = EXTLOAD f32 should expand to LOAD, FP_EXTEND
Dale Johannesen8a782a22009-02-02 22:12:50 +00006609 SDValue Load = DAG.getLoad(EVT, dl, Ch, Ptr, SV,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006610 SVOffset, isVolatile, Alignment);
Evan Cheng548f6112006-12-13 03:19:57 +00006611 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006612 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Load.getValue(1)));
Dale Johannesen8a782a22009-02-02 22:12:50 +00006613 ExpandOp(DAG.getNode(ISD::FP_EXTEND, dl, VT, Load), Lo, Hi);
Evan Cheng548f6112006-12-13 03:19:57 +00006614 break;
6615 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006616
Evan Cheng466685d2006-10-09 20:57:25 +00006617 if (EVT == NVT)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006618 Lo = DAG.getLoad(NVT, dl, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006619 SVOffset, isVolatile, Alignment);
Evan Cheng466685d2006-10-09 20:57:25 +00006620 else
Dale Johannesen8a782a22009-02-02 22:12:50 +00006621 Lo = DAG.getExtLoad(ExtType, dl, NVT, Ch, Ptr, SV,
Dan Gohmand6fd1bc2007-07-09 22:18:38 +00006622 SVOffset, EVT, isVolatile,
6623 Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00006624
Evan Cheng466685d2006-10-09 20:57:25 +00006625 // Remember that we legalized the chain.
Dan Gohman475871a2008-07-27 21:46:04 +00006626 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Lo.getValue(1)));
Evan Cheng466685d2006-10-09 20:57:25 +00006627
6628 if (ExtType == ISD::SEXTLOAD) {
6629 // The high part is obtained by SRA'ing all but one of the bits of the
6630 // lo part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006631 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006632 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Evan Cheng466685d2006-10-09 20:57:25 +00006633 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
6634 } else if (ExtType == ISD::ZEXTLOAD) {
6635 // The high part is just a zero.
6636 Hi = DAG.getConstant(0, NVT);
6637 } else /* if (ExtType == ISD::EXTLOAD) */ {
6638 // The high part is undefined.
Dale Johannesene8d72302009-02-06 23:05:02 +00006639 Hi = DAG.getUNDEF(NVT);
Evan Cheng466685d2006-10-09 20:57:25 +00006640 }
6641 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006642 break;
6643 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00006644 case ISD::AND:
6645 case ISD::OR:
6646 case ISD::XOR: { // Simple logical operators -> two trivial pieces.
Dan Gohman475871a2008-07-27 21:46:04 +00006647 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006648 ExpandOp(Node->getOperand(0), LL, LH);
6649 ExpandOp(Node->getOperand(1), RL, RH);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006650 Lo = DAG.getNode(Node->getOpcode(), dl, NVT, LL, RL);
6651 Hi = DAG.getNode(Node->getOpcode(), dl, NVT, LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006652 break;
6653 }
6654 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006655 SDValue LL, LH, RL, RH;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006656 ExpandOp(Node->getOperand(1), LL, LH);
6657 ExpandOp(Node->getOperand(2), RL, RH);
Evan Cheng19103b12006-12-15 22:42:55 +00006658 if (getTypeAction(NVT) == Expand)
6659 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006660 Lo = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LL, RL);
Evan Cheng19103b12006-12-15 22:42:55 +00006661 if (VT != MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006662 Hi = DAG.getNode(ISD::SELECT, dl, NVT, Node->getOperand(0), LH, RH);
Chris Lattner3e928bb2005-01-07 07:47:09 +00006663 break;
6664 }
Nate Begeman9373a812005-08-10 20:51:12 +00006665 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00006666 SDValue TL, TH, FL, FH;
Nate Begeman9373a812005-08-10 20:51:12 +00006667 ExpandOp(Node->getOperand(2), TL, TH);
6668 ExpandOp(Node->getOperand(3), FL, FH);
Evan Cheng19103b12006-12-15 22:42:55 +00006669 if (getTypeAction(NVT) == Expand)
6670 NVT = TLI.getTypeToExpandTo(NVT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006671 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Nate Begeman9373a812005-08-10 20:51:12 +00006672 Node->getOperand(1), TL, FL, Node->getOperand(4));
Evan Cheng19103b12006-12-15 22:42:55 +00006673 if (VT != MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006674 Hi = DAG.getNode(ISD::SELECT_CC, dl, NVT, Node->getOperand(0),
Evan Cheng19103b12006-12-15 22:42:55 +00006675 Node->getOperand(1), TH, FH, Node->getOperand(4));
Nate Begeman9373a812005-08-10 20:51:12 +00006676 break;
6677 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006678 case ISD::ANY_EXTEND:
6679 // The low part is any extension of the input (which degenerates to a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006680 Lo = DAG.getNode(ISD::ANY_EXTEND, dl, NVT, Node->getOperand(0));
Chris Lattner8137c9e2006-01-28 05:07:51 +00006681 // The high part is undefined.
Dale Johannesene8d72302009-02-06 23:05:02 +00006682 Hi = DAG.getUNDEF(NVT);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006683 break;
Chris Lattner3e928bb2005-01-07 07:47:09 +00006684 case ISD::SIGN_EXTEND: {
6685 // The low part is just a sign extension of the input (which degenerates to
6686 // a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006687 Lo = DAG.getNode(ISD::SIGN_EXTEND, dl, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006688
Chris Lattner3e928bb2005-01-07 07:47:09 +00006689 // The high part is obtained by SRA'ing all but one of the bits of the lo
6690 // part.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006691 unsigned LoSize = Lo.getValueType().getSizeInBits();
Dale Johannesen8a782a22009-02-02 22:12:50 +00006692 Hi = DAG.getNode(ISD::SRA, dl, NVT, Lo,
Chris Lattner8137c9e2006-01-28 05:07:51 +00006693 DAG.getConstant(LoSize-1, TLI.getShiftAmountTy()));
Chris Lattner3e928bb2005-01-07 07:47:09 +00006694 break;
6695 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006696 case ISD::ZERO_EXTEND:
Chris Lattner3e928bb2005-01-07 07:47:09 +00006697 // The low part is just a zero extension of the input (which degenerates to
6698 // a copy).
Dale Johannesen8a782a22009-02-02 22:12:50 +00006699 Lo = DAG.getNode(ISD::ZERO_EXTEND, dl, NVT, Node->getOperand(0));
Misha Brukmanedf128a2005-04-21 22:36:52 +00006700
Chris Lattner3e928bb2005-01-07 07:47:09 +00006701 // The high part is just a zero.
6702 Hi = DAG.getConstant(0, NVT);
6703 break;
Scott Michelfdc40a02009-02-17 22:15:04 +00006704
Chris Lattner4c948eb2007-02-13 23:55:16 +00006705 case ISD::TRUNCATE: {
6706 // The input value must be larger than this value. Expand *it*.
Dan Gohman475871a2008-07-27 21:46:04 +00006707 SDValue NewLo;
Chris Lattner4c948eb2007-02-13 23:55:16 +00006708 ExpandOp(Node->getOperand(0), NewLo, Hi);
Scott Michelfdc40a02009-02-17 22:15:04 +00006709
Chris Lattner4c948eb2007-02-13 23:55:16 +00006710 // The low part is now either the right size, or it is closer. If not the
6711 // right size, make an illegal truncate so we recursively expand it.
6712 if (NewLo.getValueType() != Node->getValueType(0))
Dale Johannesen8a782a22009-02-02 22:12:50 +00006713 NewLo = DAG.getNode(ISD::TRUNCATE, dl, Node->getValueType(0), NewLo);
Chris Lattner4c948eb2007-02-13 23:55:16 +00006714 ExpandOp(NewLo, Lo, Hi);
6715 break;
6716 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006717
Chris Lattner35481892005-12-23 00:16:34 +00006718 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00006719 SDValue Tmp;
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006720 if (TLI.getOperationAction(ISD::BIT_CONVERT, VT) == TargetLowering::Custom){
6721 // If the target wants to, allow it to lower this itself.
6722 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6723 case Expand: assert(0 && "cannot expand FP!");
6724 case Legal: Tmp = LegalizeOp(Node->getOperand(0)); break;
6725 case Promote: Tmp = PromoteOp (Node->getOperand(0)); break;
6726 }
Dale Johannesen8a782a22009-02-02 22:12:50 +00006727 Tmp = TLI.LowerOperation(DAG.getNode(ISD::BIT_CONVERT, dl, VT, Tmp), DAG);
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006728 }
6729
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006730 // f32 / f64 must be expanded to i32 / i64.
Evan Cheng13acce32006-12-11 19:27:14 +00006731 if (VT == MVT::f32 || VT == MVT::f64) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006732 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
Evan Cheng19103b12006-12-15 22:42:55 +00006733 if (getTypeAction(NVT) == Expand)
6734 ExpandOp(Lo, Lo, Hi);
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006735 break;
6736 }
6737
6738 // If source operand will be expanded to the same type as VT, i.e.
6739 // i64 <- f64, i32 <- f32, expand the source operand instead.
Duncan Sands83ec4b62008-06-06 12:08:01 +00006740 MVT VT0 = Node->getOperand(0).getValueType();
Evan Cheng7b2b5c82006-12-12 19:53:13 +00006741 if (getTypeAction(VT0) == Expand && TLI.getTypeToTransformTo(VT0) == VT) {
6742 ExpandOp(Node->getOperand(0), Lo, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00006743 break;
6744 }
6745
Chris Lattnerf3f333d2006-09-09 00:20:27 +00006746 // Turn this into a load/store pair by default.
Gabor Greifba36cb52008-08-28 21:40:38 +00006747 if (Tmp.getNode() == 0)
Dale Johannesen8a782a22009-02-02 22:12:50 +00006748 Tmp = EmitStackConvert(Node->getOperand(0), VT, VT, dl);
Scott Michelfdc40a02009-02-17 22:15:04 +00006749
Chris Lattner35481892005-12-23 00:16:34 +00006750 ExpandOp(Tmp, Lo, Hi);
6751 break;
6752 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006753
Chris Lattner27a6c732007-11-24 07:07:01 +00006754 case ISD::READCYCLECOUNTER: {
Scott Michelfdc40a02009-02-17 22:15:04 +00006755 assert(TLI.getOperationAction(ISD::READCYCLECOUNTER, VT) ==
Chris Lattner308575b2005-11-20 22:56:56 +00006756 TargetLowering::Custom &&
6757 "Must custom expand ReadCycleCounter");
Dan Gohman475871a2008-07-27 21:46:04 +00006758 SDValue Tmp = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006759 assert(Tmp.getNode() && "Node must be custom expanded!");
Chris Lattner27a6c732007-11-24 07:07:01 +00006760 ExpandOp(Tmp.getValue(0), Lo, Hi);
Dan Gohman475871a2008-07-27 21:46:04 +00006761 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
Chris Lattner27a6c732007-11-24 07:07:01 +00006762 LegalizeOp(Tmp.getValue(1)));
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006763 break;
Chris Lattner27a6c732007-11-24 07:07:01 +00006764 }
Andrew Lenharthf70e30b2005-11-20 21:32:07 +00006765
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006766 case ISD::ATOMIC_CMP_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006767 // This operation does not need a loop.
6768 SDValue Tmp = TLI.LowerOperation(Op, DAG);
6769 assert(Tmp.getNode() && "Node must be custom expanded!");
6770 ExpandOp(Tmp.getValue(0), Lo, Hi);
6771 AddLegalizedOperand(SDValue(Node, 1), // Remember we legalized the chain.
6772 LegalizeOp(Tmp.getValue(1)));
6773 break;
6774 }
6775
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006776 case ISD::ATOMIC_LOAD_ADD:
6777 case ISD::ATOMIC_LOAD_SUB:
6778 case ISD::ATOMIC_LOAD_AND:
6779 case ISD::ATOMIC_LOAD_OR:
6780 case ISD::ATOMIC_LOAD_XOR:
6781 case ISD::ATOMIC_LOAD_NAND:
6782 case ISD::ATOMIC_SWAP: {
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006783 // These operations require a loop to be generated. We can't do that yet,
6784 // so substitute a target-dependent pseudo and expand that later.
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006785 SDValue In2Lo, In2Hi, In2;
6786 ExpandOp(Op.getOperand(2), In2Lo, In2Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006787 In2 = DAG.getNode(ISD::BUILD_PAIR, dl, VT, In2Lo, In2Hi);
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006788 AtomicSDNode* Anode = cast<AtomicSDNode>(Node);
Scott Michelfdc40a02009-02-17 22:15:04 +00006789 SDValue Replace =
Dale Johannesen8a782a22009-02-02 22:12:50 +00006790 DAG.getAtomic(Op.getOpcode(), dl, Anode->getMemoryVT(),
Dan Gohman0b1d4a72008-12-23 21:37:04 +00006791 Op.getOperand(0), Op.getOperand(1), In2,
Dale Johannesen1b54c7f2008-10-03 19:41:08 +00006792 Anode->getSrcValue(), Anode->getAlignment());
6793 SDValue Result = TLI.LowerOperation(Replace, DAG);
Dale Johannesen48c1bc22008-10-02 18:53:47 +00006794 ExpandOp(Result.getValue(0), Lo, Hi);
6795 // Remember that we legalized the chain.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00006796 AddLegalizedOperand(SDValue(Node, 1), LegalizeOp(Result.getValue(1)));
Andrew Lenharthd19189e2008-03-05 01:15:49 +00006797 break;
6798 }
6799
Chris Lattner4e6c7462005-01-08 19:27:05 +00006800 // These operators cannot be expanded directly, emit them as calls to
6801 // library functions.
Evan Cheng56966222007-01-12 02:11:51 +00006802 case ISD::FP_TO_SINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006803 if (TLI.getOperationAction(ISD::FP_TO_SINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006804 SDValue Op;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006805 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6806 case Expand: assert(0 && "cannot expand FP!");
Chris Lattner8137c9e2006-01-28 05:07:51 +00006807 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6808 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
Chris Lattnerf20d1832005-07-30 01:40:57 +00006809 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006810
Dale Johannesen8a782a22009-02-02 22:12:50 +00006811 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_SINT, dl, VT, Op), DAG);
Chris Lattnerf20d1832005-07-30 01:40:57 +00006812
Chris Lattner80a3e942005-07-29 00:33:32 +00006813 // Now that the custom expander is done, expand the result, which is still
6814 // VT.
Gabor Greifba36cb52008-08-28 21:40:38 +00006815 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006816 ExpandOp(Op, Lo, Hi);
6817 break;
6818 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006819 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006820
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006821 RTLIB::Libcall LC = RTLIB::getFPTOSINT(Node->getOperand(0).getValueType(),
6822 VT);
6823 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected uint-to-fp conversion!");
6824 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006825 break;
Evan Cheng56966222007-01-12 02:11:51 +00006826 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006827
Evan Cheng56966222007-01-12 02:11:51 +00006828 case ISD::FP_TO_UINT: {
Chris Lattner80a3e942005-07-29 00:33:32 +00006829 if (TLI.getOperationAction(ISD::FP_TO_UINT, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006830 SDValue Op;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006831 switch (getTypeAction(Node->getOperand(0).getValueType())) {
6832 case Expand: assert(0 && "cannot expand FP!");
6833 case Legal: Op = LegalizeOp(Node->getOperand(0)); break;
6834 case Promote: Op = PromoteOp (Node->getOperand(0)); break;
6835 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006836
Dale Johannesen8a782a22009-02-02 22:12:50 +00006837 Op = TLI.LowerOperation(DAG.getNode(ISD::FP_TO_UINT, dl, VT, Op), DAG);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006838
6839 // Now that the custom expander is done, expand the result.
Gabor Greifba36cb52008-08-28 21:40:38 +00006840 if (Op.getNode()) {
Chris Lattner07dffd62005-08-26 00:14:16 +00006841 ExpandOp(Op, Lo, Hi);
6842 break;
6843 }
Chris Lattner80a3e942005-07-29 00:33:32 +00006844 }
Jeff Cohend29b6aa2005-07-30 18:33:25 +00006845
Duncan Sandsb2ff8852008-07-17 02:36:29 +00006846 RTLIB::Libcall LC = RTLIB::getFPTOUINT(Node->getOperand(0).getValueType(),
6847 VT);
6848 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unexpected fp-to-uint conversion!");
6849 Lo = ExpandLibCall(LC, Node, false/*sign irrelevant*/, Hi);
Chris Lattner4e6c7462005-01-08 19:27:05 +00006850 break;
Evan Cheng56966222007-01-12 02:11:51 +00006851 }
Chris Lattner4e6c7462005-01-08 19:27:05 +00006852
Evan Cheng05a2d562006-01-09 18:31:59 +00006853 case ISD::SHL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006854 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006855 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006856 if (TLI.getOperationAction(ISD::SHL, VT) == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006857 SDValue Op = DAG.getNode(ISD::SHL, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006858 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006859 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006860 // Now that the custom expander is done, expand the result, which is
6861 // still VT.
6862 ExpandOp(Op, Lo, Hi);
6863 break;
6864 }
6865 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006866
6867 // If ADDC/ADDE are supported and if the shift amount is a constant 1, emit
Chris Lattner79980b02006-09-13 03:50:39 +00006868 // this X << 1 as X+X.
6869 if (ConstantSDNode *ShAmt = dyn_cast<ConstantSDNode>(ShiftAmt)) {
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006870 if (ShAmt->getAPIntValue() == 1 &&
Scott Michelfdc40a02009-02-17 22:15:04 +00006871 TLI.isOperationLegalOrCustom(ISD::ADDC, NVT) &&
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006872 TLI.isOperationLegalOrCustom(ISD::ADDE, NVT)) {
Dan Gohman475871a2008-07-27 21:46:04 +00006873 SDValue LoOps[2], HiOps[3];
Chris Lattner79980b02006-09-13 03:50:39 +00006874 ExpandOp(Node->getOperand(0), LoOps[0], HiOps[0]);
6875 SDVTList VTList = DAG.getVTList(LoOps[0].getValueType(), MVT::Flag);
6876 LoOps[1] = LoOps[0];
Dale Johannesen8a782a22009-02-02 22:12:50 +00006877 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Chris Lattner79980b02006-09-13 03:50:39 +00006878
6879 HiOps[1] = HiOps[0];
6880 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00006881 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Chris Lattner79980b02006-09-13 03:50:39 +00006882 break;
6883 }
6884 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006885
Chris Lattnere34b3962005-01-19 04:19:40 +00006886 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006887 if (ExpandShift(ISD::SHL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006888 break;
Chris Lattner47599822005-04-02 03:38:53 +00006889
6890 // If this target supports SHL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006891 TargetLowering::LegalizeAction Action =
6892 TLI.getOperationAction(ISD::SHL_PARTS, NVT);
6893 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6894 Action == TargetLowering::Custom) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006895 ExpandShiftParts(ISD::SHL_PARTS, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006896 ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006897 break;
6898 }
6899
Chris Lattnere34b3962005-01-19 04:19:40 +00006900 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006901 Lo = ExpandLibCall(RTLIB::SHL_I64, Node, false/*left shift=unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006902 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006903 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006904
Evan Cheng05a2d562006-01-09 18:31:59 +00006905 case ISD::SRA: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006906 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006907 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006908 if (TLI.getOperationAction(ISD::SRA, VT) == TargetLowering::Custom) {
Dale Johannesene72c5962009-02-06 21:55:48 +00006909 SDValue Op = DAG.getNode(ISD::SRA, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006910 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006911 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006912 // Now that the custom expander is done, expand the result, which is
6913 // still VT.
6914 ExpandOp(Op, Lo, Hi);
6915 break;
6916 }
6917 }
Scott Michelfdc40a02009-02-17 22:15:04 +00006918
Chris Lattnere34b3962005-01-19 04:19:40 +00006919 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006920 if (ExpandShift(ISD::SRA, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006921 break;
Chris Lattner47599822005-04-02 03:38:53 +00006922
6923 // If this target supports SRA_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006924 TargetLowering::LegalizeAction Action =
6925 TLI.getOperationAction(ISD::SRA_PARTS, NVT);
6926 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6927 Action == TargetLowering::Custom) {
Scott Michelfdc40a02009-02-17 22:15:04 +00006928 ExpandShiftParts(ISD::SRA_PARTS, Node->getOperand(0),
Dale Johannesen8a782a22009-02-02 22:12:50 +00006929 ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006930 break;
6931 }
6932
Chris Lattnere34b3962005-01-19 04:19:40 +00006933 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006934 Lo = ExpandLibCall(RTLIB::SRA_I64, Node, true/*ashr is signed*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006935 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006936 }
6937
6938 case ISD::SRL: {
Chris Lattner50ec8972005-08-31 19:01:53 +00006939 // If the target wants custom lowering, do so.
Dan Gohman475871a2008-07-27 21:46:04 +00006940 SDValue ShiftAmt = LegalizeOp(Node->getOperand(1));
Chris Lattner50ec8972005-08-31 19:01:53 +00006941 if (TLI.getOperationAction(ISD::SRL, VT) == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006942 SDValue Op = DAG.getNode(ISD::SRL, dl, VT, Node->getOperand(0), ShiftAmt);
Chris Lattner50ec8972005-08-31 19:01:53 +00006943 Op = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006944 if (Op.getNode()) {
Chris Lattner50ec8972005-08-31 19:01:53 +00006945 // Now that the custom expander is done, expand the result, which is
6946 // still VT.
6947 ExpandOp(Op, Lo, Hi);
6948 break;
6949 }
6950 }
6951
Chris Lattnere34b3962005-01-19 04:19:40 +00006952 // If we can emit an efficient shift operation, do so now.
Dale Johannesen8a782a22009-02-02 22:12:50 +00006953 if (ExpandShift(ISD::SRL, Node->getOperand(0), ShiftAmt, Lo, Hi, dl))
Chris Lattnere34b3962005-01-19 04:19:40 +00006954 break;
Chris Lattner47599822005-04-02 03:38:53 +00006955
6956 // If this target supports SRL_PARTS, use it.
Evan Cheng05a2d562006-01-09 18:31:59 +00006957 TargetLowering::LegalizeAction Action =
6958 TLI.getOperationAction(ISD::SRL_PARTS, NVT);
6959 if ((Action == TargetLowering::Legal && TLI.isTypeLegal(NVT)) ||
6960 Action == TargetLowering::Custom) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00006961 ExpandShiftParts(ISD::SRL_PARTS,
6962 Node->getOperand(0), ShiftAmt, Lo, Hi, dl);
Chris Lattner47599822005-04-02 03:38:53 +00006963 break;
6964 }
6965
Chris Lattnere34b3962005-01-19 04:19:40 +00006966 // Otherwise, emit a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00006967 Lo = ExpandLibCall(RTLIB::SRL_I64, Node, false/*lshr is unsigned*/, Hi);
Chris Lattnere34b3962005-01-19 04:19:40 +00006968 break;
Evan Cheng05a2d562006-01-09 18:31:59 +00006969 }
Chris Lattnere34b3962005-01-19 04:19:40 +00006970
Misha Brukmanedf128a2005-04-21 22:36:52 +00006971 case ISD::ADD:
Chris Lattner8137c9e2006-01-28 05:07:51 +00006972 case ISD::SUB: {
6973 // If the target wants to custom expand this, let them.
6974 if (TLI.getOperationAction(Node->getOpcode(), VT) ==
6975 TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00006976 SDValue Result = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00006977 if (Result.getNode()) {
Duncan Sands69bfb152008-06-22 09:42:16 +00006978 ExpandOp(Result, Lo, Hi);
Chris Lattner8137c9e2006-01-28 05:07:51 +00006979 break;
6980 }
6981 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00006982 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00006983 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattner8137c9e2006-01-28 05:07:51 +00006984 ExpandOp(Node->getOperand(0), LHSL, LHSH);
6985 ExpandOp(Node->getOperand(1), RHSL, RHSH);
Dan Gohman475871a2008-07-27 21:46:04 +00006986 SDValue LoOps[2], HiOps[3];
Chris Lattnerbd564bf2006-08-08 02:23:42 +00006987 LoOps[0] = LHSL;
6988 LoOps[1] = RHSL;
6989 HiOps[0] = LHSH;
6990 HiOps[1] = RHSH;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006991
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00006992 //cascaded check to see if any smaller size has a a carry flag.
6993 unsigned OpV = Node->getOpcode() == ISD::ADD ? ISD::ADDC : ISD::SUBC;
6994 bool hasCarry = false;
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006995 for (unsigned BitSize = NVT.getSizeInBits(); BitSize != 0; BitSize /= 2) {
6996 MVT AVT = MVT::getIntegerVT(BitSize);
Dan Gohmanf560ffa2009-01-28 17:46:25 +00006997 if (TLI.isOperationLegalOrCustom(OpV, AVT)) {
Andrew Lenharth2163ca12008-10-07 18:27:23 +00006998 hasCarry = true;
6999 break;
7000 }
7001 }
7002
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007003 if(hasCarry) {
Evan Cheng637ed032008-12-12 18:49:09 +00007004 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007005 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007006 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007007 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007008 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007009 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007010 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007011 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007012 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007013 }
7014 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007015 } else {
Andrew Lenharth40d51392008-10-07 14:15:42 +00007016 if (Node->getOpcode() == ISD::ADD) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007017 Lo = DAG.getNode(ISD::ADD, dl, NVT, LoOps, 2);
7018 Hi = DAG.getNode(ISD::ADD, dl, NVT, HiOps, 2);
7019 SDValue Cmp1 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007020 Lo, LoOps[0], ISD::SETULT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007021 SDValue Carry1 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp1,
Scott Michelfdc40a02009-02-17 22:15:04 +00007022 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007023 DAG.getConstant(0, NVT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00007024 SDValue Cmp2 = DAG.getSetCC(dl, TLI.getSetCCResultType(NVT),
Andrew Lenharth5c9cc132008-10-07 17:03:15 +00007025 Lo, LoOps[1], ISD::SETULT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007026 SDValue Carry2 = DAG.getNode(ISD::SELECT, dl, NVT, Cmp2,
Scott Michelfdc40a02009-02-17 22:15:04 +00007027 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007028 Carry1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007029 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, Carry2);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007030 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007031 Lo = DAG.getNode(ISD::SUB, dl, NVT, LoOps, 2);
7032 Hi = DAG.getNode(ISD::SUB, dl, NVT, HiOps, 2);
7033 SDValue Cmp = DAG.getSetCC(dl, NVT, LoOps[0], LoOps[1], ISD::SETULT);
7034 SDValue Borrow = DAG.getNode(ISD::SELECT, dl, NVT, Cmp,
Scott Michelfdc40a02009-02-17 22:15:04 +00007035 DAG.getConstant(1, NVT),
Andrew Lenharth40d51392008-10-07 14:15:42 +00007036 DAG.getConstant(0, NVT));
Dale Johannesen8a782a22009-02-02 22:12:50 +00007037 Hi = DAG.getNode(ISD::SUB, dl, NVT, Hi, Borrow);
Andrew Lenharth40d51392008-10-07 14:15:42 +00007038 }
7039 break;
Nate Begeman551bf3f2006-02-17 05:43:56 +00007040 }
Chris Lattner8137c9e2006-01-28 05:07:51 +00007041 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007042
Chris Lattnerb429f732007-05-17 18:15:41 +00007043 case ISD::ADDC:
7044 case ISD::SUBC: {
7045 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007046 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007047 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7048 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7049 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007050 SDValue LoOps[2] = { LHSL, RHSL };
7051 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michelfdc40a02009-02-17 22:15:04 +00007052
Chris Lattnerb429f732007-05-17 18:15:41 +00007053 if (Node->getOpcode() == ISD::ADDC) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007054 Lo = DAG.getNode(ISD::ADDC, dl, VTList, LoOps, 2);
Chris Lattnerb429f732007-05-17 18:15:41 +00007055 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007056 Hi = DAG.getNode(ISD::ADDE, dl, VTList, HiOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007057 } else {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007058 Lo = DAG.getNode(ISD::SUBC, dl, VTList, LoOps, 2);
Chris Lattnerb429f732007-05-17 18:15:41 +00007059 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007060 Hi = DAG.getNode(ISD::SUBE, dl, VTList, HiOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007061 }
7062 // Remember that we legalized the flag.
7063 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7064 break;
7065 }
7066 case ISD::ADDE:
7067 case ISD::SUBE: {
7068 // Expand the subcomponents.
Dan Gohman475871a2008-07-27 21:46:04 +00007069 SDValue LHSL, LHSH, RHSL, RHSH;
Chris Lattnerb429f732007-05-17 18:15:41 +00007070 ExpandOp(Node->getOperand(0), LHSL, LHSH);
7071 ExpandOp(Node->getOperand(1), RHSL, RHSH);
7072 SDVTList VTList = DAG.getVTList(LHSL.getValueType(), MVT::Flag);
Dan Gohman475871a2008-07-27 21:46:04 +00007073 SDValue LoOps[3] = { LHSL, RHSL, Node->getOperand(2) };
7074 SDValue HiOps[3] = { LHSH, RHSH };
Scott Michelfdc40a02009-02-17 22:15:04 +00007075
Dale Johannesen8a782a22009-02-02 22:12:50 +00007076 Lo = DAG.getNode(Node->getOpcode(), dl, VTList, LoOps, 3);
Chris Lattnerb429f732007-05-17 18:15:41 +00007077 HiOps[2] = Lo.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007078 Hi = DAG.getNode(Node->getOpcode(), dl, VTList, HiOps, 3);
Scott Michelfdc40a02009-02-17 22:15:04 +00007079
Chris Lattnerb429f732007-05-17 18:15:41 +00007080 // Remember that we legalized the flag.
7081 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Hi.getValue(1)));
7082 break;
7083 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007084 case ISD::MUL: {
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007085 // If the target wants to custom expand this, let them.
7086 if (TLI.getOperationAction(ISD::MUL, VT) == TargetLowering::Custom) {
Dan Gohman475871a2008-07-27 21:46:04 +00007087 SDValue New = TLI.LowerOperation(Op, DAG);
Gabor Greifba36cb52008-08-28 21:40:38 +00007088 if (New.getNode()) {
Chris Lattner8829dc82006-09-16 05:08:34 +00007089 ExpandOp(New, Lo, Hi);
Chris Lattner7d7bffe2006-09-16 00:09:24 +00007090 break;
7091 }
7092 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007093
Dan Gohmanf560ffa2009-01-28 17:46:25 +00007094 bool HasMULHS = TLI.isOperationLegalOrCustom(ISD::MULHS, NVT);
7095 bool HasMULHU = TLI.isOperationLegalOrCustom(ISD::MULHU, NVT);
7096 bool HasSMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::SMUL_LOHI, NVT);
7097 bool HasUMUL_LOHI = TLI.isOperationLegalOrCustom(ISD::UMUL_LOHI, NVT);
Dan Gohman525178c2007-10-08 18:33:35 +00007098 if (HasMULHU || HasMULHS || HasUMUL_LOHI || HasSMUL_LOHI) {
Dan Gohman475871a2008-07-27 21:46:04 +00007099 SDValue LL, LH, RL, RH;
Nate Begemanc7c16572005-04-11 03:01:51 +00007100 ExpandOp(Node->getOperand(0), LL, LH);
7101 ExpandOp(Node->getOperand(1), RL, RH);
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007102 unsigned OuterBitSize = Op.getValueSizeInBits();
7103 unsigned InnerBitSize = RH.getValueSizeInBits();
Dan Gohman525178c2007-10-08 18:33:35 +00007104 unsigned LHSSB = DAG.ComputeNumSignBits(Op.getOperand(0));
7105 unsigned RHSSB = DAG.ComputeNumSignBits(Op.getOperand(1));
Dan Gohman76c605b2008-03-10 20:42:19 +00007106 APInt HighMask = APInt::getHighBitsSet(OuterBitSize, InnerBitSize);
7107 if (DAG.MaskedValueIsZero(Node->getOperand(0), HighMask) &&
7108 DAG.MaskedValueIsZero(Node->getOperand(1), HighMask)) {
Dan Gohman525178c2007-10-08 18:33:35 +00007109 // The inputs are both zero-extended.
7110 if (HasUMUL_LOHI) {
7111 // We can emit a umul_lohi.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007112 Lo = DAG.getNode(ISD::UMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007113 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007114 break;
7115 }
7116 if (HasMULHU) {
7117 // We can emit a mulhu+mul.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007118 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7119 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
Dan Gohman525178c2007-10-08 18:33:35 +00007120 break;
7121 }
Dan Gohman525178c2007-10-08 18:33:35 +00007122 }
Dan Gohman2e68b6f2008-02-25 21:11:39 +00007123 if (LHSSB > InnerBitSize && RHSSB > InnerBitSize) {
Dan Gohman525178c2007-10-08 18:33:35 +00007124 // The input values are both sign-extended.
7125 if (HasSMUL_LOHI) {
7126 // We can emit a smul_lohi.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007127 Lo = DAG.getNode(ISD::SMUL_LOHI, dl, DAG.getVTList(NVT, NVT), LL, RL);
Gabor Greifba36cb52008-08-28 21:40:38 +00007128 Hi = SDValue(Lo.getNode(), 1);
Dan Gohman525178c2007-10-08 18:33:35 +00007129 break;
7130 }
7131 if (HasMULHS) {
7132 // We can emit a mulhs+mul.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007133 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7134 Hi = DAG.getNode(ISD::MULHS, dl, NVT, LL, RL);
Dan Gohman525178c2007-10-08 18:33:35 +00007135 break;
7136 }
7137 }
7138 if (HasUMUL_LOHI) {
7139 // Lo,Hi = umul LHS, RHS.
Dale Johannesen8a782a22009-02-02 22:12:50 +00007140 SDValue UMulLOHI = DAG.getNode(ISD::UMUL_LOHI, dl,
Dan Gohman525178c2007-10-08 18:33:35 +00007141 DAG.getVTList(NVT, NVT), LL, RL);
7142 Lo = UMulLOHI;
7143 Hi = UMulLOHI.getValue(1);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007144 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);
Chris Lattnera89654b2006-09-16 00:21:44 +00007148 break;
Nate Begeman56eb8682005-08-30 02:44:00 +00007149 }
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00007150 if (HasMULHU) {
Dale Johannesen8a782a22009-02-02 22:12:50 +00007151 Lo = DAG.getNode(ISD::MUL, dl, NVT, LL, RL);
7152 Hi = DAG.getNode(ISD::MULHU, dl, NVT, LL, RL);
7153 RH = DAG.getNode(ISD::MUL, dl, NVT, LL, RH);
7154 LH = DAG.getNode(ISD::MUL, dl, NVT, LH, RL);
7155 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, RH);
7156 Hi = DAG.getNode(ISD::ADD, dl, NVT, Hi, LH);
Dale Johannesen8eadd5a2007-10-24 22:26:08 +00007157 break;
7158 }
Nate Begemanc7c16572005-04-11 03:01:51 +00007159 }
Evan Cheng3f4fd0f2006-09-01 18:17:58 +00007160
Dan Gohman525178c2007-10-08 18:33:35 +00007161 // If nothing else, we can make a libcall.
Duncan Sands460a14e2008-04-12 17:14:18 +00007162 Lo = ExpandLibCall(RTLIB::MUL_I64, Node, false/*sign irrelevant*/, Hi);
Nate Begemanc7c16572005-04-11 03:01:51 +00007163 break;
7164 }
Evan Cheng56966222007-01-12 02:11:51 +00007165 case ISD::SDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007166 Lo = ExpandLibCall(RTLIB::SDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007167 break;
7168 case ISD::UDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007169 Lo = ExpandLibCall(RTLIB::UDIV_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007170 break;
7171 case ISD::SREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007172 Lo = ExpandLibCall(RTLIB::SREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007173 break;
7174 case ISD::UREM:
Duncan Sands460a14e2008-04-12 17:14:18 +00007175 Lo = ExpandLibCall(RTLIB::UREM_I64, Node, true, Hi);
Evan Cheng56966222007-01-12 02:11:51 +00007176 break;
Evan Cheng5c9ce182006-12-12 21:51:17 +00007177
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007178 case ISD::FADD:
Duncan Sands460a14e2008-04-12 17:14:18 +00007179 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::ADD_F32,
7180 RTLIB::ADD_F64,
7181 RTLIB::ADD_F80,
7182 RTLIB::ADD_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007183 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007184 break;
7185 case ISD::FSUB:
Duncan Sands460a14e2008-04-12 17:14:18 +00007186 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::SUB_F32,
7187 RTLIB::SUB_F64,
7188 RTLIB::SUB_F80,
7189 RTLIB::SUB_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007190 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007191 break;
7192 case ISD::FMUL:
Duncan Sands460a14e2008-04-12 17:14:18 +00007193 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::MUL_F32,
7194 RTLIB::MUL_F64,
7195 RTLIB::MUL_F80,
7196 RTLIB::MUL_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007197 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007198 break;
7199 case ISD::FDIV:
Duncan Sands460a14e2008-04-12 17:14:18 +00007200 Lo = ExpandLibCall(GetFPLibCall(VT, RTLIB::DIV_F32,
7201 RTLIB::DIV_F64,
7202 RTLIB::DIV_F80,
7203 RTLIB::DIV_PPCF128),
Evan Cheng56966222007-01-12 02:11:51 +00007204 Node, false, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007205 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007206 case ISD::FP_EXTEND: {
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007207 if (VT == MVT::ppcf128) {
7208 assert(Node->getOperand(0).getValueType()==MVT::f32 ||
7209 Node->getOperand(0).getValueType()==MVT::f64);
7210 const uint64_t zero = 0;
7211 if (Node->getOperand(0).getValueType()==MVT::f32)
Dale Johannesen8a782a22009-02-02 22:12:50 +00007212 Hi = DAG.getNode(ISD::FP_EXTEND, dl, MVT::f64, Node->getOperand(0));
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007213 else
7214 Hi = Node->getOperand(0);
7215 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7216 break;
7217 }
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007218 RTLIB::Libcall LC = RTLIB::getFPEXT(Node->getOperand(0).getValueType(), VT);
7219 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_EXTEND!");
7220 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007221 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007222 }
7223 case ISD::FP_ROUND: {
7224 RTLIB::Libcall LC = RTLIB::getFPROUND(Node->getOperand(0).getValueType(),
7225 VT);
7226 assert(LC != RTLIB::UNKNOWN_LIBCALL && "Unsupported FP_ROUND!");
7227 Lo = ExpandLibCall(LC, Node, true, Hi);
Evan Cheng1a8f1fe2006-12-09 02:42:38 +00007228 break;
Duncan Sandsb2ff8852008-07-17 02:36:29 +00007229 }
Evan Cheng4b887022008-09-09 23:02:14 +00007230 case ISD::FSQRT:
7231 case ISD::FSIN:
Scott Michelfdc40a02009-02-17 22:15:04 +00007232 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007233 case ISD::FLOG:
7234 case ISD::FLOG2:
7235 case ISD::FLOG10:
7236 case ISD::FEXP:
7237 case ISD::FEXP2:
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007238 case ISD::FTRUNC:
7239 case ISD::FFLOOR:
7240 case ISD::FCEIL:
7241 case ISD::FRINT:
7242 case ISD::FNEARBYINT:
Evan Cheng9d24ac52008-09-09 23:35:53 +00007243 case ISD::FPOW:
7244 case ISD::FPOWI: {
Evan Cheng56966222007-01-12 02:11:51 +00007245 RTLIB::Libcall LC = RTLIB::UNKNOWN_LIBCALL;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007246 switch(Node->getOpcode()) {
Evan Cheng56966222007-01-12 02:11:51 +00007247 case ISD::FSQRT:
Duncan Sands007f9842008-01-10 10:28:30 +00007248 LC = GetFPLibCall(VT, RTLIB::SQRT_F32, RTLIB::SQRT_F64,
7249 RTLIB::SQRT_F80, RTLIB::SQRT_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007250 break;
7251 case ISD::FSIN:
Duncan Sands007f9842008-01-10 10:28:30 +00007252 LC = GetFPLibCall(VT, RTLIB::SIN_F32, RTLIB::SIN_F64,
7253 RTLIB::SIN_F80, RTLIB::SIN_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007254 break;
7255 case ISD::FCOS:
Duncan Sands007f9842008-01-10 10:28:30 +00007256 LC = GetFPLibCall(VT, RTLIB::COS_F32, RTLIB::COS_F64,
7257 RTLIB::COS_F80, RTLIB::COS_PPCF128);
Evan Cheng56966222007-01-12 02:11:51 +00007258 break;
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007259 case ISD::FLOG:
7260 LC = GetFPLibCall(VT, RTLIB::LOG_F32, RTLIB::LOG_F64,
7261 RTLIB::LOG_F80, RTLIB::LOG_PPCF128);
7262 break;
7263 case ISD::FLOG2:
7264 LC = GetFPLibCall(VT, RTLIB::LOG2_F32, RTLIB::LOG2_F64,
7265 RTLIB::LOG2_F80, RTLIB::LOG2_PPCF128);
7266 break;
7267 case ISD::FLOG10:
7268 LC = GetFPLibCall(VT, RTLIB::LOG10_F32, RTLIB::LOG10_F64,
7269 RTLIB::LOG10_F80, RTLIB::LOG10_PPCF128);
7270 break;
7271 case ISD::FEXP:
7272 LC = GetFPLibCall(VT, RTLIB::EXP_F32, RTLIB::EXP_F64,
7273 RTLIB::EXP_F80, RTLIB::EXP_PPCF128);
7274 break;
7275 case ISD::FEXP2:
7276 LC = GetFPLibCall(VT, RTLIB::EXP2_F32, RTLIB::EXP2_F64,
7277 RTLIB::EXP2_F80, RTLIB::EXP2_PPCF128);
7278 break;
Dan Gohman2bb1e3e2008-08-21 18:38:14 +00007279 case ISD::FTRUNC:
7280 LC = GetFPLibCall(VT, RTLIB::TRUNC_F32, RTLIB::TRUNC_F64,
7281 RTLIB::TRUNC_F80, RTLIB::TRUNC_PPCF128);
7282 break;
7283 case ISD::FFLOOR:
7284 LC = GetFPLibCall(VT, RTLIB::FLOOR_F32, RTLIB::FLOOR_F64,
7285 RTLIB::FLOOR_F80, RTLIB::FLOOR_PPCF128);
7286 break;
7287 case ISD::FCEIL:
7288 LC = GetFPLibCall(VT, RTLIB::CEIL_F32, RTLIB::CEIL_F64,
7289 RTLIB::CEIL_F80, RTLIB::CEIL_PPCF128);
7290 break;
7291 case ISD::FRINT:
7292 LC = GetFPLibCall(VT, RTLIB::RINT_F32, RTLIB::RINT_F64,
7293 RTLIB::RINT_F80, RTLIB::RINT_PPCF128);
7294 break;
7295 case ISD::FNEARBYINT:
7296 LC = GetFPLibCall(VT, RTLIB::NEARBYINT_F32, RTLIB::NEARBYINT_F64,
7297 RTLIB::NEARBYINT_F80, RTLIB::NEARBYINT_PPCF128);
7298 break;
Evan Cheng4b887022008-09-09 23:02:14 +00007299 case ISD::FPOW:
7300 LC = GetFPLibCall(VT, RTLIB::POW_F32, RTLIB::POW_F64, RTLIB::POW_F80,
7301 RTLIB::POW_PPCF128);
7302 break;
7303 case ISD::FPOWI:
7304 LC = GetFPLibCall(VT, RTLIB::POWI_F32, RTLIB::POWI_F64, RTLIB::POWI_F80,
7305 RTLIB::POWI_PPCF128);
7306 break;
Evan Cheng98ff3b92006-12-13 02:38:13 +00007307 default: assert(0 && "Unreachable!");
7308 }
Duncan Sands460a14e2008-04-12 17:14:18 +00007309 Lo = ExpandLibCall(LC, Node, false, Hi);
Evan Cheng98ff3b92006-12-13 02:38:13 +00007310 break;
7311 }
Evan Cheng966bf242006-12-16 00:52:40 +00007312 case ISD::FABS: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007313 if (VT == MVT::ppcf128) {
Dan Gohman475871a2008-07-27 21:46:04 +00007314 SDValue Tmp;
Dale Johannesenf6467742007-10-12 19:02:17 +00007315 ExpandOp(Node->getOperand(0), Lo, Tmp);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007316 Hi = DAG.getNode(ISD::FABS, dl, NVT, Tmp);
Dale Johannesenf6467742007-10-12 19:02:17 +00007317 // lo = hi==fabs(hi) ? lo : -lo;
Dale Johannesen8a782a22009-02-02 22:12:50 +00007318 Lo = DAG.getNode(ISD::SELECT_CC, dl, NVT, Hi, Tmp,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007319 Lo, DAG.getNode(ISD::FNEG, dl, NVT, Lo),
7320 DAG.getCondCode(ISD::SETEQ));
Dale Johannesenf6467742007-10-12 19:02:17 +00007321 break;
7322 }
Dan Gohman475871a2008-07-27 21:46:04 +00007323 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007324 ? DAG.getConstantFP(BitsToDouble(~(1ULL << 63)), VT)
7325 : DAG.getConstantFP(BitsToFloat(~(1U << 31)), VT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007326 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7327 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7328 Lo = DAG.getNode(ISD::AND, dl, NVT, Lo, Mask);
Evan Cheng966bf242006-12-16 00:52:40 +00007329 if (getTypeAction(NVT) == Expand)
7330 ExpandOp(Lo, Lo, Hi);
7331 break;
7332 }
7333 case ISD::FNEG: {
Dale Johannesenf6467742007-10-12 19:02:17 +00007334 if (VT == MVT::ppcf128) {
7335 ExpandOp(Node->getOperand(0), Lo, Hi);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007336 Lo = DAG.getNode(ISD::FNEG, dl, MVT::f64, Lo);
7337 Hi = DAG.getNode(ISD::FNEG, dl, MVT::f64, Hi);
Dale Johannesenf6467742007-10-12 19:02:17 +00007338 break;
7339 }
Dan Gohman475871a2008-07-27 21:46:04 +00007340 SDValue Mask = (VT == MVT::f64)
Evan Cheng966bf242006-12-16 00:52:40 +00007341 ? DAG.getConstantFP(BitsToDouble(1ULL << 63), VT)
7342 : DAG.getConstantFP(BitsToFloat(1U << 31), VT);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007343 Mask = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Mask);
7344 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NVT, Node->getOperand(0));
7345 Lo = DAG.getNode(ISD::XOR, dl, NVT, Lo, Mask);
Evan Cheng966bf242006-12-16 00:52:40 +00007346 if (getTypeAction(NVT) == Expand)
7347 ExpandOp(Lo, Lo, Hi);
7348 break;
7349 }
Evan Cheng912095b2007-01-04 21:56:39 +00007350 case ISD::FCOPYSIGN: {
7351 Lo = ExpandFCOPYSIGNToBitwiseOps(Node, NVT, DAG, TLI);
7352 if (getTypeAction(NVT) == Expand)
7353 ExpandOp(Lo, Lo, Hi);
7354 break;
7355 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007356 case ISD::SINT_TO_FP:
7357 case ISD::UINT_TO_FP: {
7358 bool isSigned = Node->getOpcode() == ISD::SINT_TO_FP;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007359 MVT SrcVT = Node->getOperand(0).getValueType();
Dale Johannesencf498192008-03-18 17:28:38 +00007360
7361 // Promote the operand if needed. Do this before checking for
7362 // ppcf128 so conversions of i16 and i8 work.
7363 if (getTypeAction(SrcVT) == Promote) {
Dan Gohman475871a2008-07-27 21:46:04 +00007364 SDValue Tmp = PromoteOp(Node->getOperand(0));
Dale Johannesencf498192008-03-18 17:28:38 +00007365 Tmp = isSigned
Dale Johannesen8a782a22009-02-02 22:12:50 +00007366 ? DAG.getNode(ISD::SIGN_EXTEND_INREG, dl, Tmp.getValueType(), Tmp,
Dale Johannesencf498192008-03-18 17:28:38 +00007367 DAG.getValueType(SrcVT))
Dale Johannesen8a782a22009-02-02 22:12:50 +00007368 : DAG.getZeroExtendInReg(Tmp, dl, SrcVT);
Gabor Greifba36cb52008-08-28 21:40:38 +00007369 Node = DAG.UpdateNodeOperands(Op, Tmp).getNode();
Dale Johannesencf498192008-03-18 17:28:38 +00007370 SrcVT = Node->getOperand(0).getValueType();
7371 }
7372
Dan Gohmana2e94852008-03-10 23:03:31 +00007373 if (VT == MVT::ppcf128 && SrcVT == MVT::i32) {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007374 static const uint64_t zero = 0;
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007375 if (isSigned) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007376 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007377 Node->getOperand(0)));
7378 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
7379 } else {
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007380 static const uint64_t TwoE32[] = { 0x41f0000000000000LL, 0 };
Scott Michelfdc40a02009-02-17 22:15:04 +00007381 Hi = LegalizeOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::f64,
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007382 Node->getOperand(0)));
7383 Lo = DAG.getConstantFP(APFloat(APInt(64, 1, &zero)), MVT::f64);
Dale Johannesen8a782a22009-02-02 22:12:50 +00007384 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00007385 // X>=0 ? {(f64)x, 0} : {(f64)x, 0} + 2^32
Dale Johannesen8a782a22009-02-02 22:12:50 +00007386 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl,
7387 MVT::ppcf128, Node->getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00007388 DAG.getConstant(0, MVT::i32),
Dale Johannesen8a782a22009-02-02 22:12:50 +00007389 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007390 DAG.getConstantFP
7391 (APFloat(APInt(128, 2, TwoE32)),
7392 MVT::ppcf128)),
Dale Johannesenca68aaa2007-10-12 01:37:08 +00007393 Hi,
7394 DAG.getCondCode(ISD::SETLT)),
7395 Lo, Hi);
7396 }
7397 break;
7398 }
Dale Johannesen6e63e092007-10-12 17:52:03 +00007399 if (VT == MVT::ppcf128 && SrcVT == MVT::i64 && !isSigned) {
7400 // si64->ppcf128 done by libcall, below
Dan Gohmanf6283fd2008-02-25 21:39:34 +00007401 static const uint64_t TwoE64[] = { 0x43f0000000000000LL, 0 };
Dale Johannesen8a782a22009-02-02 22:12:50 +00007402 ExpandOp(DAG.getNode(ISD::SINT_TO_FP, dl, MVT::ppcf128,
7403 Node->getOperand(0)), Lo, Hi);
7404 Hi = DAG.getNode(ISD::BUILD_PAIR, dl, VT, Lo, Hi);
Dale Johannesen6e63e092007-10-12 17:52:03 +00007405 // x>=0 ? (ppcf128)(i64)x : (ppcf128)(i64)x + 2^64
Dale Johannesen8a782a22009-02-02 22:12:50 +00007406 ExpandOp(DAG.getNode(ISD::SELECT_CC, dl, MVT::ppcf128,
7407 Node->getOperand(0),
Scott Michelfdc40a02009-02-17 22:15:04 +00007408 DAG.getConstant(0, MVT::i64),
Dale Johannesen8a782a22009-02-02 22:12:50 +00007409 DAG.getNode(ISD::FADD, dl, MVT::ppcf128, Hi,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007410 DAG.getConstantFP
7411 (APFloat(APInt(128, 2, TwoE64)),
7412 MVT::ppcf128)),
Dale Johannesen6e63e092007-10-12 17:52:03 +00007413 Hi,
7414 DAG.getCondCode(ISD::SETLT)),
7415 Lo, Hi);
7416 break;
7417 }
Evan Cheng7df28dc2006-12-19 01:44:04 +00007418
Dan Gohmana2e94852008-03-10 23:03:31 +00007419 Lo = ExpandIntToFP(Node->getOpcode() == ISD::SINT_TO_FP, VT,
Dale Johannesen8a782a22009-02-02 22:12:50 +00007420 Node->getOperand(0), dl);
Evan Cheng110cf482008-04-01 01:50:16 +00007421 if (getTypeAction(Lo.getValueType()) == Expand)
Evan Cheng6ad2f932008-04-01 01:51:26 +00007422 // float to i32 etc. can be 'expanded' to a single node.
Evan Cheng110cf482008-04-01 01:50:16 +00007423 ExpandOp(Lo, Lo, Hi);
Evan Cheng7df28dc2006-12-19 01:44:04 +00007424 break;
7425 }
Evan Cheng98ff3b92006-12-13 02:38:13 +00007426 }
Chris Lattner3e928bb2005-01-07 07:47:09 +00007427
Chris Lattner83397362005-12-21 18:02:52 +00007428 // Make sure the resultant values have been legalized themselves, unless this
7429 // is a type that requires multi-step expansion.
7430 if (getTypeAction(NVT) != Expand && NVT != MVT::isVoid) {
7431 Lo = LegalizeOp(Lo);
Gabor Greifba36cb52008-08-28 21:40:38 +00007432 if (Hi.getNode())
Evan Cheng13acce32006-12-11 19:27:14 +00007433 // Don't legalize the high part if it is expanded to a single node.
7434 Hi = LegalizeOp(Hi);
Chris Lattner83397362005-12-21 18:02:52 +00007435 }
Evan Cheng05a2d562006-01-09 18:31:59 +00007436
7437 // Remember in a map if the values will be reused later.
Dan Gohman6b345ee2008-07-07 17:46:23 +00007438 bool isNew =
7439 ExpandedNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Evan Cheng05a2d562006-01-09 18:31:59 +00007440 assert(isNew && "Value already expanded?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007441 isNew = isNew;
Chris Lattner3e928bb2005-01-07 07:47:09 +00007442}
7443
Dan Gohman7f321562007-06-25 16:23:39 +00007444/// SplitVectorOp - Given an operand of vector type, break it down into
7445/// two smaller values, still of vector type.
Dan Gohman475871a2008-07-27 21:46:04 +00007446void SelectionDAGLegalize::SplitVectorOp(SDValue Op, SDValue &Lo,
7447 SDValue &Hi) {
Eli Friedman1fde9c52009-05-24 02:46:31 +00007448 assert(0 && "This should be dead!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00007449 assert(Op.getValueType().isVector() && "Cannot split non-vector type!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007450 SDNode *Node = Op.getNode();
Dale Johannesenbb5da912009-02-02 20:41:04 +00007451 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007452 unsigned NumElements = Op.getValueType().getVectorNumElements();
Chris Lattnerc7029802006-03-18 01:44:44 +00007453 assert(NumElements > 1 && "Cannot split a single element vector!");
Nate Begeman5db1afb2007-11-15 21:15:26 +00007454
Duncan Sands83ec4b62008-06-06 12:08:01 +00007455 MVT NewEltVT = Op.getValueType().getVectorElementType();
Nate Begeman5db1afb2007-11-15 21:15:26 +00007456
7457 unsigned NewNumElts_Lo = 1 << Log2_32(NumElements-1);
7458 unsigned NewNumElts_Hi = NumElements - NewNumElts_Lo;
7459
Duncan Sands83ec4b62008-06-06 12:08:01 +00007460 MVT NewVT_Lo = MVT::getVectorVT(NewEltVT, NewNumElts_Lo);
7461 MVT NewVT_Hi = MVT::getVectorVT(NewEltVT, NewNumElts_Hi);
Nate Begeman5db1afb2007-11-15 21:15:26 +00007462
Chris Lattnerc7029802006-03-18 01:44:44 +00007463 // See if we already split it.
Dan Gohman475871a2008-07-27 21:46:04 +00007464 std::map<SDValue, std::pair<SDValue, SDValue> >::iterator I
Chris Lattnerc7029802006-03-18 01:44:44 +00007465 = SplitNodes.find(Op);
7466 if (I != SplitNodes.end()) {
7467 Lo = I->second.first;
7468 Hi = I->second.second;
7469 return;
7470 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007471
Chris Lattnerc7029802006-03-18 01:44:44 +00007472 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007473 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007474#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007475 Node->dump(&DAG);
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007476#endif
7477 assert(0 && "Unhandled operation in SplitVectorOp!");
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00007478 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00007479 Lo = DAG.getUNDEF(NewVT_Lo);
7480 Hi = DAG.getUNDEF(NewVT_Hi);
Chris Lattnerdaf9bc82007-11-19 20:21:32 +00007481 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007482 case ISD::BUILD_PAIR:
7483 Lo = Node->getOperand(0);
7484 Hi = Node->getOperand(1);
7485 break;
Dan Gohman9fe46622007-09-28 23:53:40 +00007486 case ISD::INSERT_VECTOR_ELT: {
Nate Begeman68679912008-04-25 18:07:40 +00007487 if (ConstantSDNode *Idx = dyn_cast<ConstantSDNode>(Node->getOperand(2))) {
7488 SplitVectorOp(Node->getOperand(0), Lo, Hi);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007489 unsigned Index = Idx->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007490 SDValue ScalarOp = Node->getOperand(1);
Nate Begeman68679912008-04-25 18:07:40 +00007491 if (Index < NewNumElts_Lo)
Dale Johannesenc6be1102009-02-02 22:49:46 +00007492 Lo = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Lo, Lo, ScalarOp,
Nate Begeman68679912008-04-25 18:07:40 +00007493 DAG.getIntPtrConstant(Index));
7494 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00007495 Hi = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, NewVT_Hi, Hi, ScalarOp,
Nate Begeman68679912008-04-25 18:07:40 +00007496 DAG.getIntPtrConstant(Index - NewNumElts_Lo));
7497 break;
7498 }
Dan Gohman475871a2008-07-27 21:46:04 +00007499 SDValue Tmp = PerformInsertVectorEltInMemory(Node->getOperand(0),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007500 Node->getOperand(1),
7501 Node->getOperand(2), dl);
Nate Begeman68679912008-04-25 18:07:40 +00007502 SplitVectorOp(Tmp, Lo, Hi);
Dan Gohman9fe46622007-09-28 23:53:40 +00007503 break;
7504 }
Chris Lattner6c9c6802007-11-19 21:16:54 +00007505 case ISD::VECTOR_SHUFFLE: {
7506 // Build the low part.
Dan Gohman475871a2008-07-27 21:46:04 +00007507 SDValue Mask = Node->getOperand(2);
7508 SmallVector<SDValue, 8> Ops;
Duncan Sands83ec4b62008-06-06 12:08:01 +00007509 MVT PtrVT = TLI.getPointerTy();
Scott Michelfdc40a02009-02-17 22:15:04 +00007510
7511 // Insert all of the elements from the input that are needed. We use
Chris Lattner6c9c6802007-11-19 21:16:54 +00007512 // buildvector of extractelement here because the input vectors will have
7513 // to be legalized, so this makes the code simpler.
7514 for (unsigned i = 0; i != NewNumElts_Lo; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007515 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007516 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007517 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman5922f562008-03-14 00:53:31 +00007518 continue;
7519 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007520 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007521 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007522 if (Idx >= NumElements) {
7523 InVec = Node->getOperand(1);
7524 Idx -= NumElements;
7525 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00007526 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner6c9c6802007-11-19 21:16:54 +00007527 DAG.getConstant(Idx, PtrVT)));
7528 }
Evan Chenga87008d2009-02-25 22:49:59 +00007529 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007530 Ops.clear();
Scott Michelfdc40a02009-02-17 22:15:04 +00007531
Chris Lattner6c9c6802007-11-19 21:16:54 +00007532 for (unsigned i = NewNumElts_Lo; i != NumElements; ++i) {
Dan Gohman475871a2008-07-27 21:46:04 +00007533 SDValue IdxNode = Mask.getOperand(i);
Nate Begeman5922f562008-03-14 00:53:31 +00007534 if (IdxNode.getOpcode() == ISD::UNDEF) {
Dale Johannesene8d72302009-02-06 23:05:02 +00007535 Ops.push_back(DAG.getUNDEF(NewEltVT));
Nate Begeman5922f562008-03-14 00:53:31 +00007536 continue;
7537 }
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007538 unsigned Idx = cast<ConstantSDNode>(IdxNode)->getZExtValue();
Dan Gohman475871a2008-07-27 21:46:04 +00007539 SDValue InVec = Node->getOperand(0);
Chris Lattner6c9c6802007-11-19 21:16:54 +00007540 if (Idx >= NumElements) {
7541 InVec = Node->getOperand(1);
7542 Idx -= NumElements;
7543 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00007544 Ops.push_back(DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewEltVT, InVec,
Chris Lattner6c9c6802007-11-19 21:16:54 +00007545 DAG.getConstant(Idx, PtrVT)));
7546 }
Evan Chenga87008d2009-02-25 22:49:59 +00007547 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &Ops[0], Ops.size());
Chris Lattner6c9c6802007-11-19 21:16:54 +00007548 break;
7549 }
Dan Gohman7f321562007-06-25 16:23:39 +00007550 case ISD::BUILD_VECTOR: {
Scott Michelfdc40a02009-02-17 22:15:04 +00007551 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007552 Node->op_begin()+NewNumElts_Lo);
Evan Chenga87008d2009-02-25 22:49:59 +00007553 Lo = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Lo, &LoOps[0], LoOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007554
Scott Michelfdc40a02009-02-17 22:15:04 +00007555 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumElts_Lo,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007556 Node->op_end());
Evan Chenga87008d2009-02-25 22:49:59 +00007557 Hi = DAG.getNode(ISD::BUILD_VECTOR, dl, NewVT_Hi, &HiOps[0], HiOps.size());
Chris Lattnerc7029802006-03-18 01:44:44 +00007558 break;
7559 }
Dan Gohman7f321562007-06-25 16:23:39 +00007560 case ISD::CONCAT_VECTORS: {
Nate Begeman5db1afb2007-11-15 21:15:26 +00007561 // FIXME: Handle non-power-of-two vectors?
Dan Gohman7f321562007-06-25 16:23:39 +00007562 unsigned NewNumSubvectors = Node->getNumOperands() / 2;
7563 if (NewNumSubvectors == 1) {
7564 Lo = Node->getOperand(0);
7565 Hi = Node->getOperand(1);
7566 } else {
Mon P Wangaeb06d22008-11-10 04:46:22 +00007567 SmallVector<SDValue, 8> LoOps(Node->op_begin(),
7568 Node->op_begin()+NewNumSubvectors);
Scott Michelfdc40a02009-02-17 22:15:04 +00007569 Lo = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Lo,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007570 &LoOps[0], LoOps.size());
Dan Gohman65956352007-06-13 15:12:02 +00007571
Mon P Wangaeb06d22008-11-10 04:46:22 +00007572 SmallVector<SDValue, 8> HiOps(Node->op_begin()+NewNumSubvectors,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007573 Node->op_end());
Scott Michelfdc40a02009-02-17 22:15:04 +00007574 Hi = DAG.getNode(ISD::CONCAT_VECTORS, dl, NewVT_Hi,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007575 &HiOps[0], HiOps.size());
Dan Gohman7f321562007-06-25 16:23:39 +00007576 }
Dan Gohman65956352007-06-13 15:12:02 +00007577 break;
7578 }
Mon P Wangaeb06d22008-11-10 04:46:22 +00007579 case ISD::EXTRACT_SUBVECTOR: {
7580 SDValue Vec = Op.getOperand(0);
7581 SDValue Idx = Op.getOperand(1);
7582 MVT IdxVT = Idx.getValueType();
7583
Dale Johannesenc6be1102009-02-02 22:49:46 +00007584 Lo = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Lo, Vec, Idx);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007585 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
7586 if (CIdx) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007587 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec,
Mon P Wangaeb06d22008-11-10 04:46:22 +00007588 DAG.getConstant(CIdx->getZExtValue() + NewNumElts_Lo,
7589 IdxVT));
7590 } else {
Dale Johannesenc6be1102009-02-02 22:49:46 +00007591 Idx = DAG.getNode(ISD::ADD, dl, IdxVT, Idx,
Mon P Wangaeb06d22008-11-10 04:46:22 +00007592 DAG.getConstant(NewNumElts_Lo, IdxVT));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007593 Hi = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, NewVT_Hi, Vec, Idx);
Mon P Wangaeb06d22008-11-10 04:46:22 +00007594 }
7595 break;
7596 }
Dan Gohmanc6230962007-10-17 14:48:28 +00007597 case ISD::SELECT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007598 SDValue Cond = Node->getOperand(0);
Dan Gohmanc6230962007-10-17 14:48:28 +00007599
Dan Gohman475871a2008-07-27 21:46:04 +00007600 SDValue LL, LH, RL, RH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007601 SplitVectorOp(Node->getOperand(1), LL, LH);
7602 SplitVectorOp(Node->getOperand(2), RL, RH);
7603
Duncan Sands83ec4b62008-06-06 12:08:01 +00007604 if (Cond.getValueType().isVector()) {
Dan Gohmanc6230962007-10-17 14:48:28 +00007605 // Handle a vector merge.
Dan Gohman475871a2008-07-27 21:46:04 +00007606 SDValue CL, CH;
Dan Gohmanc6230962007-10-17 14:48:28 +00007607 SplitVectorOp(Cond, CL, CH);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007608 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, CL, LL, RL);
7609 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, CH, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007610 } else {
7611 // Handle a simple select with vector operands.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007612 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, Cond, LL, RL);
7613 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, Cond, LH, RH);
Dan Gohmanc6230962007-10-17 14:48:28 +00007614 }
7615 break;
7616 }
Chris Lattner80c1a562008-06-30 02:43:01 +00007617 case ISD::SELECT_CC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007618 SDValue CondLHS = Node->getOperand(0);
7619 SDValue CondRHS = Node->getOperand(1);
7620 SDValue CondCode = Node->getOperand(4);
Scott Michelfdc40a02009-02-17 22:15:04 +00007621
Dan Gohman475871a2008-07-27 21:46:04 +00007622 SDValue LL, LH, RL, RH;
Chris Lattner80c1a562008-06-30 02:43:01 +00007623 SplitVectorOp(Node->getOperand(2), LL, LH);
7624 SplitVectorOp(Node->getOperand(3), RL, RH);
Scott Michelfdc40a02009-02-17 22:15:04 +00007625
Chris Lattner80c1a562008-06-30 02:43:01 +00007626 // Handle a simple select with vector operands.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007627 Lo = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Lo, CondLHS, CondRHS,
Chris Lattner80c1a562008-06-30 02:43:01 +00007628 LL, RL, CondCode);
Scott Michelfdc40a02009-02-17 22:15:04 +00007629 Hi = DAG.getNode(ISD::SELECT_CC, dl, NewVT_Hi, CondLHS, CondRHS,
Chris Lattner80c1a562008-06-30 02:43:01 +00007630 LH, RH, CondCode);
7631 break;
7632 }
Nate Begemanb43e9c12008-05-12 19:40:03 +00007633 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007634 SDValue LL, LH, RL, RH;
Nate Begemanb43e9c12008-05-12 19:40:03 +00007635 SplitVectorOp(Node->getOperand(0), LL, LH);
7636 SplitVectorOp(Node->getOperand(1), RL, RH);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007637 Lo = DAG.getNode(ISD::VSETCC, dl, NewVT_Lo, LL, RL, Node->getOperand(2));
7638 Hi = DAG.getNode(ISD::VSETCC, dl, NewVT_Hi, LH, RH, Node->getOperand(2));
Nate Begemanb43e9c12008-05-12 19:40:03 +00007639 break;
7640 }
Dan Gohman7f321562007-06-25 16:23:39 +00007641 case ISD::ADD:
7642 case ISD::SUB:
7643 case ISD::MUL:
7644 case ISD::FADD:
7645 case ISD::FSUB:
7646 case ISD::FMUL:
7647 case ISD::SDIV:
7648 case ISD::UDIV:
7649 case ISD::FDIV:
Dan Gohman82669522007-10-11 23:57:53 +00007650 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007651 case ISD::AND:
7652 case ISD::OR:
Dan Gohman089617d2007-11-19 15:15:03 +00007653 case ISD::XOR:
7654 case ISD::UREM:
7655 case ISD::SREM:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00007656 case ISD::FREM:
7657 case ISD::SHL:
7658 case ISD::SRA:
7659 case ISD::SRL: {
Dan Gohman475871a2008-07-27 21:46:04 +00007660 SDValue LL, LH, RL, RH;
Chris Lattnerc7029802006-03-18 01:44:44 +00007661 SplitVectorOp(Node->getOperand(0), LL, LH);
7662 SplitVectorOp(Node->getOperand(1), RL, RH);
Scott Michelfdc40a02009-02-17 22:15:04 +00007663
Dale Johannesenc6be1102009-02-02 22:49:46 +00007664 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, LL, RL);
7665 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, LH, RH);
Chris Lattnerc7029802006-03-18 01:44:44 +00007666 break;
7667 }
Dan Gohman7f8613e2008-08-14 20:04:46 +00007668 case ISD::FP_ROUND:
Dan Gohman82669522007-10-11 23:57:53 +00007669 case ISD::FPOWI: {
Dan Gohman475871a2008-07-27 21:46:04 +00007670 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007671 SplitVectorOp(Node->getOperand(0), L, H);
7672
Dale Johannesenc6be1102009-02-02 22:49:46 +00007673 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L, Node->getOperand(1));
7674 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H, Node->getOperand(1));
Dan Gohman82669522007-10-11 23:57:53 +00007675 break;
7676 }
7677 case ISD::CTTZ:
7678 case ISD::CTLZ:
7679 case ISD::CTPOP:
7680 case ISD::FNEG:
7681 case ISD::FABS:
7682 case ISD::FSQRT:
7683 case ISD::FSIN:
Nate Begemanb348d182007-11-17 03:58:34 +00007684 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007685 case ISD::FLOG:
7686 case ISD::FLOG2:
7687 case ISD::FLOG10:
7688 case ISD::FEXP:
7689 case ISD::FEXP2:
Nate Begemanb348d182007-11-17 03:58:34 +00007690 case ISD::FP_TO_SINT:
7691 case ISD::FP_TO_UINT:
7692 case ISD::SINT_TO_FP:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007693 case ISD::UINT_TO_FP:
7694 case ISD::TRUNCATE:
7695 case ISD::ANY_EXTEND:
7696 case ISD::SIGN_EXTEND:
7697 case ISD::ZERO_EXTEND:
7698 case ISD::FP_EXTEND: {
Dan Gohman475871a2008-07-27 21:46:04 +00007699 SDValue L, H;
Dan Gohman82669522007-10-11 23:57:53 +00007700 SplitVectorOp(Node->getOperand(0), L, H);
7701
Dale Johannesenc6be1102009-02-02 22:49:46 +00007702 Lo = DAG.getNode(Node->getOpcode(), dl, NewVT_Lo, L);
7703 Hi = DAG.getNode(Node->getOpcode(), dl, NewVT_Hi, H);
Dan Gohman82669522007-10-11 23:57:53 +00007704 break;
7705 }
Mon P Wang77cdf302008-11-10 20:54:11 +00007706 case ISD::CONVERT_RNDSAT: {
7707 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
7708 SDValue L, H;
7709 SplitVectorOp(Node->getOperand(0), L, H);
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007710 SDValue DTyOpL = DAG.getValueType(NewVT_Lo);
7711 SDValue DTyOpH = DAG.getValueType(NewVT_Hi);
7712 SDValue STyOpL = DAG.getValueType(L.getValueType());
7713 SDValue STyOpH = DAG.getValueType(H.getValueType());
Mon P Wang77cdf302008-11-10 20:54:11 +00007714
7715 SDValue RndOp = Node->getOperand(3);
7716 SDValue SatOp = Node->getOperand(4);
7717
Dale Johannesenc460ae92009-02-04 00:13:36 +00007718 Lo = DAG.getConvertRndSat(NewVT_Lo, dl, L, DTyOpL, STyOpL,
Mon P Wang77cdf302008-11-10 20:54:11 +00007719 RndOp, SatOp, CvtCode);
Dale Johannesenc460ae92009-02-04 00:13:36 +00007720 Hi = DAG.getConvertRndSat(NewVT_Hi, dl, H, DTyOpH, STyOpH,
Mon P Wang77cdf302008-11-10 20:54:11 +00007721 RndOp, SatOp, CvtCode);
7722 break;
7723 }
Dan Gohman7f321562007-06-25 16:23:39 +00007724 case ISD::LOAD: {
7725 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007726 SDValue Ch = LD->getChain();
7727 SDValue Ptr = LD->getBasePtr();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007728 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007729 const Value *SV = LD->getSrcValue();
7730 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007731 MVT MemoryVT = LD->getMemoryVT();
Dan Gohman7f321562007-06-25 16:23:39 +00007732 unsigned Alignment = LD->getAlignment();
7733 bool isVolatile = LD->isVolatile();
7734
Dan Gohman7f8613e2008-08-14 20:04:46 +00007735 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesene8d72302009-02-06 23:05:02 +00007736 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Dan Gohman7f8613e2008-08-14 20:04:46 +00007737
7738 MVT MemNewEltVT = MemoryVT.getVectorElementType();
7739 MVT MemNewVT_Lo = MVT::getVectorVT(MemNewEltVT, NewNumElts_Lo);
7740 MVT MemNewVT_Hi = MVT::getVectorVT(MemNewEltVT, NewNumElts_Hi);
7741
Dale Johannesenc6be1102009-02-02 22:49:46 +00007742 Lo = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007743 NewVT_Lo, Ch, Ptr, Offset,
7744 SV, SVOffset, MemNewVT_Lo, isVolatile, Alignment);
7745 unsigned IncrementSize = NewNumElts_Lo * MemNewEltVT.getSizeInBits()/8;
Dale Johannesenc6be1102009-02-02 22:49:46 +00007746 Ptr = DAG.getNode(ISD::ADD, dl, Ptr.getValueType(), Ptr,
Chris Lattner0bd48932008-01-17 07:00:52 +00007747 DAG.getIntPtrConstant(IncrementSize));
Dan Gohman7f321562007-06-25 16:23:39 +00007748 SVOffset += IncrementSize;
Duncan Sandsdc846502007-10-28 12:59:45 +00007749 Alignment = MinAlign(Alignment, IncrementSize);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007750 Hi = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007751 NewVT_Hi, Ch, Ptr, Offset,
7752 SV, SVOffset, MemNewVT_Hi, isVolatile, Alignment);
Scott Michelfdc40a02009-02-17 22:15:04 +00007753
Chris Lattnerc7029802006-03-18 01:44:44 +00007754 // Build a factor node to remember that this load is independent of the
7755 // other one.
Dale Johannesenc6be1102009-02-02 22:49:46 +00007756 SDValue TF = DAG.getNode(ISD::TokenFactor, dl, MVT::Other, Lo.getValue(1),
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007757 Hi.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00007758
Chris Lattnerc7029802006-03-18 01:44:44 +00007759 // Remember that we legalized the chain.
7760 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TF));
Chris Lattnerc7029802006-03-18 01:44:44 +00007761 break;
7762 }
Dan Gohman7f321562007-06-25 16:23:39 +00007763 case ISD::BIT_CONVERT: {
Chris Lattner7692eb42006-03-23 21:16:34 +00007764 // We know the result is a vector. The input may be either a vector or a
7765 // scalar value.
Dan Gohman475871a2008-07-27 21:46:04 +00007766 SDValue InOp = Node->getOperand(0);
Duncan Sands83ec4b62008-06-06 12:08:01 +00007767 if (!InOp.getValueType().isVector() ||
7768 InOp.getValueType().getVectorNumElements() == 1) {
Dan Gohman10a7aa62007-06-29 00:09:08 +00007769 // The input is a scalar or single-element vector.
7770 // Lower to a store/load so that it can be split.
7771 // FIXME: this could be improved probably.
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007772 unsigned LdAlign = TLI.getTargetData()->
7773 getPrefTypeAlignment(Op.getValueType().getTypeForMVT());
Dan Gohman475871a2008-07-27 21:46:04 +00007774 SDValue Ptr = DAG.CreateStackTemporary(InOp.getValueType(), LdAlign);
Gabor Greifba36cb52008-08-28 21:40:38 +00007775 int FI = cast<FrameIndexSDNode>(Ptr.getNode())->getIndex();
Chris Lattner7692eb42006-03-23 21:16:34 +00007776
Dale Johannesenc6be1102009-02-02 22:49:46 +00007777 SDValue St = DAG.getStore(DAG.getEntryNode(), dl,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00007778 InOp, Ptr,
7779 PseudoSourceValue::getFixedStack(FI), 0);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007780 InOp = DAG.getLoad(Op.getValueType(), dl, St, Ptr,
Dan Gohmana54cf172008-07-11 22:44:52 +00007781 PseudoSourceValue::getFixedStack(FI), 0);
Chris Lattner7692eb42006-03-23 21:16:34 +00007782 }
Dan Gohman10a7aa62007-06-29 00:09:08 +00007783 // Split the vector and convert each of the pieces now.
7784 SplitVectorOp(InOp, Lo, Hi);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007785 Lo = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Lo, Lo);
7786 Hi = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT_Hi, Hi);
Dan Gohman10a7aa62007-06-29 00:09:08 +00007787 break;
Chris Lattner7692eb42006-03-23 21:16:34 +00007788 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007789 }
Scott Michelfdc40a02009-02-17 22:15:04 +00007790
Chris Lattnerc7029802006-03-18 01:44:44 +00007791 // Remember in a map if the values will be reused later.
Scott Michelfdc40a02009-02-17 22:15:04 +00007792 bool isNew =
Chris Lattnerc7029802006-03-18 01:44:44 +00007793 SplitNodes.insert(std::make_pair(Op, std::make_pair(Lo, Hi))).second;
Dan Gohman10a7aa62007-06-29 00:09:08 +00007794 assert(isNew && "Value already split?!?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007795 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00007796}
7797
7798
Dan Gohman89b20c02007-06-27 14:06:22 +00007799/// ScalarizeVectorOp - Given an operand of single-element vector type
7800/// (e.g. v1f32), convert it into the equivalent operation that returns a
7801/// scalar (e.g. f32) value.
Dan Gohman475871a2008-07-27 21:46:04 +00007802SDValue SelectionDAGLegalize::ScalarizeVectorOp(SDValue Op) {
Eli Friedman1fde9c52009-05-24 02:46:31 +00007803 assert(0 && "This should be dead!");
Duncan Sands83ec4b62008-06-06 12:08:01 +00007804 assert(Op.getValueType().isVector() && "Bad ScalarizeVectorOp invocation!");
Gabor Greifba36cb52008-08-28 21:40:38 +00007805 SDNode *Node = Op.getNode();
Dale Johannesenc6be1102009-02-02 22:49:46 +00007806 DebugLoc dl = Node->getDebugLoc();
Duncan Sands83ec4b62008-06-06 12:08:01 +00007807 MVT NewVT = Op.getValueType().getVectorElementType();
7808 assert(Op.getValueType().getVectorNumElements() == 1);
Scott Michelfdc40a02009-02-17 22:15:04 +00007809
Dan Gohman7f321562007-06-25 16:23:39 +00007810 // See if we already scalarized it.
Dan Gohman475871a2008-07-27 21:46:04 +00007811 std::map<SDValue, SDValue>::iterator I = ScalarizedNodes.find(Op);
Dan Gohman7f321562007-06-25 16:23:39 +00007812 if (I != ScalarizedNodes.end()) return I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00007813
Dan Gohman475871a2008-07-27 21:46:04 +00007814 SDValue Result;
Chris Lattnerc7029802006-03-18 01:44:44 +00007815 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00007816 default:
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007817#ifndef NDEBUG
Dan Gohman39833582007-06-04 16:17:33 +00007818 Node->dump(&DAG); cerr << "\n";
Jim Laskeye37fe9b2006-07-11 17:58:07 +00007819#endif
Dan Gohman7f321562007-06-25 16:23:39 +00007820 assert(0 && "Unknown vector operation in ScalarizeVectorOp!");
7821 case ISD::ADD:
7822 case ISD::FADD:
7823 case ISD::SUB:
7824 case ISD::FSUB:
7825 case ISD::MUL:
7826 case ISD::FMUL:
7827 case ISD::SDIV:
7828 case ISD::UDIV:
7829 case ISD::FDIV:
7830 case ISD::SREM:
7831 case ISD::UREM:
7832 case ISD::FREM:
Dan Gohman82669522007-10-11 23:57:53 +00007833 case ISD::FPOW:
Dan Gohman7f321562007-06-25 16:23:39 +00007834 case ISD::AND:
7835 case ISD::OR:
7836 case ISD::XOR:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007837 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007838 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007839 ScalarizeVectorOp(Node->getOperand(0)),
7840 ScalarizeVectorOp(Node->getOperand(1)));
Chris Lattnerc7029802006-03-18 01:44:44 +00007841 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007842 case ISD::FNEG:
7843 case ISD::FABS:
7844 case ISD::FSQRT:
7845 case ISD::FSIN:
7846 case ISD::FCOS:
Dale Johannesen7794f2a2008-09-04 00:47:13 +00007847 case ISD::FLOG:
7848 case ISD::FLOG2:
7849 case ISD::FLOG10:
7850 case ISD::FEXP:
7851 case ISD::FEXP2:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007852 case ISD::FP_TO_SINT:
7853 case ISD::FP_TO_UINT:
7854 case ISD::SINT_TO_FP:
7855 case ISD::UINT_TO_FP:
7856 case ISD::SIGN_EXTEND:
7857 case ISD::ZERO_EXTEND:
7858 case ISD::ANY_EXTEND:
7859 case ISD::TRUNCATE:
7860 case ISD::FP_EXTEND:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007861 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007862 NewVT,
Dan Gohman7f321562007-06-25 16:23:39 +00007863 ScalarizeVectorOp(Node->getOperand(0)));
7864 break;
Mon P Wang77cdf302008-11-10 20:54:11 +00007865 case ISD::CONVERT_RNDSAT: {
7866 SDValue Op0 = ScalarizeVectorOp(Node->getOperand(0));
Dale Johannesenc460ae92009-02-04 00:13:36 +00007867 Result = DAG.getConvertRndSat(NewVT, dl, Op0,
Mon P Wang77cdf302008-11-10 20:54:11 +00007868 DAG.getValueType(NewVT),
7869 DAG.getValueType(Op0.getValueType()),
7870 Node->getOperand(3),
7871 Node->getOperand(4),
7872 cast<CvtRndSatSDNode>(Node)->getCvtCode());
7873 break;
7874 }
Dan Gohman9e04c822007-10-12 14:13:46 +00007875 case ISD::FPOWI:
Dan Gohman7f8613e2008-08-14 20:04:46 +00007876 case ISD::FP_ROUND:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007877 Result = DAG.getNode(Node->getOpcode(), dl,
Scott Michelfdc40a02009-02-17 22:15:04 +00007878 NewVT,
Dan Gohman9e04c822007-10-12 14:13:46 +00007879 ScalarizeVectorOp(Node->getOperand(0)),
7880 Node->getOperand(1));
7881 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007882 case ISD::LOAD: {
7883 LoadSDNode *LD = cast<LoadSDNode>(Node);
Dan Gohman475871a2008-07-27 21:46:04 +00007884 SDValue Ch = LegalizeOp(LD->getChain()); // Legalize the chain.
7885 SDValue Ptr = LegalizeOp(LD->getBasePtr()); // Legalize the pointer.
Dan Gohman7f8613e2008-08-14 20:04:46 +00007886 ISD::LoadExtType ExtType = LD->getExtensionType();
Dan Gohman7f321562007-06-25 16:23:39 +00007887 const Value *SV = LD->getSrcValue();
7888 int SVOffset = LD->getSrcValueOffset();
Dan Gohman7f8613e2008-08-14 20:04:46 +00007889 MVT MemoryVT = LD->getMemoryVT();
7890 unsigned Alignment = LD->getAlignment();
7891 bool isVolatile = LD->isVolatile();
7892
7893 assert(LD->isUnindexed() && "Indexed vector loads are not supported yet!");
Dale Johannesene8d72302009-02-06 23:05:02 +00007894 SDValue Offset = DAG.getUNDEF(Ptr.getValueType());
Scott Michelfdc40a02009-02-17 22:15:04 +00007895
Dale Johannesenc6be1102009-02-02 22:49:46 +00007896 Result = DAG.getLoad(ISD::UNINDEXED, dl, ExtType,
Dan Gohman7f8613e2008-08-14 20:04:46 +00007897 NewVT, Ch, Ptr, Offset, SV, SVOffset,
7898 MemoryVT.getVectorElementType(),
7899 isVolatile, Alignment);
Dan Gohman7f321562007-06-25 16:23:39 +00007900
Chris Lattnerc7029802006-03-18 01:44:44 +00007901 // Remember that we legalized the chain.
7902 AddLegalizedOperand(Op.getValue(1), LegalizeOp(Result.getValue(1)));
7903 break;
7904 }
Dan Gohman7f321562007-06-25 16:23:39 +00007905 case ISD::BUILD_VECTOR:
7906 Result = Node->getOperand(0);
Chris Lattnerc7029802006-03-18 01:44:44 +00007907 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007908 case ISD::INSERT_VECTOR_ELT:
7909 // Returning the inserted scalar element.
7910 Result = Node->getOperand(1);
7911 break;
7912 case ISD::CONCAT_VECTORS:
Dan Gohman65956352007-06-13 15:12:02 +00007913 assert(Node->getOperand(0).getValueType() == NewVT &&
7914 "Concat of non-legal vectors not yet supported!");
7915 Result = Node->getOperand(0);
7916 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007917 case ISD::VECTOR_SHUFFLE: {
7918 // Figure out if the scalar is the LHS or RHS and return it.
Dan Gohman475871a2008-07-27 21:46:04 +00007919 SDValue EltNum = Node->getOperand(2).getOperand(0);
Dan Gohmanf5aeb1a2008-09-12 16:56:44 +00007920 if (cast<ConstantSDNode>(EltNum)->getZExtValue())
Dan Gohman7f321562007-06-25 16:23:39 +00007921 Result = ScalarizeVectorOp(Node->getOperand(1));
7922 else
7923 Result = ScalarizeVectorOp(Node->getOperand(0));
Chris Lattner2332b9f2006-03-19 01:17:20 +00007924 break;
Dan Gohman7f321562007-06-25 16:23:39 +00007925 }
7926 case ISD::EXTRACT_SUBVECTOR:
Scott Michelfdc40a02009-02-17 22:15:04 +00007927 Result = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, NewVT,
Dale Johannesenc6be1102009-02-02 22:49:46 +00007928 Node->getOperand(0), Node->getOperand(1));
Dan Gohman65956352007-06-13 15:12:02 +00007929 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007930 case ISD::BIT_CONVERT: {
Dan Gohman475871a2008-07-27 21:46:04 +00007931 SDValue Op0 = Op.getOperand(0);
Dan Gohman4e3fdf22009-05-11 18:30:42 +00007932 if (Op0.getValueType().isVector() &&
7933 Op0.getValueType().getVectorNumElements() == 1)
Evan Cheng446efdd2008-05-16 17:19:05 +00007934 Op0 = ScalarizeVectorOp(Op0);
Dale Johannesenc6be1102009-02-02 22:49:46 +00007935 Result = DAG.getNode(ISD::BIT_CONVERT, dl, NewVT, Op0);
Chris Lattner5b2316e2006-03-28 20:24:43 +00007936 break;
Evan Cheng446efdd2008-05-16 17:19:05 +00007937 }
Dan Gohman7f321562007-06-25 16:23:39 +00007938 case ISD::SELECT:
Dale Johannesenc6be1102009-02-02 22:49:46 +00007939 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Op.getOperand(0),
Dan Gohman7f321562007-06-25 16:23:39 +00007940 ScalarizeVectorOp(Op.getOperand(1)),
7941 ScalarizeVectorOp(Op.getOperand(2)));
Chris Lattnerb22e35a2006-04-08 22:22:57 +00007942 break;
Chris Lattner80c1a562008-06-30 02:43:01 +00007943 case ISD::SELECT_CC:
Scott Michelfdc40a02009-02-17 22:15:04 +00007944 Result = DAG.getNode(ISD::SELECT_CC, dl, NewVT, Node->getOperand(0),
Chris Lattner80c1a562008-06-30 02:43:01 +00007945 Node->getOperand(1),
7946 ScalarizeVectorOp(Op.getOperand(2)),
7947 ScalarizeVectorOp(Op.getOperand(3)),
7948 Node->getOperand(4));
7949 break;
Nate Begeman0d1704b2008-05-12 23:09:43 +00007950 case ISD::VSETCC: {
Dan Gohman475871a2008-07-27 21:46:04 +00007951 SDValue Op0 = ScalarizeVectorOp(Op.getOperand(0));
7952 SDValue Op1 = ScalarizeVectorOp(Op.getOperand(1));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007953 Result = DAG.getNode(ISD::SETCC, dl,
7954 TLI.getSetCCResultType(Op0.getValueType()),
Duncan Sands5480c042009-01-01 15:52:00 +00007955 Op0, Op1, Op.getOperand(2));
Dale Johannesenc6be1102009-02-02 22:49:46 +00007956 Result = DAG.getNode(ISD::SELECT, dl, NewVT, Result,
Nate Begeman0d1704b2008-05-12 23:09:43 +00007957 DAG.getConstant(-1ULL, NewVT),
7958 DAG.getConstant(0ULL, NewVT));
7959 break;
7960 }
Chris Lattnerc7029802006-03-18 01:44:44 +00007961 }
7962
7963 if (TLI.isTypeLegal(NewVT))
7964 Result = LegalizeOp(Result);
Dan Gohman7f321562007-06-25 16:23:39 +00007965 bool isNew = ScalarizedNodes.insert(std::make_pair(Op, Result)).second;
7966 assert(isNew && "Value already scalarized?");
Evan Cheng24ac4082008-11-24 07:09:49 +00007967 isNew = isNew;
Chris Lattnerc7029802006-03-18 01:44:44 +00007968 return Result;
7969}
7970
Chris Lattner3e928bb2005-01-07 07:47:09 +00007971
Mon P Wang0c397192008-10-30 08:01:45 +00007972SDValue SelectionDAGLegalize::WidenVectorOp(SDValue Op, MVT WidenVT) {
Eli Friedman1fde9c52009-05-24 02:46:31 +00007973 assert(0 && "This should be dead!");
Mon P Wang0c397192008-10-30 08:01:45 +00007974 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(Op);
7975 if (I != WidenNodes.end()) return I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00007976
Mon P Wang0c397192008-10-30 08:01:45 +00007977 MVT VT = Op.getValueType();
7978 assert(VT.isVector() && "Cannot widen non-vector type!");
7979
7980 SDValue Result;
7981 SDNode *Node = Op.getNode();
Dale Johannesenc6be1102009-02-02 22:49:46 +00007982 DebugLoc dl = Node->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00007983 MVT EVT = VT.getVectorElementType();
7984
7985 unsigned NumElts = VT.getVectorNumElements();
7986 unsigned NewNumElts = WidenVT.getVectorNumElements();
7987 assert(NewNumElts > NumElts && "Cannot widen to smaller type!");
7988 assert(NewNumElts < 17);
7989
7990 // When widen is called, it is assumed that it is more efficient to use a
7991 // wide type. The default action is to widen to operation to a wider legal
7992 // vector type and then do the operation if it is legal by calling LegalizeOp
7993 // again. If there is no vector equivalent, we will unroll the operation, do
7994 // it, and rebuild the vector. If most of the operations are vectorizible to
7995 // the legal type, the resulting code will be more efficient. If this is not
7996 // the case, the resulting code will preform badly as we end up generating
7997 // code to pack/unpack the results. It is the function that calls widen
Mon P Wangf007a8b2008-11-06 05:31:54 +00007998 // that is responsible for seeing this doesn't happen.
Mon P Wang0c397192008-10-30 08:01:45 +00007999 switch (Node->getOpcode()) {
Scott Michelfdc40a02009-02-17 22:15:04 +00008000 default:
Mon P Wang0c397192008-10-30 08:01:45 +00008001#ifndef NDEBUG
8002 Node->dump(&DAG);
8003#endif
8004 assert(0 && "Unexpected operation in WidenVectorOp!");
8005 break;
8006 case ISD::CopyFromReg:
Mon P Wang49292f12008-11-15 06:05:52 +00008007 assert(0 && "CopyFromReg doesn't need widening!");
Mon P Wang0c397192008-10-30 08:01:45 +00008008 case ISD::Constant:
8009 case ISD::ConstantFP:
8010 // To build a vector of these elements, clients should call BuildVector
8011 // and with each element instead of creating a node with a vector type
8012 assert(0 && "Unexpected operation in WidenVectorOp!");
8013 case ISD::VAARG:
8014 // Variable Arguments with vector types doesn't make any sense to me
8015 assert(0 && "Unexpected operation in WidenVectorOp!");
8016 break;
Mon P Wang49292f12008-11-15 06:05:52 +00008017 case ISD::UNDEF:
Dale Johannesene8d72302009-02-06 23:05:02 +00008018 Result = DAG.getUNDEF(WidenVT);
Mon P Wang49292f12008-11-15 06:05:52 +00008019 break;
Mon P Wang0c397192008-10-30 08:01:45 +00008020 case ISD::BUILD_VECTOR: {
8021 // Build a vector with undefined for the new nodes
8022 SDValueVector NewOps(Node->op_begin(), Node->op_end());
8023 for (unsigned i = NumElts; i < NewNumElts; ++i) {
Dale Johannesene8d72302009-02-06 23:05:02 +00008024 NewOps.push_back(DAG.getUNDEF(EVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008025 }
Evan Chenga87008d2009-02-25 22:49:59 +00008026 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, WidenVT,
8027 &NewOps[0], NewOps.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008028 break;
8029 }
8030 case ISD::INSERT_VECTOR_ELT: {
8031 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008032 Result = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, WidenVT, Tmp1,
Mon P Wang0c397192008-10-30 08:01:45 +00008033 Node->getOperand(1), Node->getOperand(2));
8034 break;
8035 }
8036 case ISD::VECTOR_SHUFFLE: {
8037 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8038 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
Nate Begeman9008ca62009-04-27 18:41:29 +00008039 ShuffleVectorSDNode *SVOp = cast<ShuffleVectorSDNode>(Node);
8040 SmallVector<int, 8> NewMask;
Mon P Wang0c397192008-10-30 08:01:45 +00008041 for (unsigned i = 0; i < NumElts; ++i) {
Nate Begeman9008ca62009-04-27 18:41:29 +00008042 int Idx = SVOp->getMaskElt(i);
8043 if (Idx < (int)NumElts)
8044 NewMask.push_back(Idx);
8045 else
8046 NewMask.push_back(Idx + NewNumElts - NumElts);
Mon P Wang0c397192008-10-30 08:01:45 +00008047 }
Nate Begeman9008ca62009-04-27 18:41:29 +00008048 for (unsigned i = NumElts; i < NewNumElts; ++i)
8049 NewMask.push_back(-1);
8050
8051 Result = DAG.getVectorShuffle(WidenVT, dl, Tmp1, Tmp2, &NewMask[0]);
Mon P Wang0c397192008-10-30 08:01:45 +00008052 break;
8053 }
8054 case ISD::LOAD: {
8055 // If the load widen returns true, we can use a single load for the
8056 // vector. Otherwise, it is returning a token factor for multiple
8057 // loads.
8058 SDValue TFOp;
8059 if (LoadWidenVectorOp(Result, TFOp, Op, WidenVT))
8060 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(1)));
8061 else
8062 AddLegalizedOperand(Op.getValue(1), LegalizeOp(TFOp.getValue(0)));
8063 break;
8064 }
8065
8066 case ISD::BIT_CONVERT: {
8067 SDValue Tmp1 = Node->getOperand(0);
8068 // Converts between two different types so we need to determine
8069 // the correct widen type for the input operand.
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008070 MVT InVT = Tmp1.getValueType();
Scott Michelfdc40a02009-02-17 22:15:04 +00008071 unsigned WidenSize = WidenVT.getSizeInBits();
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008072 if (InVT.isVector()) {
8073 MVT InEltVT = InVT.getVectorElementType();
8074 unsigned InEltSize = InEltVT.getSizeInBits();
8075 assert(WidenSize % InEltSize == 0 &&
8076 "can not widen bit convert that are not multiple of element type");
8077 MVT NewInWidenVT = MVT::getVectorVT(InEltVT, WidenSize / InEltSize);
8078 Tmp1 = WidenVectorOp(Tmp1, NewInWidenVT);
8079 assert(Tmp1.getValueType().getSizeInBits() == WidenVT.getSizeInBits());
Dale Johannesenc6be1102009-02-02 22:49:46 +00008080 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Tmp1);
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008081 } else {
8082 // If the result size is a multiple of the input size, widen the input
8083 // and then convert.
8084 unsigned InSize = InVT.getSizeInBits();
8085 assert(WidenSize % InSize == 0 &&
8086 "can not widen bit convert that are not multiple of element type");
8087 unsigned NewNumElts = WidenSize / InSize;
8088 SmallVector<SDValue, 16> Ops(NewNumElts);
Dale Johannesene8d72302009-02-06 23:05:02 +00008089 SDValue UndefVal = DAG.getUNDEF(InVT);
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008090 Ops[0] = Tmp1;
8091 for (unsigned i = 1; i < NewNumElts; ++i)
8092 Ops[i] = UndefVal;
Mon P Wang0c397192008-10-30 08:01:45 +00008093
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008094 MVT NewInVT = MVT::getVectorVT(InVT, NewNumElts);
Evan Chenga87008d2009-02-25 22:49:59 +00008095 Result = DAG.getNode(ISD::BUILD_VECTOR, dl, NewInVT, &Ops[0], NewNumElts);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008096 Result = DAG.getNode(ISD::BIT_CONVERT, dl, WidenVT, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008097 }
8098 break;
8099 }
8100
8101 case ISD::SINT_TO_FP:
8102 case ISD::UINT_TO_FP:
8103 case ISD::FP_TO_SINT:
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008104 case ISD::FP_TO_UINT:
8105 case ISD::FP_ROUND: {
Mon P Wang0c397192008-10-30 08:01:45 +00008106 SDValue Tmp1 = Node->getOperand(0);
8107 // Converts between two different types so we need to determine
8108 // the correct widen type for the input operand.
8109 MVT TVT = Tmp1.getValueType();
8110 assert(TVT.isVector() && "can not widen non vector type");
8111 MVT TEVT = TVT.getVectorElementType();
8112 MVT TWidenVT = MVT::getVectorVT(TEVT, NewNumElts);
8113 Tmp1 = WidenVectorOp(Tmp1, TWidenVT);
8114 assert(Tmp1.getValueType().getVectorNumElements() == NewNumElts);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008115 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008116 break;
8117 }
8118
8119 case ISD::FP_EXTEND:
8120 assert(0 && "Case not implemented. Dynamically dead with 2 FP types!");
8121 case ISD::TRUNCATE:
8122 case ISD::SIGN_EXTEND:
8123 case ISD::ZERO_EXTEND:
8124 case ISD::ANY_EXTEND:
Mon P Wang0c397192008-10-30 08:01:45 +00008125 case ISD::SIGN_EXTEND_INREG:
8126 case ISD::FABS:
8127 case ISD::FNEG:
8128 case ISD::FSQRT:
8129 case ISD::FSIN:
Mon P Wang49292f12008-11-15 06:05:52 +00008130 case ISD::FCOS:
8131 case ISD::CTPOP:
8132 case ISD::CTTZ:
8133 case ISD::CTLZ: {
Mon P Wang0c397192008-10-30 08:01:45 +00008134 // Unary op widening
Mon P Wang87c8a8f2008-12-18 20:03:17 +00008135 SDValue Tmp1;
Mon P Wang0c397192008-10-30 08:01:45 +00008136 Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8137 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008138 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1);
Mon P Wang0c397192008-10-30 08:01:45 +00008139 break;
8140 }
Mon P Wang77cdf302008-11-10 20:54:11 +00008141 case ISD::CONVERT_RNDSAT: {
8142 SDValue RndOp = Node->getOperand(3);
8143 SDValue SatOp = Node->getOperand(4);
Mon P Wang77cdf302008-11-10 20:54:11 +00008144 SDValue SrcOp = Node->getOperand(0);
8145
8146 // Converts between two different types so we need to determine
8147 // the correct widen type for the input operand.
8148 MVT SVT = SrcOp.getValueType();
8149 assert(SVT.isVector() && "can not widen non vector type");
8150 MVT SEVT = SVT.getVectorElementType();
8151 MVT SWidenVT = MVT::getVectorVT(SEVT, NewNumElts);
8152
8153 SrcOp = WidenVectorOp(SrcOp, SWidenVT);
8154 assert(SrcOp.getValueType() == WidenVT);
8155 SDValue DTyOp = DAG.getValueType(WidenVT);
8156 SDValue STyOp = DAG.getValueType(SrcOp.getValueType());
8157 ISD::CvtCode CvtCode = cast<CvtRndSatSDNode>(Node)->getCvtCode();
8158
Dale Johannesenc460ae92009-02-04 00:13:36 +00008159 Result = DAG.getConvertRndSat(WidenVT, dl, SrcOp, DTyOp, STyOp,
Mon P Wang77cdf302008-11-10 20:54:11 +00008160 RndOp, SatOp, CvtCode);
Mon P Wang77cdf302008-11-10 20:54:11 +00008161 break;
8162 }
Mon P Wang0c397192008-10-30 08:01:45 +00008163 case ISD::FPOW:
Scott Michelfdc40a02009-02-17 22:15:04 +00008164 case ISD::FPOWI:
Mon P Wang0c397192008-10-30 08:01:45 +00008165 case ISD::ADD:
8166 case ISD::SUB:
8167 case ISD::MUL:
8168 case ISD::MULHS:
8169 case ISD::MULHU:
8170 case ISD::AND:
8171 case ISD::OR:
8172 case ISD::XOR:
8173 case ISD::FADD:
8174 case ISD::FSUB:
8175 case ISD::FMUL:
8176 case ISD::SDIV:
8177 case ISD::SREM:
8178 case ISD::FDIV:
8179 case ISD::FREM:
8180 case ISD::FCOPYSIGN:
8181 case ISD::UDIV:
8182 case ISD::UREM:
8183 case ISD::BSWAP: {
8184 // Binary op widening
Mon P Wang0c397192008-10-30 08:01:45 +00008185 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8186 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), WidenVT);
8187 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008188 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008189 break;
8190 }
8191
8192 case ISD::SHL:
8193 case ISD::SRA:
8194 case ISD::SRL: {
Mon P Wang0c397192008-10-30 08:01:45 +00008195 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8196 assert(Tmp1.getValueType() == WidenVT);
Mon P Wangfb13f002008-12-02 07:35:08 +00008197 SDValue ShOp = Node->getOperand(1);
8198 MVT ShVT = ShOp.getValueType();
8199 MVT NewShVT = MVT::getVectorVT(ShVT.getVectorElementType(),
8200 WidenVT.getVectorNumElements());
8201 ShOp = WidenVectorOp(ShOp, NewShVT);
8202 assert(ShOp.getValueType() == NewShVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008203 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, ShOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008204 break;
8205 }
Mon P Wangfb13f002008-12-02 07:35:08 +00008206
Mon P Wang0c397192008-10-30 08:01:45 +00008207 case ISD::EXTRACT_VECTOR_ELT: {
8208 SDValue Tmp1 = WidenVectorOp(Node->getOperand(0), WidenVT);
8209 assert(Tmp1.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008210 Result = DAG.getNode(Node->getOpcode(), dl, EVT, Tmp1, Node->getOperand(1));
Mon P Wang0c397192008-10-30 08:01:45 +00008211 break;
8212 }
8213 case ISD::CONCAT_VECTORS: {
8214 // We concurrently support only widen on a multiple of the incoming vector.
8215 // We could widen on a multiple of the incoming operand if necessary.
8216 unsigned NumConcat = NewNumElts / NumElts;
8217 assert(NewNumElts % NumElts == 0 && "Can widen only a multiple of vector");
Dale Johannesene8d72302009-02-06 23:05:02 +00008218 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang0c397192008-10-30 08:01:45 +00008219 SmallVector<SDValue, 8> MOps;
8220 MOps.push_back(Op);
8221 for (unsigned i = 1; i != NumConcat; ++i) {
8222 MOps.push_back(UndefVal);
8223 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00008224 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang0c397192008-10-30 08:01:45 +00008225 &MOps[0], MOps.size()));
8226 break;
8227 }
8228 case ISD::EXTRACT_SUBVECTOR: {
Mon P Wang49292f12008-11-15 06:05:52 +00008229 SDValue Tmp1 = Node->getOperand(0);
8230 SDValue Idx = Node->getOperand(1);
8231 ConstantSDNode *CIdx = dyn_cast<ConstantSDNode>(Idx);
8232 if (CIdx && CIdx->getZExtValue() == 0) {
8233 // Since we are access the start of the vector, the incoming
8234 // vector type might be the proper.
8235 MVT Tmp1VT = Tmp1.getValueType();
8236 if (Tmp1VT == WidenVT)
8237 return Tmp1;
8238 else {
8239 unsigned Tmp1VTNumElts = Tmp1VT.getVectorNumElements();
8240 if (Tmp1VTNumElts < NewNumElts)
8241 Result = WidenVectorOp(Tmp1, WidenVT);
8242 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00008243 Result = DAG.getNode(ISD::EXTRACT_SUBVECTOR, dl, WidenVT, Tmp1, Idx);
Mon P Wang49292f12008-11-15 06:05:52 +00008244 }
8245 } else if (NewNumElts % NumElts == 0) {
8246 // Widen the extracted subvector.
8247 unsigned NumConcat = NewNumElts / NumElts;
Dale Johannesene8d72302009-02-06 23:05:02 +00008248 SDValue UndefVal = DAG.getUNDEF(VT);
Mon P Wang49292f12008-11-15 06:05:52 +00008249 SmallVector<SDValue, 8> MOps;
8250 MOps.push_back(Op);
8251 for (unsigned i = 1; i != NumConcat; ++i) {
8252 MOps.push_back(UndefVal);
8253 }
Dale Johannesenc6be1102009-02-02 22:49:46 +00008254 Result = LegalizeOp(DAG.getNode(ISD::CONCAT_VECTORS, dl, WidenVT,
Mon P Wang49292f12008-11-15 06:05:52 +00008255 &MOps[0], MOps.size()));
8256 } else {
8257 assert(0 && "can not widen extract subvector");
8258 // This could be implemented using insert and build vector but I would
8259 // like to see when this happens.
8260 }
Mon P Wang0c397192008-10-30 08:01:45 +00008261 break;
8262 }
8263
8264 case ISD::SELECT: {
Mon P Wang0c397192008-10-30 08:01:45 +00008265 // Determine new condition widen type and widen
8266 SDValue Cond1 = Node->getOperand(0);
8267 MVT CondVT = Cond1.getValueType();
8268 assert(CondVT.isVector() && "can not widen non vector type");
8269 MVT CondEVT = CondVT.getVectorElementType();
8270 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8271 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8272 assert(Cond1.getValueType() == CondWidenVT && "Condition not widen");
8273
8274 SDValue Tmp1 = WidenVectorOp(Node->getOperand(1), WidenVT);
8275 SDValue Tmp2 = WidenVectorOp(Node->getOperand(2), WidenVT);
8276 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008277 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Tmp1, Tmp2);
Mon P Wang0c397192008-10-30 08:01:45 +00008278 break;
8279 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008280
Mon P Wang0c397192008-10-30 08:01:45 +00008281 case ISD::SELECT_CC: {
Mon P Wang0c397192008-10-30 08:01:45 +00008282 // Determine new condition widen type and widen
8283 SDValue Cond1 = Node->getOperand(0);
8284 SDValue Cond2 = Node->getOperand(1);
8285 MVT CondVT = Cond1.getValueType();
8286 assert(CondVT.isVector() && "can not widen non vector type");
8287 assert(CondVT == Cond2.getValueType() && "mismatch lhs/rhs");
8288 MVT CondEVT = CondVT.getVectorElementType();
8289 MVT CondWidenVT = MVT::getVectorVT(CondEVT, NewNumElts);
8290 Cond1 = WidenVectorOp(Cond1, CondWidenVT);
8291 Cond2 = WidenVectorOp(Cond2, CondWidenVT);
8292 assert(Cond1.getValueType() == CondWidenVT &&
8293 Cond2.getValueType() == CondWidenVT && "condition not widen");
8294
8295 SDValue Tmp1 = WidenVectorOp(Node->getOperand(2), WidenVT);
8296 SDValue Tmp2 = WidenVectorOp(Node->getOperand(3), WidenVT);
8297 assert(Tmp1.getValueType() == WidenVT && Tmp2.getValueType() == WidenVT &&
8298 "operands not widen");
Dale Johannesenc6be1102009-02-02 22:49:46 +00008299 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Cond1, Cond2, Tmp1,
Mon P Wang0c397192008-10-30 08:01:45 +00008300 Tmp2, Node->getOperand(4));
Mon P Wang0c397192008-10-30 08:01:45 +00008301 break;
Mon P Wang2eb13c32008-10-30 18:21:52 +00008302 }
8303 case ISD::VSETCC: {
8304 // Determine widen for the operand
8305 SDValue Tmp1 = Node->getOperand(0);
8306 MVT TmpVT = Tmp1.getValueType();
8307 assert(TmpVT.isVector() && "can not widen non vector type");
8308 MVT TmpEVT = TmpVT.getVectorElementType();
8309 MVT TmpWidenVT = MVT::getVectorVT(TmpEVT, NewNumElts);
8310 Tmp1 = WidenVectorOp(Tmp1, TmpWidenVT);
8311 SDValue Tmp2 = WidenVectorOp(Node->getOperand(1), TmpWidenVT);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008312 Result = DAG.getNode(Node->getOpcode(), dl, WidenVT, Tmp1, Tmp2,
Mon P Wang2eb13c32008-10-30 18:21:52 +00008313 Node->getOperand(2));
Mon P Wang0c397192008-10-30 08:01:45 +00008314 break;
8315 }
Dan Gohman0b1d4a72008-12-23 21:37:04 +00008316 case ISD::ATOMIC_CMP_SWAP:
8317 case ISD::ATOMIC_LOAD_ADD:
8318 case ISD::ATOMIC_LOAD_SUB:
8319 case ISD::ATOMIC_LOAD_AND:
8320 case ISD::ATOMIC_LOAD_OR:
8321 case ISD::ATOMIC_LOAD_XOR:
8322 case ISD::ATOMIC_LOAD_NAND:
8323 case ISD::ATOMIC_LOAD_MIN:
8324 case ISD::ATOMIC_LOAD_MAX:
8325 case ISD::ATOMIC_LOAD_UMIN:
8326 case ISD::ATOMIC_LOAD_UMAX:
8327 case ISD::ATOMIC_SWAP: {
Mon P Wang0c397192008-10-30 08:01:45 +00008328 // For now, we assume that using vectors for these operations don't make
8329 // much sense so we just split it. We return an empty result
8330 SDValue X, Y;
8331 SplitVectorOp(Op, X, Y);
8332 return Result;
8333 break;
8334 }
8335
8336 } // end switch (Node->getOpcode())
8337
Scott Michelfdc40a02009-02-17 22:15:04 +00008338 assert(Result.getNode() && "Didn't set a result!");
Mon P Wang0c397192008-10-30 08:01:45 +00008339 if (Result != Op)
8340 Result = LegalizeOp(Result);
8341
Mon P Wangf007a8b2008-11-06 05:31:54 +00008342 AddWidenedOperand(Op, Result);
Mon P Wang0c397192008-10-30 08:01:45 +00008343 return Result;
8344}
8345
8346// Utility function to find a legal vector type and its associated element
8347// type from a preferred width and whose vector type must be the same size
8348// as the VVT.
8349// TLI: Target lowering used to determine legal types
8350// Width: Preferred width of element type
8351// VVT: Vector value type whose size we must match.
8352// Returns VecEVT and EVT - the vector type and its associated element type
Dan Gohman0d137d72009-01-15 16:43:02 +00008353static void FindWidenVecType(const TargetLowering &TLI, unsigned Width, MVT VVT,
Mon P Wang0c397192008-10-30 08:01:45 +00008354 MVT& EVT, MVT& VecEVT) {
8355 // We start with the preferred width, make it a power of 2 and see if
8356 // we can find a vector type of that width. If not, we reduce it by
8357 // another power of 2. If we have widen the type, a vector of bytes should
8358 // always be legal.
8359 assert(TLI.isTypeLegal(VVT));
8360 unsigned EWidth = Width + 1;
8361 do {
8362 assert(EWidth > 0);
8363 EWidth = (1 << Log2_32(EWidth-1));
8364 EVT = MVT::getIntegerVT(EWidth);
8365 unsigned NumEVT = VVT.getSizeInBits()/EWidth;
8366 VecEVT = MVT::getVectorVT(EVT, NumEVT);
8367 } while (!TLI.isTypeLegal(VecEVT) ||
8368 VVT.getSizeInBits() != VecEVT.getSizeInBits());
8369}
8370
8371SDValue SelectionDAGLegalize::genWidenVectorLoads(SDValueVector& LdChain,
8372 SDValue Chain,
8373 SDValue BasePtr,
8374 const Value *SV,
8375 int SVOffset,
8376 unsigned Alignment,
8377 bool isVolatile,
8378 unsigned LdWidth,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008379 MVT ResType,
8380 DebugLoc dl) {
Mon P Wang0c397192008-10-30 08:01:45 +00008381 // We assume that we have good rules to handle loading power of two loads so
8382 // we break down the operations to power of 2 loads. The strategy is to
8383 // load the largest power of 2 that we can easily transform to a legal vector
8384 // and then insert into that vector, and the cast the result into the legal
8385 // vector that we want. This avoids unnecessary stack converts.
8386 // TODO: If the Ldwidth is legal, alignment is the same as the LdWidth, and
8387 // the load is nonvolatile, we an use a wider load for the value.
8388 // Find a vector length we can load a large chunk
8389 MVT EVT, VecEVT;
8390 unsigned EVTWidth;
8391 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8392 EVTWidth = EVT.getSizeInBits();
8393
Dale Johannesenc6be1102009-02-02 22:49:46 +00008394 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV, SVOffset,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008395 isVolatile, Alignment);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008396 SDValue VecOp = DAG.getNode(ISD::SCALAR_TO_VECTOR, dl, VecEVT, LdOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008397 LdChain.push_back(LdOp.getValue(1));
Scott Michelfdc40a02009-02-17 22:15:04 +00008398
Mon P Wang0c397192008-10-30 08:01:45 +00008399 // Check if we can load the element with one instruction
8400 if (LdWidth == EVTWidth) {
Dale Johannesenc6be1102009-02-02 22:49:46 +00008401 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008402 }
8403
8404 // The vector element order is endianness dependent.
8405 unsigned Idx = 1;
8406 LdWidth -= EVTWidth;
8407 unsigned Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008408
Mon P Wang0c397192008-10-30 08:01:45 +00008409 while (LdWidth > 0) {
8410 unsigned Increment = EVTWidth / 8;
8411 Offset += Increment;
Dale Johannesenc6be1102009-02-02 22:49:46 +00008412 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang0c397192008-10-30 08:01:45 +00008413 DAG.getIntPtrConstant(Increment));
8414
8415 if (LdWidth < EVTWidth) {
8416 // Our current type we are using is too large, use a smaller size by
8417 // using a smaller power of 2
8418 unsigned oEVTWidth = EVTWidth;
8419 FindWidenVecType(TLI, LdWidth, ResType, EVT, VecEVT);
8420 EVTWidth = EVT.getSizeInBits();
8421 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008422 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008423 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008424 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008425
Dale Johannesenc6be1102009-02-02 22:49:46 +00008426 SDValue LdOp = DAG.getLoad(EVT, dl, Chain, BasePtr, SV,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008427 SVOffset+Offset, isVolatile,
8428 MinAlign(Alignment, Offset));
Mon P Wang0c397192008-10-30 08:01:45 +00008429 LdChain.push_back(LdOp.getValue(1));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008430 VecOp = DAG.getNode(ISD::INSERT_VECTOR_ELT, dl, VecEVT, VecOp, LdOp,
Mon P Wang0c397192008-10-30 08:01:45 +00008431 DAG.getIntPtrConstant(Idx++));
Scott Michelfdc40a02009-02-17 22:15:04 +00008432
Mon P Wang0c397192008-10-30 08:01:45 +00008433 LdWidth -= EVTWidth;
8434 }
8435
Dale Johannesenc6be1102009-02-02 22:49:46 +00008436 return DAG.getNode(ISD::BIT_CONVERT, dl, ResType, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008437}
8438
8439bool SelectionDAGLegalize::LoadWidenVectorOp(SDValue& Result,
8440 SDValue& TFOp,
8441 SDValue Op,
8442 MVT NVT) {
8443 // TODO: Add support for ConcatVec and the ability to load many vector
8444 // types (e.g., v4i8). This will not work when a vector register
8445 // to memory mapping is strange (e.g., vector elements are not
8446 // stored in some sequential order).
8447
Scott Michelfdc40a02009-02-17 22:15:04 +00008448 // It must be true that the widen vector type is bigger than where
Mon P Wang0c397192008-10-30 08:01:45 +00008449 // we need to load from.
8450 LoadSDNode *LD = cast<LoadSDNode>(Op.getNode());
8451 MVT LdVT = LD->getMemoryVT();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008452 DebugLoc dl = LD->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008453 assert(LdVT.isVector() && NVT.isVector());
8454 assert(LdVT.getVectorElementType() == NVT.getVectorElementType());
Scott Michelfdc40a02009-02-17 22:15:04 +00008455
Mon P Wang0c397192008-10-30 08:01:45 +00008456 // Load information
8457 SDValue Chain = LD->getChain();
8458 SDValue BasePtr = LD->getBasePtr();
8459 int SVOffset = LD->getSrcValueOffset();
8460 unsigned Alignment = LD->getAlignment();
8461 bool isVolatile = LD->isVolatile();
8462 const Value *SV = LD->getSrcValue();
8463 unsigned int LdWidth = LdVT.getSizeInBits();
Scott Michelfdc40a02009-02-17 22:15:04 +00008464
Mon P Wang0c397192008-10-30 08:01:45 +00008465 // Load value as a large register
8466 SDValueVector LdChain;
8467 Result = genWidenVectorLoads(LdChain, Chain, BasePtr, SV, SVOffset,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008468 Alignment, isVolatile, LdWidth, NVT, dl);
Mon P Wang0c397192008-10-30 08:01:45 +00008469
8470 if (LdChain.size() == 1) {
8471 TFOp = LdChain[0];
8472 return true;
8473 }
8474 else {
Scott Michelfdc40a02009-02-17 22:15:04 +00008475 TFOp=DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008476 &LdChain[0], LdChain.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008477 return false;
8478 }
8479}
8480
8481
8482void SelectionDAGLegalize::genWidenVectorStores(SDValueVector& StChain,
8483 SDValue Chain,
8484 SDValue BasePtr,
8485 const Value *SV,
8486 int SVOffset,
8487 unsigned Alignment,
8488 bool isVolatile,
Mon P Wang49292f12008-11-15 06:05:52 +00008489 SDValue ValOp,
Dale Johannesenc6be1102009-02-02 22:49:46 +00008490 unsigned StWidth,
8491 DebugLoc dl) {
Mon P Wang0c397192008-10-30 08:01:45 +00008492 // Breaks the stores into a series of power of 2 width stores. For any
8493 // width, we convert the vector to the vector of element size that we
8494 // want to store. This avoids requiring a stack convert.
Scott Michelfdc40a02009-02-17 22:15:04 +00008495
Mon P Wang0c397192008-10-30 08:01:45 +00008496 // Find a width of the element type we can store with
8497 MVT VVT = ValOp.getValueType();
8498 MVT EVT, VecEVT;
8499 unsigned EVTWidth;
8500 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8501 EVTWidth = EVT.getSizeInBits();
8502
Dale Johannesenc6be1102009-02-02 22:49:46 +00008503 SDValue VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, ValOp);
8504 SDValue EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wange0b436a2008-11-06 22:52:21 +00008505 DAG.getIntPtrConstant(0));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008506 SDValue StOp = DAG.getStore(Chain, dl, EOp, BasePtr, SV, SVOffset,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008507 isVolatile, Alignment);
Mon P Wang0c397192008-10-30 08:01:45 +00008508 StChain.push_back(StOp);
8509
8510 // Check if we are done
8511 if (StWidth == EVTWidth) {
8512 return;
8513 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008514
Mon P Wang0c397192008-10-30 08:01:45 +00008515 unsigned Idx = 1;
8516 StWidth -= EVTWidth;
8517 unsigned Offset = 0;
Scott Michelfdc40a02009-02-17 22:15:04 +00008518
Mon P Wang0c397192008-10-30 08:01:45 +00008519 while (StWidth > 0) {
8520 unsigned Increment = EVTWidth / 8;
8521 Offset += Increment;
Dale Johannesenc6be1102009-02-02 22:49:46 +00008522 BasePtr = DAG.getNode(ISD::ADD, dl, BasePtr.getValueType(), BasePtr,
Mon P Wang0c397192008-10-30 08:01:45 +00008523 DAG.getIntPtrConstant(Increment));
Scott Michelfdc40a02009-02-17 22:15:04 +00008524
Mon P Wang0c397192008-10-30 08:01:45 +00008525 if (StWidth < EVTWidth) {
8526 // Our current type we are using is too large, use a smaller size by
8527 // using a smaller power of 2
8528 unsigned oEVTWidth = EVTWidth;
8529 FindWidenVecType(TLI, StWidth, VVT, EVT, VecEVT);
8530 EVTWidth = EVT.getSizeInBits();
8531 // Readjust position and vector position based on new load type
Mon P Wang49292f12008-11-15 06:05:52 +00008532 Idx = Idx * (oEVTWidth/EVTWidth);
Dale Johannesenc6be1102009-02-02 22:49:46 +00008533 VecOp = DAG.getNode(ISD::BIT_CONVERT, dl, VecEVT, VecOp);
Mon P Wang0c397192008-10-30 08:01:45 +00008534 }
Scott Michelfdc40a02009-02-17 22:15:04 +00008535
Dale Johannesenc6be1102009-02-02 22:49:46 +00008536 EOp = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, dl, EVT, VecOp,
Mon P Wang49292f12008-11-15 06:05:52 +00008537 DAG.getIntPtrConstant(Idx++));
Dale Johannesenc6be1102009-02-02 22:49:46 +00008538 StChain.push_back(DAG.getStore(Chain, dl, EOp, BasePtr, SV,
Mon P Wang0c397192008-10-30 08:01:45 +00008539 SVOffset + Offset, isVolatile,
8540 MinAlign(Alignment, Offset)));
8541 StWidth -= EVTWidth;
8542 }
8543}
8544
8545
8546SDValue SelectionDAGLegalize::StoreWidenVectorOp(StoreSDNode *ST,
Bob Wilsonec15bbf2009-04-10 18:48:47 +00008547 SDValue Chain,
8548 SDValue BasePtr) {
Mon P Wang0c397192008-10-30 08:01:45 +00008549 // TODO: It might be cleaner if we can use SplitVector and have more legal
8550 // vector types that can be stored into memory (e.g., v4xi8 can
8551 // be stored as a word). This will not work when a vector register
8552 // to memory mapping is strange (e.g., vector elements are not
8553 // stored in some sequential order).
Scott Michelfdc40a02009-02-17 22:15:04 +00008554
Mon P Wang0c397192008-10-30 08:01:45 +00008555 MVT StVT = ST->getMemoryVT();
8556 SDValue ValOp = ST->getValue();
Dale Johannesenc6be1102009-02-02 22:49:46 +00008557 DebugLoc dl = ST->getDebugLoc();
Mon P Wang0c397192008-10-30 08:01:45 +00008558
8559 // Check if we have widen this node with another value
8560 std::map<SDValue, SDValue>::iterator I = WidenNodes.find(ValOp);
8561 if (I != WidenNodes.end())
8562 ValOp = I->second;
Scott Michelfdc40a02009-02-17 22:15:04 +00008563
Mon P Wang0c397192008-10-30 08:01:45 +00008564 MVT VVT = ValOp.getValueType();
8565
8566 // It must be true that we the widen vector type is bigger than where
8567 // we need to store.
8568 assert(StVT.isVector() && VVT.isVector());
Dan Gohmanf83c81a2009-01-28 03:10:52 +00008569 assert(StVT.bitsLT(VVT));
Mon P Wang0c397192008-10-30 08:01:45 +00008570 assert(StVT.getVectorElementType() == VVT.getVectorElementType());
8571
8572 // Store value
8573 SDValueVector StChain;
8574 genWidenVectorStores(StChain, Chain, BasePtr, ST->getSrcValue(),
8575 ST->getSrcValueOffset(), ST->getAlignment(),
Dale Johannesenc6be1102009-02-02 22:49:46 +00008576 ST->isVolatile(), ValOp, StVT.getSizeInBits(), dl);
Mon P Wang0c397192008-10-30 08:01:45 +00008577 if (StChain.size() == 1)
8578 return StChain[0];
Scott Michelfdc40a02009-02-17 22:15:04 +00008579 else
Dale Johannesenc6be1102009-02-02 22:49:46 +00008580 return DAG.getNode(ISD::TokenFactor, dl, MVT::Other,
8581 &StChain[0], StChain.size());
Mon P Wang0c397192008-10-30 08:01:45 +00008582}
8583
8584
Chris Lattner3e928bb2005-01-07 07:47:09 +00008585// SelectionDAG::Legalize - This is the entry point for the file.
8586//
Bill Wendling98a366d2009-04-29 23:29:43 +00008587void SelectionDAG::Legalize(bool TypesNeedLegalizing,
8588 CodeGenOpt::Level OptLevel) {
Chris Lattner3e928bb2005-01-07 07:47:09 +00008589 /// run - This is the main entry point to this class.
8590 ///
Eli Friedman1fde9c52009-05-24 02:46:31 +00008591 SelectionDAGLegalize(*this, OptLevel).LegalizeDAG();
Chris Lattner3e928bb2005-01-07 07:47:09 +00008592}
8593